v2.6.22.24-op1
[linux-2.6.22.y-op.git] / drivers / char / pcmcia / synclink_cs.c
blob13808f6083a08ab346c84c509798082b3e408e02
1 /*
2 * linux/drivers/char/pcmcia/synclink_cs.c
4 * $Id: synclink_cs.c,v 4.34 2005/09/08 13:20:54 paulkf Exp $
6 * Device driver for Microgate SyncLink PC Card
7 * multiprotocol serial adapter.
9 * written by Paul Fulghum for Microgate Corporation
10 * paulkf@microgate.com
12 * Microgate and SyncLink are trademarks of Microgate Corporation
14 * This code is released under the GNU General Public License (GPL)
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.
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
36 #define MAX_DEVICE_COUNT 4
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>
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>
54 #include <linux/slab.h>
55 #include <linux/netdevice.h>
56 #include <linux/vmalloc.h>
57 #include <linux/init.h>
58 #include <linux/delay.h>
59 #include <linux/ioctl.h>
61 #include <asm/system.h>
62 #include <asm/io.h>
63 #include <asm/irq.h>
64 #include <asm/dma.h>
65 #include <linux/bitops.h>
66 #include <asm/types.h>
67 #include <linux/termios.h>
68 #include <linux/workqueue.h>
69 #include <linux/hdlc.h>
71 #include <pcmcia/cs_types.h>
72 #include <pcmcia/cs.h>
73 #include <pcmcia/cistpl.h>
74 #include <pcmcia/cisreg.h>
75 #include <pcmcia/ds.h>
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
81 #endif
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
88 #include <asm/uaccess.h>
90 #include "linux/synclink.h"
92 static MGSL_PARAMS default_params = {
93 MGSL_MODE_HDLC, /* unsigned long mode */
94 0, /* unsigned char loopback; */
95 HDLC_FLAG_UNDERRUN_ABORT15, /* unsigned short flags; */
96 HDLC_ENCODING_NRZI_SPACE, /* unsigned char encoding; */
97 0, /* unsigned long clock_speed; */
98 0xff, /* unsigned char addr_filter; */
99 HDLC_CRC_16_CCITT, /* unsigned short crc_type; */
100 HDLC_PREAMBLE_LENGTH_8BITS, /* unsigned char preamble_length; */
101 HDLC_PREAMBLE_PATTERN_NONE, /* unsigned char preamble; */
102 9600, /* unsigned long data_rate; */
103 8, /* unsigned char data_bits; */
104 1, /* unsigned char stop_bits; */
105 ASYNC_PARITY_NONE /* unsigned char parity; */
108 typedef struct
110 int count;
111 unsigned char status;
112 char data[1];
113 } RXBUF;
115 /* The queue of BH actions to be performed */
117 #define BH_RECEIVE 1
118 #define BH_TRANSMIT 2
119 #define BH_STATUS 4
121 #define IO_PIN_SHUTDOWN_LIMIT 100
123 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
125 struct _input_signal_events {
126 int ri_up;
127 int ri_down;
128 int dsr_up;
129 int dsr_down;
130 int dcd_up;
131 int dcd_down;
132 int cts_up;
133 int cts_down;
138 * Device instance data structure
141 typedef struct _mgslpc_info {
142 void *if_ptr; /* General purpose pointer (used by SPPP) */
143 int magic;
144 int flags;
145 int count; /* count of opens */
146 int line;
147 unsigned short close_delay;
148 unsigned short closing_wait; /* time to wait before closing */
150 struct mgsl_icount icount;
152 struct tty_struct *tty;
153 int timeout;
154 int x_char; /* xon/xoff character */
155 int blocked_open; /* # of blocked opens */
156 unsigned char read_status_mask;
157 unsigned char ignore_status_mask;
159 unsigned char *tx_buf;
160 int tx_put;
161 int tx_get;
162 int tx_count;
164 /* circular list of fixed length rx buffers */
166 unsigned char *rx_buf; /* memory allocated for all rx buffers */
167 int rx_buf_total_size; /* size of memory allocated for rx buffers */
168 int rx_put; /* index of next empty rx buffer */
169 int rx_get; /* index of next full rx buffer */
170 int rx_buf_size; /* size in bytes of single rx buffer */
171 int rx_buf_count; /* total number of rx buffers */
172 int rx_frame_count; /* number of full rx buffers */
174 wait_queue_head_t open_wait;
175 wait_queue_head_t close_wait;
177 wait_queue_head_t status_event_wait_q;
178 wait_queue_head_t event_wait_q;
179 struct timer_list tx_timer; /* HDLC transmit timeout timer */
180 struct _mgslpc_info *next_device; /* device list link */
182 unsigned short imra_value;
183 unsigned short imrb_value;
184 unsigned char pim_value;
186 spinlock_t lock;
187 struct work_struct task; /* task structure for scheduling bh */
189 u32 max_frame_size;
191 u32 pending_bh;
193 int bh_running;
194 int bh_requested;
196 int dcd_chkcount; /* check counts to prevent */
197 int cts_chkcount; /* too many IRQs if a signal */
198 int dsr_chkcount; /* is floating */
199 int ri_chkcount;
201 int rx_enabled;
202 int rx_overflow;
204 int tx_enabled;
205 int tx_active;
206 int tx_aborting;
207 u32 idle_mode;
209 int if_mode; /* serial interface selection (RS-232, v.35 etc) */
211 char device_name[25]; /* device instance name */
213 unsigned int io_base; /* base I/O address of adapter */
214 unsigned int irq_level;
216 MGSL_PARAMS params; /* communications parameters */
218 unsigned char serial_signals; /* current serial signal states */
220 char irq_occurred; /* for diagnostics use */
221 char testing_irq;
222 unsigned int init_error; /* startup error (DIAGS) */
224 char flag_buf[MAX_ASYNC_BUFFER_SIZE];
225 BOOLEAN drop_rts_on_tx_done;
227 struct _input_signal_events input_signal_events;
229 /* PCMCIA support */
230 struct pcmcia_device *p_dev;
231 dev_node_t node;
232 int stop;
234 /* SPPP/Cisco HDLC device parts */
235 int netcount;
236 int dosyncppp;
237 spinlock_t netlock;
239 #if SYNCLINK_GENERIC_HDLC
240 struct net_device *netdev;
241 #endif
243 } MGSLPC_INFO;
245 #define MGSLPC_MAGIC 0x5402
248 * The size of the serial xmit buffer is 1 page, or 4096 bytes
250 #define TXBUFSIZE 4096
253 #define CHA 0x00 /* channel A offset */
254 #define CHB 0x40 /* channel B offset */
257 * FIXME: PPC has PVR defined in asm/reg.h. For now we just undef it.
259 #undef PVR
261 #define RXFIFO 0
262 #define TXFIFO 0
263 #define STAR 0x20
264 #define CMDR 0x20
265 #define RSTA 0x21
266 #define PRE 0x21
267 #define MODE 0x22
268 #define TIMR 0x23
269 #define XAD1 0x24
270 #define XAD2 0x25
271 #define RAH1 0x26
272 #define RAH2 0x27
273 #define DAFO 0x27
274 #define RAL1 0x28
275 #define RFC 0x28
276 #define RHCR 0x29
277 #define RAL2 0x29
278 #define RBCL 0x2a
279 #define XBCL 0x2a
280 #define RBCH 0x2b
281 #define XBCH 0x2b
282 #define CCR0 0x2c
283 #define CCR1 0x2d
284 #define CCR2 0x2e
285 #define CCR3 0x2f
286 #define VSTR 0x34
287 #define BGR 0x34
288 #define RLCR 0x35
289 #define AML 0x36
290 #define AMH 0x37
291 #define GIS 0x38
292 #define IVA 0x38
293 #define IPC 0x39
294 #define ISR 0x3a
295 #define IMR 0x3a
296 #define PVR 0x3c
297 #define PIS 0x3d
298 #define PIM 0x3d
299 #define PCR 0x3e
300 #define CCR4 0x3f
302 // IMR/ISR
304 #define IRQ_BREAK_ON BIT15 // rx break detected
305 #define IRQ_DATAOVERRUN BIT14 // receive data overflow
306 #define IRQ_ALLSENT BIT13 // all sent
307 #define IRQ_UNDERRUN BIT12 // transmit data underrun
308 #define IRQ_TIMER BIT11 // timer interrupt
309 #define IRQ_CTS BIT10 // CTS status change
310 #define IRQ_TXREPEAT BIT9 // tx message repeat
311 #define IRQ_TXFIFO BIT8 // transmit pool ready
312 #define IRQ_RXEOM BIT7 // receive message end
313 #define IRQ_EXITHUNT BIT6 // receive frame start
314 #define IRQ_RXTIME BIT6 // rx char timeout
315 #define IRQ_DCD BIT2 // carrier detect status change
316 #define IRQ_OVERRUN BIT1 // receive frame overflow
317 #define IRQ_RXFIFO BIT0 // receive pool full
319 // STAR
321 #define XFW BIT6 // transmit FIFO write enable
322 #define CEC BIT2 // command executing
323 #define CTS BIT1 // CTS state
325 #define PVR_DTR BIT0
326 #define PVR_DSR BIT1
327 #define PVR_RI BIT2
328 #define PVR_AUTOCTS BIT3
329 #define PVR_RS232 0x20 /* 0010b */
330 #define PVR_V35 0xe0 /* 1110b */
331 #define PVR_RS422 0x40 /* 0100b */
333 /* Register access functions */
335 #define write_reg(info, reg, val) outb((val),(info)->io_base + (reg))
336 #define read_reg(info, reg) inb((info)->io_base + (reg))
338 #define read_reg16(info, reg) inw((info)->io_base + (reg))
339 #define write_reg16(info, reg, val) outw((val), (info)->io_base + (reg))
341 #define set_reg_bits(info, reg, mask) \
342 write_reg(info, (reg), \
343 (unsigned char) (read_reg(info, (reg)) | (mask)))
344 #define clear_reg_bits(info, reg, mask) \
345 write_reg(info, (reg), \
346 (unsigned char) (read_reg(info, (reg)) & ~(mask)))
348 * interrupt enable/disable routines
350 static void irq_disable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
352 if (channel == CHA) {
353 info->imra_value |= mask;
354 write_reg16(info, CHA + IMR, info->imra_value);
355 } else {
356 info->imrb_value |= mask;
357 write_reg16(info, CHB + IMR, info->imrb_value);
360 static void irq_enable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
362 if (channel == CHA) {
363 info->imra_value &= ~mask;
364 write_reg16(info, CHA + IMR, info->imra_value);
365 } else {
366 info->imrb_value &= ~mask;
367 write_reg16(info, CHB + IMR, info->imrb_value);
371 #define port_irq_disable(info, mask) \
372 { info->pim_value |= (mask); write_reg(info, PIM, info->pim_value); }
374 #define port_irq_enable(info, mask) \
375 { info->pim_value &= ~(mask); write_reg(info, PIM, info->pim_value); }
377 static void rx_start(MGSLPC_INFO *info);
378 static void rx_stop(MGSLPC_INFO *info);
380 static void tx_start(MGSLPC_INFO *info);
381 static void tx_stop(MGSLPC_INFO *info);
382 static void tx_set_idle(MGSLPC_INFO *info);
384 static void get_signals(MGSLPC_INFO *info);
385 static void set_signals(MGSLPC_INFO *info);
387 static void reset_device(MGSLPC_INFO *info);
389 static void hdlc_mode(MGSLPC_INFO *info);
390 static void async_mode(MGSLPC_INFO *info);
392 static void tx_timeout(unsigned long context);
394 static int ioctl_common(MGSLPC_INFO *info, unsigned int cmd, unsigned long arg);
396 #if SYNCLINK_GENERIC_HDLC
397 #define dev_to_port(D) (dev_to_hdlc(D)->priv)
398 static void hdlcdev_tx_done(MGSLPC_INFO *info);
399 static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size);
400 static int hdlcdev_init(MGSLPC_INFO *info);
401 static void hdlcdev_exit(MGSLPC_INFO *info);
402 #endif
404 static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit);
406 static BOOLEAN register_test(MGSLPC_INFO *info);
407 static BOOLEAN irq_test(MGSLPC_INFO *info);
408 static int adapter_test(MGSLPC_INFO *info);
410 static int claim_resources(MGSLPC_INFO *info);
411 static void release_resources(MGSLPC_INFO *info);
412 static void mgslpc_add_device(MGSLPC_INFO *info);
413 static void mgslpc_remove_device(MGSLPC_INFO *info);
415 static int rx_get_frame(MGSLPC_INFO *info);
416 static void rx_reset_buffers(MGSLPC_INFO *info);
417 static int rx_alloc_buffers(MGSLPC_INFO *info);
418 static void rx_free_buffers(MGSLPC_INFO *info);
420 static irqreturn_t mgslpc_isr(int irq, void *dev_id);
423 * Bottom half interrupt handlers
425 static void bh_handler(struct work_struct *work);
426 static void bh_transmit(MGSLPC_INFO *info);
427 static void bh_status(MGSLPC_INFO *info);
430 * ioctl handlers
432 static int tiocmget(struct tty_struct *tty, struct file *file);
433 static int tiocmset(struct tty_struct *tty, struct file *file,
434 unsigned int set, unsigned int clear);
435 static int get_stats(MGSLPC_INFO *info, struct mgsl_icount __user *user_icount);
436 static int get_params(MGSLPC_INFO *info, MGSL_PARAMS __user *user_params);
437 static int set_params(MGSLPC_INFO *info, MGSL_PARAMS __user *new_params);
438 static int get_txidle(MGSLPC_INFO *info, int __user *idle_mode);
439 static int set_txidle(MGSLPC_INFO *info, int idle_mode);
440 static int set_txenable(MGSLPC_INFO *info, int enable);
441 static int tx_abort(MGSLPC_INFO *info);
442 static int set_rxenable(MGSLPC_INFO *info, int enable);
443 static int wait_events(MGSLPC_INFO *info, int __user *mask);
445 static MGSLPC_INFO *mgslpc_device_list = NULL;
446 static int mgslpc_device_count = 0;
449 * Set this param to non-zero to load eax with the
450 * .text section address and breakpoint on module load.
451 * This is useful for use with gdb and add-symbol-file command.
453 static int break_on_load=0;
456 * Driver major number, defaults to zero to get auto
457 * assigned major number. May be forced as module parameter.
459 static int ttymajor=0;
461 static int debug_level = 0;
462 static int maxframe[MAX_DEVICE_COUNT] = {0,};
463 static int dosyncppp[MAX_DEVICE_COUNT] = {1,1,1,1};
465 module_param(break_on_load, bool, 0);
466 module_param(ttymajor, int, 0);
467 module_param(debug_level, int, 0);
468 module_param_array(maxframe, int, NULL, 0);
469 module_param_array(dosyncppp, int, NULL, 0);
471 MODULE_LICENSE("GPL");
473 static char *driver_name = "SyncLink PC Card driver";
474 static char *driver_version = "$Revision: 4.34 $";
476 static struct tty_driver *serial_driver;
478 /* number of characters left in xmit buffer before we ask for more */
479 #define WAKEUP_CHARS 256
481 static void mgslpc_change_params(MGSLPC_INFO *info);
482 static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout);
484 /* PCMCIA prototypes */
486 static int mgslpc_config(struct pcmcia_device *link);
487 static void mgslpc_release(u_long arg);
488 static void mgslpc_detach(struct pcmcia_device *p_dev);
491 * 1st function defined in .text section. Calling this function in
492 * init_module() followed by a breakpoint allows a remote debugger
493 * (gdb) to get the .text address for the add-symbol-file command.
494 * This allows remote debugging of dynamically loadable modules.
496 static void* mgslpc_get_text_ptr(void)
498 return mgslpc_get_text_ptr;
502 * line discipline callback wrappers
504 * The wrappers maintain line discipline references
505 * while calling into the line discipline.
507 * ldisc_flush_buffer - flush line discipline receive buffers
508 * ldisc_receive_buf - pass receive data to line discipline
511 static void ldisc_flush_buffer(struct tty_struct *tty)
513 struct tty_ldisc *ld = tty_ldisc_ref(tty);
514 if (ld) {
515 if (ld->flush_buffer)
516 ld->flush_buffer(tty);
517 tty_ldisc_deref(ld);
521 static void ldisc_receive_buf(struct tty_struct *tty,
522 const __u8 *data, char *flags, int count)
524 struct tty_ldisc *ld;
525 if (!tty)
526 return;
527 ld = tty_ldisc_ref(tty);
528 if (ld) {
529 if (ld->receive_buf)
530 ld->receive_buf(tty, data, flags, count);
531 tty_ldisc_deref(ld);
535 static int mgslpc_probe(struct pcmcia_device *link)
537 MGSLPC_INFO *info;
538 int ret;
540 if (debug_level >= DEBUG_LEVEL_INFO)
541 printk("mgslpc_attach\n");
543 info = kmalloc(sizeof(MGSLPC_INFO), GFP_KERNEL);
544 if (!info) {
545 printk("Error can't allocate device instance data\n");
546 return -ENOMEM;
549 memset(info, 0, sizeof(MGSLPC_INFO));
550 info->magic = MGSLPC_MAGIC;
551 INIT_WORK(&info->task, bh_handler);
552 info->max_frame_size = 4096;
553 info->close_delay = 5*HZ/10;
554 info->closing_wait = 30*HZ;
555 init_waitqueue_head(&info->open_wait);
556 init_waitqueue_head(&info->close_wait);
557 init_waitqueue_head(&info->status_event_wait_q);
558 init_waitqueue_head(&info->event_wait_q);
559 spin_lock_init(&info->lock);
560 spin_lock_init(&info->netlock);
561 memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
562 info->idle_mode = HDLC_TXIDLE_FLAGS;
563 info->imra_value = 0xffff;
564 info->imrb_value = 0xffff;
565 info->pim_value = 0xff;
567 info->p_dev = link;
568 link->priv = info;
570 /* Initialize the struct pcmcia_device structure */
572 /* Interrupt setup */
573 link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
574 link->irq.IRQInfo1 = IRQ_LEVEL_ID;
575 link->irq.Handler = NULL;
577 link->conf.Attributes = 0;
578 link->conf.IntType = INT_MEMORY_AND_IO;
580 ret = mgslpc_config(link);
581 if (ret)
582 return ret;
584 mgslpc_add_device(info);
586 return 0;
589 /* Card has been inserted.
592 #define CS_CHECK(fn, ret) \
593 do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
595 static int mgslpc_config(struct pcmcia_device *link)
597 MGSLPC_INFO *info = link->priv;
598 tuple_t tuple;
599 cisparse_t parse;
600 int last_fn, last_ret;
601 u_char buf[64];
602 cistpl_cftable_entry_t dflt = { 0 };
603 cistpl_cftable_entry_t *cfg;
605 if (debug_level >= DEBUG_LEVEL_INFO)
606 printk("mgslpc_config(0x%p)\n", link);
608 tuple.Attributes = 0;
609 tuple.TupleData = buf;
610 tuple.TupleDataMax = sizeof(buf);
611 tuple.TupleOffset = 0;
613 /* get CIS configuration entry */
615 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
616 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(link, &tuple));
618 cfg = &(parse.cftable_entry);
619 CS_CHECK(GetTupleData, pcmcia_get_tuple_data(link, &tuple));
620 CS_CHECK(ParseTuple, pcmcia_parse_tuple(link, &tuple, &parse));
622 if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg;
623 if (cfg->index == 0)
624 goto cs_failed;
626 link->conf.ConfigIndex = cfg->index;
627 link->conf.Attributes |= CONF_ENABLE_IRQ;
629 /* IO window settings */
630 link->io.NumPorts1 = 0;
631 if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
632 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
633 link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
634 if (!(io->flags & CISTPL_IO_8BIT))
635 link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
636 if (!(io->flags & CISTPL_IO_16BIT))
637 link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
638 link->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
639 link->io.BasePort1 = io->win[0].base;
640 link->io.NumPorts1 = io->win[0].len;
641 CS_CHECK(RequestIO, pcmcia_request_io(link, &link->io));
644 link->conf.Attributes = CONF_ENABLE_IRQ;
645 link->conf.IntType = INT_MEMORY_AND_IO;
646 link->conf.ConfigIndex = 8;
647 link->conf.Present = PRESENT_OPTION;
649 link->irq.Attributes |= IRQ_HANDLE_PRESENT;
650 link->irq.Handler = mgslpc_isr;
651 link->irq.Instance = info;
652 CS_CHECK(RequestIRQ, pcmcia_request_irq(link, &link->irq));
654 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link, &link->conf));
656 info->io_base = link->io.BasePort1;
657 info->irq_level = link->irq.AssignedIRQ;
659 /* add to linked list of devices */
660 sprintf(info->node.dev_name, "mgslpc0");
661 info->node.major = info->node.minor = 0;
662 link->dev_node = &info->node;
664 printk(KERN_INFO "%s: index 0x%02x:",
665 info->node.dev_name, link->conf.ConfigIndex);
666 if (link->conf.Attributes & CONF_ENABLE_IRQ)
667 printk(", irq %d", link->irq.AssignedIRQ);
668 if (link->io.NumPorts1)
669 printk(", io 0x%04x-0x%04x", link->io.BasePort1,
670 link->io.BasePort1+link->io.NumPorts1-1);
671 printk("\n");
672 return 0;
674 cs_failed:
675 cs_error(link, last_fn, last_ret);
676 mgslpc_release((u_long)link);
677 return -ENODEV;
680 /* Card has been removed.
681 * Unregister device and release PCMCIA configuration.
682 * If device is open, postpone until it is closed.
684 static void mgslpc_release(u_long arg)
686 struct pcmcia_device *link = (struct pcmcia_device *)arg;
688 if (debug_level >= DEBUG_LEVEL_INFO)
689 printk("mgslpc_release(0x%p)\n", link);
691 pcmcia_disable_device(link);
694 static void mgslpc_detach(struct pcmcia_device *link)
696 if (debug_level >= DEBUG_LEVEL_INFO)
697 printk("mgslpc_detach(0x%p)\n", link);
699 ((MGSLPC_INFO *)link->priv)->stop = 1;
700 mgslpc_release((u_long)link);
702 mgslpc_remove_device((MGSLPC_INFO *)link->priv);
705 static int mgslpc_suspend(struct pcmcia_device *link)
707 MGSLPC_INFO *info = link->priv;
709 info->stop = 1;
711 return 0;
714 static int mgslpc_resume(struct pcmcia_device *link)
716 MGSLPC_INFO *info = link->priv;
718 info->stop = 0;
720 return 0;
724 static inline int mgslpc_paranoia_check(MGSLPC_INFO *info,
725 char *name, const char *routine)
727 #ifdef MGSLPC_PARANOIA_CHECK
728 static const char *badmagic =
729 "Warning: bad magic number for mgsl struct (%s) in %s\n";
730 static const char *badinfo =
731 "Warning: null mgslpc_info for (%s) in %s\n";
733 if (!info) {
734 printk(badinfo, name, routine);
735 return 1;
737 if (info->magic != MGSLPC_MAGIC) {
738 printk(badmagic, name, routine);
739 return 1;
741 #else
742 if (!info)
743 return 1;
744 #endif
745 return 0;
749 #define CMD_RXFIFO BIT7 // release current rx FIFO
750 #define CMD_RXRESET BIT6 // receiver reset
751 #define CMD_RXFIFO_READ BIT5
752 #define CMD_START_TIMER BIT4
753 #define CMD_TXFIFO BIT3 // release current tx FIFO
754 #define CMD_TXEOM BIT1 // transmit end message
755 #define CMD_TXRESET BIT0 // transmit reset
757 static BOOLEAN wait_command_complete(MGSLPC_INFO *info, unsigned char channel)
759 int i = 0;
760 /* wait for command completion */
761 while (read_reg(info, (unsigned char)(channel+STAR)) & BIT2) {
762 udelay(1);
763 if (i++ == 1000)
764 return FALSE;
766 return TRUE;
769 static void issue_command(MGSLPC_INFO *info, unsigned char channel, unsigned char cmd)
771 wait_command_complete(info, channel);
772 write_reg(info, (unsigned char) (channel + CMDR), cmd);
775 static void tx_pause(struct tty_struct *tty)
777 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
778 unsigned long flags;
780 if (mgslpc_paranoia_check(info, tty->name, "tx_pause"))
781 return;
782 if (debug_level >= DEBUG_LEVEL_INFO)
783 printk("tx_pause(%s)\n",info->device_name);
785 spin_lock_irqsave(&info->lock,flags);
786 if (info->tx_enabled)
787 tx_stop(info);
788 spin_unlock_irqrestore(&info->lock,flags);
791 static void tx_release(struct tty_struct *tty)
793 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
794 unsigned long flags;
796 if (mgslpc_paranoia_check(info, tty->name, "tx_release"))
797 return;
798 if (debug_level >= DEBUG_LEVEL_INFO)
799 printk("tx_release(%s)\n",info->device_name);
801 spin_lock_irqsave(&info->lock,flags);
802 if (!info->tx_enabled)
803 tx_start(info);
804 spin_unlock_irqrestore(&info->lock,flags);
807 /* Return next bottom half action to perform.
808 * or 0 if nothing to do.
810 static int bh_action(MGSLPC_INFO *info)
812 unsigned long flags;
813 int rc = 0;
815 spin_lock_irqsave(&info->lock,flags);
817 if (info->pending_bh & BH_RECEIVE) {
818 info->pending_bh &= ~BH_RECEIVE;
819 rc = BH_RECEIVE;
820 } else if (info->pending_bh & BH_TRANSMIT) {
821 info->pending_bh &= ~BH_TRANSMIT;
822 rc = BH_TRANSMIT;
823 } else if (info->pending_bh & BH_STATUS) {
824 info->pending_bh &= ~BH_STATUS;
825 rc = BH_STATUS;
828 if (!rc) {
829 /* Mark BH routine as complete */
830 info->bh_running = 0;
831 info->bh_requested = 0;
834 spin_unlock_irqrestore(&info->lock,flags);
836 return rc;
839 static void bh_handler(struct work_struct *work)
841 MGSLPC_INFO *info = container_of(work, MGSLPC_INFO, task);
842 int action;
844 if (!info)
845 return;
847 if (debug_level >= DEBUG_LEVEL_BH)
848 printk( "%s(%d):bh_handler(%s) entry\n",
849 __FILE__,__LINE__,info->device_name);
851 info->bh_running = 1;
853 while((action = bh_action(info)) != 0) {
855 /* Process work item */
856 if ( debug_level >= DEBUG_LEVEL_BH )
857 printk( "%s(%d):bh_handler() work item action=%d\n",
858 __FILE__,__LINE__,action);
860 switch (action) {
862 case BH_RECEIVE:
863 while(rx_get_frame(info));
864 break;
865 case BH_TRANSMIT:
866 bh_transmit(info);
867 break;
868 case BH_STATUS:
869 bh_status(info);
870 break;
871 default:
872 /* unknown work item ID */
873 printk("Unknown work item ID=%08X!\n", action);
874 break;
878 if (debug_level >= DEBUG_LEVEL_BH)
879 printk( "%s(%d):bh_handler(%s) exit\n",
880 __FILE__,__LINE__,info->device_name);
883 static void bh_transmit(MGSLPC_INFO *info)
885 struct tty_struct *tty = info->tty;
886 if (debug_level >= DEBUG_LEVEL_BH)
887 printk("bh_transmit() entry on %s\n", info->device_name);
889 if (tty)
890 tty_wakeup(tty);
893 static void bh_status(MGSLPC_INFO *info)
895 info->ri_chkcount = 0;
896 info->dsr_chkcount = 0;
897 info->dcd_chkcount = 0;
898 info->cts_chkcount = 0;
901 /* eom: non-zero = end of frame */
902 static void rx_ready_hdlc(MGSLPC_INFO *info, int eom)
904 unsigned char data[2];
905 unsigned char fifo_count, read_count, i;
906 RXBUF *buf = (RXBUF*)(info->rx_buf + (info->rx_put * info->rx_buf_size));
908 if (debug_level >= DEBUG_LEVEL_ISR)
909 printk("%s(%d):rx_ready_hdlc(eom=%d)\n",__FILE__,__LINE__,eom);
911 if (!info->rx_enabled)
912 return;
914 if (info->rx_frame_count >= info->rx_buf_count) {
915 /* no more free buffers */
916 issue_command(info, CHA, CMD_RXRESET);
917 info->pending_bh |= BH_RECEIVE;
918 info->rx_overflow = 1;
919 info->icount.buf_overrun++;
920 return;
923 if (eom) {
924 /* end of frame, get FIFO count from RBCL register */
925 if (!(fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f)))
926 fifo_count = 32;
927 } else
928 fifo_count = 32;
930 do {
931 if (fifo_count == 1) {
932 read_count = 1;
933 data[0] = read_reg(info, CHA + RXFIFO);
934 } else {
935 read_count = 2;
936 *((unsigned short *) data) = read_reg16(info, CHA + RXFIFO);
938 fifo_count -= read_count;
939 if (!fifo_count && eom)
940 buf->status = data[--read_count];
942 for (i = 0; i < read_count; i++) {
943 if (buf->count >= info->max_frame_size) {
944 /* frame too large, reset receiver and reset current buffer */
945 issue_command(info, CHA, CMD_RXRESET);
946 buf->count = 0;
947 return;
949 *(buf->data + buf->count) = data[i];
950 buf->count++;
952 } while (fifo_count);
954 if (eom) {
955 info->pending_bh |= BH_RECEIVE;
956 info->rx_frame_count++;
957 info->rx_put++;
958 if (info->rx_put >= info->rx_buf_count)
959 info->rx_put = 0;
961 issue_command(info, CHA, CMD_RXFIFO);
964 static void rx_ready_async(MGSLPC_INFO *info, int tcd)
966 unsigned char data, status, flag;
967 int fifo_count;
968 int work = 0;
969 struct tty_struct *tty = info->tty;
970 struct mgsl_icount *icount = &info->icount;
972 if (tcd) {
973 /* early termination, get FIFO count from RBCL register */
974 fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);
976 /* Zero fifo count could mean 0 or 32 bytes available.
977 * If BIT5 of STAR is set then at least 1 byte is available.
979 if (!fifo_count && (read_reg(info,CHA+STAR) & BIT5))
980 fifo_count = 32;
981 } else
982 fifo_count = 32;
984 tty_buffer_request_room(tty, fifo_count);
985 /* Flush received async data to receive data buffer. */
986 while (fifo_count) {
987 data = read_reg(info, CHA + RXFIFO);
988 status = read_reg(info, CHA + RXFIFO);
989 fifo_count -= 2;
991 icount->rx++;
992 flag = TTY_NORMAL;
994 // if no frameing/crc error then save data
995 // BIT7:parity error
996 // BIT6:framing error
998 if (status & (BIT7 + BIT6)) {
999 if (status & BIT7)
1000 icount->parity++;
1001 else
1002 icount->frame++;
1004 /* discard char if tty control flags say so */
1005 if (status & info->ignore_status_mask)
1006 continue;
1008 status &= info->read_status_mask;
1010 if (status & BIT7)
1011 flag = TTY_PARITY;
1012 else if (status & BIT6)
1013 flag = TTY_FRAME;
1015 work += tty_insert_flip_char(tty, data, flag);
1017 issue_command(info, CHA, CMD_RXFIFO);
1019 if (debug_level >= DEBUG_LEVEL_ISR) {
1020 printk("%s(%d):rx_ready_async",
1021 __FILE__,__LINE__);
1022 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
1023 __FILE__,__LINE__,icount->rx,icount->brk,
1024 icount->parity,icount->frame,icount->overrun);
1027 if (work)
1028 tty_flip_buffer_push(tty);
1032 static void tx_done(MGSLPC_INFO *info)
1034 if (!info->tx_active)
1035 return;
1037 info->tx_active = 0;
1038 info->tx_aborting = 0;
1040 if (info->params.mode == MGSL_MODE_ASYNC)
1041 return;
1043 info->tx_count = info->tx_put = info->tx_get = 0;
1044 del_timer(&info->tx_timer);
1046 if (info->drop_rts_on_tx_done) {
1047 get_signals(info);
1048 if (info->serial_signals & SerialSignal_RTS) {
1049 info->serial_signals &= ~SerialSignal_RTS;
1050 set_signals(info);
1052 info->drop_rts_on_tx_done = 0;
1055 #if SYNCLINK_GENERIC_HDLC
1056 if (info->netcount)
1057 hdlcdev_tx_done(info);
1058 else
1059 #endif
1061 if (info->tty->stopped || info->tty->hw_stopped) {
1062 tx_stop(info);
1063 return;
1065 info->pending_bh |= BH_TRANSMIT;
1069 static void tx_ready(MGSLPC_INFO *info)
1071 unsigned char fifo_count = 32;
1072 int c;
1074 if (debug_level >= DEBUG_LEVEL_ISR)
1075 printk("%s(%d):tx_ready(%s)\n", __FILE__,__LINE__,info->device_name);
1077 if (info->params.mode == MGSL_MODE_HDLC) {
1078 if (!info->tx_active)
1079 return;
1080 } else {
1081 if (info->tty->stopped || info->tty->hw_stopped) {
1082 tx_stop(info);
1083 return;
1085 if (!info->tx_count)
1086 info->tx_active = 0;
1089 if (!info->tx_count)
1090 return;
1092 while (info->tx_count && fifo_count) {
1093 c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
1095 if (c == 1) {
1096 write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get));
1097 } else {
1098 write_reg16(info, CHA + TXFIFO,
1099 *((unsigned short*)(info->tx_buf + info->tx_get)));
1101 info->tx_count -= c;
1102 info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
1103 fifo_count -= c;
1106 if (info->params.mode == MGSL_MODE_ASYNC) {
1107 if (info->tx_count < WAKEUP_CHARS)
1108 info->pending_bh |= BH_TRANSMIT;
1109 issue_command(info, CHA, CMD_TXFIFO);
1110 } else {
1111 if (info->tx_count)
1112 issue_command(info, CHA, CMD_TXFIFO);
1113 else
1114 issue_command(info, CHA, CMD_TXFIFO + CMD_TXEOM);
1118 static void cts_change(MGSLPC_INFO *info)
1120 get_signals(info);
1121 if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1122 irq_disable(info, CHB, IRQ_CTS);
1123 info->icount.cts++;
1124 if (info->serial_signals & SerialSignal_CTS)
1125 info->input_signal_events.cts_up++;
1126 else
1127 info->input_signal_events.cts_down++;
1128 wake_up_interruptible(&info->status_event_wait_q);
1129 wake_up_interruptible(&info->event_wait_q);
1131 if (info->flags & ASYNC_CTS_FLOW) {
1132 if (info->tty->hw_stopped) {
1133 if (info->serial_signals & SerialSignal_CTS) {
1134 if (debug_level >= DEBUG_LEVEL_ISR)
1135 printk("CTS tx start...");
1136 if (info->tty)
1137 info->tty->hw_stopped = 0;
1138 tx_start(info);
1139 info->pending_bh |= BH_TRANSMIT;
1140 return;
1142 } else {
1143 if (!(info->serial_signals & SerialSignal_CTS)) {
1144 if (debug_level >= DEBUG_LEVEL_ISR)
1145 printk("CTS tx stop...");
1146 if (info->tty)
1147 info->tty->hw_stopped = 1;
1148 tx_stop(info);
1152 info->pending_bh |= BH_STATUS;
1155 static void dcd_change(MGSLPC_INFO *info)
1157 get_signals(info);
1158 if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1159 irq_disable(info, CHB, IRQ_DCD);
1160 info->icount.dcd++;
1161 if (info->serial_signals & SerialSignal_DCD) {
1162 info->input_signal_events.dcd_up++;
1164 else
1165 info->input_signal_events.dcd_down++;
1166 #if SYNCLINK_GENERIC_HDLC
1167 if (info->netcount) {
1168 if (info->serial_signals & SerialSignal_DCD)
1169 netif_carrier_on(info->netdev);
1170 else
1171 netif_carrier_off(info->netdev);
1173 #endif
1174 wake_up_interruptible(&info->status_event_wait_q);
1175 wake_up_interruptible(&info->event_wait_q);
1177 if (info->flags & ASYNC_CHECK_CD) {
1178 if (debug_level >= DEBUG_LEVEL_ISR)
1179 printk("%s CD now %s...", info->device_name,
1180 (info->serial_signals & SerialSignal_DCD) ? "on" : "off");
1181 if (info->serial_signals & SerialSignal_DCD)
1182 wake_up_interruptible(&info->open_wait);
1183 else {
1184 if (debug_level >= DEBUG_LEVEL_ISR)
1185 printk("doing serial hangup...");
1186 if (info->tty)
1187 tty_hangup(info->tty);
1190 info->pending_bh |= BH_STATUS;
1193 static void dsr_change(MGSLPC_INFO *info)
1195 get_signals(info);
1196 if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1197 port_irq_disable(info, PVR_DSR);
1198 info->icount.dsr++;
1199 if (info->serial_signals & SerialSignal_DSR)
1200 info->input_signal_events.dsr_up++;
1201 else
1202 info->input_signal_events.dsr_down++;
1203 wake_up_interruptible(&info->status_event_wait_q);
1204 wake_up_interruptible(&info->event_wait_q);
1205 info->pending_bh |= BH_STATUS;
1208 static void ri_change(MGSLPC_INFO *info)
1210 get_signals(info);
1211 if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
1212 port_irq_disable(info, PVR_RI);
1213 info->icount.rng++;
1214 if (info->serial_signals & SerialSignal_RI)
1215 info->input_signal_events.ri_up++;
1216 else
1217 info->input_signal_events.ri_down++;
1218 wake_up_interruptible(&info->status_event_wait_q);
1219 wake_up_interruptible(&info->event_wait_q);
1220 info->pending_bh |= BH_STATUS;
1223 /* Interrupt service routine entry point.
1225 * Arguments:
1227 * irq interrupt number that caused interrupt
1228 * dev_id device ID supplied during interrupt registration
1230 static irqreturn_t mgslpc_isr(int irq, void *dev_id)
1232 MGSLPC_INFO * info = (MGSLPC_INFO *)dev_id;
1233 unsigned short isr;
1234 unsigned char gis, pis;
1235 int count=0;
1237 if (debug_level >= DEBUG_LEVEL_ISR)
1238 printk("mgslpc_isr(%d) entry.\n", irq);
1239 if (!info)
1240 return IRQ_NONE;
1242 if (!(info->p_dev->_locked))
1243 return IRQ_HANDLED;
1245 spin_lock(&info->lock);
1247 while ((gis = read_reg(info, CHA + GIS))) {
1248 if (debug_level >= DEBUG_LEVEL_ISR)
1249 printk("mgslpc_isr %s gis=%04X\n", info->device_name,gis);
1251 if ((gis & 0x70) || count > 1000) {
1252 printk("synclink_cs:hardware failed or ejected\n");
1253 break;
1255 count++;
1257 if (gis & (BIT1 + BIT0)) {
1258 isr = read_reg16(info, CHB + ISR);
1259 if (isr & IRQ_DCD)
1260 dcd_change(info);
1261 if (isr & IRQ_CTS)
1262 cts_change(info);
1264 if (gis & (BIT3 + BIT2))
1266 isr = read_reg16(info, CHA + ISR);
1267 if (isr & IRQ_TIMER) {
1268 info->irq_occurred = 1;
1269 irq_disable(info, CHA, IRQ_TIMER);
1272 /* receive IRQs */
1273 if (isr & IRQ_EXITHUNT) {
1274 info->icount.exithunt++;
1275 wake_up_interruptible(&info->event_wait_q);
1277 if (isr & IRQ_BREAK_ON) {
1278 info->icount.brk++;
1279 if (info->flags & ASYNC_SAK)
1280 do_SAK(info->tty);
1282 if (isr & IRQ_RXTIME) {
1283 issue_command(info, CHA, CMD_RXFIFO_READ);
1285 if (isr & (IRQ_RXEOM + IRQ_RXFIFO)) {
1286 if (info->params.mode == MGSL_MODE_HDLC)
1287 rx_ready_hdlc(info, isr & IRQ_RXEOM);
1288 else
1289 rx_ready_async(info, isr & IRQ_RXEOM);
1292 /* transmit IRQs */
1293 if (isr & IRQ_UNDERRUN) {
1294 if (info->tx_aborting)
1295 info->icount.txabort++;
1296 else
1297 info->icount.txunder++;
1298 tx_done(info);
1300 else if (isr & IRQ_ALLSENT) {
1301 info->icount.txok++;
1302 tx_done(info);
1304 else if (isr & IRQ_TXFIFO)
1305 tx_ready(info);
1307 if (gis & BIT7) {
1308 pis = read_reg(info, CHA + PIS);
1309 if (pis & BIT1)
1310 dsr_change(info);
1311 if (pis & BIT2)
1312 ri_change(info);
1316 /* Request bottom half processing if there's something
1317 * for it to do and the bh is not already running
1320 if (info->pending_bh && !info->bh_running && !info->bh_requested) {
1321 if ( debug_level >= DEBUG_LEVEL_ISR )
1322 printk("%s(%d):%s queueing bh task.\n",
1323 __FILE__,__LINE__,info->device_name);
1324 schedule_work(&info->task);
1325 info->bh_requested = 1;
1328 spin_unlock(&info->lock);
1330 if (debug_level >= DEBUG_LEVEL_ISR)
1331 printk("%s(%d):mgslpc_isr(%d)exit.\n",
1332 __FILE__,__LINE__,irq);
1334 return IRQ_HANDLED;
1337 /* Initialize and start device.
1339 static int startup(MGSLPC_INFO * info)
1341 int retval = 0;
1343 if (debug_level >= DEBUG_LEVEL_INFO)
1344 printk("%s(%d):startup(%s)\n",__FILE__,__LINE__,info->device_name);
1346 if (info->flags & ASYNC_INITIALIZED)
1347 return 0;
1349 if (!info->tx_buf) {
1350 /* allocate a page of memory for a transmit buffer */
1351 info->tx_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
1352 if (!info->tx_buf) {
1353 printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
1354 __FILE__,__LINE__,info->device_name);
1355 return -ENOMEM;
1359 info->pending_bh = 0;
1361 memset(&info->icount, 0, sizeof(info->icount));
1363 setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
1365 /* Allocate and claim adapter resources */
1366 retval = claim_resources(info);
1368 /* perform existance check and diagnostics */
1369 if ( !retval )
1370 retval = adapter_test(info);
1372 if ( retval ) {
1373 if (capable(CAP_SYS_ADMIN) && info->tty)
1374 set_bit(TTY_IO_ERROR, &info->tty->flags);
1375 release_resources(info);
1376 return retval;
1379 /* program hardware for current parameters */
1380 mgslpc_change_params(info);
1382 if (info->tty)
1383 clear_bit(TTY_IO_ERROR, &info->tty->flags);
1385 info->flags |= ASYNC_INITIALIZED;
1387 return 0;
1390 /* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
1392 static void shutdown(MGSLPC_INFO * info)
1394 unsigned long flags;
1396 if (!(info->flags & ASYNC_INITIALIZED))
1397 return;
1399 if (debug_level >= DEBUG_LEVEL_INFO)
1400 printk("%s(%d):mgslpc_shutdown(%s)\n",
1401 __FILE__,__LINE__, info->device_name );
1403 /* clear status wait queue because status changes */
1404 /* can't happen after shutting down the hardware */
1405 wake_up_interruptible(&info->status_event_wait_q);
1406 wake_up_interruptible(&info->event_wait_q);
1408 del_timer_sync(&info->tx_timer);
1410 if (info->tx_buf) {
1411 free_page((unsigned long) info->tx_buf);
1412 info->tx_buf = NULL;
1415 spin_lock_irqsave(&info->lock,flags);
1417 rx_stop(info);
1418 tx_stop(info);
1420 /* TODO:disable interrupts instead of reset to preserve signal states */
1421 reset_device(info);
1423 if (!info->tty || info->tty->termios->c_cflag & HUPCL) {
1424 info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
1425 set_signals(info);
1428 spin_unlock_irqrestore(&info->lock,flags);
1430 release_resources(info);
1432 if (info->tty)
1433 set_bit(TTY_IO_ERROR, &info->tty->flags);
1435 info->flags &= ~ASYNC_INITIALIZED;
1438 static void mgslpc_program_hw(MGSLPC_INFO *info)
1440 unsigned long flags;
1442 spin_lock_irqsave(&info->lock,flags);
1444 rx_stop(info);
1445 tx_stop(info);
1446 info->tx_count = info->tx_put = info->tx_get = 0;
1448 if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
1449 hdlc_mode(info);
1450 else
1451 async_mode(info);
1453 set_signals(info);
1455 info->dcd_chkcount = 0;
1456 info->cts_chkcount = 0;
1457 info->ri_chkcount = 0;
1458 info->dsr_chkcount = 0;
1460 irq_enable(info, CHB, IRQ_DCD | IRQ_CTS);
1461 port_irq_enable(info, (unsigned char) PVR_DSR | PVR_RI);
1462 get_signals(info);
1464 if (info->netcount || info->tty->termios->c_cflag & CREAD)
1465 rx_start(info);
1467 spin_unlock_irqrestore(&info->lock,flags);
1470 /* Reconfigure adapter based on new parameters
1472 static void mgslpc_change_params(MGSLPC_INFO *info)
1474 unsigned cflag;
1475 int bits_per_char;
1477 if (!info->tty || !info->tty->termios)
1478 return;
1480 if (debug_level >= DEBUG_LEVEL_INFO)
1481 printk("%s(%d):mgslpc_change_params(%s)\n",
1482 __FILE__,__LINE__, info->device_name );
1484 cflag = info->tty->termios->c_cflag;
1486 /* if B0 rate (hangup) specified then negate DTR and RTS */
1487 /* otherwise assert DTR and RTS */
1488 if (cflag & CBAUD)
1489 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
1490 else
1491 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
1493 /* byte size and parity */
1495 switch (cflag & CSIZE) {
1496 case CS5: info->params.data_bits = 5; break;
1497 case CS6: info->params.data_bits = 6; break;
1498 case CS7: info->params.data_bits = 7; break;
1499 case CS8: info->params.data_bits = 8; break;
1500 default: info->params.data_bits = 7; break;
1503 if (cflag & CSTOPB)
1504 info->params.stop_bits = 2;
1505 else
1506 info->params.stop_bits = 1;
1508 info->params.parity = ASYNC_PARITY_NONE;
1509 if (cflag & PARENB) {
1510 if (cflag & PARODD)
1511 info->params.parity = ASYNC_PARITY_ODD;
1512 else
1513 info->params.parity = ASYNC_PARITY_EVEN;
1514 #ifdef CMSPAR
1515 if (cflag & CMSPAR)
1516 info->params.parity = ASYNC_PARITY_SPACE;
1517 #endif
1520 /* calculate number of jiffies to transmit a full
1521 * FIFO (32 bytes) at specified data rate
1523 bits_per_char = info->params.data_bits +
1524 info->params.stop_bits + 1;
1526 /* if port data rate is set to 460800 or less then
1527 * allow tty settings to override, otherwise keep the
1528 * current data rate.
1530 if (info->params.data_rate <= 460800) {
1531 info->params.data_rate = tty_get_baud_rate(info->tty);
1534 if ( info->params.data_rate ) {
1535 info->timeout = (32*HZ*bits_per_char) /
1536 info->params.data_rate;
1538 info->timeout += HZ/50; /* Add .02 seconds of slop */
1540 if (cflag & CRTSCTS)
1541 info->flags |= ASYNC_CTS_FLOW;
1542 else
1543 info->flags &= ~ASYNC_CTS_FLOW;
1545 if (cflag & CLOCAL)
1546 info->flags &= ~ASYNC_CHECK_CD;
1547 else
1548 info->flags |= ASYNC_CHECK_CD;
1550 /* process tty input control flags */
1552 info->read_status_mask = 0;
1553 if (I_INPCK(info->tty))
1554 info->read_status_mask |= BIT7 | BIT6;
1555 if (I_IGNPAR(info->tty))
1556 info->ignore_status_mask |= BIT7 | BIT6;
1558 mgslpc_program_hw(info);
1561 /* Add a character to the transmit buffer
1563 static void mgslpc_put_char(struct tty_struct *tty, unsigned char ch)
1565 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1566 unsigned long flags;
1568 if (debug_level >= DEBUG_LEVEL_INFO) {
1569 printk( "%s(%d):mgslpc_put_char(%d) on %s\n",
1570 __FILE__,__LINE__,ch,info->device_name);
1573 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_put_char"))
1574 return;
1576 if (!info->tx_buf)
1577 return;
1579 spin_lock_irqsave(&info->lock,flags);
1581 if (info->params.mode == MGSL_MODE_ASYNC || !info->tx_active) {
1582 if (info->tx_count < TXBUFSIZE - 1) {
1583 info->tx_buf[info->tx_put++] = ch;
1584 info->tx_put &= TXBUFSIZE-1;
1585 info->tx_count++;
1589 spin_unlock_irqrestore(&info->lock,flags);
1592 /* Enable transmitter so remaining characters in the
1593 * transmit buffer are sent.
1595 static void mgslpc_flush_chars(struct tty_struct *tty)
1597 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1598 unsigned long flags;
1600 if (debug_level >= DEBUG_LEVEL_INFO)
1601 printk( "%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
1602 __FILE__,__LINE__,info->device_name,info->tx_count);
1604 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_chars"))
1605 return;
1607 if (info->tx_count <= 0 || tty->stopped ||
1608 tty->hw_stopped || !info->tx_buf)
1609 return;
1611 if (debug_level >= DEBUG_LEVEL_INFO)
1612 printk( "%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
1613 __FILE__,__LINE__,info->device_name);
1615 spin_lock_irqsave(&info->lock,flags);
1616 if (!info->tx_active)
1617 tx_start(info);
1618 spin_unlock_irqrestore(&info->lock,flags);
1621 /* Send a block of data
1623 * Arguments:
1625 * tty pointer to tty information structure
1626 * buf pointer to buffer containing send data
1627 * count size of send data in bytes
1629 * Returns: number of characters written
1631 static int mgslpc_write(struct tty_struct * tty,
1632 const unsigned char *buf, int count)
1634 int c, ret = 0;
1635 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1636 unsigned long flags;
1638 if (debug_level >= DEBUG_LEVEL_INFO)
1639 printk( "%s(%d):mgslpc_write(%s) count=%d\n",
1640 __FILE__,__LINE__,info->device_name,count);
1642 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write") ||
1643 !info->tx_buf)
1644 goto cleanup;
1646 if (info->params.mode == MGSL_MODE_HDLC) {
1647 if (count > TXBUFSIZE) {
1648 ret = -EIO;
1649 goto cleanup;
1651 if (info->tx_active)
1652 goto cleanup;
1653 else if (info->tx_count)
1654 goto start;
1657 for (;;) {
1658 c = min(count,
1659 min(TXBUFSIZE - info->tx_count - 1,
1660 TXBUFSIZE - info->tx_put));
1661 if (c <= 0)
1662 break;
1664 memcpy(info->tx_buf + info->tx_put, buf, c);
1666 spin_lock_irqsave(&info->lock,flags);
1667 info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
1668 info->tx_count += c;
1669 spin_unlock_irqrestore(&info->lock,flags);
1671 buf += c;
1672 count -= c;
1673 ret += c;
1675 start:
1676 if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
1677 spin_lock_irqsave(&info->lock,flags);
1678 if (!info->tx_active)
1679 tx_start(info);
1680 spin_unlock_irqrestore(&info->lock,flags);
1682 cleanup:
1683 if (debug_level >= DEBUG_LEVEL_INFO)
1684 printk( "%s(%d):mgslpc_write(%s) returning=%d\n",
1685 __FILE__,__LINE__,info->device_name,ret);
1686 return ret;
1689 /* Return the count of free bytes in transmit buffer
1691 static int mgslpc_write_room(struct tty_struct *tty)
1693 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1694 int ret;
1696 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write_room"))
1697 return 0;
1699 if (info->params.mode == MGSL_MODE_HDLC) {
1700 /* HDLC (frame oriented) mode */
1701 if (info->tx_active)
1702 return 0;
1703 else
1704 return HDLC_MAX_FRAME_SIZE;
1705 } else {
1706 ret = TXBUFSIZE - info->tx_count - 1;
1707 if (ret < 0)
1708 ret = 0;
1711 if (debug_level >= DEBUG_LEVEL_INFO)
1712 printk("%s(%d):mgslpc_write_room(%s)=%d\n",
1713 __FILE__,__LINE__, info->device_name, ret);
1714 return ret;
1717 /* Return the count of bytes in transmit buffer
1719 static int mgslpc_chars_in_buffer(struct tty_struct *tty)
1721 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1722 int rc;
1724 if (debug_level >= DEBUG_LEVEL_INFO)
1725 printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
1726 __FILE__,__LINE__, info->device_name );
1728 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_chars_in_buffer"))
1729 return 0;
1731 if (info->params.mode == MGSL_MODE_HDLC)
1732 rc = info->tx_active ? info->max_frame_size : 0;
1733 else
1734 rc = info->tx_count;
1736 if (debug_level >= DEBUG_LEVEL_INFO)
1737 printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
1738 __FILE__,__LINE__, info->device_name, rc);
1740 return rc;
1743 /* Discard all data in the send buffer
1745 static void mgslpc_flush_buffer(struct tty_struct *tty)
1747 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1748 unsigned long flags;
1750 if (debug_level >= DEBUG_LEVEL_INFO)
1751 printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
1752 __FILE__,__LINE__, info->device_name );
1754 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_buffer"))
1755 return;
1757 spin_lock_irqsave(&info->lock,flags);
1758 info->tx_count = info->tx_put = info->tx_get = 0;
1759 del_timer(&info->tx_timer);
1760 spin_unlock_irqrestore(&info->lock,flags);
1762 wake_up_interruptible(&tty->write_wait);
1763 tty_wakeup(tty);
1766 /* Send a high-priority XON/XOFF character
1768 static void mgslpc_send_xchar(struct tty_struct *tty, char ch)
1770 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1771 unsigned long flags;
1773 if (debug_level >= DEBUG_LEVEL_INFO)
1774 printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
1775 __FILE__,__LINE__, info->device_name, ch );
1777 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_send_xchar"))
1778 return;
1780 info->x_char = ch;
1781 if (ch) {
1782 spin_lock_irqsave(&info->lock,flags);
1783 if (!info->tx_enabled)
1784 tx_start(info);
1785 spin_unlock_irqrestore(&info->lock,flags);
1789 /* Signal remote device to throttle send data (our receive data)
1791 static void mgslpc_throttle(struct tty_struct * tty)
1793 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1794 unsigned long flags;
1796 if (debug_level >= DEBUG_LEVEL_INFO)
1797 printk("%s(%d):mgslpc_throttle(%s) entry\n",
1798 __FILE__,__LINE__, info->device_name );
1800 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_throttle"))
1801 return;
1803 if (I_IXOFF(tty))
1804 mgslpc_send_xchar(tty, STOP_CHAR(tty));
1806 if (tty->termios->c_cflag & CRTSCTS) {
1807 spin_lock_irqsave(&info->lock,flags);
1808 info->serial_signals &= ~SerialSignal_RTS;
1809 set_signals(info);
1810 spin_unlock_irqrestore(&info->lock,flags);
1814 /* Signal remote device to stop throttling send data (our receive data)
1816 static void mgslpc_unthrottle(struct tty_struct * tty)
1818 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
1819 unsigned long flags;
1821 if (debug_level >= DEBUG_LEVEL_INFO)
1822 printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
1823 __FILE__,__LINE__, info->device_name );
1825 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_unthrottle"))
1826 return;
1828 if (I_IXOFF(tty)) {
1829 if (info->x_char)
1830 info->x_char = 0;
1831 else
1832 mgslpc_send_xchar(tty, START_CHAR(tty));
1835 if (tty->termios->c_cflag & CRTSCTS) {
1836 spin_lock_irqsave(&info->lock,flags);
1837 info->serial_signals |= SerialSignal_RTS;
1838 set_signals(info);
1839 spin_unlock_irqrestore(&info->lock,flags);
1843 /* get the current serial statistics
1845 static int get_stats(MGSLPC_INFO * info, struct mgsl_icount __user *user_icount)
1847 int err;
1848 if (debug_level >= DEBUG_LEVEL_INFO)
1849 printk("get_params(%s)\n", info->device_name);
1850 if (!user_icount) {
1851 memset(&info->icount, 0, sizeof(info->icount));
1852 } else {
1853 COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
1854 if (err)
1855 return -EFAULT;
1857 return 0;
1860 /* get the current serial parameters
1862 static int get_params(MGSLPC_INFO * info, MGSL_PARAMS __user *user_params)
1864 int err;
1865 if (debug_level >= DEBUG_LEVEL_INFO)
1866 printk("get_params(%s)\n", info->device_name);
1867 COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
1868 if (err)
1869 return -EFAULT;
1870 return 0;
1873 /* set the serial parameters
1875 * Arguments:
1877 * info pointer to device instance data
1878 * new_params user buffer containing new serial params
1880 * Returns: 0 if success, otherwise error code
1882 static int set_params(MGSLPC_INFO * info, MGSL_PARAMS __user *new_params)
1884 unsigned long flags;
1885 MGSL_PARAMS tmp_params;
1886 int err;
1888 if (debug_level >= DEBUG_LEVEL_INFO)
1889 printk("%s(%d):set_params %s\n", __FILE__,__LINE__,
1890 info->device_name );
1891 COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
1892 if (err) {
1893 if ( debug_level >= DEBUG_LEVEL_INFO )
1894 printk( "%s(%d):set_params(%s) user buffer copy failed\n",
1895 __FILE__,__LINE__,info->device_name);
1896 return -EFAULT;
1899 spin_lock_irqsave(&info->lock,flags);
1900 memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
1901 spin_unlock_irqrestore(&info->lock,flags);
1903 mgslpc_change_params(info);
1905 return 0;
1908 static int get_txidle(MGSLPC_INFO * info, int __user *idle_mode)
1910 int err;
1911 if (debug_level >= DEBUG_LEVEL_INFO)
1912 printk("get_txidle(%s)=%d\n", info->device_name, info->idle_mode);
1913 COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
1914 if (err)
1915 return -EFAULT;
1916 return 0;
1919 static int set_txidle(MGSLPC_INFO * info, int idle_mode)
1921 unsigned long flags;
1922 if (debug_level >= DEBUG_LEVEL_INFO)
1923 printk("set_txidle(%s,%d)\n", info->device_name, idle_mode);
1924 spin_lock_irqsave(&info->lock,flags);
1925 info->idle_mode = idle_mode;
1926 tx_set_idle(info);
1927 spin_unlock_irqrestore(&info->lock,flags);
1928 return 0;
1931 static int get_interface(MGSLPC_INFO * info, int __user *if_mode)
1933 int err;
1934 if (debug_level >= DEBUG_LEVEL_INFO)
1935 printk("get_interface(%s)=%d\n", info->device_name, info->if_mode);
1936 COPY_TO_USER(err,if_mode, &info->if_mode, sizeof(int));
1937 if (err)
1938 return -EFAULT;
1939 return 0;
1942 static int set_interface(MGSLPC_INFO * info, int if_mode)
1944 unsigned long flags;
1945 unsigned char val;
1946 if (debug_level >= DEBUG_LEVEL_INFO)
1947 printk("set_interface(%s,%d)\n", info->device_name, if_mode);
1948 spin_lock_irqsave(&info->lock,flags);
1949 info->if_mode = if_mode;
1951 val = read_reg(info, PVR) & 0x0f;
1952 switch (info->if_mode)
1954 case MGSL_INTERFACE_RS232: val |= PVR_RS232; break;
1955 case MGSL_INTERFACE_V35: val |= PVR_V35; break;
1956 case MGSL_INTERFACE_RS422: val |= PVR_RS422; break;
1958 write_reg(info, PVR, val);
1960 spin_unlock_irqrestore(&info->lock,flags);
1961 return 0;
1964 static int set_txenable(MGSLPC_INFO * info, int enable)
1966 unsigned long flags;
1968 if (debug_level >= DEBUG_LEVEL_INFO)
1969 printk("set_txenable(%s,%d)\n", info->device_name, enable);
1971 spin_lock_irqsave(&info->lock,flags);
1972 if (enable) {
1973 if (!info->tx_enabled)
1974 tx_start(info);
1975 } else {
1976 if (info->tx_enabled)
1977 tx_stop(info);
1979 spin_unlock_irqrestore(&info->lock,flags);
1980 return 0;
1983 static int tx_abort(MGSLPC_INFO * info)
1985 unsigned long flags;
1987 if (debug_level >= DEBUG_LEVEL_INFO)
1988 printk("tx_abort(%s)\n", info->device_name);
1990 spin_lock_irqsave(&info->lock,flags);
1991 if (info->tx_active && info->tx_count &&
1992 info->params.mode == MGSL_MODE_HDLC) {
1993 /* clear data count so FIFO is not filled on next IRQ.
1994 * This results in underrun and abort transmission.
1996 info->tx_count = info->tx_put = info->tx_get = 0;
1997 info->tx_aborting = TRUE;
1999 spin_unlock_irqrestore(&info->lock,flags);
2000 return 0;
2003 static int set_rxenable(MGSLPC_INFO * info, int enable)
2005 unsigned long flags;
2007 if (debug_level >= DEBUG_LEVEL_INFO)
2008 printk("set_rxenable(%s,%d)\n", info->device_name, enable);
2010 spin_lock_irqsave(&info->lock,flags);
2011 if (enable) {
2012 if (!info->rx_enabled)
2013 rx_start(info);
2014 } else {
2015 if (info->rx_enabled)
2016 rx_stop(info);
2018 spin_unlock_irqrestore(&info->lock,flags);
2019 return 0;
2022 /* wait for specified event to occur
2024 * Arguments: info pointer to device instance data
2025 * mask pointer to bitmask of events to wait for
2026 * Return Value: 0 if successful and bit mask updated with
2027 * of events triggerred,
2028 * otherwise error code
2030 static int wait_events(MGSLPC_INFO * info, int __user *mask_ptr)
2032 unsigned long flags;
2033 int s;
2034 int rc=0;
2035 struct mgsl_icount cprev, cnow;
2036 int events;
2037 int mask;
2038 struct _input_signal_events oldsigs, newsigs;
2039 DECLARE_WAITQUEUE(wait, current);
2041 COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
2042 if (rc)
2043 return -EFAULT;
2045 if (debug_level >= DEBUG_LEVEL_INFO)
2046 printk("wait_events(%s,%d)\n", info->device_name, mask);
2048 spin_lock_irqsave(&info->lock,flags);
2050 /* return immediately if state matches requested events */
2051 get_signals(info);
2052 s = info->serial_signals;
2053 events = mask &
2054 ( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
2055 ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
2056 ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
2057 ((s & SerialSignal_RI) ? MgslEvent_RiActive :MgslEvent_RiInactive) );
2058 if (events) {
2059 spin_unlock_irqrestore(&info->lock,flags);
2060 goto exit;
2063 /* save current irq counts */
2064 cprev = info->icount;
2065 oldsigs = info->input_signal_events;
2067 if ((info->params.mode == MGSL_MODE_HDLC) &&
2068 (mask & MgslEvent_ExitHuntMode))
2069 irq_enable(info, CHA, IRQ_EXITHUNT);
2071 set_current_state(TASK_INTERRUPTIBLE);
2072 add_wait_queue(&info->event_wait_q, &wait);
2074 spin_unlock_irqrestore(&info->lock,flags);
2077 for(;;) {
2078 schedule();
2079 if (signal_pending(current)) {
2080 rc = -ERESTARTSYS;
2081 break;
2084 /* get current irq counts */
2085 spin_lock_irqsave(&info->lock,flags);
2086 cnow = info->icount;
2087 newsigs = info->input_signal_events;
2088 set_current_state(TASK_INTERRUPTIBLE);
2089 spin_unlock_irqrestore(&info->lock,flags);
2091 /* if no change, wait aborted for some reason */
2092 if (newsigs.dsr_up == oldsigs.dsr_up &&
2093 newsigs.dsr_down == oldsigs.dsr_down &&
2094 newsigs.dcd_up == oldsigs.dcd_up &&
2095 newsigs.dcd_down == oldsigs.dcd_down &&
2096 newsigs.cts_up == oldsigs.cts_up &&
2097 newsigs.cts_down == oldsigs.cts_down &&
2098 newsigs.ri_up == oldsigs.ri_up &&
2099 newsigs.ri_down == oldsigs.ri_down &&
2100 cnow.exithunt == cprev.exithunt &&
2101 cnow.rxidle == cprev.rxidle) {
2102 rc = -EIO;
2103 break;
2106 events = mask &
2107 ( (newsigs.dsr_up != oldsigs.dsr_up ? MgslEvent_DsrActive:0) +
2108 (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
2109 (newsigs.dcd_up != oldsigs.dcd_up ? MgslEvent_DcdActive:0) +
2110 (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
2111 (newsigs.cts_up != oldsigs.cts_up ? MgslEvent_CtsActive:0) +
2112 (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
2113 (newsigs.ri_up != oldsigs.ri_up ? MgslEvent_RiActive:0) +
2114 (newsigs.ri_down != oldsigs.ri_down ? MgslEvent_RiInactive:0) +
2115 (cnow.exithunt != cprev.exithunt ? MgslEvent_ExitHuntMode:0) +
2116 (cnow.rxidle != cprev.rxidle ? MgslEvent_IdleReceived:0) );
2117 if (events)
2118 break;
2120 cprev = cnow;
2121 oldsigs = newsigs;
2124 remove_wait_queue(&info->event_wait_q, &wait);
2125 set_current_state(TASK_RUNNING);
2127 if (mask & MgslEvent_ExitHuntMode) {
2128 spin_lock_irqsave(&info->lock,flags);
2129 if (!waitqueue_active(&info->event_wait_q))
2130 irq_disable(info, CHA, IRQ_EXITHUNT);
2131 spin_unlock_irqrestore(&info->lock,flags);
2133 exit:
2134 if (rc == 0)
2135 PUT_USER(rc, events, mask_ptr);
2136 return rc;
2139 static int modem_input_wait(MGSLPC_INFO *info,int arg)
2141 unsigned long flags;
2142 int rc;
2143 struct mgsl_icount cprev, cnow;
2144 DECLARE_WAITQUEUE(wait, current);
2146 /* save current irq counts */
2147 spin_lock_irqsave(&info->lock,flags);
2148 cprev = info->icount;
2149 add_wait_queue(&info->status_event_wait_q, &wait);
2150 set_current_state(TASK_INTERRUPTIBLE);
2151 spin_unlock_irqrestore(&info->lock,flags);
2153 for(;;) {
2154 schedule();
2155 if (signal_pending(current)) {
2156 rc = -ERESTARTSYS;
2157 break;
2160 /* get new irq counts */
2161 spin_lock_irqsave(&info->lock,flags);
2162 cnow = info->icount;
2163 set_current_state(TASK_INTERRUPTIBLE);
2164 spin_unlock_irqrestore(&info->lock,flags);
2166 /* if no change, wait aborted for some reason */
2167 if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
2168 cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
2169 rc = -EIO;
2170 break;
2173 /* check for change in caller specified modem input */
2174 if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
2175 (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
2176 (arg & TIOCM_CD && cnow.dcd != cprev.dcd) ||
2177 (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
2178 rc = 0;
2179 break;
2182 cprev = cnow;
2184 remove_wait_queue(&info->status_event_wait_q, &wait);
2185 set_current_state(TASK_RUNNING);
2186 return rc;
2189 /* return the state of the serial control and status signals
2191 static int tiocmget(struct tty_struct *tty, struct file *file)
2193 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2194 unsigned int result;
2195 unsigned long flags;
2197 spin_lock_irqsave(&info->lock,flags);
2198 get_signals(info);
2199 spin_unlock_irqrestore(&info->lock,flags);
2201 result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
2202 ((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
2203 ((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
2204 ((info->serial_signals & SerialSignal_RI) ? TIOCM_RNG:0) +
2205 ((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
2206 ((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);
2208 if (debug_level >= DEBUG_LEVEL_INFO)
2209 printk("%s(%d):%s tiocmget() value=%08X\n",
2210 __FILE__,__LINE__, info->device_name, result );
2211 return result;
2214 /* set modem control signals (DTR/RTS)
2216 static int tiocmset(struct tty_struct *tty, struct file *file,
2217 unsigned int set, unsigned int clear)
2219 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2220 unsigned long flags;
2222 if (debug_level >= DEBUG_LEVEL_INFO)
2223 printk("%s(%d):%s tiocmset(%x,%x)\n",
2224 __FILE__,__LINE__,info->device_name, set, clear);
2226 if (set & TIOCM_RTS)
2227 info->serial_signals |= SerialSignal_RTS;
2228 if (set & TIOCM_DTR)
2229 info->serial_signals |= SerialSignal_DTR;
2230 if (clear & TIOCM_RTS)
2231 info->serial_signals &= ~SerialSignal_RTS;
2232 if (clear & TIOCM_DTR)
2233 info->serial_signals &= ~SerialSignal_DTR;
2235 spin_lock_irqsave(&info->lock,flags);
2236 set_signals(info);
2237 spin_unlock_irqrestore(&info->lock,flags);
2239 return 0;
2242 /* Set or clear transmit break condition
2244 * Arguments: tty pointer to tty instance data
2245 * break_state -1=set break condition, 0=clear
2247 static void mgslpc_break(struct tty_struct *tty, int break_state)
2249 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2250 unsigned long flags;
2252 if (debug_level >= DEBUG_LEVEL_INFO)
2253 printk("%s(%d):mgslpc_break(%s,%d)\n",
2254 __FILE__,__LINE__, info->device_name, break_state);
2256 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_break"))
2257 return;
2259 spin_lock_irqsave(&info->lock,flags);
2260 if (break_state == -1)
2261 set_reg_bits(info, CHA+DAFO, BIT6);
2262 else
2263 clear_reg_bits(info, CHA+DAFO, BIT6);
2264 spin_unlock_irqrestore(&info->lock,flags);
2267 /* Service an IOCTL request
2269 * Arguments:
2271 * tty pointer to tty instance data
2272 * file pointer to associated file object for device
2273 * cmd IOCTL command code
2274 * arg command argument/context
2276 * Return Value: 0 if success, otherwise error code
2278 static int mgslpc_ioctl(struct tty_struct *tty, struct file * file,
2279 unsigned int cmd, unsigned long arg)
2281 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2283 if (debug_level >= DEBUG_LEVEL_INFO)
2284 printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__,__LINE__,
2285 info->device_name, cmd );
2287 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_ioctl"))
2288 return -ENODEV;
2290 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
2291 (cmd != TIOCMIWAIT) && (cmd != TIOCGICOUNT)) {
2292 if (tty->flags & (1 << TTY_IO_ERROR))
2293 return -EIO;
2296 return ioctl_common(info, cmd, arg);
2299 static int ioctl_common(MGSLPC_INFO *info, unsigned int cmd, unsigned long arg)
2301 int error;
2302 struct mgsl_icount cnow; /* kernel counter temps */
2303 struct serial_icounter_struct __user *p_cuser; /* user space */
2304 void __user *argp = (void __user *)arg;
2305 unsigned long flags;
2307 switch (cmd) {
2308 case MGSL_IOCGPARAMS:
2309 return get_params(info, argp);
2310 case MGSL_IOCSPARAMS:
2311 return set_params(info, argp);
2312 case MGSL_IOCGTXIDLE:
2313 return get_txidle(info, argp);
2314 case MGSL_IOCSTXIDLE:
2315 return set_txidle(info, (int)arg);
2316 case MGSL_IOCGIF:
2317 return get_interface(info, argp);
2318 case MGSL_IOCSIF:
2319 return set_interface(info,(int)arg);
2320 case MGSL_IOCTXENABLE:
2321 return set_txenable(info,(int)arg);
2322 case MGSL_IOCRXENABLE:
2323 return set_rxenable(info,(int)arg);
2324 case MGSL_IOCTXABORT:
2325 return tx_abort(info);
2326 case MGSL_IOCGSTATS:
2327 return get_stats(info, argp);
2328 case MGSL_IOCWAITEVENT:
2329 return wait_events(info, argp);
2330 case TIOCMIWAIT:
2331 return modem_input_wait(info,(int)arg);
2332 case TIOCGICOUNT:
2333 spin_lock_irqsave(&info->lock,flags);
2334 cnow = info->icount;
2335 spin_unlock_irqrestore(&info->lock,flags);
2336 p_cuser = argp;
2337 PUT_USER(error,cnow.cts, &p_cuser->cts);
2338 if (error) return error;
2339 PUT_USER(error,cnow.dsr, &p_cuser->dsr);
2340 if (error) return error;
2341 PUT_USER(error,cnow.rng, &p_cuser->rng);
2342 if (error) return error;
2343 PUT_USER(error,cnow.dcd, &p_cuser->dcd);
2344 if (error) return error;
2345 PUT_USER(error,cnow.rx, &p_cuser->rx);
2346 if (error) return error;
2347 PUT_USER(error,cnow.tx, &p_cuser->tx);
2348 if (error) return error;
2349 PUT_USER(error,cnow.frame, &p_cuser->frame);
2350 if (error) return error;
2351 PUT_USER(error,cnow.overrun, &p_cuser->overrun);
2352 if (error) return error;
2353 PUT_USER(error,cnow.parity, &p_cuser->parity);
2354 if (error) return error;
2355 PUT_USER(error,cnow.brk, &p_cuser->brk);
2356 if (error) return error;
2357 PUT_USER(error,cnow.buf_overrun, &p_cuser->buf_overrun);
2358 if (error) return error;
2359 return 0;
2360 default:
2361 return -ENOIOCTLCMD;
2363 return 0;
2366 /* Set new termios settings
2368 * Arguments:
2370 * tty pointer to tty structure
2371 * termios pointer to buffer to hold returned old termios
2373 static void mgslpc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
2375 MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
2376 unsigned long flags;
2378 if (debug_level >= DEBUG_LEVEL_INFO)
2379 printk("%s(%d):mgslpc_set_termios %s\n", __FILE__,__LINE__,
2380 tty->driver->name );
2382 /* just return if nothing has changed */
2383 if ((tty->termios->c_cflag == old_termios->c_cflag)
2384 && (RELEVANT_IFLAG(tty->termios->c_iflag)
2385 == RELEVANT_IFLAG(old_termios->c_iflag)))
2386 return;
2388 mgslpc_change_params(info);
2390 /* Handle transition to B0 status */
2391 if (old_termios->c_cflag & CBAUD &&
2392 !(tty->termios->c_cflag & CBAUD)) {
2393 info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
2394 spin_lock_irqsave(&info->lock,flags);
2395 set_signals(info);
2396 spin_unlock_irqrestore(&info->lock,flags);
2399 /* Handle transition away from B0 status */
2400 if (!(old_termios->c_cflag & CBAUD) &&
2401 tty->termios->c_cflag & CBAUD) {
2402 info->serial_signals |= SerialSignal_DTR;
2403 if (!(tty->termios->c_cflag & CRTSCTS) ||
2404 !test_bit(TTY_THROTTLED, &tty->flags)) {
2405 info->serial_signals |= SerialSignal_RTS;
2407 spin_lock_irqsave(&info->lock,flags);
2408 set_signals(info);
2409 spin_unlock_irqrestore(&info->lock,flags);
2412 /* Handle turning off CRTSCTS */
2413 if (old_termios->c_cflag & CRTSCTS &&
2414 !(tty->termios->c_cflag & CRTSCTS)) {
2415 tty->hw_stopped = 0;
2416 tx_release(tty);
2420 static void mgslpc_close(struct tty_struct *tty, struct file * filp)
2422 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2424 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_close"))
2425 return;
2427 if (debug_level >= DEBUG_LEVEL_INFO)
2428 printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
2429 __FILE__,__LINE__, info->device_name, info->count);
2431 if (!info->count)
2432 return;
2434 if (tty_hung_up_p(filp))
2435 goto cleanup;
2437 if ((tty->count == 1) && (info->count != 1)) {
2439 * tty->count is 1 and the tty structure will be freed.
2440 * info->count should be one in this case.
2441 * if it's not, correct it so that the port is shutdown.
2443 printk("mgslpc_close: bad refcount; tty->count is 1, "
2444 "info->count is %d\n", info->count);
2445 info->count = 1;
2448 info->count--;
2450 /* if at least one open remaining, leave hardware active */
2451 if (info->count)
2452 goto cleanup;
2454 info->flags |= ASYNC_CLOSING;
2456 /* set tty->closing to notify line discipline to
2457 * only process XON/XOFF characters. Only the N_TTY
2458 * discipline appears to use this (ppp does not).
2460 tty->closing = 1;
2462 /* wait for transmit data to clear all layers */
2464 if (info->closing_wait != ASYNC_CLOSING_WAIT_NONE) {
2465 if (debug_level >= DEBUG_LEVEL_INFO)
2466 printk("%s(%d):mgslpc_close(%s) calling tty_wait_until_sent\n",
2467 __FILE__,__LINE__, info->device_name );
2468 tty_wait_until_sent(tty, info->closing_wait);
2471 if (info->flags & ASYNC_INITIALIZED)
2472 mgslpc_wait_until_sent(tty, info->timeout);
2474 if (tty->driver->flush_buffer)
2475 tty->driver->flush_buffer(tty);
2477 ldisc_flush_buffer(tty);
2479 shutdown(info);
2481 tty->closing = 0;
2482 info->tty = NULL;
2484 if (info->blocked_open) {
2485 if (info->close_delay) {
2486 msleep_interruptible(jiffies_to_msecs(info->close_delay));
2488 wake_up_interruptible(&info->open_wait);
2491 info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
2493 wake_up_interruptible(&info->close_wait);
2495 cleanup:
2496 if (debug_level >= DEBUG_LEVEL_INFO)
2497 printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__,__LINE__,
2498 tty->driver->name, info->count);
2501 /* Wait until the transmitter is empty.
2503 static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout)
2505 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2506 unsigned long orig_jiffies, char_time;
2508 if (!info )
2509 return;
2511 if (debug_level >= DEBUG_LEVEL_INFO)
2512 printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
2513 __FILE__,__LINE__, info->device_name );
2515 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_wait_until_sent"))
2516 return;
2518 if (!(info->flags & ASYNC_INITIALIZED))
2519 goto exit;
2521 orig_jiffies = jiffies;
2523 /* Set check interval to 1/5 of estimated time to
2524 * send a character, and make it at least 1. The check
2525 * interval should also be less than the timeout.
2526 * Note: use tight timings here to satisfy the NIST-PCTS.
2529 if ( info->params.data_rate ) {
2530 char_time = info->timeout/(32 * 5);
2531 if (!char_time)
2532 char_time++;
2533 } else
2534 char_time = 1;
2536 if (timeout)
2537 char_time = min_t(unsigned long, char_time, timeout);
2539 if (info->params.mode == MGSL_MODE_HDLC) {
2540 while (info->tx_active) {
2541 msleep_interruptible(jiffies_to_msecs(char_time));
2542 if (signal_pending(current))
2543 break;
2544 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2545 break;
2547 } else {
2548 while ((info->tx_count || info->tx_active) &&
2549 info->tx_enabled) {
2550 msleep_interruptible(jiffies_to_msecs(char_time));
2551 if (signal_pending(current))
2552 break;
2553 if (timeout && time_after(jiffies, orig_jiffies + timeout))
2554 break;
2558 exit:
2559 if (debug_level >= DEBUG_LEVEL_INFO)
2560 printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
2561 __FILE__,__LINE__, info->device_name );
2564 /* Called by tty_hangup() when a hangup is signaled.
2565 * This is the same as closing all open files for the port.
2567 static void mgslpc_hangup(struct tty_struct *tty)
2569 MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2571 if (debug_level >= DEBUG_LEVEL_INFO)
2572 printk("%s(%d):mgslpc_hangup(%s)\n",
2573 __FILE__,__LINE__, info->device_name );
2575 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_hangup"))
2576 return;
2578 mgslpc_flush_buffer(tty);
2579 shutdown(info);
2581 info->count = 0;
2582 info->flags &= ~ASYNC_NORMAL_ACTIVE;
2583 info->tty = NULL;
2585 wake_up_interruptible(&info->open_wait);
2588 /* Block the current process until the specified port
2589 * is ready to be opened.
2591 static int block_til_ready(struct tty_struct *tty, struct file *filp,
2592 MGSLPC_INFO *info)
2594 DECLARE_WAITQUEUE(wait, current);
2595 int retval;
2596 int do_clocal = 0, extra_count = 0;
2597 unsigned long flags;
2599 if (debug_level >= DEBUG_LEVEL_INFO)
2600 printk("%s(%d):block_til_ready on %s\n",
2601 __FILE__,__LINE__, tty->driver->name );
2603 if (filp->f_flags & O_NONBLOCK || tty->flags & (1 << TTY_IO_ERROR)){
2604 /* nonblock mode is set or port is not enabled */
2605 /* just verify that callout device is not active */
2606 info->flags |= ASYNC_NORMAL_ACTIVE;
2607 return 0;
2610 if (tty->termios->c_cflag & CLOCAL)
2611 do_clocal = 1;
2613 /* Wait for carrier detect and the line to become
2614 * free (i.e., not in use by the callout). While we are in
2615 * this loop, info->count is dropped by one, so that
2616 * mgslpc_close() knows when to free things. We restore it upon
2617 * exit, either normal or abnormal.
2620 retval = 0;
2621 add_wait_queue(&info->open_wait, &wait);
2623 if (debug_level >= DEBUG_LEVEL_INFO)
2624 printk("%s(%d):block_til_ready before block on %s count=%d\n",
2625 __FILE__,__LINE__, tty->driver->name, info->count );
2627 spin_lock_irqsave(&info->lock, flags);
2628 if (!tty_hung_up_p(filp)) {
2629 extra_count = 1;
2630 info->count--;
2632 spin_unlock_irqrestore(&info->lock, flags);
2633 info->blocked_open++;
2635 while (1) {
2636 if ((tty->termios->c_cflag & CBAUD)) {
2637 spin_lock_irqsave(&info->lock,flags);
2638 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
2639 set_signals(info);
2640 spin_unlock_irqrestore(&info->lock,flags);
2643 set_current_state(TASK_INTERRUPTIBLE);
2645 if (tty_hung_up_p(filp) || !(info->flags & ASYNC_INITIALIZED)){
2646 retval = (info->flags & ASYNC_HUP_NOTIFY) ?
2647 -EAGAIN : -ERESTARTSYS;
2648 break;
2651 spin_lock_irqsave(&info->lock,flags);
2652 get_signals(info);
2653 spin_unlock_irqrestore(&info->lock,flags);
2655 if (!(info->flags & ASYNC_CLOSING) &&
2656 (do_clocal || (info->serial_signals & SerialSignal_DCD)) ) {
2657 break;
2660 if (signal_pending(current)) {
2661 retval = -ERESTARTSYS;
2662 break;
2665 if (debug_level >= DEBUG_LEVEL_INFO)
2666 printk("%s(%d):block_til_ready blocking on %s count=%d\n",
2667 __FILE__,__LINE__, tty->driver->name, info->count );
2669 schedule();
2672 set_current_state(TASK_RUNNING);
2673 remove_wait_queue(&info->open_wait, &wait);
2675 if (extra_count)
2676 info->count++;
2677 info->blocked_open--;
2679 if (debug_level >= DEBUG_LEVEL_INFO)
2680 printk("%s(%d):block_til_ready after blocking on %s count=%d\n",
2681 __FILE__,__LINE__, tty->driver->name, info->count );
2683 if (!retval)
2684 info->flags |= ASYNC_NORMAL_ACTIVE;
2686 return retval;
2689 static int mgslpc_open(struct tty_struct *tty, struct file * filp)
2691 MGSLPC_INFO *info;
2692 int retval, line;
2693 unsigned long flags;
2695 /* verify range of specified line number */
2696 line = tty->index;
2697 if ((line < 0) || (line >= mgslpc_device_count)) {
2698 printk("%s(%d):mgslpc_open with invalid line #%d.\n",
2699 __FILE__,__LINE__,line);
2700 return -ENODEV;
2703 /* find the info structure for the specified line */
2704 info = mgslpc_device_list;
2705 while(info && info->line != line)
2706 info = info->next_device;
2707 if (mgslpc_paranoia_check(info, tty->name, "mgslpc_open"))
2708 return -ENODEV;
2710 tty->driver_data = info;
2711 info->tty = tty;
2713 if (debug_level >= DEBUG_LEVEL_INFO)
2714 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
2715 __FILE__,__LINE__,tty->driver->name, info->count);
2717 /* If port is closing, signal caller to try again */
2718 if (tty_hung_up_p(filp) || info->flags & ASYNC_CLOSING){
2719 if (info->flags & ASYNC_CLOSING)
2720 interruptible_sleep_on(&info->close_wait);
2721 retval = ((info->flags & ASYNC_HUP_NOTIFY) ?
2722 -EAGAIN : -ERESTARTSYS);
2723 goto cleanup;
2726 info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
2728 spin_lock_irqsave(&info->netlock, flags);
2729 if (info->netcount) {
2730 retval = -EBUSY;
2731 spin_unlock_irqrestore(&info->netlock, flags);
2732 goto cleanup;
2734 info->count++;
2735 spin_unlock_irqrestore(&info->netlock, flags);
2737 if (info->count == 1) {
2738 /* 1st open on this device, init hardware */
2739 retval = startup(info);
2740 if (retval < 0)
2741 goto cleanup;
2744 retval = block_til_ready(tty, filp, info);
2745 if (retval) {
2746 if (debug_level >= DEBUG_LEVEL_INFO)
2747 printk("%s(%d):block_til_ready(%s) returned %d\n",
2748 __FILE__,__LINE__, info->device_name, retval);
2749 goto cleanup;
2752 if (debug_level >= DEBUG_LEVEL_INFO)
2753 printk("%s(%d):mgslpc_open(%s) success\n",
2754 __FILE__,__LINE__, info->device_name);
2755 retval = 0;
2757 cleanup:
2758 if (retval) {
2759 if (tty->count == 1)
2760 info->tty = NULL; /* tty layer will release tty struct */
2761 if(info->count)
2762 info->count--;
2765 return retval;
2769 * /proc fs routines....
2772 static inline int line_info(char *buf, MGSLPC_INFO *info)
2774 char stat_buf[30];
2775 int ret;
2776 unsigned long flags;
2778 ret = sprintf(buf, "%s:io:%04X irq:%d",
2779 info->device_name, info->io_base, info->irq_level);
2781 /* output current serial signal states */
2782 spin_lock_irqsave(&info->lock,flags);
2783 get_signals(info);
2784 spin_unlock_irqrestore(&info->lock,flags);
2786 stat_buf[0] = 0;
2787 stat_buf[1] = 0;
2788 if (info->serial_signals & SerialSignal_RTS)
2789 strcat(stat_buf, "|RTS");
2790 if (info->serial_signals & SerialSignal_CTS)
2791 strcat(stat_buf, "|CTS");
2792 if (info->serial_signals & SerialSignal_DTR)
2793 strcat(stat_buf, "|DTR");
2794 if (info->serial_signals & SerialSignal_DSR)
2795 strcat(stat_buf, "|DSR");
2796 if (info->serial_signals & SerialSignal_DCD)
2797 strcat(stat_buf, "|CD");
2798 if (info->serial_signals & SerialSignal_RI)
2799 strcat(stat_buf, "|RI");
2801 if (info->params.mode == MGSL_MODE_HDLC) {
2802 ret += sprintf(buf+ret, " HDLC txok:%d rxok:%d",
2803 info->icount.txok, info->icount.rxok);
2804 if (info->icount.txunder)
2805 ret += sprintf(buf+ret, " txunder:%d", info->icount.txunder);
2806 if (info->icount.txabort)
2807 ret += sprintf(buf+ret, " txabort:%d", info->icount.txabort);
2808 if (info->icount.rxshort)
2809 ret += sprintf(buf+ret, " rxshort:%d", info->icount.rxshort);
2810 if (info->icount.rxlong)
2811 ret += sprintf(buf+ret, " rxlong:%d", info->icount.rxlong);
2812 if (info->icount.rxover)
2813 ret += sprintf(buf+ret, " rxover:%d", info->icount.rxover);
2814 if (info->icount.rxcrc)
2815 ret += sprintf(buf+ret, " rxcrc:%d", info->icount.rxcrc);
2816 } else {
2817 ret += sprintf(buf+ret, " ASYNC tx:%d rx:%d",
2818 info->icount.tx, info->icount.rx);
2819 if (info->icount.frame)
2820 ret += sprintf(buf+ret, " fe:%d", info->icount.frame);
2821 if (info->icount.parity)
2822 ret += sprintf(buf+ret, " pe:%d", info->icount.parity);
2823 if (info->icount.brk)
2824 ret += sprintf(buf+ret, " brk:%d", info->icount.brk);
2825 if (info->icount.overrun)
2826 ret += sprintf(buf+ret, " oe:%d", info->icount.overrun);
2829 /* Append serial signal status to end */
2830 ret += sprintf(buf+ret, " %s\n", stat_buf+1);
2832 ret += sprintf(buf+ret, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
2833 info->tx_active,info->bh_requested,info->bh_running,
2834 info->pending_bh);
2836 return ret;
2839 /* Called to print information about devices
2841 static int mgslpc_read_proc(char *page, char **start, off_t off, int count,
2842 int *eof, void *data)
2844 int len = 0, l;
2845 off_t begin = 0;
2846 MGSLPC_INFO *info;
2848 len += sprintf(page, "synclink driver:%s\n", driver_version);
2850 info = mgslpc_device_list;
2851 while( info ) {
2852 l = line_info(page + len, info);
2853 len += l;
2854 if (len+begin > off+count)
2855 goto done;
2856 if (len+begin < off) {
2857 begin += len;
2858 len = 0;
2860 info = info->next_device;
2863 *eof = 1;
2864 done:
2865 if (off >= len+begin)
2866 return 0;
2867 *start = page + (off-begin);
2868 return ((count < begin+len-off) ? count : begin+len-off);
2871 static int rx_alloc_buffers(MGSLPC_INFO *info)
2873 /* each buffer has header and data */
2874 info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size;
2876 /* calculate total allocation size for 8 buffers */
2877 info->rx_buf_total_size = info->rx_buf_size * 8;
2879 /* limit total allocated memory */
2880 if (info->rx_buf_total_size > 0x10000)
2881 info->rx_buf_total_size = 0x10000;
2883 /* calculate number of buffers */
2884 info->rx_buf_count = info->rx_buf_total_size / info->rx_buf_size;
2886 info->rx_buf = kmalloc(info->rx_buf_total_size, GFP_KERNEL);
2887 if (info->rx_buf == NULL)
2888 return -ENOMEM;
2890 rx_reset_buffers(info);
2891 return 0;
2894 static void rx_free_buffers(MGSLPC_INFO *info)
2896 kfree(info->rx_buf);
2897 info->rx_buf = NULL;
2900 static int claim_resources(MGSLPC_INFO *info)
2902 if (rx_alloc_buffers(info) < 0 ) {
2903 printk( "Cant allocate rx buffer %s\n", info->device_name);
2904 release_resources(info);
2905 return -ENODEV;
2907 return 0;
2910 static void release_resources(MGSLPC_INFO *info)
2912 if (debug_level >= DEBUG_LEVEL_INFO)
2913 printk("release_resources(%s)\n", info->device_name);
2914 rx_free_buffers(info);
2917 /* Add the specified device instance data structure to the
2918 * global linked list of devices and increment the device count.
2920 * Arguments: info pointer to device instance data
2922 static void mgslpc_add_device(MGSLPC_INFO *info)
2924 info->next_device = NULL;
2925 info->line = mgslpc_device_count;
2926 sprintf(info->device_name,"ttySLP%d",info->line);
2928 if (info->line < MAX_DEVICE_COUNT) {
2929 if (maxframe[info->line])
2930 info->max_frame_size = maxframe[info->line];
2931 info->dosyncppp = dosyncppp[info->line];
2934 mgslpc_device_count++;
2936 if (!mgslpc_device_list)
2937 mgslpc_device_list = info;
2938 else {
2939 MGSLPC_INFO *current_dev = mgslpc_device_list;
2940 while( current_dev->next_device )
2941 current_dev = current_dev->next_device;
2942 current_dev->next_device = info;
2945 if (info->max_frame_size < 4096)
2946 info->max_frame_size = 4096;
2947 else if (info->max_frame_size > 65535)
2948 info->max_frame_size = 65535;
2950 printk( "SyncLink PC Card %s:IO=%04X IRQ=%d\n",
2951 info->device_name, info->io_base, info->irq_level);
2953 #if SYNCLINK_GENERIC_HDLC
2954 hdlcdev_init(info);
2955 #endif
2958 static void mgslpc_remove_device(MGSLPC_INFO *remove_info)
2960 MGSLPC_INFO *info = mgslpc_device_list;
2961 MGSLPC_INFO *last = NULL;
2963 while(info) {
2964 if (info == remove_info) {
2965 if (last)
2966 last->next_device = info->next_device;
2967 else
2968 mgslpc_device_list = info->next_device;
2969 #if SYNCLINK_GENERIC_HDLC
2970 hdlcdev_exit(info);
2971 #endif
2972 release_resources(info);
2973 kfree(info);
2974 mgslpc_device_count--;
2975 return;
2977 last = info;
2978 info = info->next_device;
2982 static struct pcmcia_device_id mgslpc_ids[] = {
2983 PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
2984 PCMCIA_DEVICE_NULL
2986 MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);
2988 static struct pcmcia_driver mgslpc_driver = {
2989 .owner = THIS_MODULE,
2990 .drv = {
2991 .name = "synclink_cs",
2993 .probe = mgslpc_probe,
2994 .remove = mgslpc_detach,
2995 .id_table = mgslpc_ids,
2996 .suspend = mgslpc_suspend,
2997 .resume = mgslpc_resume,
3000 static const struct tty_operations mgslpc_ops = {
3001 .open = mgslpc_open,
3002 .close = mgslpc_close,
3003 .write = mgslpc_write,
3004 .put_char = mgslpc_put_char,
3005 .flush_chars = mgslpc_flush_chars,
3006 .write_room = mgslpc_write_room,
3007 .chars_in_buffer = mgslpc_chars_in_buffer,
3008 .flush_buffer = mgslpc_flush_buffer,
3009 .ioctl = mgslpc_ioctl,
3010 .throttle = mgslpc_throttle,
3011 .unthrottle = mgslpc_unthrottle,
3012 .send_xchar = mgslpc_send_xchar,
3013 .break_ctl = mgslpc_break,
3014 .wait_until_sent = mgslpc_wait_until_sent,
3015 .read_proc = mgslpc_read_proc,
3016 .set_termios = mgslpc_set_termios,
3017 .stop = tx_pause,
3018 .start = tx_release,
3019 .hangup = mgslpc_hangup,
3020 .tiocmget = tiocmget,
3021 .tiocmset = tiocmset,
3024 static void synclink_cs_cleanup(void)
3026 int rc;
3028 printk("Unloading %s: version %s\n", driver_name, driver_version);
3030 while(mgslpc_device_list)
3031 mgslpc_remove_device(mgslpc_device_list);
3033 if (serial_driver) {
3034 if ((rc = tty_unregister_driver(serial_driver)))
3035 printk("%s(%d) failed to unregister tty driver err=%d\n",
3036 __FILE__,__LINE__,rc);
3037 put_tty_driver(serial_driver);
3040 pcmcia_unregister_driver(&mgslpc_driver);
3043 static int __init synclink_cs_init(void)
3045 int rc;
3047 if (break_on_load) {
3048 mgslpc_get_text_ptr();
3049 BREAKPOINT();
3052 printk("%s %s\n", driver_name, driver_version);
3054 if ((rc = pcmcia_register_driver(&mgslpc_driver)) < 0)
3055 return rc;
3057 serial_driver = alloc_tty_driver(MAX_DEVICE_COUNT);
3058 if (!serial_driver) {
3059 rc = -ENOMEM;
3060 goto error;
3063 /* Initialize the tty_driver structure */
3065 serial_driver->owner = THIS_MODULE;
3066 serial_driver->driver_name = "synclink_cs";
3067 serial_driver->name = "ttySLP";
3068 serial_driver->major = ttymajor;
3069 serial_driver->minor_start = 64;
3070 serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
3071 serial_driver->subtype = SERIAL_TYPE_NORMAL;
3072 serial_driver->init_termios = tty_std_termios;
3073 serial_driver->init_termios.c_cflag =
3074 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
3075 serial_driver->flags = TTY_DRIVER_REAL_RAW;
3076 tty_set_operations(serial_driver, &mgslpc_ops);
3078 if ((rc = tty_register_driver(serial_driver)) < 0) {
3079 printk("%s(%d):Couldn't register serial driver\n",
3080 __FILE__,__LINE__);
3081 put_tty_driver(serial_driver);
3082 serial_driver = NULL;
3083 goto error;
3086 printk("%s %s, tty major#%d\n",
3087 driver_name, driver_version,
3088 serial_driver->major);
3090 return 0;
3092 error:
3093 synclink_cs_cleanup();
3094 return rc;
3097 static void __exit synclink_cs_exit(void)
3099 synclink_cs_cleanup();
3102 module_init(synclink_cs_init);
3103 module_exit(synclink_cs_exit);
3105 static void mgslpc_set_rate(MGSLPC_INFO *info, unsigned char channel, unsigned int rate)
3107 unsigned int M, N;
3108 unsigned char val;
3110 /* note:standard BRG mode is broken in V3.2 chip
3111 * so enhanced mode is always used
3114 if (rate) {
3115 N = 3686400 / rate;
3116 if (!N)
3117 N = 1;
3118 N >>= 1;
3119 for (M = 1; N > 64 && M < 16; M++)
3120 N >>= 1;
3121 N--;
3123 /* BGR[5..0] = N
3124 * BGR[9..6] = M
3125 * BGR[7..0] contained in BGR register
3126 * BGR[9..8] contained in CCR2[7..6]
3127 * divisor = (N+1)*2^M
3129 * Note: M *must* not be zero (causes asymetric duty cycle)
3131 write_reg(info, (unsigned char) (channel + BGR),
3132 (unsigned char) ((M << 6) + N));
3133 val = read_reg(info, (unsigned char) (channel + CCR2)) & 0x3f;
3134 val |= ((M << 4) & 0xc0);
3135 write_reg(info, (unsigned char) (channel + CCR2), val);
3139 /* Enabled the AUX clock output at the specified frequency.
3141 static void enable_auxclk(MGSLPC_INFO *info)
3143 unsigned char val;
3145 /* MODE
3147 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3148 * 05 ADM Address Mode, 0 = no addr recognition
3149 * 04 TMD Timer Mode, 0 = external
3150 * 03 RAC Receiver Active, 0 = inactive
3151 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3152 * 01 TRS Timer Resolution, 1=512
3153 * 00 TLP Test Loop, 0 = no loop
3155 * 1000 0010
3157 val = 0x82;
3159 /* channel B RTS is used to enable AUXCLK driver on SP505 */
3160 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3161 val |= BIT2;
3162 write_reg(info, CHB + MODE, val);
3164 /* CCR0
3166 * 07 PU Power Up, 1=active, 0=power down
3167 * 06 MCE Master Clock Enable, 1=enabled
3168 * 05 Reserved, 0
3169 * 04..02 SC[2..0] Encoding
3170 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3172 * 11000000
3174 write_reg(info, CHB + CCR0, 0xc0);
3176 /* CCR1
3178 * 07 SFLG Shared Flag, 0 = disable shared flags
3179 * 06 GALP Go Active On Loop, 0 = not used
3180 * 05 GLP Go On Loop, 0 = not used
3181 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3182 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3183 * 02..00 CM[2..0] Clock Mode
3185 * 0001 0111
3187 write_reg(info, CHB + CCR1, 0x17);
3189 /* CCR2 (Channel B)
3191 * 07..06 BGR[9..8] Baud rate bits 9..8
3192 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3193 * 04 SSEL Clock source select, 1=submode b
3194 * 03 TOE 0=TxCLK is input, 1=TxCLK is output
3195 * 02 RWX Read/Write Exchange 0=disabled
3196 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3197 * 00 DIV, data inversion 0=disabled, 1=enabled
3199 * 0011 1000
3201 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3202 write_reg(info, CHB + CCR2, 0x38);
3203 else
3204 write_reg(info, CHB + CCR2, 0x30);
3206 /* CCR4
3208 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3209 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3210 * 05 TST1 Test Pin, 0=normal operation
3211 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3212 * 03..02 Reserved, must be 0
3213 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3215 * 0101 0000
3217 write_reg(info, CHB + CCR4, 0x50);
3219 /* if auxclk not enabled, set internal BRG so
3220 * CTS transitions can be detected (requires TxC)
3222 if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
3223 mgslpc_set_rate(info, CHB, info->params.clock_speed);
3224 else
3225 mgslpc_set_rate(info, CHB, 921600);
3228 static void loopback_enable(MGSLPC_INFO *info)
3230 unsigned char val;
3232 /* CCR1:02..00 CM[2..0] Clock Mode = 111 (clock mode 7) */
3233 val = read_reg(info, CHA + CCR1) | (BIT2 + BIT1 + BIT0);
3234 write_reg(info, CHA + CCR1, val);
3236 /* CCR2:04 SSEL Clock source select, 1=submode b */
3237 val = read_reg(info, CHA + CCR2) | (BIT4 + BIT5);
3238 write_reg(info, CHA + CCR2, val);
3240 /* set LinkSpeed if available, otherwise default to 2Mbps */
3241 if (info->params.clock_speed)
3242 mgslpc_set_rate(info, CHA, info->params.clock_speed);
3243 else
3244 mgslpc_set_rate(info, CHA, 1843200);
3246 /* MODE:00 TLP Test Loop, 1=loopback enabled */
3247 val = read_reg(info, CHA + MODE) | BIT0;
3248 write_reg(info, CHA + MODE, val);
3251 static void hdlc_mode(MGSLPC_INFO *info)
3253 unsigned char val;
3254 unsigned char clkmode, clksubmode;
3256 /* disable all interrupts */
3257 irq_disable(info, CHA, 0xffff);
3258 irq_disable(info, CHB, 0xffff);
3259 port_irq_disable(info, 0xff);
3261 /* assume clock mode 0a, rcv=RxC xmt=TxC */
3262 clkmode = clksubmode = 0;
3263 if (info->params.flags & HDLC_FLAG_RXC_DPLL
3264 && info->params.flags & HDLC_FLAG_TXC_DPLL) {
3265 /* clock mode 7a, rcv = DPLL, xmt = DPLL */
3266 clkmode = 7;
3267 } else if (info->params.flags & HDLC_FLAG_RXC_BRG
3268 && info->params.flags & HDLC_FLAG_TXC_BRG) {
3269 /* clock mode 7b, rcv = BRG, xmt = BRG */
3270 clkmode = 7;
3271 clksubmode = 1;
3272 } else if (info->params.flags & HDLC_FLAG_RXC_DPLL) {
3273 if (info->params.flags & HDLC_FLAG_TXC_BRG) {
3274 /* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
3275 clkmode = 6;
3276 clksubmode = 1;
3277 } else {
3278 /* clock mode 6a, rcv = DPLL, xmt = TxC */
3279 clkmode = 6;
3281 } else if (info->params.flags & HDLC_FLAG_TXC_BRG) {
3282 /* clock mode 0b, rcv = RxC, xmt = BRG */
3283 clksubmode = 1;
3286 /* MODE
3288 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3289 * 05 ADM Address Mode, 0 = no addr recognition
3290 * 04 TMD Timer Mode, 0 = external
3291 * 03 RAC Receiver Active, 0 = inactive
3292 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3293 * 01 TRS Timer Resolution, 1=512
3294 * 00 TLP Test Loop, 0 = no loop
3296 * 1000 0010
3298 val = 0x82;
3299 if (info->params.loopback)
3300 val |= BIT0;
3302 /* preserve RTS state */
3303 if (info->serial_signals & SerialSignal_RTS)
3304 val |= BIT2;
3305 write_reg(info, CHA + MODE, val);
3307 /* CCR0
3309 * 07 PU Power Up, 1=active, 0=power down
3310 * 06 MCE Master Clock Enable, 1=enabled
3311 * 05 Reserved, 0
3312 * 04..02 SC[2..0] Encoding
3313 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3315 * 11000000
3317 val = 0xc0;
3318 switch (info->params.encoding)
3320 case HDLC_ENCODING_NRZI:
3321 val |= BIT3;
3322 break;
3323 case HDLC_ENCODING_BIPHASE_SPACE:
3324 val |= BIT4;
3325 break; // FM0
3326 case HDLC_ENCODING_BIPHASE_MARK:
3327 val |= BIT4 + BIT2;
3328 break; // FM1
3329 case HDLC_ENCODING_BIPHASE_LEVEL:
3330 val |= BIT4 + BIT3;
3331 break; // Manchester
3333 write_reg(info, CHA + CCR0, val);
3335 /* CCR1
3337 * 07 SFLG Shared Flag, 0 = disable shared flags
3338 * 06 GALP Go Active On Loop, 0 = not used
3339 * 05 GLP Go On Loop, 0 = not used
3340 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3341 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3342 * 02..00 CM[2..0] Clock Mode
3344 * 0001 0000
3346 val = 0x10 + clkmode;
3347 write_reg(info, CHA + CCR1, val);
3349 /* CCR2
3351 * 07..06 BGR[9..8] Baud rate bits 9..8
3352 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3353 * 04 SSEL Clock source select, 1=submode b
3354 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3355 * 02 RWX Read/Write Exchange 0=disabled
3356 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3357 * 00 DIV, data inversion 0=disabled, 1=enabled
3359 * 0000 0000
3361 val = 0x00;
3362 if (clkmode == 2 || clkmode == 3 || clkmode == 6
3363 || clkmode == 7 || (clkmode == 0 && clksubmode == 1))
3364 val |= BIT5;
3365 if (clksubmode)
3366 val |= BIT4;
3367 if (info->params.crc_type == HDLC_CRC_32_CCITT)
3368 val |= BIT1;
3369 if (info->params.encoding == HDLC_ENCODING_NRZB)
3370 val |= BIT0;
3371 write_reg(info, CHA + CCR2, val);
3373 /* CCR3
3375 * 07..06 PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
3376 * 05 EPT Enable preamble transmission, 1=enabled
3377 * 04 RADD Receive address pushed to FIFO, 0=disabled
3378 * 03 CRL CRC Reset Level, 0=FFFF
3379 * 02 RCRC Rx CRC 0=On 1=Off
3380 * 01 TCRC Tx CRC 0=On 1=Off
3381 * 00 PSD DPLL Phase Shift Disable
3383 * 0000 0000
3385 val = 0x00;
3386 if (info->params.crc_type == HDLC_CRC_NONE)
3387 val |= BIT2 + BIT1;
3388 if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
3389 val |= BIT5;
3390 switch (info->params.preamble_length)
3392 case HDLC_PREAMBLE_LENGTH_16BITS:
3393 val |= BIT6;
3394 break;
3395 case HDLC_PREAMBLE_LENGTH_32BITS:
3396 val |= BIT6;
3397 break;
3398 case HDLC_PREAMBLE_LENGTH_64BITS:
3399 val |= BIT7 + BIT6;
3400 break;
3402 write_reg(info, CHA + CCR3, val);
3404 /* PRE - Preamble pattern */
3405 val = 0;
3406 switch (info->params.preamble)
3408 case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
3409 case HDLC_PREAMBLE_PATTERN_10: val = 0xaa; break;
3410 case HDLC_PREAMBLE_PATTERN_01: val = 0x55; break;
3411 case HDLC_PREAMBLE_PATTERN_ONES: val = 0xff; break;
3413 write_reg(info, CHA + PRE, val);
3415 /* CCR4
3417 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3418 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3419 * 05 TST1 Test Pin, 0=normal operation
3420 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3421 * 03..02 Reserved, must be 0
3422 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3424 * 0101 0000
3426 val = 0x50;
3427 write_reg(info, CHA + CCR4, val);
3428 if (info->params.flags & HDLC_FLAG_RXC_DPLL)
3429 mgslpc_set_rate(info, CHA, info->params.clock_speed * 16);
3430 else
3431 mgslpc_set_rate(info, CHA, info->params.clock_speed);
3433 /* RLCR Receive length check register
3435 * 7 1=enable receive length check
3436 * 6..0 Max frame length = (RL + 1) * 32
3438 write_reg(info, CHA + RLCR, 0);
3440 /* XBCH Transmit Byte Count High
3442 * 07 DMA mode, 0 = interrupt driven
3443 * 06 NRM, 0=ABM (ignored)
3444 * 05 CAS Carrier Auto Start
3445 * 04 XC Transmit Continuously (ignored)
3446 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3448 * 0000 0000
3450 val = 0x00;
3451 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3452 val |= BIT5;
3453 write_reg(info, CHA + XBCH, val);
3454 enable_auxclk(info);
3455 if (info->params.loopback || info->testing_irq)
3456 loopback_enable(info);
3457 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3459 irq_enable(info, CHB, IRQ_CTS);
3460 /* PVR[3] 1=AUTO CTS active */
3461 set_reg_bits(info, CHA + PVR, BIT3);
3462 } else
3463 clear_reg_bits(info, CHA + PVR, BIT3);
3465 irq_enable(info, CHA,
3466 IRQ_RXEOM + IRQ_RXFIFO + IRQ_ALLSENT +
3467 IRQ_UNDERRUN + IRQ_TXFIFO);
3468 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3469 wait_command_complete(info, CHA);
3470 read_reg16(info, CHA + ISR); /* clear pending IRQs */
3472 /* Master clock mode enabled above to allow reset commands
3473 * to complete even if no data clocks are present.
3475 * Disable master clock mode for normal communications because
3476 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
3477 * IRQ when in master clock mode.
3479 * Leave master clock mode enabled for IRQ test because the
3480 * timer IRQ used by the test can only happen in master clock mode.
3482 if (!info->testing_irq)
3483 clear_reg_bits(info, CHA + CCR0, BIT6);
3485 tx_set_idle(info);
3487 tx_stop(info);
3488 rx_stop(info);
3491 static void rx_stop(MGSLPC_INFO *info)
3493 if (debug_level >= DEBUG_LEVEL_ISR)
3494 printk("%s(%d):rx_stop(%s)\n",
3495 __FILE__,__LINE__, info->device_name );
3497 /* MODE:03 RAC Receiver Active, 0=inactive */
3498 clear_reg_bits(info, CHA + MODE, BIT3);
3500 info->rx_enabled = 0;
3501 info->rx_overflow = 0;
3504 static void rx_start(MGSLPC_INFO *info)
3506 if (debug_level >= DEBUG_LEVEL_ISR)
3507 printk("%s(%d):rx_start(%s)\n",
3508 __FILE__,__LINE__, info->device_name );
3510 rx_reset_buffers(info);
3511 info->rx_enabled = 0;
3512 info->rx_overflow = 0;
3514 /* MODE:03 RAC Receiver Active, 1=active */
3515 set_reg_bits(info, CHA + MODE, BIT3);
3517 info->rx_enabled = 1;
3520 static void tx_start(MGSLPC_INFO *info)
3522 if (debug_level >= DEBUG_LEVEL_ISR)
3523 printk("%s(%d):tx_start(%s)\n",
3524 __FILE__,__LINE__, info->device_name );
3526 if (info->tx_count) {
3527 /* If auto RTS enabled and RTS is inactive, then assert */
3528 /* RTS and set a flag indicating that the driver should */
3529 /* negate RTS when the transmission completes. */
3530 info->drop_rts_on_tx_done = 0;
3532 if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
3533 get_signals(info);
3534 if (!(info->serial_signals & SerialSignal_RTS)) {
3535 info->serial_signals |= SerialSignal_RTS;
3536 set_signals(info);
3537 info->drop_rts_on_tx_done = 1;
3541 if (info->params.mode == MGSL_MODE_ASYNC) {
3542 if (!info->tx_active) {
3543 info->tx_active = 1;
3544 tx_ready(info);
3546 } else {
3547 info->tx_active = 1;
3548 tx_ready(info);
3549 mod_timer(&info->tx_timer, jiffies +
3550 msecs_to_jiffies(5000));
3554 if (!info->tx_enabled)
3555 info->tx_enabled = 1;
3558 static void tx_stop(MGSLPC_INFO *info)
3560 if (debug_level >= DEBUG_LEVEL_ISR)
3561 printk("%s(%d):tx_stop(%s)\n",
3562 __FILE__,__LINE__, info->device_name );
3564 del_timer(&info->tx_timer);
3566 info->tx_enabled = 0;
3567 info->tx_active = 0;
3570 /* Reset the adapter to a known state and prepare it for further use.
3572 static void reset_device(MGSLPC_INFO *info)
3574 /* power up both channels (set BIT7) */
3575 write_reg(info, CHA + CCR0, 0x80);
3576 write_reg(info, CHB + CCR0, 0x80);
3577 write_reg(info, CHA + MODE, 0);
3578 write_reg(info, CHB + MODE, 0);
3580 /* disable all interrupts */
3581 irq_disable(info, CHA, 0xffff);
3582 irq_disable(info, CHB, 0xffff);
3583 port_irq_disable(info, 0xff);
3585 /* PCR Port Configuration Register
3587 * 07..04 DEC[3..0] Serial I/F select outputs
3588 * 03 output, 1=AUTO CTS control enabled
3589 * 02 RI Ring Indicator input 0=active
3590 * 01 DSR input 0=active
3591 * 00 DTR output 0=active
3593 * 0000 0110
3595 write_reg(info, PCR, 0x06);
3597 /* PVR Port Value Register
3599 * 07..04 DEC[3..0] Serial I/F select (0000=disabled)
3600 * 03 AUTO CTS output 1=enabled
3601 * 02 RI Ring Indicator input
3602 * 01 DSR input
3603 * 00 DTR output (1=inactive)
3605 * 0000 0001
3607 // write_reg(info, PVR, PVR_DTR);
3609 /* IPC Interrupt Port Configuration
3611 * 07 VIS 1=Masked interrupts visible
3612 * 06..05 Reserved, 0
3613 * 04..03 SLA Slave address, 00 ignored
3614 * 02 CASM Cascading Mode, 1=daisy chain
3615 * 01..00 IC[1..0] Interrupt Config, 01=push-pull output, active low
3617 * 0000 0101
3619 write_reg(info, IPC, 0x05);
3622 static void async_mode(MGSLPC_INFO *info)
3624 unsigned char val;
3626 /* disable all interrupts */
3627 irq_disable(info, CHA, 0xffff);
3628 irq_disable(info, CHB, 0xffff);
3629 port_irq_disable(info, 0xff);
3631 /* MODE
3633 * 07 Reserved, 0
3634 * 06 FRTS RTS State, 0=active
3635 * 05 FCTS Flow Control on CTS
3636 * 04 FLON Flow Control Enable
3637 * 03 RAC Receiver Active, 0 = inactive
3638 * 02 RTS 0=Auto RTS, 1=manual RTS
3639 * 01 TRS Timer Resolution, 1=512
3640 * 00 TLP Test Loop, 0 = no loop
3642 * 0000 0110
3644 val = 0x06;
3645 if (info->params.loopback)
3646 val |= BIT0;
3648 /* preserve RTS state */
3649 if (!(info->serial_signals & SerialSignal_RTS))
3650 val |= BIT6;
3651 write_reg(info, CHA + MODE, val);
3653 /* CCR0
3655 * 07 PU Power Up, 1=active, 0=power down
3656 * 06 MCE Master Clock Enable, 1=enabled
3657 * 05 Reserved, 0
3658 * 04..02 SC[2..0] Encoding, 000=NRZ
3659 * 01..00 SM[1..0] Serial Mode, 11=Async
3661 * 1000 0011
3663 write_reg(info, CHA + CCR0, 0x83);
3665 /* CCR1
3667 * 07..05 Reserved, 0
3668 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3669 * 03 BCR Bit Clock Rate, 1=16x
3670 * 02..00 CM[2..0] Clock Mode, 111=BRG
3672 * 0001 1111
3674 write_reg(info, CHA + CCR1, 0x1f);
3676 /* CCR2 (channel A)
3678 * 07..06 BGR[9..8] Baud rate bits 9..8
3679 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3680 * 04 SSEL Clock source select, 1=submode b
3681 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3682 * 02 RWX Read/Write Exchange 0=disabled
3683 * 01 Reserved, 0
3684 * 00 DIV, data inversion 0=disabled, 1=enabled
3686 * 0001 0000
3688 write_reg(info, CHA + CCR2, 0x10);
3690 /* CCR3
3692 * 07..01 Reserved, 0
3693 * 00 PSD DPLL Phase Shift Disable
3695 * 0000 0000
3697 write_reg(info, CHA + CCR3, 0);
3699 /* CCR4
3701 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3702 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3703 * 05 TST1 Test Pin, 0=normal operation
3704 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3705 * 03..00 Reserved, must be 0
3707 * 0101 0000
3709 write_reg(info, CHA + CCR4, 0x50);
3710 mgslpc_set_rate(info, CHA, info->params.data_rate * 16);
3712 /* DAFO Data Format
3714 * 07 Reserved, 0
3715 * 06 XBRK transmit break, 0=normal operation
3716 * 05 Stop bits (0=1, 1=2)
3717 * 04..03 PAR[1..0] Parity (01=odd, 10=even)
3718 * 02 PAREN Parity Enable
3719 * 01..00 CHL[1..0] Character Length (00=8, 01=7)
3722 val = 0x00;
3723 if (info->params.data_bits != 8)
3724 val |= BIT0; /* 7 bits */
3725 if (info->params.stop_bits != 1)
3726 val |= BIT5;
3727 if (info->params.parity != ASYNC_PARITY_NONE)
3729 val |= BIT2; /* Parity enable */
3730 if (info->params.parity == ASYNC_PARITY_ODD)
3731 val |= BIT3;
3732 else
3733 val |= BIT4;
3735 write_reg(info, CHA + DAFO, val);
3737 /* RFC Rx FIFO Control
3739 * 07 Reserved, 0
3740 * 06 DPS, 1=parity bit not stored in data byte
3741 * 05 DXS, 0=all data stored in FIFO (including XON/XOFF)
3742 * 04 RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
3743 * 03..02 RFTH[1..0], rx threshold, 11=16 status + 16 data byte
3744 * 01 Reserved, 0
3745 * 00 TCDE Terminate Char Detect Enable, 0=disabled
3747 * 0101 1100
3749 write_reg(info, CHA + RFC, 0x5c);
3751 /* RLCR Receive length check register
3753 * Max frame length = (RL + 1) * 32
3755 write_reg(info, CHA + RLCR, 0);
3757 /* XBCH Transmit Byte Count High
3759 * 07 DMA mode, 0 = interrupt driven
3760 * 06 NRM, 0=ABM (ignored)
3761 * 05 CAS Carrier Auto Start
3762 * 04 XC Transmit Continuously (ignored)
3763 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3765 * 0000 0000
3767 val = 0x00;
3768 if (info->params.flags & HDLC_FLAG_AUTO_DCD)
3769 val |= BIT5;
3770 write_reg(info, CHA + XBCH, val);
3771 if (info->params.flags & HDLC_FLAG_AUTO_CTS)
3772 irq_enable(info, CHA, IRQ_CTS);
3774 /* MODE:03 RAC Receiver Active, 1=active */
3775 set_reg_bits(info, CHA + MODE, BIT3);
3776 enable_auxclk(info);
3777 if (info->params.flags & HDLC_FLAG_AUTO_CTS) {
3778 irq_enable(info, CHB, IRQ_CTS);
3779 /* PVR[3] 1=AUTO CTS active */
3780 set_reg_bits(info, CHA + PVR, BIT3);
3781 } else
3782 clear_reg_bits(info, CHA + PVR, BIT3);
3783 irq_enable(info, CHA,
3784 IRQ_RXEOM + IRQ_RXFIFO + IRQ_BREAK_ON + IRQ_RXTIME +
3785 IRQ_ALLSENT + IRQ_TXFIFO);
3786 issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
3787 wait_command_complete(info, CHA);
3788 read_reg16(info, CHA + ISR); /* clear pending IRQs */
3791 /* Set the HDLC idle mode for the transmitter.
3793 static void tx_set_idle(MGSLPC_INFO *info)
3795 /* Note: ESCC2 only supports flags and one idle modes */
3796 if (info->idle_mode == HDLC_TXIDLE_FLAGS)
3797 set_reg_bits(info, CHA + CCR1, BIT3);
3798 else
3799 clear_reg_bits(info, CHA + CCR1, BIT3);
3802 /* get state of the V24 status (input) signals.
3804 static void get_signals(MGSLPC_INFO *info)
3806 unsigned char status = 0;
3808 /* preserve DTR and RTS */
3809 info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;
3811 if (read_reg(info, CHB + VSTR) & BIT7)
3812 info->serial_signals |= SerialSignal_DCD;
3813 if (read_reg(info, CHB + STAR) & BIT1)
3814 info->serial_signals |= SerialSignal_CTS;
3816 status = read_reg(info, CHA + PVR);
3817 if (!(status & PVR_RI))
3818 info->serial_signals |= SerialSignal_RI;
3819 if (!(status & PVR_DSR))
3820 info->serial_signals |= SerialSignal_DSR;
3823 /* Set the state of DTR and RTS based on contents of
3824 * serial_signals member of device extension.
3826 static void set_signals(MGSLPC_INFO *info)
3828 unsigned char val;
3830 val = read_reg(info, CHA + MODE);
3831 if (info->params.mode == MGSL_MODE_ASYNC) {
3832 if (info->serial_signals & SerialSignal_RTS)
3833 val &= ~BIT6;
3834 else
3835 val |= BIT6;
3836 } else {
3837 if (info->serial_signals & SerialSignal_RTS)
3838 val |= BIT2;
3839 else
3840 val &= ~BIT2;
3842 write_reg(info, CHA + MODE, val);
3844 if (info->serial_signals & SerialSignal_DTR)
3845 clear_reg_bits(info, CHA + PVR, PVR_DTR);
3846 else
3847 set_reg_bits(info, CHA + PVR, PVR_DTR);
3850 static void rx_reset_buffers(MGSLPC_INFO *info)
3852 RXBUF *buf;
3853 int i;
3855 info->rx_put = 0;
3856 info->rx_get = 0;
3857 info->rx_frame_count = 0;
3858 for (i=0 ; i < info->rx_buf_count ; i++) {
3859 buf = (RXBUF*)(info->rx_buf + (i * info->rx_buf_size));
3860 buf->status = buf->count = 0;
3864 /* Attempt to return a received HDLC frame
3865 * Only frames received without errors are returned.
3867 * Returns 1 if frame returned, otherwise 0
3869 static int rx_get_frame(MGSLPC_INFO *info)
3871 unsigned short status;
3872 RXBUF *buf;
3873 unsigned int framesize = 0;
3874 unsigned long flags;
3875 struct tty_struct *tty = info->tty;
3876 int return_frame = 0;
3878 if (info->rx_frame_count == 0)
3879 return 0;
3881 buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size));
3883 status = buf->status;
3885 /* 07 VFR 1=valid frame
3886 * 06 RDO 1=data overrun
3887 * 05 CRC 1=OK, 0=error
3888 * 04 RAB 1=frame aborted
3890 if ((status & 0xf0) != 0xA0) {
3891 if (!(status & BIT7) || (status & BIT4))
3892 info->icount.rxabort++;
3893 else if (status & BIT6)
3894 info->icount.rxover++;
3895 else if (!(status & BIT5)) {
3896 info->icount.rxcrc++;
3897 if (info->params.crc_type & HDLC_CRC_RETURN_EX)
3898 return_frame = 1;
3900 framesize = 0;
3901 #if SYNCLINK_GENERIC_HDLC
3903 struct net_device_stats *stats = hdlc_stats(info->netdev);
3904 stats->rx_errors++;
3905 stats->rx_frame_errors++;
3907 #endif
3908 } else
3909 return_frame = 1;
3911 if (return_frame)
3912 framesize = buf->count;
3914 if (debug_level >= DEBUG_LEVEL_BH)
3915 printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
3916 __FILE__,__LINE__,info->device_name,status,framesize);
3918 if (debug_level >= DEBUG_LEVEL_DATA)
3919 trace_block(info, buf->data, framesize, 0);
3921 if (framesize) {
3922 if ((info->params.crc_type & HDLC_CRC_RETURN_EX &&
3923 framesize+1 > info->max_frame_size) ||
3924 framesize > info->max_frame_size)
3925 info->icount.rxlong++;
3926 else {
3927 if (status & BIT5)
3928 info->icount.rxok++;
3930 if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
3931 *(buf->data + framesize) = status & BIT5 ? RX_OK:RX_CRC_ERROR;
3932 ++framesize;
3935 #if SYNCLINK_GENERIC_HDLC
3936 if (info->netcount)
3937 hdlcdev_rx(info, buf->data, framesize);
3938 else
3939 #endif
3940 ldisc_receive_buf(tty, buf->data, info->flag_buf, framesize);
3944 spin_lock_irqsave(&info->lock,flags);
3945 buf->status = buf->count = 0;
3946 info->rx_frame_count--;
3947 info->rx_get++;
3948 if (info->rx_get >= info->rx_buf_count)
3949 info->rx_get = 0;
3950 spin_unlock_irqrestore(&info->lock,flags);
3952 return 1;
3955 static BOOLEAN register_test(MGSLPC_INFO *info)
3957 static unsigned char patterns[] =
3958 { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
3959 static unsigned int count = ARRAY_SIZE(patterns);
3960 unsigned int i;
3961 BOOLEAN rc = TRUE;
3962 unsigned long flags;
3964 spin_lock_irqsave(&info->lock,flags);
3965 reset_device(info);
3967 for (i = 0; i < count; i++) {
3968 write_reg(info, XAD1, patterns[i]);
3969 write_reg(info, XAD2, patterns[(i + 1) % count]);
3970 if ((read_reg(info, XAD1) != patterns[i]) ||
3971 (read_reg(info, XAD2) != patterns[(i + 1) % count])) {
3972 rc = FALSE;
3973 break;
3977 spin_unlock_irqrestore(&info->lock,flags);
3978 return rc;
3981 static BOOLEAN irq_test(MGSLPC_INFO *info)
3983 unsigned long end_time;
3984 unsigned long flags;
3986 spin_lock_irqsave(&info->lock,flags);
3987 reset_device(info);
3989 info->testing_irq = TRUE;
3990 hdlc_mode(info);
3992 info->irq_occurred = FALSE;
3994 /* init hdlc mode */
3996 irq_enable(info, CHA, IRQ_TIMER);
3997 write_reg(info, CHA + TIMR, 0); /* 512 cycles */
3998 issue_command(info, CHA, CMD_START_TIMER);
4000 spin_unlock_irqrestore(&info->lock,flags);
4002 end_time=100;
4003 while(end_time-- && !info->irq_occurred) {
4004 msleep_interruptible(10);
4007 info->testing_irq = FALSE;
4009 spin_lock_irqsave(&info->lock,flags);
4010 reset_device(info);
4011 spin_unlock_irqrestore(&info->lock,flags);
4013 return info->irq_occurred ? TRUE : FALSE;
4016 static int adapter_test(MGSLPC_INFO *info)
4018 if (!register_test(info)) {
4019 info->init_error = DiagStatus_AddressFailure;
4020 printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
4021 __FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
4022 return -ENODEV;
4025 if (!irq_test(info)) {
4026 info->init_error = DiagStatus_IrqFailure;
4027 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
4028 __FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
4029 return -ENODEV;
4032 if (debug_level >= DEBUG_LEVEL_INFO)
4033 printk("%s(%d):device %s passed diagnostics\n",
4034 __FILE__,__LINE__,info->device_name);
4035 return 0;
4038 static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit)
4040 int i;
4041 int linecount;
4042 if (xmit)
4043 printk("%s tx data:\n",info->device_name);
4044 else
4045 printk("%s rx data:\n",info->device_name);
4047 while(count) {
4048 if (count > 16)
4049 linecount = 16;
4050 else
4051 linecount = count;
4053 for(i=0;i<linecount;i++)
4054 printk("%02X ",(unsigned char)data[i]);
4055 for(;i<17;i++)
4056 printk(" ");
4057 for(i=0;i<linecount;i++) {
4058 if (data[i]>=040 && data[i]<=0176)
4059 printk("%c",data[i]);
4060 else
4061 printk(".");
4063 printk("\n");
4065 data += linecount;
4066 count -= linecount;
4070 /* HDLC frame time out
4071 * update stats and do tx completion processing
4073 static void tx_timeout(unsigned long context)
4075 MGSLPC_INFO *info = (MGSLPC_INFO*)context;
4076 unsigned long flags;
4078 if ( debug_level >= DEBUG_LEVEL_INFO )
4079 printk( "%s(%d):tx_timeout(%s)\n",
4080 __FILE__,__LINE__,info->device_name);
4081 if(info->tx_active &&
4082 info->params.mode == MGSL_MODE_HDLC) {
4083 info->icount.txtimeout++;
4085 spin_lock_irqsave(&info->lock,flags);
4086 info->tx_active = 0;
4087 info->tx_count = info->tx_put = info->tx_get = 0;
4089 spin_unlock_irqrestore(&info->lock,flags);
4091 #if SYNCLINK_GENERIC_HDLC
4092 if (info->netcount)
4093 hdlcdev_tx_done(info);
4094 else
4095 #endif
4096 bh_transmit(info);
4099 #if SYNCLINK_GENERIC_HDLC
4102 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
4103 * set encoding and frame check sequence (FCS) options
4105 * dev pointer to network device structure
4106 * encoding serial encoding setting
4107 * parity FCS setting
4109 * returns 0 if success, otherwise error code
4111 static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
4112 unsigned short parity)
4114 MGSLPC_INFO *info = dev_to_port(dev);
4115 unsigned char new_encoding;
4116 unsigned short new_crctype;
4118 /* return error if TTY interface open */
4119 if (info->count)
4120 return -EBUSY;
4122 switch (encoding)
4124 case ENCODING_NRZ: new_encoding = HDLC_ENCODING_NRZ; break;
4125 case ENCODING_NRZI: new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
4126 case ENCODING_FM_MARK: new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
4127 case ENCODING_FM_SPACE: new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
4128 case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
4129 default: return -EINVAL;
4132 switch (parity)
4134 case PARITY_NONE: new_crctype = HDLC_CRC_NONE; break;
4135 case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
4136 case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
4137 default: return -EINVAL;
4140 info->params.encoding = new_encoding;
4141 info->params.crc_type = new_crctype;
4143 /* if network interface up, reprogram hardware */
4144 if (info->netcount)
4145 mgslpc_program_hw(info);
4147 return 0;
4151 * called by generic HDLC layer to send frame
4153 * skb socket buffer containing HDLC frame
4154 * dev pointer to network device structure
4156 * returns 0 if success, otherwise error code
4158 static int hdlcdev_xmit(struct sk_buff *skb, struct net_device *dev)
4160 MGSLPC_INFO *info = dev_to_port(dev);
4161 struct net_device_stats *stats = hdlc_stats(dev);
4162 unsigned long flags;
4164 if (debug_level >= DEBUG_LEVEL_INFO)
4165 printk(KERN_INFO "%s:hdlc_xmit(%s)\n",__FILE__,dev->name);
4167 /* stop sending until this frame completes */
4168 netif_stop_queue(dev);
4170 /* copy data to device buffers */
4171 skb_copy_from_linear_data(skb, info->tx_buf, skb->len);
4172 info->tx_get = 0;
4173 info->tx_put = info->tx_count = skb->len;
4175 /* update network statistics */
4176 stats->tx_packets++;
4177 stats->tx_bytes += skb->len;
4179 /* done with socket buffer, so free it */
4180 dev_kfree_skb(skb);
4182 /* save start time for transmit timeout detection */
4183 dev->trans_start = jiffies;
4185 /* start hardware transmitter if necessary */
4186 spin_lock_irqsave(&info->lock,flags);
4187 if (!info->tx_active)
4188 tx_start(info);
4189 spin_unlock_irqrestore(&info->lock,flags);
4191 return 0;
4195 * called by network layer when interface enabled
4196 * claim resources and initialize hardware
4198 * dev pointer to network device structure
4200 * returns 0 if success, otherwise error code
4202 static int hdlcdev_open(struct net_device *dev)
4204 MGSLPC_INFO *info = dev_to_port(dev);
4205 int rc;
4206 unsigned long flags;
4208 if (debug_level >= DEBUG_LEVEL_INFO)
4209 printk("%s:hdlcdev_open(%s)\n",__FILE__,dev->name);
4211 /* generic HDLC layer open processing */
4212 if ((rc = hdlc_open(dev)))
4213 return rc;
4215 /* arbitrate between network and tty opens */
4216 spin_lock_irqsave(&info->netlock, flags);
4217 if (info->count != 0 || info->netcount != 0) {
4218 printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
4219 spin_unlock_irqrestore(&info->netlock, flags);
4220 return -EBUSY;
4222 info->netcount=1;
4223 spin_unlock_irqrestore(&info->netlock, flags);
4225 /* claim resources and init adapter */
4226 if ((rc = startup(info)) != 0) {
4227 spin_lock_irqsave(&info->netlock, flags);
4228 info->netcount=0;
4229 spin_unlock_irqrestore(&info->netlock, flags);
4230 return rc;
4233 /* assert DTR and RTS, apply hardware settings */
4234 info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
4235 mgslpc_program_hw(info);
4237 /* enable network layer transmit */
4238 dev->trans_start = jiffies;
4239 netif_start_queue(dev);
4241 /* inform generic HDLC layer of current DCD status */
4242 spin_lock_irqsave(&info->lock, flags);
4243 get_signals(info);
4244 spin_unlock_irqrestore(&info->lock, flags);
4245 if (info->serial_signals & SerialSignal_DCD)
4246 netif_carrier_on(dev);
4247 else
4248 netif_carrier_off(dev);
4249 return 0;
4253 * called by network layer when interface is disabled
4254 * shutdown hardware and release resources
4256 * dev pointer to network device structure
4258 * returns 0 if success, otherwise error code
4260 static int hdlcdev_close(struct net_device *dev)
4262 MGSLPC_INFO *info = dev_to_port(dev);
4263 unsigned long flags;
4265 if (debug_level >= DEBUG_LEVEL_INFO)
4266 printk("%s:hdlcdev_close(%s)\n",__FILE__,dev->name);
4268 netif_stop_queue(dev);
4270 /* shutdown adapter and release resources */
4271 shutdown(info);
4273 hdlc_close(dev);
4275 spin_lock_irqsave(&info->netlock, flags);
4276 info->netcount=0;
4277 spin_unlock_irqrestore(&info->netlock, flags);
4279 return 0;
4283 * called by network layer to process IOCTL call to network device
4285 * dev pointer to network device structure
4286 * ifr pointer to network interface request structure
4287 * cmd IOCTL command code
4289 * returns 0 if success, otherwise error code
4291 static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
4293 const size_t size = sizeof(sync_serial_settings);
4294 sync_serial_settings new_line;
4295 sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
4296 MGSLPC_INFO *info = dev_to_port(dev);
4297 unsigned int flags;
4299 if (debug_level >= DEBUG_LEVEL_INFO)
4300 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__,dev->name);
4302 /* return error if TTY interface open */
4303 if (info->count)
4304 return -EBUSY;
4306 if (cmd != SIOCWANDEV)
4307 return hdlc_ioctl(dev, ifr, cmd);
4309 switch(ifr->ifr_settings.type) {
4310 case IF_GET_IFACE: /* return current sync_serial_settings */
4312 ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
4313 if (ifr->ifr_settings.size < size) {
4314 ifr->ifr_settings.size = size; /* data size wanted */
4315 return -ENOBUFS;
4318 flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4319 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4320 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4321 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4323 switch (flags){
4324 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
4325 case (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_INT; break;
4326 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG): new_line.clock_type = CLOCK_TXINT; break;
4327 case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
4328 default: new_line.clock_type = CLOCK_DEFAULT;
4331 new_line.clock_rate = info->params.clock_speed;
4332 new_line.loopback = info->params.loopback ? 1:0;
4334 if (copy_to_user(line, &new_line, size))
4335 return -EFAULT;
4336 return 0;
4338 case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */
4340 if(!capable(CAP_NET_ADMIN))
4341 return -EPERM;
4342 if (copy_from_user(&new_line, line, size))
4343 return -EFAULT;
4345 switch (new_line.clock_type)
4347 case CLOCK_EXT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
4348 case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
4349 case CLOCK_INT: flags = HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG; break;
4350 case CLOCK_TXINT: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG; break;
4351 case CLOCK_DEFAULT: flags = info->params.flags &
4352 (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4353 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4354 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4355 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN); break;
4356 default: return -EINVAL;
4359 if (new_line.loopback != 0 && new_line.loopback != 1)
4360 return -EINVAL;
4362 info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
4363 HDLC_FLAG_RXC_BRG | HDLC_FLAG_RXC_TXCPIN |
4364 HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
4365 HDLC_FLAG_TXC_BRG | HDLC_FLAG_TXC_RXCPIN);
4366 info->params.flags |= flags;
4368 info->params.loopback = new_line.loopback;
4370 if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
4371 info->params.clock_speed = new_line.clock_rate;
4372 else
4373 info->params.clock_speed = 0;
4375 /* if network interface up, reprogram hardware */
4376 if (info->netcount)
4377 mgslpc_program_hw(info);
4378 return 0;
4380 default:
4381 return hdlc_ioctl(dev, ifr, cmd);
4386 * called by network layer when transmit timeout is detected
4388 * dev pointer to network device structure
4390 static void hdlcdev_tx_timeout(struct net_device *dev)
4392 MGSLPC_INFO *info = dev_to_port(dev);
4393 struct net_device_stats *stats = hdlc_stats(dev);
4394 unsigned long flags;
4396 if (debug_level >= DEBUG_LEVEL_INFO)
4397 printk("hdlcdev_tx_timeout(%s)\n",dev->name);
4399 stats->tx_errors++;
4400 stats->tx_aborted_errors++;
4402 spin_lock_irqsave(&info->lock,flags);
4403 tx_stop(info);
4404 spin_unlock_irqrestore(&info->lock,flags);
4406 netif_wake_queue(dev);
4410 * called by device driver when transmit completes
4411 * reenable network layer transmit if stopped
4413 * info pointer to device instance information
4415 static void hdlcdev_tx_done(MGSLPC_INFO *info)
4417 if (netif_queue_stopped(info->netdev))
4418 netif_wake_queue(info->netdev);
4422 * called by device driver when frame received
4423 * pass frame to network layer
4425 * info pointer to device instance information
4426 * buf pointer to buffer contianing frame data
4427 * size count of data bytes in buf
4429 static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size)
4431 struct sk_buff *skb = dev_alloc_skb(size);
4432 struct net_device *dev = info->netdev;
4433 struct net_device_stats *stats = hdlc_stats(dev);
4435 if (debug_level >= DEBUG_LEVEL_INFO)
4436 printk("hdlcdev_rx(%s)\n",dev->name);
4438 if (skb == NULL) {
4439 printk(KERN_NOTICE "%s: can't alloc skb, dropping packet\n", dev->name);
4440 stats->rx_dropped++;
4441 return;
4444 memcpy(skb_put(skb, size),buf,size);
4446 skb->protocol = hdlc_type_trans(skb, info->netdev);
4448 stats->rx_packets++;
4449 stats->rx_bytes += size;
4451 netif_rx(skb);
4453 info->netdev->last_rx = jiffies;
4457 * called by device driver when adding device instance
4458 * do generic HDLC initialization
4460 * info pointer to device instance information
4462 * returns 0 if success, otherwise error code
4464 static int hdlcdev_init(MGSLPC_INFO *info)
4466 int rc;
4467 struct net_device *dev;
4468 hdlc_device *hdlc;
4470 /* allocate and initialize network and HDLC layer objects */
4472 if (!(dev = alloc_hdlcdev(info))) {
4473 printk(KERN_ERR "%s:hdlc device allocation failure\n",__FILE__);
4474 return -ENOMEM;
4477 /* for network layer reporting purposes only */
4478 dev->base_addr = info->io_base;
4479 dev->irq = info->irq_level;
4481 /* network layer callbacks and settings */
4482 dev->do_ioctl = hdlcdev_ioctl;
4483 dev->open = hdlcdev_open;
4484 dev->stop = hdlcdev_close;
4485 dev->tx_timeout = hdlcdev_tx_timeout;
4486 dev->watchdog_timeo = 10*HZ;
4487 dev->tx_queue_len = 50;
4489 /* generic HDLC layer callbacks and settings */
4490 hdlc = dev_to_hdlc(dev);
4491 hdlc->attach = hdlcdev_attach;
4492 hdlc->xmit = hdlcdev_xmit;
4494 /* register objects with HDLC layer */
4495 if ((rc = register_hdlc_device(dev))) {
4496 printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
4497 free_netdev(dev);
4498 return rc;
4501 info->netdev = dev;
4502 return 0;
4506 * called by device driver when removing device instance
4507 * do generic HDLC cleanup
4509 * info pointer to device instance information
4511 static void hdlcdev_exit(MGSLPC_INFO *info)
4513 unregister_hdlc_device(info->netdev);
4514 free_netdev(info->netdev);
4515 info->netdev = NULL;
4518 #endif /* CONFIG_HDLC */