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))
31 # define BREAKPOINT() asm(" int $3");
33 # define BREAKPOINT() { }
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>
54 #include <linux/seq_file.h>
55 #include <linux/slab.h>
56 #include <linux/netdevice.h>
57 #include <linux/vmalloc.h>
58 #include <linux/init.h>
59 #include <linux/delay.h>
60 #include <linux/ioctl.h>
61 #include <linux/synclink.h>
63 #include <asm/system.h>
67 #include <linux/bitops.h>
68 #include <asm/types.h>
69 #include <linux/termios.h>
70 #include <linux/workqueue.h>
71 #include <linux/hdlc.h>
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
80 #define SYNCLINK_GENERIC_HDLC 0
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 static MGSL_PARAMS default_params
= {
91 MGSL_MODE_HDLC
, /* unsigned long mode */
92 0, /* unsigned char loopback; */
93 HDLC_FLAG_UNDERRUN_ABORT15
, /* unsigned short flags; */
94 HDLC_ENCODING_NRZI_SPACE
, /* unsigned char encoding; */
95 0, /* unsigned long clock_speed; */
96 0xff, /* unsigned char addr_filter; */
97 HDLC_CRC_16_CCITT
, /* unsigned short crc_type; */
98 HDLC_PREAMBLE_LENGTH_8BITS
, /* unsigned char preamble_length; */
99 HDLC_PREAMBLE_PATTERN_NONE
, /* unsigned char preamble; */
100 9600, /* unsigned long data_rate; */
101 8, /* unsigned char data_bits; */
102 1, /* unsigned char stop_bits; */
103 ASYNC_PARITY_NONE
/* unsigned char parity; */
109 unsigned char status
;
113 /* The queue of BH actions to be performed */
116 #define BH_TRANSMIT 2
119 #define IO_PIN_SHUTDOWN_LIMIT 100
121 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
123 struct _input_signal_events
{
136 * Device instance data structure
139 typedef struct _mgslpc_info
{
140 struct tty_port port
;
141 void *if_ptr
; /* General purpose pointer (used by SPPP) */
145 struct mgsl_icount icount
;
148 int x_char
; /* xon/xoff character */
149 unsigned char read_status_mask
;
150 unsigned char ignore_status_mask
;
152 unsigned char *tx_buf
;
157 /* circular list of fixed length rx buffers */
159 unsigned char *rx_buf
; /* memory allocated for all rx buffers */
160 int rx_buf_total_size
; /* size of memory allocated for rx buffers */
161 int rx_put
; /* index of next empty rx buffer */
162 int rx_get
; /* index of next full rx buffer */
163 int rx_buf_size
; /* size in bytes of single rx buffer */
164 int rx_buf_count
; /* total number of rx buffers */
165 int rx_frame_count
; /* number of full rx buffers */
167 wait_queue_head_t status_event_wait_q
;
168 wait_queue_head_t event_wait_q
;
169 struct timer_list tx_timer
; /* HDLC transmit timeout timer */
170 struct _mgslpc_info
*next_device
; /* device list link */
172 unsigned short imra_value
;
173 unsigned short imrb_value
;
174 unsigned char pim_value
;
177 struct work_struct task
; /* task structure for scheduling bh */
186 int dcd_chkcount
; /* check counts to prevent */
187 int cts_chkcount
; /* too many IRQs if a signal */
188 int dsr_chkcount
; /* is floating */
199 int if_mode
; /* serial interface selection (RS-232, v.35 etc) */
201 char device_name
[25]; /* device instance name */
203 unsigned int io_base
; /* base I/O address of adapter */
204 unsigned int irq_level
;
206 MGSL_PARAMS params
; /* communications parameters */
208 unsigned char serial_signals
; /* current serial signal states */
210 bool irq_occurred
; /* for diagnostics use */
212 unsigned int init_error
; /* startup error (DIAGS) */
214 char flag_buf
[MAX_ASYNC_BUFFER_SIZE
];
215 bool drop_rts_on_tx_done
;
217 struct _input_signal_events input_signal_events
;
220 struct pcmcia_device
*p_dev
;
223 /* SPPP/Cisco HDLC device parts */
227 #if SYNCLINK_GENERIC_HDLC
228 struct net_device
*netdev
;
233 #define MGSLPC_MAGIC 0x5402
236 * The size of the serial xmit buffer is 1 page, or 4096 bytes
238 #define TXBUFSIZE 4096
241 #define CHA 0x00 /* channel A offset */
242 #define CHB 0x40 /* channel B offset */
245 * FIXME: PPC has PVR defined in asm/reg.h. For now we just undef it.
292 #define IRQ_BREAK_ON BIT15 // rx break detected
293 #define IRQ_DATAOVERRUN BIT14 // receive data overflow
294 #define IRQ_ALLSENT BIT13 // all sent
295 #define IRQ_UNDERRUN BIT12 // transmit data underrun
296 #define IRQ_TIMER BIT11 // timer interrupt
297 #define IRQ_CTS BIT10 // CTS status change
298 #define IRQ_TXREPEAT BIT9 // tx message repeat
299 #define IRQ_TXFIFO BIT8 // transmit pool ready
300 #define IRQ_RXEOM BIT7 // receive message end
301 #define IRQ_EXITHUNT BIT6 // receive frame start
302 #define IRQ_RXTIME BIT6 // rx char timeout
303 #define IRQ_DCD BIT2 // carrier detect status change
304 #define IRQ_OVERRUN BIT1 // receive frame overflow
305 #define IRQ_RXFIFO BIT0 // receive pool full
309 #define XFW BIT6 // transmit FIFO write enable
310 #define CEC BIT2 // command executing
311 #define CTS BIT1 // CTS state
316 #define PVR_AUTOCTS BIT3
317 #define PVR_RS232 0x20 /* 0010b */
318 #define PVR_V35 0xe0 /* 1110b */
319 #define PVR_RS422 0x40 /* 0100b */
321 /* Register access functions */
323 #define write_reg(info, reg, val) outb((val),(info)->io_base + (reg))
324 #define read_reg(info, reg) inb((info)->io_base + (reg))
326 #define read_reg16(info, reg) inw((info)->io_base + (reg))
327 #define write_reg16(info, reg, val) outw((val), (info)->io_base + (reg))
329 #define set_reg_bits(info, reg, mask) \
330 write_reg(info, (reg), \
331 (unsigned char) (read_reg(info, (reg)) | (mask)))
332 #define clear_reg_bits(info, reg, mask) \
333 write_reg(info, (reg), \
334 (unsigned char) (read_reg(info, (reg)) & ~(mask)))
336 * interrupt enable/disable routines
338 static void irq_disable(MGSLPC_INFO
*info
, unsigned char channel
, unsigned short mask
)
340 if (channel
== CHA
) {
341 info
->imra_value
|= mask
;
342 write_reg16(info
, CHA
+ IMR
, info
->imra_value
);
344 info
->imrb_value
|= mask
;
345 write_reg16(info
, CHB
+ IMR
, info
->imrb_value
);
348 static void irq_enable(MGSLPC_INFO
*info
, unsigned char channel
, unsigned short mask
)
350 if (channel
== CHA
) {
351 info
->imra_value
&= ~mask
;
352 write_reg16(info
, CHA
+ IMR
, info
->imra_value
);
354 info
->imrb_value
&= ~mask
;
355 write_reg16(info
, CHB
+ IMR
, info
->imrb_value
);
359 #define port_irq_disable(info, mask) \
360 { info->pim_value |= (mask); write_reg(info, PIM, info->pim_value); }
362 #define port_irq_enable(info, mask) \
363 { info->pim_value &= ~(mask); write_reg(info, PIM, info->pim_value); }
365 static void rx_start(MGSLPC_INFO
*info
);
366 static void rx_stop(MGSLPC_INFO
*info
);
368 static void tx_start(MGSLPC_INFO
*info
, struct tty_struct
*tty
);
369 static void tx_stop(MGSLPC_INFO
*info
);
370 static void tx_set_idle(MGSLPC_INFO
*info
);
372 static void get_signals(MGSLPC_INFO
*info
);
373 static void set_signals(MGSLPC_INFO
*info
);
375 static void reset_device(MGSLPC_INFO
*info
);
377 static void hdlc_mode(MGSLPC_INFO
*info
);
378 static void async_mode(MGSLPC_INFO
*info
);
380 static void tx_timeout(unsigned long context
);
382 static int carrier_raised(struct tty_port
*port
);
383 static void dtr_rts(struct tty_port
*port
, int onoff
);
385 #if SYNCLINK_GENERIC_HDLC
386 #define dev_to_port(D) (dev_to_hdlc(D)->priv)
387 static void hdlcdev_tx_done(MGSLPC_INFO
*info
);
388 static void hdlcdev_rx(MGSLPC_INFO
*info
, char *buf
, int size
);
389 static int hdlcdev_init(MGSLPC_INFO
*info
);
390 static void hdlcdev_exit(MGSLPC_INFO
*info
);
393 static void trace_block(MGSLPC_INFO
*info
,const char* data
, int count
, int xmit
);
395 static bool register_test(MGSLPC_INFO
*info
);
396 static bool irq_test(MGSLPC_INFO
*info
);
397 static int adapter_test(MGSLPC_INFO
*info
);
399 static int claim_resources(MGSLPC_INFO
*info
);
400 static void release_resources(MGSLPC_INFO
*info
);
401 static void mgslpc_add_device(MGSLPC_INFO
*info
);
402 static void mgslpc_remove_device(MGSLPC_INFO
*info
);
404 static bool rx_get_frame(MGSLPC_INFO
*info
, struct tty_struct
*tty
);
405 static void rx_reset_buffers(MGSLPC_INFO
*info
);
406 static int rx_alloc_buffers(MGSLPC_INFO
*info
);
407 static void rx_free_buffers(MGSLPC_INFO
*info
);
409 static irqreturn_t
mgslpc_isr(int irq
, void *dev_id
);
412 * Bottom half interrupt handlers
414 static void bh_handler(struct work_struct
*work
);
415 static void bh_transmit(MGSLPC_INFO
*info
, struct tty_struct
*tty
);
416 static void bh_status(MGSLPC_INFO
*info
);
421 static int tiocmget(struct tty_struct
*tty
, struct file
*file
);
422 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
423 unsigned int set
, unsigned int clear
);
424 static int get_stats(MGSLPC_INFO
*info
, struct mgsl_icount __user
*user_icount
);
425 static int get_params(MGSLPC_INFO
*info
, MGSL_PARAMS __user
*user_params
);
426 static int set_params(MGSLPC_INFO
*info
, MGSL_PARAMS __user
*new_params
, struct tty_struct
*tty
);
427 static int get_txidle(MGSLPC_INFO
*info
, int __user
*idle_mode
);
428 static int set_txidle(MGSLPC_INFO
*info
, int idle_mode
);
429 static int set_txenable(MGSLPC_INFO
*info
, int enable
, struct tty_struct
*tty
);
430 static int tx_abort(MGSLPC_INFO
*info
);
431 static int set_rxenable(MGSLPC_INFO
*info
, int enable
);
432 static int wait_events(MGSLPC_INFO
*info
, int __user
*mask
);
434 static MGSLPC_INFO
*mgslpc_device_list
= NULL
;
435 static int mgslpc_device_count
= 0;
438 * Set this param to non-zero to load eax with the
439 * .text section address and breakpoint on module load.
440 * This is useful for use with gdb and add-symbol-file command.
442 static int break_on_load
=0;
445 * Driver major number, defaults to zero to get auto
446 * assigned major number. May be forced as module parameter.
448 static int ttymajor
=0;
450 static int debug_level
= 0;
451 static int maxframe
[MAX_DEVICE_COUNT
] = {0,};
453 module_param(break_on_load
, bool, 0);
454 module_param(ttymajor
, int, 0);
455 module_param(debug_level
, int, 0);
456 module_param_array(maxframe
, int, NULL
, 0);
458 MODULE_LICENSE("GPL");
460 static char *driver_name
= "SyncLink PC Card driver";
461 static char *driver_version
= "$Revision: 4.34 $";
463 static struct tty_driver
*serial_driver
;
465 /* number of characters left in xmit buffer before we ask for more */
466 #define WAKEUP_CHARS 256
468 static void mgslpc_change_params(MGSLPC_INFO
*info
, struct tty_struct
*tty
);
469 static void mgslpc_wait_until_sent(struct tty_struct
*tty
, int timeout
);
471 /* PCMCIA prototypes */
473 static int mgslpc_config(struct pcmcia_device
*link
);
474 static void mgslpc_release(u_long arg
);
475 static void mgslpc_detach(struct pcmcia_device
*p_dev
);
478 * 1st function defined in .text section. Calling this function in
479 * init_module() followed by a breakpoint allows a remote debugger
480 * (gdb) to get the .text address for the add-symbol-file command.
481 * This allows remote debugging of dynamically loadable modules.
483 static void* mgslpc_get_text_ptr(void)
485 return mgslpc_get_text_ptr
;
489 * line discipline callback wrappers
491 * The wrappers maintain line discipline references
492 * while calling into the line discipline.
494 * ldisc_receive_buf - pass receive data to line discipline
497 static void ldisc_receive_buf(struct tty_struct
*tty
,
498 const __u8
*data
, char *flags
, int count
)
500 struct tty_ldisc
*ld
;
503 ld
= tty_ldisc_ref(tty
);
505 if (ld
->ops
->receive_buf
)
506 ld
->ops
->receive_buf(tty
, data
, flags
, count
);
511 static const struct tty_port_operations mgslpc_port_ops
= {
512 .carrier_raised
= carrier_raised
,
516 static int mgslpc_probe(struct pcmcia_device
*link
)
521 if (debug_level
>= DEBUG_LEVEL_INFO
)
522 printk("mgslpc_attach\n");
524 info
= kzalloc(sizeof(MGSLPC_INFO
), GFP_KERNEL
);
526 printk("Error can't allocate device instance data\n");
530 info
->magic
= MGSLPC_MAGIC
;
531 tty_port_init(&info
->port
);
532 info
->port
.ops
= &mgslpc_port_ops
;
533 INIT_WORK(&info
->task
, bh_handler
);
534 info
->max_frame_size
= 4096;
535 info
->port
.close_delay
= 5*HZ
/10;
536 info
->port
.closing_wait
= 30*HZ
;
537 init_waitqueue_head(&info
->status_event_wait_q
);
538 init_waitqueue_head(&info
->event_wait_q
);
539 spin_lock_init(&info
->lock
);
540 spin_lock_init(&info
->netlock
);
541 memcpy(&info
->params
,&default_params
,sizeof(MGSL_PARAMS
));
542 info
->idle_mode
= HDLC_TXIDLE_FLAGS
;
543 info
->imra_value
= 0xffff;
544 info
->imrb_value
= 0xffff;
545 info
->pim_value
= 0xff;
550 /* Initialize the struct pcmcia_device structure */
552 ret
= mgslpc_config(link
);
556 mgslpc_add_device(info
);
561 /* Card has been inserted.
564 static int mgslpc_ioprobe(struct pcmcia_device
*p_dev
, void *priv_data
)
566 return pcmcia_request_io(p_dev
);
569 static int mgslpc_config(struct pcmcia_device
*link
)
571 MGSLPC_INFO
*info
= link
->priv
;
574 if (debug_level
>= DEBUG_LEVEL_INFO
)
575 printk("mgslpc_config(0x%p)\n", link
);
577 link
->config_flags
|= CONF_ENABLE_IRQ
| CONF_AUTO_SET_IO
;
579 ret
= pcmcia_loop_config(link
, mgslpc_ioprobe
, NULL
);
583 link
->config_index
= 8;
584 link
->config_regs
= PRESENT_OPTION
;
586 ret
= pcmcia_request_irq(link
, mgslpc_isr
);
589 ret
= pcmcia_enable_device(link
);
593 info
->io_base
= link
->resource
[0]->start
;
594 info
->irq_level
= link
->irq
;
598 mgslpc_release((u_long
)link
);
602 /* Card has been removed.
603 * Unregister device and release PCMCIA configuration.
604 * If device is open, postpone until it is closed.
606 static void mgslpc_release(u_long arg
)
608 struct pcmcia_device
*link
= (struct pcmcia_device
*)arg
;
610 if (debug_level
>= DEBUG_LEVEL_INFO
)
611 printk("mgslpc_release(0x%p)\n", link
);
613 pcmcia_disable_device(link
);
616 static void mgslpc_detach(struct pcmcia_device
*link
)
618 if (debug_level
>= DEBUG_LEVEL_INFO
)
619 printk("mgslpc_detach(0x%p)\n", link
);
621 ((MGSLPC_INFO
*)link
->priv
)->stop
= 1;
622 mgslpc_release((u_long
)link
);
624 mgslpc_remove_device((MGSLPC_INFO
*)link
->priv
);
627 static int mgslpc_suspend(struct pcmcia_device
*link
)
629 MGSLPC_INFO
*info
= link
->priv
;
636 static int mgslpc_resume(struct pcmcia_device
*link
)
638 MGSLPC_INFO
*info
= link
->priv
;
646 static inline bool mgslpc_paranoia_check(MGSLPC_INFO
*info
,
647 char *name
, const char *routine
)
649 #ifdef MGSLPC_PARANOIA_CHECK
650 static const char *badmagic
=
651 "Warning: bad magic number for mgsl struct (%s) in %s\n";
652 static const char *badinfo
=
653 "Warning: null mgslpc_info for (%s) in %s\n";
656 printk(badinfo
, name
, routine
);
659 if (info
->magic
!= MGSLPC_MAGIC
) {
660 printk(badmagic
, name
, routine
);
671 #define CMD_RXFIFO BIT7 // release current rx FIFO
672 #define CMD_RXRESET BIT6 // receiver reset
673 #define CMD_RXFIFO_READ BIT5
674 #define CMD_START_TIMER BIT4
675 #define CMD_TXFIFO BIT3 // release current tx FIFO
676 #define CMD_TXEOM BIT1 // transmit end message
677 #define CMD_TXRESET BIT0 // transmit reset
679 static bool wait_command_complete(MGSLPC_INFO
*info
, unsigned char channel
)
682 /* wait for command completion */
683 while (read_reg(info
, (unsigned char)(channel
+STAR
)) & BIT2
) {
691 static void issue_command(MGSLPC_INFO
*info
, unsigned char channel
, unsigned char cmd
)
693 wait_command_complete(info
, channel
);
694 write_reg(info
, (unsigned char) (channel
+ CMDR
), cmd
);
697 static void tx_pause(struct tty_struct
*tty
)
699 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
702 if (mgslpc_paranoia_check(info
, tty
->name
, "tx_pause"))
704 if (debug_level
>= DEBUG_LEVEL_INFO
)
705 printk("tx_pause(%s)\n",info
->device_name
);
707 spin_lock_irqsave(&info
->lock
,flags
);
708 if (info
->tx_enabled
)
710 spin_unlock_irqrestore(&info
->lock
,flags
);
713 static void tx_release(struct tty_struct
*tty
)
715 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
718 if (mgslpc_paranoia_check(info
, tty
->name
, "tx_release"))
720 if (debug_level
>= DEBUG_LEVEL_INFO
)
721 printk("tx_release(%s)\n",info
->device_name
);
723 spin_lock_irqsave(&info
->lock
,flags
);
724 if (!info
->tx_enabled
)
726 spin_unlock_irqrestore(&info
->lock
,flags
);
729 /* Return next bottom half action to perform.
730 * or 0 if nothing to do.
732 static int bh_action(MGSLPC_INFO
*info
)
737 spin_lock_irqsave(&info
->lock
,flags
);
739 if (info
->pending_bh
& BH_RECEIVE
) {
740 info
->pending_bh
&= ~BH_RECEIVE
;
742 } else if (info
->pending_bh
& BH_TRANSMIT
) {
743 info
->pending_bh
&= ~BH_TRANSMIT
;
745 } else if (info
->pending_bh
& BH_STATUS
) {
746 info
->pending_bh
&= ~BH_STATUS
;
751 /* Mark BH routine as complete */
752 info
->bh_running
= false;
753 info
->bh_requested
= false;
756 spin_unlock_irqrestore(&info
->lock
,flags
);
761 static void bh_handler(struct work_struct
*work
)
763 MGSLPC_INFO
*info
= container_of(work
, MGSLPC_INFO
, task
);
764 struct tty_struct
*tty
;
770 if (debug_level
>= DEBUG_LEVEL_BH
)
771 printk( "%s(%d):bh_handler(%s) entry\n",
772 __FILE__
,__LINE__
,info
->device_name
);
774 info
->bh_running
= true;
775 tty
= tty_port_tty_get(&info
->port
);
777 while((action
= bh_action(info
)) != 0) {
779 /* Process work item */
780 if ( debug_level
>= DEBUG_LEVEL_BH
)
781 printk( "%s(%d):bh_handler() work item action=%d\n",
782 __FILE__
,__LINE__
,action
);
787 while(rx_get_frame(info
, tty
));
790 bh_transmit(info
, tty
);
796 /* unknown work item ID */
797 printk("Unknown work item ID=%08X!\n", action
);
803 if (debug_level
>= DEBUG_LEVEL_BH
)
804 printk( "%s(%d):bh_handler(%s) exit\n",
805 __FILE__
,__LINE__
,info
->device_name
);
808 static void bh_transmit(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
810 if (debug_level
>= DEBUG_LEVEL_BH
)
811 printk("bh_transmit() entry on %s\n", info
->device_name
);
817 static void bh_status(MGSLPC_INFO
*info
)
819 info
->ri_chkcount
= 0;
820 info
->dsr_chkcount
= 0;
821 info
->dcd_chkcount
= 0;
822 info
->cts_chkcount
= 0;
825 /* eom: non-zero = end of frame */
826 static void rx_ready_hdlc(MGSLPC_INFO
*info
, int eom
)
828 unsigned char data
[2];
829 unsigned char fifo_count
, read_count
, i
;
830 RXBUF
*buf
= (RXBUF
*)(info
->rx_buf
+ (info
->rx_put
* info
->rx_buf_size
));
832 if (debug_level
>= DEBUG_LEVEL_ISR
)
833 printk("%s(%d):rx_ready_hdlc(eom=%d)\n",__FILE__
,__LINE__
,eom
);
835 if (!info
->rx_enabled
)
838 if (info
->rx_frame_count
>= info
->rx_buf_count
) {
839 /* no more free buffers */
840 issue_command(info
, CHA
, CMD_RXRESET
);
841 info
->pending_bh
|= BH_RECEIVE
;
842 info
->rx_overflow
= true;
843 info
->icount
.buf_overrun
++;
848 /* end of frame, get FIFO count from RBCL register */
849 if (!(fifo_count
= (unsigned char)(read_reg(info
, CHA
+RBCL
) & 0x1f)))
855 if (fifo_count
== 1) {
857 data
[0] = read_reg(info
, CHA
+ RXFIFO
);
860 *((unsigned short *) data
) = read_reg16(info
, CHA
+ RXFIFO
);
862 fifo_count
-= read_count
;
863 if (!fifo_count
&& eom
)
864 buf
->status
= data
[--read_count
];
866 for (i
= 0; i
< read_count
; i
++) {
867 if (buf
->count
>= info
->max_frame_size
) {
868 /* frame too large, reset receiver and reset current buffer */
869 issue_command(info
, CHA
, CMD_RXRESET
);
873 *(buf
->data
+ buf
->count
) = data
[i
];
876 } while (fifo_count
);
879 info
->pending_bh
|= BH_RECEIVE
;
880 info
->rx_frame_count
++;
882 if (info
->rx_put
>= info
->rx_buf_count
)
885 issue_command(info
, CHA
, CMD_RXFIFO
);
888 static void rx_ready_async(MGSLPC_INFO
*info
, int tcd
, struct tty_struct
*tty
)
890 unsigned char data
, status
, flag
;
893 struct mgsl_icount
*icount
= &info
->icount
;
896 /* early termination, get FIFO count from RBCL register */
897 fifo_count
= (unsigned char)(read_reg(info
, CHA
+RBCL
) & 0x1f);
899 /* Zero fifo count could mean 0 or 32 bytes available.
900 * If BIT5 of STAR is set then at least 1 byte is available.
902 if (!fifo_count
&& (read_reg(info
,CHA
+STAR
) & BIT5
))
907 tty_buffer_request_room(tty
, fifo_count
);
908 /* Flush received async data to receive data buffer. */
910 data
= read_reg(info
, CHA
+ RXFIFO
);
911 status
= read_reg(info
, CHA
+ RXFIFO
);
917 // if no frameing/crc error then save data
919 // BIT6:framing error
921 if (status
& (BIT7
+ BIT6
)) {
927 /* discard char if tty control flags say so */
928 if (status
& info
->ignore_status_mask
)
931 status
&= info
->read_status_mask
;
935 else if (status
& BIT6
)
938 work
+= tty_insert_flip_char(tty
, data
, flag
);
940 issue_command(info
, CHA
, CMD_RXFIFO
);
942 if (debug_level
>= DEBUG_LEVEL_ISR
) {
943 printk("%s(%d):rx_ready_async",
945 printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
946 __FILE__
,__LINE__
,icount
->rx
,icount
->brk
,
947 icount
->parity
,icount
->frame
,icount
->overrun
);
951 tty_flip_buffer_push(tty
);
955 static void tx_done(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
957 if (!info
->tx_active
)
960 info
->tx_active
= false;
961 info
->tx_aborting
= false;
963 if (info
->params
.mode
== MGSL_MODE_ASYNC
)
966 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
967 del_timer(&info
->tx_timer
);
969 if (info
->drop_rts_on_tx_done
) {
971 if (info
->serial_signals
& SerialSignal_RTS
) {
972 info
->serial_signals
&= ~SerialSignal_RTS
;
975 info
->drop_rts_on_tx_done
= false;
978 #if SYNCLINK_GENERIC_HDLC
980 hdlcdev_tx_done(info
);
984 if (tty
->stopped
|| tty
->hw_stopped
) {
988 info
->pending_bh
|= BH_TRANSMIT
;
992 static void tx_ready(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
994 unsigned char fifo_count
= 32;
997 if (debug_level
>= DEBUG_LEVEL_ISR
)
998 printk("%s(%d):tx_ready(%s)\n", __FILE__
,__LINE__
,info
->device_name
);
1000 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
1001 if (!info
->tx_active
)
1004 if (tty
->stopped
|| tty
->hw_stopped
) {
1008 if (!info
->tx_count
)
1009 info
->tx_active
= false;
1012 if (!info
->tx_count
)
1015 while (info
->tx_count
&& fifo_count
) {
1016 c
= min(2, min_t(int, fifo_count
, min(info
->tx_count
, TXBUFSIZE
- info
->tx_get
)));
1019 write_reg(info
, CHA
+ TXFIFO
, *(info
->tx_buf
+ info
->tx_get
));
1021 write_reg16(info
, CHA
+ TXFIFO
,
1022 *((unsigned short*)(info
->tx_buf
+ info
->tx_get
)));
1024 info
->tx_count
-= c
;
1025 info
->tx_get
= (info
->tx_get
+ c
) & (TXBUFSIZE
- 1);
1029 if (info
->params
.mode
== MGSL_MODE_ASYNC
) {
1030 if (info
->tx_count
< WAKEUP_CHARS
)
1031 info
->pending_bh
|= BH_TRANSMIT
;
1032 issue_command(info
, CHA
, CMD_TXFIFO
);
1035 issue_command(info
, CHA
, CMD_TXFIFO
);
1037 issue_command(info
, CHA
, CMD_TXFIFO
+ CMD_TXEOM
);
1041 static void cts_change(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
1044 if ((info
->cts_chkcount
)++ >= IO_PIN_SHUTDOWN_LIMIT
)
1045 irq_disable(info
, CHB
, IRQ_CTS
);
1047 if (info
->serial_signals
& SerialSignal_CTS
)
1048 info
->input_signal_events
.cts_up
++;
1050 info
->input_signal_events
.cts_down
++;
1051 wake_up_interruptible(&info
->status_event_wait_q
);
1052 wake_up_interruptible(&info
->event_wait_q
);
1054 if (info
->port
.flags
& ASYNC_CTS_FLOW
) {
1055 if (tty
->hw_stopped
) {
1056 if (info
->serial_signals
& SerialSignal_CTS
) {
1057 if (debug_level
>= DEBUG_LEVEL_ISR
)
1058 printk("CTS tx start...");
1060 tty
->hw_stopped
= 0;
1061 tx_start(info
, tty
);
1062 info
->pending_bh
|= BH_TRANSMIT
;
1066 if (!(info
->serial_signals
& SerialSignal_CTS
)) {
1067 if (debug_level
>= DEBUG_LEVEL_ISR
)
1068 printk("CTS tx stop...");
1070 tty
->hw_stopped
= 1;
1075 info
->pending_bh
|= BH_STATUS
;
1078 static void dcd_change(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
1081 if ((info
->dcd_chkcount
)++ >= IO_PIN_SHUTDOWN_LIMIT
)
1082 irq_disable(info
, CHB
, IRQ_DCD
);
1084 if (info
->serial_signals
& SerialSignal_DCD
) {
1085 info
->input_signal_events
.dcd_up
++;
1088 info
->input_signal_events
.dcd_down
++;
1089 #if SYNCLINK_GENERIC_HDLC
1090 if (info
->netcount
) {
1091 if (info
->serial_signals
& SerialSignal_DCD
)
1092 netif_carrier_on(info
->netdev
);
1094 netif_carrier_off(info
->netdev
);
1097 wake_up_interruptible(&info
->status_event_wait_q
);
1098 wake_up_interruptible(&info
->event_wait_q
);
1100 if (info
->port
.flags
& ASYNC_CHECK_CD
) {
1101 if (debug_level
>= DEBUG_LEVEL_ISR
)
1102 printk("%s CD now %s...", info
->device_name
,
1103 (info
->serial_signals
& SerialSignal_DCD
) ? "on" : "off");
1104 if (info
->serial_signals
& SerialSignal_DCD
)
1105 wake_up_interruptible(&info
->port
.open_wait
);
1107 if (debug_level
>= DEBUG_LEVEL_ISR
)
1108 printk("doing serial hangup...");
1113 info
->pending_bh
|= BH_STATUS
;
1116 static void dsr_change(MGSLPC_INFO
*info
)
1119 if ((info
->dsr_chkcount
)++ >= IO_PIN_SHUTDOWN_LIMIT
)
1120 port_irq_disable(info
, PVR_DSR
);
1122 if (info
->serial_signals
& SerialSignal_DSR
)
1123 info
->input_signal_events
.dsr_up
++;
1125 info
->input_signal_events
.dsr_down
++;
1126 wake_up_interruptible(&info
->status_event_wait_q
);
1127 wake_up_interruptible(&info
->event_wait_q
);
1128 info
->pending_bh
|= BH_STATUS
;
1131 static void ri_change(MGSLPC_INFO
*info
)
1134 if ((info
->ri_chkcount
)++ >= IO_PIN_SHUTDOWN_LIMIT
)
1135 port_irq_disable(info
, PVR_RI
);
1137 if (info
->serial_signals
& SerialSignal_RI
)
1138 info
->input_signal_events
.ri_up
++;
1140 info
->input_signal_events
.ri_down
++;
1141 wake_up_interruptible(&info
->status_event_wait_q
);
1142 wake_up_interruptible(&info
->event_wait_q
);
1143 info
->pending_bh
|= BH_STATUS
;
1146 /* Interrupt service routine entry point.
1150 * irq interrupt number that caused interrupt
1151 * dev_id device ID supplied during interrupt registration
1153 static irqreturn_t
mgslpc_isr(int dummy
, void *dev_id
)
1155 MGSLPC_INFO
*info
= dev_id
;
1156 struct tty_struct
*tty
;
1158 unsigned char gis
, pis
;
1161 if (debug_level
>= DEBUG_LEVEL_ISR
)
1162 printk("mgslpc_isr(%d) entry.\n", info
->irq_level
);
1164 if (!(info
->p_dev
->_locked
))
1167 tty
= tty_port_tty_get(&info
->port
);
1169 spin_lock(&info
->lock
);
1171 while ((gis
= read_reg(info
, CHA
+ GIS
))) {
1172 if (debug_level
>= DEBUG_LEVEL_ISR
)
1173 printk("mgslpc_isr %s gis=%04X\n", info
->device_name
,gis
);
1175 if ((gis
& 0x70) || count
> 1000) {
1176 printk("synclink_cs:hardware failed or ejected\n");
1181 if (gis
& (BIT1
+ BIT0
)) {
1182 isr
= read_reg16(info
, CHB
+ ISR
);
1184 dcd_change(info
, tty
);
1186 cts_change(info
, tty
);
1188 if (gis
& (BIT3
+ BIT2
))
1190 isr
= read_reg16(info
, CHA
+ ISR
);
1191 if (isr
& IRQ_TIMER
) {
1192 info
->irq_occurred
= true;
1193 irq_disable(info
, CHA
, IRQ_TIMER
);
1197 if (isr
& IRQ_EXITHUNT
) {
1198 info
->icount
.exithunt
++;
1199 wake_up_interruptible(&info
->event_wait_q
);
1201 if (isr
& IRQ_BREAK_ON
) {
1203 if (info
->port
.flags
& ASYNC_SAK
)
1206 if (isr
& IRQ_RXTIME
) {
1207 issue_command(info
, CHA
, CMD_RXFIFO_READ
);
1209 if (isr
& (IRQ_RXEOM
+ IRQ_RXFIFO
)) {
1210 if (info
->params
.mode
== MGSL_MODE_HDLC
)
1211 rx_ready_hdlc(info
, isr
& IRQ_RXEOM
);
1213 rx_ready_async(info
, isr
& IRQ_RXEOM
, tty
);
1217 if (isr
& IRQ_UNDERRUN
) {
1218 if (info
->tx_aborting
)
1219 info
->icount
.txabort
++;
1221 info
->icount
.txunder
++;
1224 else if (isr
& IRQ_ALLSENT
) {
1225 info
->icount
.txok
++;
1228 else if (isr
& IRQ_TXFIFO
)
1229 tx_ready(info
, tty
);
1232 pis
= read_reg(info
, CHA
+ PIS
);
1240 /* Request bottom half processing if there's something
1241 * for it to do and the bh is not already running
1244 if (info
->pending_bh
&& !info
->bh_running
&& !info
->bh_requested
) {
1245 if ( debug_level
>= DEBUG_LEVEL_ISR
)
1246 printk("%s(%d):%s queueing bh task.\n",
1247 __FILE__
,__LINE__
,info
->device_name
);
1248 schedule_work(&info
->task
);
1249 info
->bh_requested
= true;
1252 spin_unlock(&info
->lock
);
1255 if (debug_level
>= DEBUG_LEVEL_ISR
)
1256 printk("%s(%d):mgslpc_isr(%d)exit.\n",
1257 __FILE__
, __LINE__
, info
->irq_level
);
1262 /* Initialize and start device.
1264 static int startup(MGSLPC_INFO
* info
, struct tty_struct
*tty
)
1268 if (debug_level
>= DEBUG_LEVEL_INFO
)
1269 printk("%s(%d):startup(%s)\n",__FILE__
,__LINE__
,info
->device_name
);
1271 if (info
->port
.flags
& ASYNC_INITIALIZED
)
1274 if (!info
->tx_buf
) {
1275 /* allocate a page of memory for a transmit buffer */
1276 info
->tx_buf
= (unsigned char *)get_zeroed_page(GFP_KERNEL
);
1277 if (!info
->tx_buf
) {
1278 printk(KERN_ERR
"%s(%d):%s can't allocate transmit buffer\n",
1279 __FILE__
,__LINE__
,info
->device_name
);
1284 info
->pending_bh
= 0;
1286 memset(&info
->icount
, 0, sizeof(info
->icount
));
1288 setup_timer(&info
->tx_timer
, tx_timeout
, (unsigned long)info
);
1290 /* Allocate and claim adapter resources */
1291 retval
= claim_resources(info
);
1293 /* perform existance check and diagnostics */
1295 retval
= adapter_test(info
);
1298 if (capable(CAP_SYS_ADMIN
) && tty
)
1299 set_bit(TTY_IO_ERROR
, &tty
->flags
);
1300 release_resources(info
);
1304 /* program hardware for current parameters */
1305 mgslpc_change_params(info
, tty
);
1308 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
1310 info
->port
.flags
|= ASYNC_INITIALIZED
;
1315 /* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
1317 static void shutdown(MGSLPC_INFO
* info
, struct tty_struct
*tty
)
1319 unsigned long flags
;
1321 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
1324 if (debug_level
>= DEBUG_LEVEL_INFO
)
1325 printk("%s(%d):mgslpc_shutdown(%s)\n",
1326 __FILE__
,__LINE__
, info
->device_name
);
1328 /* clear status wait queue because status changes */
1329 /* can't happen after shutting down the hardware */
1330 wake_up_interruptible(&info
->status_event_wait_q
);
1331 wake_up_interruptible(&info
->event_wait_q
);
1333 del_timer_sync(&info
->tx_timer
);
1336 free_page((unsigned long) info
->tx_buf
);
1337 info
->tx_buf
= NULL
;
1340 spin_lock_irqsave(&info
->lock
,flags
);
1345 /* TODO:disable interrupts instead of reset to preserve signal states */
1348 if (!tty
|| tty
->termios
->c_cflag
& HUPCL
) {
1349 info
->serial_signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
1353 spin_unlock_irqrestore(&info
->lock
,flags
);
1355 release_resources(info
);
1358 set_bit(TTY_IO_ERROR
, &tty
->flags
);
1360 info
->port
.flags
&= ~ASYNC_INITIALIZED
;
1363 static void mgslpc_program_hw(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
1365 unsigned long flags
;
1367 spin_lock_irqsave(&info
->lock
,flags
);
1371 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
1373 if (info
->params
.mode
== MGSL_MODE_HDLC
|| info
->netcount
)
1380 info
->dcd_chkcount
= 0;
1381 info
->cts_chkcount
= 0;
1382 info
->ri_chkcount
= 0;
1383 info
->dsr_chkcount
= 0;
1385 irq_enable(info
, CHB
, IRQ_DCD
| IRQ_CTS
);
1386 port_irq_enable(info
, (unsigned char) PVR_DSR
| PVR_RI
);
1389 if (info
->netcount
|| (tty
&& (tty
->termios
->c_cflag
& CREAD
)))
1392 spin_unlock_irqrestore(&info
->lock
,flags
);
1395 /* Reconfigure adapter based on new parameters
1397 static void mgslpc_change_params(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
1402 if (!tty
|| !tty
->termios
)
1405 if (debug_level
>= DEBUG_LEVEL_INFO
)
1406 printk("%s(%d):mgslpc_change_params(%s)\n",
1407 __FILE__
,__LINE__
, info
->device_name
);
1409 cflag
= tty
->termios
->c_cflag
;
1411 /* if B0 rate (hangup) specified then negate DTR and RTS */
1412 /* otherwise assert DTR and RTS */
1414 info
->serial_signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
1416 info
->serial_signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
1418 /* byte size and parity */
1420 switch (cflag
& CSIZE
) {
1421 case CS5
: info
->params
.data_bits
= 5; break;
1422 case CS6
: info
->params
.data_bits
= 6; break;
1423 case CS7
: info
->params
.data_bits
= 7; break;
1424 case CS8
: info
->params
.data_bits
= 8; break;
1425 default: info
->params
.data_bits
= 7; break;
1429 info
->params
.stop_bits
= 2;
1431 info
->params
.stop_bits
= 1;
1433 info
->params
.parity
= ASYNC_PARITY_NONE
;
1434 if (cflag
& PARENB
) {
1436 info
->params
.parity
= ASYNC_PARITY_ODD
;
1438 info
->params
.parity
= ASYNC_PARITY_EVEN
;
1441 info
->params
.parity
= ASYNC_PARITY_SPACE
;
1445 /* calculate number of jiffies to transmit a full
1446 * FIFO (32 bytes) at specified data rate
1448 bits_per_char
= info
->params
.data_bits
+
1449 info
->params
.stop_bits
+ 1;
1451 /* if port data rate is set to 460800 or less then
1452 * allow tty settings to override, otherwise keep the
1453 * current data rate.
1455 if (info
->params
.data_rate
<= 460800) {
1456 info
->params
.data_rate
= tty_get_baud_rate(tty
);
1459 if ( info
->params
.data_rate
) {
1460 info
->timeout
= (32*HZ
*bits_per_char
) /
1461 info
->params
.data_rate
;
1463 info
->timeout
+= HZ
/50; /* Add .02 seconds of slop */
1465 if (cflag
& CRTSCTS
)
1466 info
->port
.flags
|= ASYNC_CTS_FLOW
;
1468 info
->port
.flags
&= ~ASYNC_CTS_FLOW
;
1471 info
->port
.flags
&= ~ASYNC_CHECK_CD
;
1473 info
->port
.flags
|= ASYNC_CHECK_CD
;
1475 /* process tty input control flags */
1477 info
->read_status_mask
= 0;
1479 info
->read_status_mask
|= BIT7
| BIT6
;
1481 info
->ignore_status_mask
|= BIT7
| BIT6
;
1483 mgslpc_program_hw(info
, tty
);
1486 /* Add a character to the transmit buffer
1488 static int mgslpc_put_char(struct tty_struct
*tty
, unsigned char ch
)
1490 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1491 unsigned long flags
;
1493 if (debug_level
>= DEBUG_LEVEL_INFO
) {
1494 printk( "%s(%d):mgslpc_put_char(%d) on %s\n",
1495 __FILE__
,__LINE__
,ch
,info
->device_name
);
1498 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_put_char"))
1504 spin_lock_irqsave(&info
->lock
,flags
);
1506 if (info
->params
.mode
== MGSL_MODE_ASYNC
|| !info
->tx_active
) {
1507 if (info
->tx_count
< TXBUFSIZE
- 1) {
1508 info
->tx_buf
[info
->tx_put
++] = ch
;
1509 info
->tx_put
&= TXBUFSIZE
-1;
1514 spin_unlock_irqrestore(&info
->lock
,flags
);
1518 /* Enable transmitter so remaining characters in the
1519 * transmit buffer are sent.
1521 static void mgslpc_flush_chars(struct tty_struct
*tty
)
1523 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1524 unsigned long flags
;
1526 if (debug_level
>= DEBUG_LEVEL_INFO
)
1527 printk( "%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
1528 __FILE__
,__LINE__
,info
->device_name
,info
->tx_count
);
1530 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_flush_chars"))
1533 if (info
->tx_count
<= 0 || tty
->stopped
||
1534 tty
->hw_stopped
|| !info
->tx_buf
)
1537 if (debug_level
>= DEBUG_LEVEL_INFO
)
1538 printk( "%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
1539 __FILE__
,__LINE__
,info
->device_name
);
1541 spin_lock_irqsave(&info
->lock
,flags
);
1542 if (!info
->tx_active
)
1543 tx_start(info
, tty
);
1544 spin_unlock_irqrestore(&info
->lock
,flags
);
1547 /* Send a block of data
1551 * tty pointer to tty information structure
1552 * buf pointer to buffer containing send data
1553 * count size of send data in bytes
1555 * Returns: number of characters written
1557 static int mgslpc_write(struct tty_struct
* tty
,
1558 const unsigned char *buf
, int count
)
1561 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1562 unsigned long flags
;
1564 if (debug_level
>= DEBUG_LEVEL_INFO
)
1565 printk( "%s(%d):mgslpc_write(%s) count=%d\n",
1566 __FILE__
,__LINE__
,info
->device_name
,count
);
1568 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_write") ||
1572 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
1573 if (count
> TXBUFSIZE
) {
1577 if (info
->tx_active
)
1579 else if (info
->tx_count
)
1585 min(TXBUFSIZE
- info
->tx_count
- 1,
1586 TXBUFSIZE
- info
->tx_put
));
1590 memcpy(info
->tx_buf
+ info
->tx_put
, buf
, c
);
1592 spin_lock_irqsave(&info
->lock
,flags
);
1593 info
->tx_put
= (info
->tx_put
+ c
) & (TXBUFSIZE
-1);
1594 info
->tx_count
+= c
;
1595 spin_unlock_irqrestore(&info
->lock
,flags
);
1602 if (info
->tx_count
&& !tty
->stopped
&& !tty
->hw_stopped
) {
1603 spin_lock_irqsave(&info
->lock
,flags
);
1604 if (!info
->tx_active
)
1605 tx_start(info
, tty
);
1606 spin_unlock_irqrestore(&info
->lock
,flags
);
1609 if (debug_level
>= DEBUG_LEVEL_INFO
)
1610 printk( "%s(%d):mgslpc_write(%s) returning=%d\n",
1611 __FILE__
,__LINE__
,info
->device_name
,ret
);
1615 /* Return the count of free bytes in transmit buffer
1617 static int mgslpc_write_room(struct tty_struct
*tty
)
1619 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1622 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_write_room"))
1625 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
1626 /* HDLC (frame oriented) mode */
1627 if (info
->tx_active
)
1630 return HDLC_MAX_FRAME_SIZE
;
1632 ret
= TXBUFSIZE
- info
->tx_count
- 1;
1637 if (debug_level
>= DEBUG_LEVEL_INFO
)
1638 printk("%s(%d):mgslpc_write_room(%s)=%d\n",
1639 __FILE__
,__LINE__
, info
->device_name
, ret
);
1643 /* Return the count of bytes in transmit buffer
1645 static int mgslpc_chars_in_buffer(struct tty_struct
*tty
)
1647 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1650 if (debug_level
>= DEBUG_LEVEL_INFO
)
1651 printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
1652 __FILE__
,__LINE__
, info
->device_name
);
1654 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_chars_in_buffer"))
1657 if (info
->params
.mode
== MGSL_MODE_HDLC
)
1658 rc
= info
->tx_active
? info
->max_frame_size
: 0;
1660 rc
= info
->tx_count
;
1662 if (debug_level
>= DEBUG_LEVEL_INFO
)
1663 printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
1664 __FILE__
,__LINE__
, info
->device_name
, rc
);
1669 /* Discard all data in the send buffer
1671 static void mgslpc_flush_buffer(struct tty_struct
*tty
)
1673 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1674 unsigned long flags
;
1676 if (debug_level
>= DEBUG_LEVEL_INFO
)
1677 printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
1678 __FILE__
,__LINE__
, info
->device_name
);
1680 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_flush_buffer"))
1683 spin_lock_irqsave(&info
->lock
,flags
);
1684 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
1685 del_timer(&info
->tx_timer
);
1686 spin_unlock_irqrestore(&info
->lock
,flags
);
1688 wake_up_interruptible(&tty
->write_wait
);
1692 /* Send a high-priority XON/XOFF character
1694 static void mgslpc_send_xchar(struct tty_struct
*tty
, char ch
)
1696 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1697 unsigned long flags
;
1699 if (debug_level
>= DEBUG_LEVEL_INFO
)
1700 printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
1701 __FILE__
,__LINE__
, info
->device_name
, ch
);
1703 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_send_xchar"))
1708 spin_lock_irqsave(&info
->lock
,flags
);
1709 if (!info
->tx_enabled
)
1710 tx_start(info
, tty
);
1711 spin_unlock_irqrestore(&info
->lock
,flags
);
1715 /* Signal remote device to throttle send data (our receive data)
1717 static void mgslpc_throttle(struct tty_struct
* tty
)
1719 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1720 unsigned long flags
;
1722 if (debug_level
>= DEBUG_LEVEL_INFO
)
1723 printk("%s(%d):mgslpc_throttle(%s) entry\n",
1724 __FILE__
,__LINE__
, info
->device_name
);
1726 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_throttle"))
1730 mgslpc_send_xchar(tty
, STOP_CHAR(tty
));
1732 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1733 spin_lock_irqsave(&info
->lock
,flags
);
1734 info
->serial_signals
&= ~SerialSignal_RTS
;
1736 spin_unlock_irqrestore(&info
->lock
,flags
);
1740 /* Signal remote device to stop throttling send data (our receive data)
1742 static void mgslpc_unthrottle(struct tty_struct
* tty
)
1744 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
1745 unsigned long flags
;
1747 if (debug_level
>= DEBUG_LEVEL_INFO
)
1748 printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
1749 __FILE__
,__LINE__
, info
->device_name
);
1751 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_unthrottle"))
1758 mgslpc_send_xchar(tty
, START_CHAR(tty
));
1761 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1762 spin_lock_irqsave(&info
->lock
,flags
);
1763 info
->serial_signals
|= SerialSignal_RTS
;
1765 spin_unlock_irqrestore(&info
->lock
,flags
);
1769 /* get the current serial statistics
1771 static int get_stats(MGSLPC_INFO
* info
, struct mgsl_icount __user
*user_icount
)
1774 if (debug_level
>= DEBUG_LEVEL_INFO
)
1775 printk("get_params(%s)\n", info
->device_name
);
1777 memset(&info
->icount
, 0, sizeof(info
->icount
));
1779 COPY_TO_USER(err
, user_icount
, &info
->icount
, sizeof(struct mgsl_icount
));
1786 /* get the current serial parameters
1788 static int get_params(MGSLPC_INFO
* info
, MGSL_PARAMS __user
*user_params
)
1791 if (debug_level
>= DEBUG_LEVEL_INFO
)
1792 printk("get_params(%s)\n", info
->device_name
);
1793 COPY_TO_USER(err
,user_params
, &info
->params
, sizeof(MGSL_PARAMS
));
1799 /* set the serial parameters
1803 * info pointer to device instance data
1804 * new_params user buffer containing new serial params
1806 * Returns: 0 if success, otherwise error code
1808 static int set_params(MGSLPC_INFO
* info
, MGSL_PARAMS __user
*new_params
, struct tty_struct
*tty
)
1810 unsigned long flags
;
1811 MGSL_PARAMS tmp_params
;
1814 if (debug_level
>= DEBUG_LEVEL_INFO
)
1815 printk("%s(%d):set_params %s\n", __FILE__
,__LINE__
,
1816 info
->device_name
);
1817 COPY_FROM_USER(err
,&tmp_params
, new_params
, sizeof(MGSL_PARAMS
));
1819 if ( debug_level
>= DEBUG_LEVEL_INFO
)
1820 printk( "%s(%d):set_params(%s) user buffer copy failed\n",
1821 __FILE__
,__LINE__
,info
->device_name
);
1825 spin_lock_irqsave(&info
->lock
,flags
);
1826 memcpy(&info
->params
,&tmp_params
,sizeof(MGSL_PARAMS
));
1827 spin_unlock_irqrestore(&info
->lock
,flags
);
1829 mgslpc_change_params(info
, tty
);
1834 static int get_txidle(MGSLPC_INFO
* info
, int __user
*idle_mode
)
1837 if (debug_level
>= DEBUG_LEVEL_INFO
)
1838 printk("get_txidle(%s)=%d\n", info
->device_name
, info
->idle_mode
);
1839 COPY_TO_USER(err
,idle_mode
, &info
->idle_mode
, sizeof(int));
1845 static int set_txidle(MGSLPC_INFO
* info
, int idle_mode
)
1847 unsigned long flags
;
1848 if (debug_level
>= DEBUG_LEVEL_INFO
)
1849 printk("set_txidle(%s,%d)\n", info
->device_name
, idle_mode
);
1850 spin_lock_irqsave(&info
->lock
,flags
);
1851 info
->idle_mode
= idle_mode
;
1853 spin_unlock_irqrestore(&info
->lock
,flags
);
1857 static int get_interface(MGSLPC_INFO
* info
, int __user
*if_mode
)
1860 if (debug_level
>= DEBUG_LEVEL_INFO
)
1861 printk("get_interface(%s)=%d\n", info
->device_name
, info
->if_mode
);
1862 COPY_TO_USER(err
,if_mode
, &info
->if_mode
, sizeof(int));
1868 static int set_interface(MGSLPC_INFO
* info
, int if_mode
)
1870 unsigned long flags
;
1872 if (debug_level
>= DEBUG_LEVEL_INFO
)
1873 printk("set_interface(%s,%d)\n", info
->device_name
, if_mode
);
1874 spin_lock_irqsave(&info
->lock
,flags
);
1875 info
->if_mode
= if_mode
;
1877 val
= read_reg(info
, PVR
) & 0x0f;
1878 switch (info
->if_mode
)
1880 case MGSL_INTERFACE_RS232
: val
|= PVR_RS232
; break;
1881 case MGSL_INTERFACE_V35
: val
|= PVR_V35
; break;
1882 case MGSL_INTERFACE_RS422
: val
|= PVR_RS422
; break;
1884 write_reg(info
, PVR
, val
);
1886 spin_unlock_irqrestore(&info
->lock
,flags
);
1890 static int set_txenable(MGSLPC_INFO
* info
, int enable
, struct tty_struct
*tty
)
1892 unsigned long flags
;
1894 if (debug_level
>= DEBUG_LEVEL_INFO
)
1895 printk("set_txenable(%s,%d)\n", info
->device_name
, enable
);
1897 spin_lock_irqsave(&info
->lock
,flags
);
1899 if (!info
->tx_enabled
)
1900 tx_start(info
, tty
);
1902 if (info
->tx_enabled
)
1905 spin_unlock_irqrestore(&info
->lock
,flags
);
1909 static int tx_abort(MGSLPC_INFO
* info
)
1911 unsigned long flags
;
1913 if (debug_level
>= DEBUG_LEVEL_INFO
)
1914 printk("tx_abort(%s)\n", info
->device_name
);
1916 spin_lock_irqsave(&info
->lock
,flags
);
1917 if (info
->tx_active
&& info
->tx_count
&&
1918 info
->params
.mode
== MGSL_MODE_HDLC
) {
1919 /* clear data count so FIFO is not filled on next IRQ.
1920 * This results in underrun and abort transmission.
1922 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
1923 info
->tx_aborting
= true;
1925 spin_unlock_irqrestore(&info
->lock
,flags
);
1929 static int set_rxenable(MGSLPC_INFO
* info
, int enable
)
1931 unsigned long flags
;
1933 if (debug_level
>= DEBUG_LEVEL_INFO
)
1934 printk("set_rxenable(%s,%d)\n", info
->device_name
, enable
);
1936 spin_lock_irqsave(&info
->lock
,flags
);
1938 if (!info
->rx_enabled
)
1941 if (info
->rx_enabled
)
1944 spin_unlock_irqrestore(&info
->lock
,flags
);
1948 /* wait for specified event to occur
1950 * Arguments: info pointer to device instance data
1951 * mask pointer to bitmask of events to wait for
1952 * Return Value: 0 if successful and bit mask updated with
1953 * of events triggerred,
1954 * otherwise error code
1956 static int wait_events(MGSLPC_INFO
* info
, int __user
*mask_ptr
)
1958 unsigned long flags
;
1961 struct mgsl_icount cprev
, cnow
;
1964 struct _input_signal_events oldsigs
, newsigs
;
1965 DECLARE_WAITQUEUE(wait
, current
);
1967 COPY_FROM_USER(rc
,&mask
, mask_ptr
, sizeof(int));
1971 if (debug_level
>= DEBUG_LEVEL_INFO
)
1972 printk("wait_events(%s,%d)\n", info
->device_name
, mask
);
1974 spin_lock_irqsave(&info
->lock
,flags
);
1976 /* return immediately if state matches requested events */
1978 s
= info
->serial_signals
;
1980 ( ((s
& SerialSignal_DSR
) ? MgslEvent_DsrActive
:MgslEvent_DsrInactive
) +
1981 ((s
& SerialSignal_DCD
) ? MgslEvent_DcdActive
:MgslEvent_DcdInactive
) +
1982 ((s
& SerialSignal_CTS
) ? MgslEvent_CtsActive
:MgslEvent_CtsInactive
) +
1983 ((s
& SerialSignal_RI
) ? MgslEvent_RiActive
:MgslEvent_RiInactive
) );
1985 spin_unlock_irqrestore(&info
->lock
,flags
);
1989 /* save current irq counts */
1990 cprev
= info
->icount
;
1991 oldsigs
= info
->input_signal_events
;
1993 if ((info
->params
.mode
== MGSL_MODE_HDLC
) &&
1994 (mask
& MgslEvent_ExitHuntMode
))
1995 irq_enable(info
, CHA
, IRQ_EXITHUNT
);
1997 set_current_state(TASK_INTERRUPTIBLE
);
1998 add_wait_queue(&info
->event_wait_q
, &wait
);
2000 spin_unlock_irqrestore(&info
->lock
,flags
);
2005 if (signal_pending(current
)) {
2010 /* get current irq counts */
2011 spin_lock_irqsave(&info
->lock
,flags
);
2012 cnow
= info
->icount
;
2013 newsigs
= info
->input_signal_events
;
2014 set_current_state(TASK_INTERRUPTIBLE
);
2015 spin_unlock_irqrestore(&info
->lock
,flags
);
2017 /* if no change, wait aborted for some reason */
2018 if (newsigs
.dsr_up
== oldsigs
.dsr_up
&&
2019 newsigs
.dsr_down
== oldsigs
.dsr_down
&&
2020 newsigs
.dcd_up
== oldsigs
.dcd_up
&&
2021 newsigs
.dcd_down
== oldsigs
.dcd_down
&&
2022 newsigs
.cts_up
== oldsigs
.cts_up
&&
2023 newsigs
.cts_down
== oldsigs
.cts_down
&&
2024 newsigs
.ri_up
== oldsigs
.ri_up
&&
2025 newsigs
.ri_down
== oldsigs
.ri_down
&&
2026 cnow
.exithunt
== cprev
.exithunt
&&
2027 cnow
.rxidle
== cprev
.rxidle
) {
2033 ( (newsigs
.dsr_up
!= oldsigs
.dsr_up
? MgslEvent_DsrActive
:0) +
2034 (newsigs
.dsr_down
!= oldsigs
.dsr_down
? MgslEvent_DsrInactive
:0) +
2035 (newsigs
.dcd_up
!= oldsigs
.dcd_up
? MgslEvent_DcdActive
:0) +
2036 (newsigs
.dcd_down
!= oldsigs
.dcd_down
? MgslEvent_DcdInactive
:0) +
2037 (newsigs
.cts_up
!= oldsigs
.cts_up
? MgslEvent_CtsActive
:0) +
2038 (newsigs
.cts_down
!= oldsigs
.cts_down
? MgslEvent_CtsInactive
:0) +
2039 (newsigs
.ri_up
!= oldsigs
.ri_up
? MgslEvent_RiActive
:0) +
2040 (newsigs
.ri_down
!= oldsigs
.ri_down
? MgslEvent_RiInactive
:0) +
2041 (cnow
.exithunt
!= cprev
.exithunt
? MgslEvent_ExitHuntMode
:0) +
2042 (cnow
.rxidle
!= cprev
.rxidle
? MgslEvent_IdleReceived
:0) );
2050 remove_wait_queue(&info
->event_wait_q
, &wait
);
2051 set_current_state(TASK_RUNNING
);
2053 if (mask
& MgslEvent_ExitHuntMode
) {
2054 spin_lock_irqsave(&info
->lock
,flags
);
2055 if (!waitqueue_active(&info
->event_wait_q
))
2056 irq_disable(info
, CHA
, IRQ_EXITHUNT
);
2057 spin_unlock_irqrestore(&info
->lock
,flags
);
2061 PUT_USER(rc
, events
, mask_ptr
);
2065 static int modem_input_wait(MGSLPC_INFO
*info
,int arg
)
2067 unsigned long flags
;
2069 struct mgsl_icount cprev
, cnow
;
2070 DECLARE_WAITQUEUE(wait
, current
);
2072 /* save current irq counts */
2073 spin_lock_irqsave(&info
->lock
,flags
);
2074 cprev
= info
->icount
;
2075 add_wait_queue(&info
->status_event_wait_q
, &wait
);
2076 set_current_state(TASK_INTERRUPTIBLE
);
2077 spin_unlock_irqrestore(&info
->lock
,flags
);
2081 if (signal_pending(current
)) {
2086 /* get new irq counts */
2087 spin_lock_irqsave(&info
->lock
,flags
);
2088 cnow
= info
->icount
;
2089 set_current_state(TASK_INTERRUPTIBLE
);
2090 spin_unlock_irqrestore(&info
->lock
,flags
);
2092 /* if no change, wait aborted for some reason */
2093 if (cnow
.rng
== cprev
.rng
&& cnow
.dsr
== cprev
.dsr
&&
2094 cnow
.dcd
== cprev
.dcd
&& cnow
.cts
== cprev
.cts
) {
2099 /* check for change in caller specified modem input */
2100 if ((arg
& TIOCM_RNG
&& cnow
.rng
!= cprev
.rng
) ||
2101 (arg
& TIOCM_DSR
&& cnow
.dsr
!= cprev
.dsr
) ||
2102 (arg
& TIOCM_CD
&& cnow
.dcd
!= cprev
.dcd
) ||
2103 (arg
& TIOCM_CTS
&& cnow
.cts
!= cprev
.cts
)) {
2110 remove_wait_queue(&info
->status_event_wait_q
, &wait
);
2111 set_current_state(TASK_RUNNING
);
2115 /* return the state of the serial control and status signals
2117 static int tiocmget(struct tty_struct
*tty
, struct file
*file
)
2119 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
2120 unsigned int result
;
2121 unsigned long flags
;
2123 spin_lock_irqsave(&info
->lock
,flags
);
2125 spin_unlock_irqrestore(&info
->lock
,flags
);
2127 result
= ((info
->serial_signals
& SerialSignal_RTS
) ? TIOCM_RTS
:0) +
2128 ((info
->serial_signals
& SerialSignal_DTR
) ? TIOCM_DTR
:0) +
2129 ((info
->serial_signals
& SerialSignal_DCD
) ? TIOCM_CAR
:0) +
2130 ((info
->serial_signals
& SerialSignal_RI
) ? TIOCM_RNG
:0) +
2131 ((info
->serial_signals
& SerialSignal_DSR
) ? TIOCM_DSR
:0) +
2132 ((info
->serial_signals
& SerialSignal_CTS
) ? TIOCM_CTS
:0);
2134 if (debug_level
>= DEBUG_LEVEL_INFO
)
2135 printk("%s(%d):%s tiocmget() value=%08X\n",
2136 __FILE__
,__LINE__
, info
->device_name
, result
);
2140 /* set modem control signals (DTR/RTS)
2142 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
2143 unsigned int set
, unsigned int clear
)
2145 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
2146 unsigned long flags
;
2148 if (debug_level
>= DEBUG_LEVEL_INFO
)
2149 printk("%s(%d):%s tiocmset(%x,%x)\n",
2150 __FILE__
,__LINE__
,info
->device_name
, set
, clear
);
2152 if (set
& TIOCM_RTS
)
2153 info
->serial_signals
|= SerialSignal_RTS
;
2154 if (set
& TIOCM_DTR
)
2155 info
->serial_signals
|= SerialSignal_DTR
;
2156 if (clear
& TIOCM_RTS
)
2157 info
->serial_signals
&= ~SerialSignal_RTS
;
2158 if (clear
& TIOCM_DTR
)
2159 info
->serial_signals
&= ~SerialSignal_DTR
;
2161 spin_lock_irqsave(&info
->lock
,flags
);
2163 spin_unlock_irqrestore(&info
->lock
,flags
);
2168 /* Set or clear transmit break condition
2170 * Arguments: tty pointer to tty instance data
2171 * break_state -1=set break condition, 0=clear
2173 static int mgslpc_break(struct tty_struct
*tty
, int break_state
)
2175 MGSLPC_INFO
* info
= (MGSLPC_INFO
*)tty
->driver_data
;
2176 unsigned long flags
;
2178 if (debug_level
>= DEBUG_LEVEL_INFO
)
2179 printk("%s(%d):mgslpc_break(%s,%d)\n",
2180 __FILE__
,__LINE__
, info
->device_name
, break_state
);
2182 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_break"))
2185 spin_lock_irqsave(&info
->lock
,flags
);
2186 if (break_state
== -1)
2187 set_reg_bits(info
, CHA
+DAFO
, BIT6
);
2189 clear_reg_bits(info
, CHA
+DAFO
, BIT6
);
2190 spin_unlock_irqrestore(&info
->lock
,flags
);
2194 static int mgslpc_get_icount(struct tty_struct
*tty
,
2195 struct serial_icounter_struct
*icount
)
2197 MGSLPC_INFO
* info
= (MGSLPC_INFO
*)tty
->driver_data
;
2198 struct mgsl_icount cnow
; /* kernel counter temps */
2199 unsigned long flags
;
2201 spin_lock_irqsave(&info
->lock
,flags
);
2202 cnow
= info
->icount
;
2203 spin_unlock_irqrestore(&info
->lock
,flags
);
2205 icount
->cts
= cnow
.cts
;
2206 icount
->dsr
= cnow
.dsr
;
2207 icount
->rng
= cnow
.rng
;
2208 icount
->dcd
= cnow
.dcd
;
2209 icount
->rx
= cnow
.rx
;
2210 icount
->tx
= cnow
.tx
;
2211 icount
->frame
= cnow
.frame
;
2212 icount
->overrun
= cnow
.overrun
;
2213 icount
->parity
= cnow
.parity
;
2214 icount
->brk
= cnow
.brk
;
2215 icount
->buf_overrun
= cnow
.buf_overrun
;
2220 /* Service an IOCTL request
2224 * tty pointer to tty instance data
2225 * file pointer to associated file object for device
2226 * cmd IOCTL command code
2227 * arg command argument/context
2229 * Return Value: 0 if success, otherwise error code
2231 static int mgslpc_ioctl(struct tty_struct
*tty
, struct file
* file
,
2232 unsigned int cmd
, unsigned long arg
)
2234 MGSLPC_INFO
* info
= (MGSLPC_INFO
*)tty
->driver_data
;
2235 void __user
*argp
= (void __user
*)arg
;
2237 if (debug_level
>= DEBUG_LEVEL_INFO
)
2238 printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__
,__LINE__
,
2239 info
->device_name
, cmd
);
2241 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_ioctl"))
2244 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
2245 (cmd
!= TIOCMIWAIT
)) {
2246 if (tty
->flags
& (1 << TTY_IO_ERROR
))
2251 case MGSL_IOCGPARAMS
:
2252 return get_params(info
, argp
);
2253 case MGSL_IOCSPARAMS
:
2254 return set_params(info
, argp
, tty
);
2255 case MGSL_IOCGTXIDLE
:
2256 return get_txidle(info
, argp
);
2257 case MGSL_IOCSTXIDLE
:
2258 return set_txidle(info
, (int)arg
);
2260 return get_interface(info
, argp
);
2262 return set_interface(info
,(int)arg
);
2263 case MGSL_IOCTXENABLE
:
2264 return set_txenable(info
,(int)arg
, tty
);
2265 case MGSL_IOCRXENABLE
:
2266 return set_rxenable(info
,(int)arg
);
2267 case MGSL_IOCTXABORT
:
2268 return tx_abort(info
);
2269 case MGSL_IOCGSTATS
:
2270 return get_stats(info
, argp
);
2271 case MGSL_IOCWAITEVENT
:
2272 return wait_events(info
, argp
);
2274 return modem_input_wait(info
,(int)arg
);
2276 return -ENOIOCTLCMD
;
2281 /* Set new termios settings
2285 * tty pointer to tty structure
2286 * termios pointer to buffer to hold returned old termios
2288 static void mgslpc_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
2290 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)tty
->driver_data
;
2291 unsigned long flags
;
2293 if (debug_level
>= DEBUG_LEVEL_INFO
)
2294 printk("%s(%d):mgslpc_set_termios %s\n", __FILE__
,__LINE__
,
2295 tty
->driver
->name
);
2297 /* just return if nothing has changed */
2298 if ((tty
->termios
->c_cflag
== old_termios
->c_cflag
)
2299 && (RELEVANT_IFLAG(tty
->termios
->c_iflag
)
2300 == RELEVANT_IFLAG(old_termios
->c_iflag
)))
2303 mgslpc_change_params(info
, tty
);
2305 /* Handle transition to B0 status */
2306 if (old_termios
->c_cflag
& CBAUD
&&
2307 !(tty
->termios
->c_cflag
& CBAUD
)) {
2308 info
->serial_signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
2309 spin_lock_irqsave(&info
->lock
,flags
);
2311 spin_unlock_irqrestore(&info
->lock
,flags
);
2314 /* Handle transition away from B0 status */
2315 if (!(old_termios
->c_cflag
& CBAUD
) &&
2316 tty
->termios
->c_cflag
& CBAUD
) {
2317 info
->serial_signals
|= SerialSignal_DTR
;
2318 if (!(tty
->termios
->c_cflag
& CRTSCTS
) ||
2319 !test_bit(TTY_THROTTLED
, &tty
->flags
)) {
2320 info
->serial_signals
|= SerialSignal_RTS
;
2322 spin_lock_irqsave(&info
->lock
,flags
);
2324 spin_unlock_irqrestore(&info
->lock
,flags
);
2327 /* Handle turning off CRTSCTS */
2328 if (old_termios
->c_cflag
& CRTSCTS
&&
2329 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
2330 tty
->hw_stopped
= 0;
2335 static void mgslpc_close(struct tty_struct
*tty
, struct file
* filp
)
2337 MGSLPC_INFO
* info
= (MGSLPC_INFO
*)tty
->driver_data
;
2338 struct tty_port
*port
= &info
->port
;
2340 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_close"))
2343 if (debug_level
>= DEBUG_LEVEL_INFO
)
2344 printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
2345 __FILE__
,__LINE__
, info
->device_name
, port
->count
);
2347 WARN_ON(!port
->count
);
2349 if (tty_port_close_start(port
, tty
, filp
) == 0)
2352 if (port
->flags
& ASYNC_INITIALIZED
)
2353 mgslpc_wait_until_sent(tty
, info
->timeout
);
2355 mgslpc_flush_buffer(tty
);
2357 tty_ldisc_flush(tty
);
2358 shutdown(info
, tty
);
2360 tty_port_close_end(port
, tty
);
2361 tty_port_tty_set(port
, NULL
);
2363 if (debug_level
>= DEBUG_LEVEL_INFO
)
2364 printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__
,__LINE__
,
2365 tty
->driver
->name
, port
->count
);
2368 /* Wait until the transmitter is empty.
2370 static void mgslpc_wait_until_sent(struct tty_struct
*tty
, int timeout
)
2372 MGSLPC_INFO
* info
= (MGSLPC_INFO
*)tty
->driver_data
;
2373 unsigned long orig_jiffies
, char_time
;
2378 if (debug_level
>= DEBUG_LEVEL_INFO
)
2379 printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
2380 __FILE__
,__LINE__
, info
->device_name
);
2382 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_wait_until_sent"))
2385 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
2388 orig_jiffies
= jiffies
;
2390 /* Set check interval to 1/5 of estimated time to
2391 * send a character, and make it at least 1. The check
2392 * interval should also be less than the timeout.
2393 * Note: use tight timings here to satisfy the NIST-PCTS.
2396 if ( info
->params
.data_rate
) {
2397 char_time
= info
->timeout
/(32 * 5);
2404 char_time
= min_t(unsigned long, char_time
, timeout
);
2406 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
2407 while (info
->tx_active
) {
2408 msleep_interruptible(jiffies_to_msecs(char_time
));
2409 if (signal_pending(current
))
2411 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
2415 while ((info
->tx_count
|| info
->tx_active
) &&
2417 msleep_interruptible(jiffies_to_msecs(char_time
));
2418 if (signal_pending(current
))
2420 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
2426 if (debug_level
>= DEBUG_LEVEL_INFO
)
2427 printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
2428 __FILE__
,__LINE__
, info
->device_name
);
2431 /* Called by tty_hangup() when a hangup is signaled.
2432 * This is the same as closing all open files for the port.
2434 static void mgslpc_hangup(struct tty_struct
*tty
)
2436 MGSLPC_INFO
* info
= (MGSLPC_INFO
*)tty
->driver_data
;
2438 if (debug_level
>= DEBUG_LEVEL_INFO
)
2439 printk("%s(%d):mgslpc_hangup(%s)\n",
2440 __FILE__
,__LINE__
, info
->device_name
);
2442 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_hangup"))
2445 mgslpc_flush_buffer(tty
);
2446 shutdown(info
, tty
);
2447 tty_port_hangup(&info
->port
);
2450 static int carrier_raised(struct tty_port
*port
)
2452 MGSLPC_INFO
*info
= container_of(port
, MGSLPC_INFO
, port
);
2453 unsigned long flags
;
2455 spin_lock_irqsave(&info
->lock
,flags
);
2457 spin_unlock_irqrestore(&info
->lock
,flags
);
2459 if (info
->serial_signals
& SerialSignal_DCD
)
2464 static void dtr_rts(struct tty_port
*port
, int onoff
)
2466 MGSLPC_INFO
*info
= container_of(port
, MGSLPC_INFO
, port
);
2467 unsigned long flags
;
2469 spin_lock_irqsave(&info
->lock
,flags
);
2471 info
->serial_signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
2473 info
->serial_signals
&= ~SerialSignal_RTS
+ SerialSignal_DTR
;
2475 spin_unlock_irqrestore(&info
->lock
,flags
);
2479 static int mgslpc_open(struct tty_struct
*tty
, struct file
* filp
)
2482 struct tty_port
*port
;
2484 unsigned long flags
;
2486 /* verify range of specified line number */
2488 if ((line
< 0) || (line
>= mgslpc_device_count
)) {
2489 printk("%s(%d):mgslpc_open with invalid line #%d.\n",
2490 __FILE__
,__LINE__
,line
);
2494 /* find the info structure for the specified line */
2495 info
= mgslpc_device_list
;
2496 while(info
&& info
->line
!= line
)
2497 info
= info
->next_device
;
2498 if (mgslpc_paranoia_check(info
, tty
->name
, "mgslpc_open"))
2502 tty
->driver_data
= info
;
2503 tty_port_tty_set(port
, tty
);
2505 if (debug_level
>= DEBUG_LEVEL_INFO
)
2506 printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
2507 __FILE__
,__LINE__
,tty
->driver
->name
, port
->count
);
2509 /* If port is closing, signal caller to try again */
2510 if (tty_hung_up_p(filp
) || port
->flags
& ASYNC_CLOSING
){
2511 if (port
->flags
& ASYNC_CLOSING
)
2512 interruptible_sleep_on(&port
->close_wait
);
2513 retval
= ((port
->flags
& ASYNC_HUP_NOTIFY
) ?
2514 -EAGAIN
: -ERESTARTSYS
);
2518 tty
->low_latency
= (port
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
2520 spin_lock_irqsave(&info
->netlock
, flags
);
2521 if (info
->netcount
) {
2523 spin_unlock_irqrestore(&info
->netlock
, flags
);
2526 spin_lock(&port
->lock
);
2528 spin_unlock(&port
->lock
);
2529 spin_unlock_irqrestore(&info
->netlock
, flags
);
2531 if (port
->count
== 1) {
2532 /* 1st open on this device, init hardware */
2533 retval
= startup(info
, tty
);
2538 retval
= tty_port_block_til_ready(&info
->port
, tty
, filp
);
2540 if (debug_level
>= DEBUG_LEVEL_INFO
)
2541 printk("%s(%d):block_til_ready(%s) returned %d\n",
2542 __FILE__
,__LINE__
, info
->device_name
, retval
);
2546 if (debug_level
>= DEBUG_LEVEL_INFO
)
2547 printk("%s(%d):mgslpc_open(%s) success\n",
2548 __FILE__
,__LINE__
, info
->device_name
);
2556 * /proc fs routines....
2559 static inline void line_info(struct seq_file
*m
, MGSLPC_INFO
*info
)
2562 unsigned long flags
;
2564 seq_printf(m
, "%s:io:%04X irq:%d",
2565 info
->device_name
, info
->io_base
, info
->irq_level
);
2567 /* output current serial signal states */
2568 spin_lock_irqsave(&info
->lock
,flags
);
2570 spin_unlock_irqrestore(&info
->lock
,flags
);
2574 if (info
->serial_signals
& SerialSignal_RTS
)
2575 strcat(stat_buf
, "|RTS");
2576 if (info
->serial_signals
& SerialSignal_CTS
)
2577 strcat(stat_buf
, "|CTS");
2578 if (info
->serial_signals
& SerialSignal_DTR
)
2579 strcat(stat_buf
, "|DTR");
2580 if (info
->serial_signals
& SerialSignal_DSR
)
2581 strcat(stat_buf
, "|DSR");
2582 if (info
->serial_signals
& SerialSignal_DCD
)
2583 strcat(stat_buf
, "|CD");
2584 if (info
->serial_signals
& SerialSignal_RI
)
2585 strcat(stat_buf
, "|RI");
2587 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
2588 seq_printf(m
, " HDLC txok:%d rxok:%d",
2589 info
->icount
.txok
, info
->icount
.rxok
);
2590 if (info
->icount
.txunder
)
2591 seq_printf(m
, " txunder:%d", info
->icount
.txunder
);
2592 if (info
->icount
.txabort
)
2593 seq_printf(m
, " txabort:%d", info
->icount
.txabort
);
2594 if (info
->icount
.rxshort
)
2595 seq_printf(m
, " rxshort:%d", info
->icount
.rxshort
);
2596 if (info
->icount
.rxlong
)
2597 seq_printf(m
, " rxlong:%d", info
->icount
.rxlong
);
2598 if (info
->icount
.rxover
)
2599 seq_printf(m
, " rxover:%d", info
->icount
.rxover
);
2600 if (info
->icount
.rxcrc
)
2601 seq_printf(m
, " rxcrc:%d", info
->icount
.rxcrc
);
2603 seq_printf(m
, " ASYNC tx:%d rx:%d",
2604 info
->icount
.tx
, info
->icount
.rx
);
2605 if (info
->icount
.frame
)
2606 seq_printf(m
, " fe:%d", info
->icount
.frame
);
2607 if (info
->icount
.parity
)
2608 seq_printf(m
, " pe:%d", info
->icount
.parity
);
2609 if (info
->icount
.brk
)
2610 seq_printf(m
, " brk:%d", info
->icount
.brk
);
2611 if (info
->icount
.overrun
)
2612 seq_printf(m
, " oe:%d", info
->icount
.overrun
);
2615 /* Append serial signal status to end */
2616 seq_printf(m
, " %s\n", stat_buf
+1);
2618 seq_printf(m
, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
2619 info
->tx_active
,info
->bh_requested
,info
->bh_running
,
2623 /* Called to print information about devices
2625 static int mgslpc_proc_show(struct seq_file
*m
, void *v
)
2629 seq_printf(m
, "synclink driver:%s\n", driver_version
);
2631 info
= mgslpc_device_list
;
2634 info
= info
->next_device
;
2639 static int mgslpc_proc_open(struct inode
*inode
, struct file
*file
)
2641 return single_open(file
, mgslpc_proc_show
, NULL
);
2644 static const struct file_operations mgslpc_proc_fops
= {
2645 .owner
= THIS_MODULE
,
2646 .open
= mgslpc_proc_open
,
2648 .llseek
= seq_lseek
,
2649 .release
= single_release
,
2652 static int rx_alloc_buffers(MGSLPC_INFO
*info
)
2654 /* each buffer has header and data */
2655 info
->rx_buf_size
= sizeof(RXBUF
) + info
->max_frame_size
;
2657 /* calculate total allocation size for 8 buffers */
2658 info
->rx_buf_total_size
= info
->rx_buf_size
* 8;
2660 /* limit total allocated memory */
2661 if (info
->rx_buf_total_size
> 0x10000)
2662 info
->rx_buf_total_size
= 0x10000;
2664 /* calculate number of buffers */
2665 info
->rx_buf_count
= info
->rx_buf_total_size
/ info
->rx_buf_size
;
2667 info
->rx_buf
= kmalloc(info
->rx_buf_total_size
, GFP_KERNEL
);
2668 if (info
->rx_buf
== NULL
)
2671 rx_reset_buffers(info
);
2675 static void rx_free_buffers(MGSLPC_INFO
*info
)
2677 kfree(info
->rx_buf
);
2678 info
->rx_buf
= NULL
;
2681 static int claim_resources(MGSLPC_INFO
*info
)
2683 if (rx_alloc_buffers(info
) < 0 ) {
2684 printk( "Cant allocate rx buffer %s\n", info
->device_name
);
2685 release_resources(info
);
2691 static void release_resources(MGSLPC_INFO
*info
)
2693 if (debug_level
>= DEBUG_LEVEL_INFO
)
2694 printk("release_resources(%s)\n", info
->device_name
);
2695 rx_free_buffers(info
);
2698 /* Add the specified device instance data structure to the
2699 * global linked list of devices and increment the device count.
2701 * Arguments: info pointer to device instance data
2703 static void mgslpc_add_device(MGSLPC_INFO
*info
)
2705 info
->next_device
= NULL
;
2706 info
->line
= mgslpc_device_count
;
2707 sprintf(info
->device_name
,"ttySLP%d",info
->line
);
2709 if (info
->line
< MAX_DEVICE_COUNT
) {
2710 if (maxframe
[info
->line
])
2711 info
->max_frame_size
= maxframe
[info
->line
];
2714 mgslpc_device_count
++;
2716 if (!mgslpc_device_list
)
2717 mgslpc_device_list
= info
;
2719 MGSLPC_INFO
*current_dev
= mgslpc_device_list
;
2720 while( current_dev
->next_device
)
2721 current_dev
= current_dev
->next_device
;
2722 current_dev
->next_device
= info
;
2725 if (info
->max_frame_size
< 4096)
2726 info
->max_frame_size
= 4096;
2727 else if (info
->max_frame_size
> 65535)
2728 info
->max_frame_size
= 65535;
2730 printk( "SyncLink PC Card %s:IO=%04X IRQ=%d\n",
2731 info
->device_name
, info
->io_base
, info
->irq_level
);
2733 #if SYNCLINK_GENERIC_HDLC
2738 static void mgslpc_remove_device(MGSLPC_INFO
*remove_info
)
2740 MGSLPC_INFO
*info
= mgslpc_device_list
;
2741 MGSLPC_INFO
*last
= NULL
;
2744 if (info
== remove_info
) {
2746 last
->next_device
= info
->next_device
;
2748 mgslpc_device_list
= info
->next_device
;
2749 #if SYNCLINK_GENERIC_HDLC
2752 release_resources(info
);
2754 mgslpc_device_count
--;
2758 info
= info
->next_device
;
2762 static struct pcmcia_device_id mgslpc_ids
[] = {
2763 PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
2766 MODULE_DEVICE_TABLE(pcmcia
, mgslpc_ids
);
2768 static struct pcmcia_driver mgslpc_driver
= {
2769 .owner
= THIS_MODULE
,
2770 .name
= "synclink_cs",
2771 .probe
= mgslpc_probe
,
2772 .remove
= mgslpc_detach
,
2773 .id_table
= mgslpc_ids
,
2774 .suspend
= mgslpc_suspend
,
2775 .resume
= mgslpc_resume
,
2778 static const struct tty_operations mgslpc_ops
= {
2779 .open
= mgslpc_open
,
2780 .close
= mgslpc_close
,
2781 .write
= mgslpc_write
,
2782 .put_char
= mgslpc_put_char
,
2783 .flush_chars
= mgslpc_flush_chars
,
2784 .write_room
= mgslpc_write_room
,
2785 .chars_in_buffer
= mgslpc_chars_in_buffer
,
2786 .flush_buffer
= mgslpc_flush_buffer
,
2787 .ioctl
= mgslpc_ioctl
,
2788 .throttle
= mgslpc_throttle
,
2789 .unthrottle
= mgslpc_unthrottle
,
2790 .send_xchar
= mgslpc_send_xchar
,
2791 .break_ctl
= mgslpc_break
,
2792 .wait_until_sent
= mgslpc_wait_until_sent
,
2793 .set_termios
= mgslpc_set_termios
,
2795 .start
= tx_release
,
2796 .hangup
= mgslpc_hangup
,
2797 .tiocmget
= tiocmget
,
2798 .tiocmset
= tiocmset
,
2799 .get_icount
= mgslpc_get_icount
,
2800 .proc_fops
= &mgslpc_proc_fops
,
2803 static void synclink_cs_cleanup(void)
2807 while(mgslpc_device_list
)
2808 mgslpc_remove_device(mgslpc_device_list
);
2810 if (serial_driver
) {
2811 if ((rc
= tty_unregister_driver(serial_driver
)))
2812 printk("%s(%d) failed to unregister tty driver err=%d\n",
2813 __FILE__
,__LINE__
,rc
);
2814 put_tty_driver(serial_driver
);
2817 pcmcia_unregister_driver(&mgslpc_driver
);
2820 static int __init
synclink_cs_init(void)
2824 if (break_on_load
) {
2825 mgslpc_get_text_ptr();
2829 if ((rc
= pcmcia_register_driver(&mgslpc_driver
)) < 0)
2832 serial_driver
= alloc_tty_driver(MAX_DEVICE_COUNT
);
2833 if (!serial_driver
) {
2838 /* Initialize the tty_driver structure */
2840 serial_driver
->owner
= THIS_MODULE
;
2841 serial_driver
->driver_name
= "synclink_cs";
2842 serial_driver
->name
= "ttySLP";
2843 serial_driver
->major
= ttymajor
;
2844 serial_driver
->minor_start
= 64;
2845 serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2846 serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
2847 serial_driver
->init_termios
= tty_std_termios
;
2848 serial_driver
->init_termios
.c_cflag
=
2849 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
2850 serial_driver
->flags
= TTY_DRIVER_REAL_RAW
;
2851 tty_set_operations(serial_driver
, &mgslpc_ops
);
2853 if ((rc
= tty_register_driver(serial_driver
)) < 0) {
2854 printk("%s(%d):Couldn't register serial driver\n",
2856 put_tty_driver(serial_driver
);
2857 serial_driver
= NULL
;
2861 printk("%s %s, tty major#%d\n",
2862 driver_name
, driver_version
,
2863 serial_driver
->major
);
2868 synclink_cs_cleanup();
2872 static void __exit
synclink_cs_exit(void)
2874 synclink_cs_cleanup();
2877 module_init(synclink_cs_init
);
2878 module_exit(synclink_cs_exit
);
2880 static void mgslpc_set_rate(MGSLPC_INFO
*info
, unsigned char channel
, unsigned int rate
)
2885 /* note:standard BRG mode is broken in V3.2 chip
2886 * so enhanced mode is always used
2894 for (M
= 1; N
> 64 && M
< 16; M
++)
2900 * BGR[7..0] contained in BGR register
2901 * BGR[9..8] contained in CCR2[7..6]
2902 * divisor = (N+1)*2^M
2904 * Note: M *must* not be zero (causes asymetric duty cycle)
2906 write_reg(info
, (unsigned char) (channel
+ BGR
),
2907 (unsigned char) ((M
<< 6) + N
));
2908 val
= read_reg(info
, (unsigned char) (channel
+ CCR2
)) & 0x3f;
2909 val
|= ((M
<< 4) & 0xc0);
2910 write_reg(info
, (unsigned char) (channel
+ CCR2
), val
);
2914 /* Enabled the AUX clock output at the specified frequency.
2916 static void enable_auxclk(MGSLPC_INFO
*info
)
2922 * 07..06 MDS[1..0] 10 = transparent HDLC mode
2923 * 05 ADM Address Mode, 0 = no addr recognition
2924 * 04 TMD Timer Mode, 0 = external
2925 * 03 RAC Receiver Active, 0 = inactive
2926 * 02 RTS 0=RTS active during xmit, 1=RTS always active
2927 * 01 TRS Timer Resolution, 1=512
2928 * 00 TLP Test Loop, 0 = no loop
2934 /* channel B RTS is used to enable AUXCLK driver on SP505 */
2935 if (info
->params
.mode
== MGSL_MODE_HDLC
&& info
->params
.clock_speed
)
2937 write_reg(info
, CHB
+ MODE
, val
);
2941 * 07 PU Power Up, 1=active, 0=power down
2942 * 06 MCE Master Clock Enable, 1=enabled
2944 * 04..02 SC[2..0] Encoding
2945 * 01..00 SM[1..0] Serial Mode, 00=HDLC
2949 write_reg(info
, CHB
+ CCR0
, 0xc0);
2953 * 07 SFLG Shared Flag, 0 = disable shared flags
2954 * 06 GALP Go Active On Loop, 0 = not used
2955 * 05 GLP Go On Loop, 0 = not used
2956 * 04 ODS Output Driver Select, 1=TxD is push-pull output
2957 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
2958 * 02..00 CM[2..0] Clock Mode
2962 write_reg(info
, CHB
+ CCR1
, 0x17);
2966 * 07..06 BGR[9..8] Baud rate bits 9..8
2967 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
2968 * 04 SSEL Clock source select, 1=submode b
2969 * 03 TOE 0=TxCLK is input, 1=TxCLK is output
2970 * 02 RWX Read/Write Exchange 0=disabled
2971 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
2972 * 00 DIV, data inversion 0=disabled, 1=enabled
2976 if (info
->params
.mode
== MGSL_MODE_HDLC
&& info
->params
.clock_speed
)
2977 write_reg(info
, CHB
+ CCR2
, 0x38);
2979 write_reg(info
, CHB
+ CCR2
, 0x30);
2983 * 07 MCK4 Master Clock Divide by 4, 1=enabled
2984 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
2985 * 05 TST1 Test Pin, 0=normal operation
2986 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
2987 * 03..02 Reserved, must be 0
2988 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
2992 write_reg(info
, CHB
+ CCR4
, 0x50);
2994 /* if auxclk not enabled, set internal BRG so
2995 * CTS transitions can be detected (requires TxC)
2997 if (info
->params
.mode
== MGSL_MODE_HDLC
&& info
->params
.clock_speed
)
2998 mgslpc_set_rate(info
, CHB
, info
->params
.clock_speed
);
3000 mgslpc_set_rate(info
, CHB
, 921600);
3003 static void loopback_enable(MGSLPC_INFO
*info
)
3007 /* CCR1:02..00 CM[2..0] Clock Mode = 111 (clock mode 7) */
3008 val
= read_reg(info
, CHA
+ CCR1
) | (BIT2
+ BIT1
+ BIT0
);
3009 write_reg(info
, CHA
+ CCR1
, val
);
3011 /* CCR2:04 SSEL Clock source select, 1=submode b */
3012 val
= read_reg(info
, CHA
+ CCR2
) | (BIT4
+ BIT5
);
3013 write_reg(info
, CHA
+ CCR2
, val
);
3015 /* set LinkSpeed if available, otherwise default to 2Mbps */
3016 if (info
->params
.clock_speed
)
3017 mgslpc_set_rate(info
, CHA
, info
->params
.clock_speed
);
3019 mgslpc_set_rate(info
, CHA
, 1843200);
3021 /* MODE:00 TLP Test Loop, 1=loopback enabled */
3022 val
= read_reg(info
, CHA
+ MODE
) | BIT0
;
3023 write_reg(info
, CHA
+ MODE
, val
);
3026 static void hdlc_mode(MGSLPC_INFO
*info
)
3029 unsigned char clkmode
, clksubmode
;
3031 /* disable all interrupts */
3032 irq_disable(info
, CHA
, 0xffff);
3033 irq_disable(info
, CHB
, 0xffff);
3034 port_irq_disable(info
, 0xff);
3036 /* assume clock mode 0a, rcv=RxC xmt=TxC */
3037 clkmode
= clksubmode
= 0;
3038 if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
3039 && info
->params
.flags
& HDLC_FLAG_TXC_DPLL
) {
3040 /* clock mode 7a, rcv = DPLL, xmt = DPLL */
3042 } else if (info
->params
.flags
& HDLC_FLAG_RXC_BRG
3043 && info
->params
.flags
& HDLC_FLAG_TXC_BRG
) {
3044 /* clock mode 7b, rcv = BRG, xmt = BRG */
3047 } else if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
) {
3048 if (info
->params
.flags
& HDLC_FLAG_TXC_BRG
) {
3049 /* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
3053 /* clock mode 6a, rcv = DPLL, xmt = TxC */
3056 } else if (info
->params
.flags
& HDLC_FLAG_TXC_BRG
) {
3057 /* clock mode 0b, rcv = RxC, xmt = BRG */
3063 * 07..06 MDS[1..0] 10 = transparent HDLC mode
3064 * 05 ADM Address Mode, 0 = no addr recognition
3065 * 04 TMD Timer Mode, 0 = external
3066 * 03 RAC Receiver Active, 0 = inactive
3067 * 02 RTS 0=RTS active during xmit, 1=RTS always active
3068 * 01 TRS Timer Resolution, 1=512
3069 * 00 TLP Test Loop, 0 = no loop
3074 if (info
->params
.loopback
)
3077 /* preserve RTS state */
3078 if (info
->serial_signals
& SerialSignal_RTS
)
3080 write_reg(info
, CHA
+ MODE
, val
);
3084 * 07 PU Power Up, 1=active, 0=power down
3085 * 06 MCE Master Clock Enable, 1=enabled
3087 * 04..02 SC[2..0] Encoding
3088 * 01..00 SM[1..0] Serial Mode, 00=HDLC
3093 switch (info
->params
.encoding
)
3095 case HDLC_ENCODING_NRZI
:
3098 case HDLC_ENCODING_BIPHASE_SPACE
:
3101 case HDLC_ENCODING_BIPHASE_MARK
:
3104 case HDLC_ENCODING_BIPHASE_LEVEL
:
3106 break; // Manchester
3108 write_reg(info
, CHA
+ CCR0
, val
);
3112 * 07 SFLG Shared Flag, 0 = disable shared flags
3113 * 06 GALP Go Active On Loop, 0 = not used
3114 * 05 GLP Go On Loop, 0 = not used
3115 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3116 * 03 ITF Interframe Time Fill, 0=mark, 1=flag
3117 * 02..00 CM[2..0] Clock Mode
3121 val
= 0x10 + clkmode
;
3122 write_reg(info
, CHA
+ CCR1
, val
);
3126 * 07..06 BGR[9..8] Baud rate bits 9..8
3127 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3128 * 04 SSEL Clock source select, 1=submode b
3129 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3130 * 02 RWX Read/Write Exchange 0=disabled
3131 * 01 C32, CRC select, 0=CRC-16, 1=CRC-32
3132 * 00 DIV, data inversion 0=disabled, 1=enabled
3137 if (clkmode
== 2 || clkmode
== 3 || clkmode
== 6
3138 || clkmode
== 7 || (clkmode
== 0 && clksubmode
== 1))
3142 if (info
->params
.crc_type
== HDLC_CRC_32_CCITT
)
3144 if (info
->params
.encoding
== HDLC_ENCODING_NRZB
)
3146 write_reg(info
, CHA
+ CCR2
, val
);
3150 * 07..06 PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
3151 * 05 EPT Enable preamble transmission, 1=enabled
3152 * 04 RADD Receive address pushed to FIFO, 0=disabled
3153 * 03 CRL CRC Reset Level, 0=FFFF
3154 * 02 RCRC Rx CRC 0=On 1=Off
3155 * 01 TCRC Tx CRC 0=On 1=Off
3156 * 00 PSD DPLL Phase Shift Disable
3161 if (info
->params
.crc_type
== HDLC_CRC_NONE
)
3163 if (info
->params
.preamble
!= HDLC_PREAMBLE_PATTERN_NONE
)
3165 switch (info
->params
.preamble_length
)
3167 case HDLC_PREAMBLE_LENGTH_16BITS
:
3170 case HDLC_PREAMBLE_LENGTH_32BITS
:
3173 case HDLC_PREAMBLE_LENGTH_64BITS
:
3177 write_reg(info
, CHA
+ CCR3
, val
);
3179 /* PRE - Preamble pattern */
3181 switch (info
->params
.preamble
)
3183 case HDLC_PREAMBLE_PATTERN_FLAGS
: val
= 0x7e; break;
3184 case HDLC_PREAMBLE_PATTERN_10
: val
= 0xaa; break;
3185 case HDLC_PREAMBLE_PATTERN_01
: val
= 0x55; break;
3186 case HDLC_PREAMBLE_PATTERN_ONES
: val
= 0xff; break;
3188 write_reg(info
, CHA
+ PRE
, val
);
3192 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3193 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3194 * 05 TST1 Test Pin, 0=normal operation
3195 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3196 * 03..02 Reserved, must be 0
3197 * 01..00 RFT[1..0] RxFIFO Threshold 00=32 bytes
3202 write_reg(info
, CHA
+ CCR4
, val
);
3203 if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
3204 mgslpc_set_rate(info
, CHA
, info
->params
.clock_speed
* 16);
3206 mgslpc_set_rate(info
, CHA
, info
->params
.clock_speed
);
3208 /* RLCR Receive length check register
3210 * 7 1=enable receive length check
3211 * 6..0 Max frame length = (RL + 1) * 32
3213 write_reg(info
, CHA
+ RLCR
, 0);
3215 /* XBCH Transmit Byte Count High
3217 * 07 DMA mode, 0 = interrupt driven
3218 * 06 NRM, 0=ABM (ignored)
3219 * 05 CAS Carrier Auto Start
3220 * 04 XC Transmit Continuously (ignored)
3221 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3226 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
3228 write_reg(info
, CHA
+ XBCH
, val
);
3229 enable_auxclk(info
);
3230 if (info
->params
.loopback
|| info
->testing_irq
)
3231 loopback_enable(info
);
3232 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
3234 irq_enable(info
, CHB
, IRQ_CTS
);
3235 /* PVR[3] 1=AUTO CTS active */
3236 set_reg_bits(info
, CHA
+ PVR
, BIT3
);
3238 clear_reg_bits(info
, CHA
+ PVR
, BIT3
);
3240 irq_enable(info
, CHA
,
3241 IRQ_RXEOM
+ IRQ_RXFIFO
+ IRQ_ALLSENT
+
3242 IRQ_UNDERRUN
+ IRQ_TXFIFO
);
3243 issue_command(info
, CHA
, CMD_TXRESET
+ CMD_RXRESET
);
3244 wait_command_complete(info
, CHA
);
3245 read_reg16(info
, CHA
+ ISR
); /* clear pending IRQs */
3247 /* Master clock mode enabled above to allow reset commands
3248 * to complete even if no data clocks are present.
3250 * Disable master clock mode for normal communications because
3251 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
3252 * IRQ when in master clock mode.
3254 * Leave master clock mode enabled for IRQ test because the
3255 * timer IRQ used by the test can only happen in master clock mode.
3257 if (!info
->testing_irq
)
3258 clear_reg_bits(info
, CHA
+ CCR0
, BIT6
);
3266 static void rx_stop(MGSLPC_INFO
*info
)
3268 if (debug_level
>= DEBUG_LEVEL_ISR
)
3269 printk("%s(%d):rx_stop(%s)\n",
3270 __FILE__
,__LINE__
, info
->device_name
);
3272 /* MODE:03 RAC Receiver Active, 0=inactive */
3273 clear_reg_bits(info
, CHA
+ MODE
, BIT3
);
3275 info
->rx_enabled
= false;
3276 info
->rx_overflow
= false;
3279 static void rx_start(MGSLPC_INFO
*info
)
3281 if (debug_level
>= DEBUG_LEVEL_ISR
)
3282 printk("%s(%d):rx_start(%s)\n",
3283 __FILE__
,__LINE__
, info
->device_name
);
3285 rx_reset_buffers(info
);
3286 info
->rx_enabled
= false;
3287 info
->rx_overflow
= false;
3289 /* MODE:03 RAC Receiver Active, 1=active */
3290 set_reg_bits(info
, CHA
+ MODE
, BIT3
);
3292 info
->rx_enabled
= true;
3295 static void tx_start(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
3297 if (debug_level
>= DEBUG_LEVEL_ISR
)
3298 printk("%s(%d):tx_start(%s)\n",
3299 __FILE__
,__LINE__
, info
->device_name
);
3301 if (info
->tx_count
) {
3302 /* If auto RTS enabled and RTS is inactive, then assert */
3303 /* RTS and set a flag indicating that the driver should */
3304 /* negate RTS when the transmission completes. */
3305 info
->drop_rts_on_tx_done
= false;
3307 if (info
->params
.flags
& HDLC_FLAG_AUTO_RTS
) {
3309 if (!(info
->serial_signals
& SerialSignal_RTS
)) {
3310 info
->serial_signals
|= SerialSignal_RTS
;
3312 info
->drop_rts_on_tx_done
= true;
3316 if (info
->params
.mode
== MGSL_MODE_ASYNC
) {
3317 if (!info
->tx_active
) {
3318 info
->tx_active
= true;
3319 tx_ready(info
, tty
);
3322 info
->tx_active
= true;
3323 tx_ready(info
, tty
);
3324 mod_timer(&info
->tx_timer
, jiffies
+
3325 msecs_to_jiffies(5000));
3329 if (!info
->tx_enabled
)
3330 info
->tx_enabled
= true;
3333 static void tx_stop(MGSLPC_INFO
*info
)
3335 if (debug_level
>= DEBUG_LEVEL_ISR
)
3336 printk("%s(%d):tx_stop(%s)\n",
3337 __FILE__
,__LINE__
, info
->device_name
);
3339 del_timer(&info
->tx_timer
);
3341 info
->tx_enabled
= false;
3342 info
->tx_active
= false;
3345 /* Reset the adapter to a known state and prepare it for further use.
3347 static void reset_device(MGSLPC_INFO
*info
)
3349 /* power up both channels (set BIT7) */
3350 write_reg(info
, CHA
+ CCR0
, 0x80);
3351 write_reg(info
, CHB
+ CCR0
, 0x80);
3352 write_reg(info
, CHA
+ MODE
, 0);
3353 write_reg(info
, CHB
+ MODE
, 0);
3355 /* disable all interrupts */
3356 irq_disable(info
, CHA
, 0xffff);
3357 irq_disable(info
, CHB
, 0xffff);
3358 port_irq_disable(info
, 0xff);
3360 /* PCR Port Configuration Register
3362 * 07..04 DEC[3..0] Serial I/F select outputs
3363 * 03 output, 1=AUTO CTS control enabled
3364 * 02 RI Ring Indicator input 0=active
3365 * 01 DSR input 0=active
3366 * 00 DTR output 0=active
3370 write_reg(info
, PCR
, 0x06);
3372 /* PVR Port Value Register
3374 * 07..04 DEC[3..0] Serial I/F select (0000=disabled)
3375 * 03 AUTO CTS output 1=enabled
3376 * 02 RI Ring Indicator input
3378 * 00 DTR output (1=inactive)
3382 // write_reg(info, PVR, PVR_DTR);
3384 /* IPC Interrupt Port Configuration
3386 * 07 VIS 1=Masked interrupts visible
3387 * 06..05 Reserved, 0
3388 * 04..03 SLA Slave address, 00 ignored
3389 * 02 CASM Cascading Mode, 1=daisy chain
3390 * 01..00 IC[1..0] Interrupt Config, 01=push-pull output, active low
3394 write_reg(info
, IPC
, 0x05);
3397 static void async_mode(MGSLPC_INFO
*info
)
3401 /* disable all interrupts */
3402 irq_disable(info
, CHA
, 0xffff);
3403 irq_disable(info
, CHB
, 0xffff);
3404 port_irq_disable(info
, 0xff);
3409 * 06 FRTS RTS State, 0=active
3410 * 05 FCTS Flow Control on CTS
3411 * 04 FLON Flow Control Enable
3412 * 03 RAC Receiver Active, 0 = inactive
3413 * 02 RTS 0=Auto RTS, 1=manual RTS
3414 * 01 TRS Timer Resolution, 1=512
3415 * 00 TLP Test Loop, 0 = no loop
3420 if (info
->params
.loopback
)
3423 /* preserve RTS state */
3424 if (!(info
->serial_signals
& SerialSignal_RTS
))
3426 write_reg(info
, CHA
+ MODE
, val
);
3430 * 07 PU Power Up, 1=active, 0=power down
3431 * 06 MCE Master Clock Enable, 1=enabled
3433 * 04..02 SC[2..0] Encoding, 000=NRZ
3434 * 01..00 SM[1..0] Serial Mode, 11=Async
3438 write_reg(info
, CHA
+ CCR0
, 0x83);
3442 * 07..05 Reserved, 0
3443 * 04 ODS Output Driver Select, 1=TxD is push-pull output
3444 * 03 BCR Bit Clock Rate, 1=16x
3445 * 02..00 CM[2..0] Clock Mode, 111=BRG
3449 write_reg(info
, CHA
+ CCR1
, 0x1f);
3453 * 07..06 BGR[9..8] Baud rate bits 9..8
3454 * 05 BDF Baud rate divisor factor, 0=1, 1=BGR value
3455 * 04 SSEL Clock source select, 1=submode b
3456 * 03 TOE 0=TxCLK is input, 0=TxCLK is input
3457 * 02 RWX Read/Write Exchange 0=disabled
3459 * 00 DIV, data inversion 0=disabled, 1=enabled
3463 write_reg(info
, CHA
+ CCR2
, 0x10);
3467 * 07..01 Reserved, 0
3468 * 00 PSD DPLL Phase Shift Disable
3472 write_reg(info
, CHA
+ CCR3
, 0);
3476 * 07 MCK4 Master Clock Divide by 4, 1=enabled
3477 * 06 EBRG Enhanced Baud Rate Generator Mode, 1=enabled
3478 * 05 TST1 Test Pin, 0=normal operation
3479 * 04 ICD Ivert Carrier Detect, 1=enabled (active low)
3480 * 03..00 Reserved, must be 0
3484 write_reg(info
, CHA
+ CCR4
, 0x50);
3485 mgslpc_set_rate(info
, CHA
, info
->params
.data_rate
* 16);
3490 * 06 XBRK transmit break, 0=normal operation
3491 * 05 Stop bits (0=1, 1=2)
3492 * 04..03 PAR[1..0] Parity (01=odd, 10=even)
3493 * 02 PAREN Parity Enable
3494 * 01..00 CHL[1..0] Character Length (00=8, 01=7)
3498 if (info
->params
.data_bits
!= 8)
3499 val
|= BIT0
; /* 7 bits */
3500 if (info
->params
.stop_bits
!= 1)
3502 if (info
->params
.parity
!= ASYNC_PARITY_NONE
)
3504 val
|= BIT2
; /* Parity enable */
3505 if (info
->params
.parity
== ASYNC_PARITY_ODD
)
3510 write_reg(info
, CHA
+ DAFO
, val
);
3512 /* RFC Rx FIFO Control
3515 * 06 DPS, 1=parity bit not stored in data byte
3516 * 05 DXS, 0=all data stored in FIFO (including XON/XOFF)
3517 * 04 RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
3518 * 03..02 RFTH[1..0], rx threshold, 11=16 status + 16 data byte
3520 * 00 TCDE Terminate Char Detect Enable, 0=disabled
3524 write_reg(info
, CHA
+ RFC
, 0x5c);
3526 /* RLCR Receive length check register
3528 * Max frame length = (RL + 1) * 32
3530 write_reg(info
, CHA
+ RLCR
, 0);
3532 /* XBCH Transmit Byte Count High
3534 * 07 DMA mode, 0 = interrupt driven
3535 * 06 NRM, 0=ABM (ignored)
3536 * 05 CAS Carrier Auto Start
3537 * 04 XC Transmit Continuously (ignored)
3538 * 03..00 XBC[10..8] Transmit byte count bits 10..8
3543 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
3545 write_reg(info
, CHA
+ XBCH
, val
);
3546 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
3547 irq_enable(info
, CHA
, IRQ_CTS
);
3549 /* MODE:03 RAC Receiver Active, 1=active */
3550 set_reg_bits(info
, CHA
+ MODE
, BIT3
);
3551 enable_auxclk(info
);
3552 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
) {
3553 irq_enable(info
, CHB
, IRQ_CTS
);
3554 /* PVR[3] 1=AUTO CTS active */
3555 set_reg_bits(info
, CHA
+ PVR
, BIT3
);
3557 clear_reg_bits(info
, CHA
+ PVR
, BIT3
);
3558 irq_enable(info
, CHA
,
3559 IRQ_RXEOM
+ IRQ_RXFIFO
+ IRQ_BREAK_ON
+ IRQ_RXTIME
+
3560 IRQ_ALLSENT
+ IRQ_TXFIFO
);
3561 issue_command(info
, CHA
, CMD_TXRESET
+ CMD_RXRESET
);
3562 wait_command_complete(info
, CHA
);
3563 read_reg16(info
, CHA
+ ISR
); /* clear pending IRQs */
3566 /* Set the HDLC idle mode for the transmitter.
3568 static void tx_set_idle(MGSLPC_INFO
*info
)
3570 /* Note: ESCC2 only supports flags and one idle modes */
3571 if (info
->idle_mode
== HDLC_TXIDLE_FLAGS
)
3572 set_reg_bits(info
, CHA
+ CCR1
, BIT3
);
3574 clear_reg_bits(info
, CHA
+ CCR1
, BIT3
);
3577 /* get state of the V24 status (input) signals.
3579 static void get_signals(MGSLPC_INFO
*info
)
3581 unsigned char status
= 0;
3583 /* preserve DTR and RTS */
3584 info
->serial_signals
&= SerialSignal_DTR
+ SerialSignal_RTS
;
3586 if (read_reg(info
, CHB
+ VSTR
) & BIT7
)
3587 info
->serial_signals
|= SerialSignal_DCD
;
3588 if (read_reg(info
, CHB
+ STAR
) & BIT1
)
3589 info
->serial_signals
|= SerialSignal_CTS
;
3591 status
= read_reg(info
, CHA
+ PVR
);
3592 if (!(status
& PVR_RI
))
3593 info
->serial_signals
|= SerialSignal_RI
;
3594 if (!(status
& PVR_DSR
))
3595 info
->serial_signals
|= SerialSignal_DSR
;
3598 /* Set the state of DTR and RTS based on contents of
3599 * serial_signals member of device extension.
3601 static void set_signals(MGSLPC_INFO
*info
)
3605 val
= read_reg(info
, CHA
+ MODE
);
3606 if (info
->params
.mode
== MGSL_MODE_ASYNC
) {
3607 if (info
->serial_signals
& SerialSignal_RTS
)
3612 if (info
->serial_signals
& SerialSignal_RTS
)
3617 write_reg(info
, CHA
+ MODE
, val
);
3619 if (info
->serial_signals
& SerialSignal_DTR
)
3620 clear_reg_bits(info
, CHA
+ PVR
, PVR_DTR
);
3622 set_reg_bits(info
, CHA
+ PVR
, PVR_DTR
);
3625 static void rx_reset_buffers(MGSLPC_INFO
*info
)
3632 info
->rx_frame_count
= 0;
3633 for (i
=0 ; i
< info
->rx_buf_count
; i
++) {
3634 buf
= (RXBUF
*)(info
->rx_buf
+ (i
* info
->rx_buf_size
));
3635 buf
->status
= buf
->count
= 0;
3639 /* Attempt to return a received HDLC frame
3640 * Only frames received without errors are returned.
3642 * Returns true if frame returned, otherwise false
3644 static bool rx_get_frame(MGSLPC_INFO
*info
, struct tty_struct
*tty
)
3646 unsigned short status
;
3648 unsigned int framesize
= 0;
3649 unsigned long flags
;
3650 bool return_frame
= false;
3652 if (info
->rx_frame_count
== 0)
3655 buf
= (RXBUF
*)(info
->rx_buf
+ (info
->rx_get
* info
->rx_buf_size
));
3657 status
= buf
->status
;
3659 /* 07 VFR 1=valid frame
3660 * 06 RDO 1=data overrun
3661 * 05 CRC 1=OK, 0=error
3662 * 04 RAB 1=frame aborted
3664 if ((status
& 0xf0) != 0xA0) {
3665 if (!(status
& BIT7
) || (status
& BIT4
))
3666 info
->icount
.rxabort
++;
3667 else if (status
& BIT6
)
3668 info
->icount
.rxover
++;
3669 else if (!(status
& BIT5
)) {
3670 info
->icount
.rxcrc
++;
3671 if (info
->params
.crc_type
& HDLC_CRC_RETURN_EX
)
3672 return_frame
= true;
3675 #if SYNCLINK_GENERIC_HDLC
3677 info
->netdev
->stats
.rx_errors
++;
3678 info
->netdev
->stats
.rx_frame_errors
++;
3682 return_frame
= true;
3685 framesize
= buf
->count
;
3687 if (debug_level
>= DEBUG_LEVEL_BH
)
3688 printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
3689 __FILE__
,__LINE__
,info
->device_name
,status
,framesize
);
3691 if (debug_level
>= DEBUG_LEVEL_DATA
)
3692 trace_block(info
, buf
->data
, framesize
, 0);
3695 if ((info
->params
.crc_type
& HDLC_CRC_RETURN_EX
&&
3696 framesize
+1 > info
->max_frame_size
) ||
3697 framesize
> info
->max_frame_size
)
3698 info
->icount
.rxlong
++;
3701 info
->icount
.rxok
++;
3703 if (info
->params
.crc_type
& HDLC_CRC_RETURN_EX
) {
3704 *(buf
->data
+ framesize
) = status
& BIT5
? RX_OK
:RX_CRC_ERROR
;
3708 #if SYNCLINK_GENERIC_HDLC
3710 hdlcdev_rx(info
, buf
->data
, framesize
);
3713 ldisc_receive_buf(tty
, buf
->data
, info
->flag_buf
, framesize
);
3717 spin_lock_irqsave(&info
->lock
,flags
);
3718 buf
->status
= buf
->count
= 0;
3719 info
->rx_frame_count
--;
3721 if (info
->rx_get
>= info
->rx_buf_count
)
3723 spin_unlock_irqrestore(&info
->lock
,flags
);
3728 static bool register_test(MGSLPC_INFO
*info
)
3730 static unsigned char patterns
[] =
3731 { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
3732 static unsigned int count
= ARRAY_SIZE(patterns
);
3735 unsigned long flags
;
3737 spin_lock_irqsave(&info
->lock
,flags
);
3740 for (i
= 0; i
< count
; i
++) {
3741 write_reg(info
, XAD1
, patterns
[i
]);
3742 write_reg(info
, XAD2
, patterns
[(i
+ 1) % count
]);
3743 if ((read_reg(info
, XAD1
) != patterns
[i
]) ||
3744 (read_reg(info
, XAD2
) != patterns
[(i
+ 1) % count
])) {
3750 spin_unlock_irqrestore(&info
->lock
,flags
);
3754 static bool irq_test(MGSLPC_INFO
*info
)
3756 unsigned long end_time
;
3757 unsigned long flags
;
3759 spin_lock_irqsave(&info
->lock
,flags
);
3762 info
->testing_irq
= true;
3765 info
->irq_occurred
= false;
3767 /* init hdlc mode */
3769 irq_enable(info
, CHA
, IRQ_TIMER
);
3770 write_reg(info
, CHA
+ TIMR
, 0); /* 512 cycles */
3771 issue_command(info
, CHA
, CMD_START_TIMER
);
3773 spin_unlock_irqrestore(&info
->lock
,flags
);
3776 while(end_time
-- && !info
->irq_occurred
) {
3777 msleep_interruptible(10);
3780 info
->testing_irq
= false;
3782 spin_lock_irqsave(&info
->lock
,flags
);
3784 spin_unlock_irqrestore(&info
->lock
,flags
);
3786 return info
->irq_occurred
;
3789 static int adapter_test(MGSLPC_INFO
*info
)
3791 if (!register_test(info
)) {
3792 info
->init_error
= DiagStatus_AddressFailure
;
3793 printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
3794 __FILE__
,__LINE__
,info
->device_name
, (unsigned short)(info
->io_base
) );
3798 if (!irq_test(info
)) {
3799 info
->init_error
= DiagStatus_IrqFailure
;
3800 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
3801 __FILE__
,__LINE__
,info
->device_name
, (unsigned short)(info
->irq_level
) );
3805 if (debug_level
>= DEBUG_LEVEL_INFO
)
3806 printk("%s(%d):device %s passed diagnostics\n",
3807 __FILE__
,__LINE__
,info
->device_name
);
3811 static void trace_block(MGSLPC_INFO
*info
,const char* data
, int count
, int xmit
)
3816 printk("%s tx data:\n",info
->device_name
);
3818 printk("%s rx data:\n",info
->device_name
);
3826 for(i
=0;i
<linecount
;i
++)
3827 printk("%02X ",(unsigned char)data
[i
]);
3830 for(i
=0;i
<linecount
;i
++) {
3831 if (data
[i
]>=040 && data
[i
]<=0176)
3832 printk("%c",data
[i
]);
3843 /* HDLC frame time out
3844 * update stats and do tx completion processing
3846 static void tx_timeout(unsigned long context
)
3848 MGSLPC_INFO
*info
= (MGSLPC_INFO
*)context
;
3849 unsigned long flags
;
3851 if ( debug_level
>= DEBUG_LEVEL_INFO
)
3852 printk( "%s(%d):tx_timeout(%s)\n",
3853 __FILE__
,__LINE__
,info
->device_name
);
3854 if(info
->tx_active
&&
3855 info
->params
.mode
== MGSL_MODE_HDLC
) {
3856 info
->icount
.txtimeout
++;
3858 spin_lock_irqsave(&info
->lock
,flags
);
3859 info
->tx_active
= false;
3860 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
3862 spin_unlock_irqrestore(&info
->lock
,flags
);
3864 #if SYNCLINK_GENERIC_HDLC
3866 hdlcdev_tx_done(info
);
3870 struct tty_struct
*tty
= tty_port_tty_get(&info
->port
);
3871 bh_transmit(info
, tty
);
3876 #if SYNCLINK_GENERIC_HDLC
3879 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
3880 * set encoding and frame check sequence (FCS) options
3882 * dev pointer to network device structure
3883 * encoding serial encoding setting
3884 * parity FCS setting
3886 * returns 0 if success, otherwise error code
3888 static int hdlcdev_attach(struct net_device
*dev
, unsigned short encoding
,
3889 unsigned short parity
)
3891 MGSLPC_INFO
*info
= dev_to_port(dev
);
3892 struct tty_struct
*tty
;
3893 unsigned char new_encoding
;
3894 unsigned short new_crctype
;
3896 /* return error if TTY interface open */
3897 if (info
->port
.count
)
3902 case ENCODING_NRZ
: new_encoding
= HDLC_ENCODING_NRZ
; break;
3903 case ENCODING_NRZI
: new_encoding
= HDLC_ENCODING_NRZI_SPACE
; break;
3904 case ENCODING_FM_MARK
: new_encoding
= HDLC_ENCODING_BIPHASE_MARK
; break;
3905 case ENCODING_FM_SPACE
: new_encoding
= HDLC_ENCODING_BIPHASE_SPACE
; break;
3906 case ENCODING_MANCHESTER
: new_encoding
= HDLC_ENCODING_BIPHASE_LEVEL
; break;
3907 default: return -EINVAL
;
3912 case PARITY_NONE
: new_crctype
= HDLC_CRC_NONE
; break;
3913 case PARITY_CRC16_PR1_CCITT
: new_crctype
= HDLC_CRC_16_CCITT
; break;
3914 case PARITY_CRC32_PR1_CCITT
: new_crctype
= HDLC_CRC_32_CCITT
; break;
3915 default: return -EINVAL
;
3918 info
->params
.encoding
= new_encoding
;
3919 info
->params
.crc_type
= new_crctype
;
3921 /* if network interface up, reprogram hardware */
3922 if (info
->netcount
) {
3923 tty
= tty_port_tty_get(&info
->port
);
3924 mgslpc_program_hw(info
, tty
);
3932 * called by generic HDLC layer to send frame
3934 * skb socket buffer containing HDLC frame
3935 * dev pointer to network device structure
3937 static netdev_tx_t
hdlcdev_xmit(struct sk_buff
*skb
,
3938 struct net_device
*dev
)
3940 MGSLPC_INFO
*info
= dev_to_port(dev
);
3941 unsigned long flags
;
3943 if (debug_level
>= DEBUG_LEVEL_INFO
)
3944 printk(KERN_INFO
"%s:hdlc_xmit(%s)\n",__FILE__
,dev
->name
);
3946 /* stop sending until this frame completes */
3947 netif_stop_queue(dev
);
3949 /* copy data to device buffers */
3950 skb_copy_from_linear_data(skb
, info
->tx_buf
, skb
->len
);
3952 info
->tx_put
= info
->tx_count
= skb
->len
;
3954 /* update network statistics */
3955 dev
->stats
.tx_packets
++;
3956 dev
->stats
.tx_bytes
+= skb
->len
;
3958 /* done with socket buffer, so free it */
3961 /* save start time for transmit timeout detection */
3962 dev
->trans_start
= jiffies
;
3964 /* start hardware transmitter if necessary */
3965 spin_lock_irqsave(&info
->lock
,flags
);
3966 if (!info
->tx_active
) {
3967 struct tty_struct
*tty
= tty_port_tty_get(&info
->port
);
3968 tx_start(info
, tty
);
3971 spin_unlock_irqrestore(&info
->lock
,flags
);
3973 return NETDEV_TX_OK
;
3977 * called by network layer when interface enabled
3978 * claim resources and initialize hardware
3980 * dev pointer to network device structure
3982 * returns 0 if success, otherwise error code
3984 static int hdlcdev_open(struct net_device
*dev
)
3986 MGSLPC_INFO
*info
= dev_to_port(dev
);
3987 struct tty_struct
*tty
;
3989 unsigned long flags
;
3991 if (debug_level
>= DEBUG_LEVEL_INFO
)
3992 printk("%s:hdlcdev_open(%s)\n",__FILE__
,dev
->name
);
3994 /* generic HDLC layer open processing */
3995 if ((rc
= hdlc_open(dev
)))
3998 /* arbitrate between network and tty opens */
3999 spin_lock_irqsave(&info
->netlock
, flags
);
4000 if (info
->port
.count
!= 0 || info
->netcount
!= 0) {
4001 printk(KERN_WARNING
"%s: hdlc_open returning busy\n", dev
->name
);
4002 spin_unlock_irqrestore(&info
->netlock
, flags
);
4006 spin_unlock_irqrestore(&info
->netlock
, flags
);
4008 tty
= tty_port_tty_get(&info
->port
);
4009 /* claim resources and init adapter */
4010 if ((rc
= startup(info
, tty
)) != 0) {
4012 spin_lock_irqsave(&info
->netlock
, flags
);
4014 spin_unlock_irqrestore(&info
->netlock
, flags
);
4017 /* assert DTR and RTS, apply hardware settings */
4018 info
->serial_signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
4019 mgslpc_program_hw(info
, tty
);
4022 /* enable network layer transmit */
4023 dev
->trans_start
= jiffies
;
4024 netif_start_queue(dev
);
4026 /* inform generic HDLC layer of current DCD status */
4027 spin_lock_irqsave(&info
->lock
, flags
);
4029 spin_unlock_irqrestore(&info
->lock
, flags
);
4030 if (info
->serial_signals
& SerialSignal_DCD
)
4031 netif_carrier_on(dev
);
4033 netif_carrier_off(dev
);
4038 * called by network layer when interface is disabled
4039 * shutdown hardware and release resources
4041 * dev pointer to network device structure
4043 * returns 0 if success, otherwise error code
4045 static int hdlcdev_close(struct net_device
*dev
)
4047 MGSLPC_INFO
*info
= dev_to_port(dev
);
4048 struct tty_struct
*tty
= tty_port_tty_get(&info
->port
);
4049 unsigned long flags
;
4051 if (debug_level
>= DEBUG_LEVEL_INFO
)
4052 printk("%s:hdlcdev_close(%s)\n",__FILE__
,dev
->name
);
4054 netif_stop_queue(dev
);
4056 /* shutdown adapter and release resources */
4057 shutdown(info
, tty
);
4061 spin_lock_irqsave(&info
->netlock
, flags
);
4063 spin_unlock_irqrestore(&info
->netlock
, flags
);
4069 * called by network layer to process IOCTL call to network device
4071 * dev pointer to network device structure
4072 * ifr pointer to network interface request structure
4073 * cmd IOCTL command code
4075 * returns 0 if success, otherwise error code
4077 static int hdlcdev_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
4079 const size_t size
= sizeof(sync_serial_settings
);
4080 sync_serial_settings new_line
;
4081 sync_serial_settings __user
*line
= ifr
->ifr_settings
.ifs_ifsu
.sync
;
4082 MGSLPC_INFO
*info
= dev_to_port(dev
);
4085 if (debug_level
>= DEBUG_LEVEL_INFO
)
4086 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__
,dev
->name
);
4088 /* return error if TTY interface open */
4089 if (info
->port
.count
)
4092 if (cmd
!= SIOCWANDEV
)
4093 return hdlc_ioctl(dev
, ifr
, cmd
);
4095 memset(&new_line
, 0, size
);
4097 switch(ifr
->ifr_settings
.type
) {
4098 case IF_GET_IFACE
: /* return current sync_serial_settings */
4100 ifr
->ifr_settings
.type
= IF_IFACE_SYNC_SERIAL
;
4101 if (ifr
->ifr_settings
.size
< size
) {
4102 ifr
->ifr_settings
.size
= size
; /* data size wanted */
4106 flags
= info
->params
.flags
& (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
4107 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
4108 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
4109 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
4112 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
): new_line
.clock_type
= CLOCK_EXT
; break;
4113 case (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_INT
; break;
4114 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_TXINT
; break;
4115 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
): new_line
.clock_type
= CLOCK_TXFROMRX
; break;
4116 default: new_line
.clock_type
= CLOCK_DEFAULT
;
4119 new_line
.clock_rate
= info
->params
.clock_speed
;
4120 new_line
.loopback
= info
->params
.loopback
? 1:0;
4122 if (copy_to_user(line
, &new_line
, size
))
4126 case IF_IFACE_SYNC_SERIAL
: /* set sync_serial_settings */
4128 if(!capable(CAP_NET_ADMIN
))
4130 if (copy_from_user(&new_line
, line
, size
))
4133 switch (new_line
.clock_type
)
4135 case CLOCK_EXT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
; break;
4136 case CLOCK_TXFROMRX
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
; break;
4137 case CLOCK_INT
: flags
= HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
; break;
4138 case CLOCK_TXINT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
; break;
4139 case CLOCK_DEFAULT
: flags
= info
->params
.flags
&
4140 (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
4141 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
4142 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
4143 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
); break;
4144 default: return -EINVAL
;
4147 if (new_line
.loopback
!= 0 && new_line
.loopback
!= 1)
4150 info
->params
.flags
&= ~(HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
4151 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
4152 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
4153 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
4154 info
->params
.flags
|= flags
;
4156 info
->params
.loopback
= new_line
.loopback
;
4158 if (flags
& (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
))
4159 info
->params
.clock_speed
= new_line
.clock_rate
;
4161 info
->params
.clock_speed
= 0;
4163 /* if network interface up, reprogram hardware */
4164 if (info
->netcount
) {
4165 struct tty_struct
*tty
= tty_port_tty_get(&info
->port
);
4166 mgslpc_program_hw(info
, tty
);
4172 return hdlc_ioctl(dev
, ifr
, cmd
);
4177 * called by network layer when transmit timeout is detected
4179 * dev pointer to network device structure
4181 static void hdlcdev_tx_timeout(struct net_device
*dev
)
4183 MGSLPC_INFO
*info
= dev_to_port(dev
);
4184 unsigned long flags
;
4186 if (debug_level
>= DEBUG_LEVEL_INFO
)
4187 printk("hdlcdev_tx_timeout(%s)\n",dev
->name
);
4189 dev
->stats
.tx_errors
++;
4190 dev
->stats
.tx_aborted_errors
++;
4192 spin_lock_irqsave(&info
->lock
,flags
);
4194 spin_unlock_irqrestore(&info
->lock
,flags
);
4196 netif_wake_queue(dev
);
4200 * called by device driver when transmit completes
4201 * reenable network layer transmit if stopped
4203 * info pointer to device instance information
4205 static void hdlcdev_tx_done(MGSLPC_INFO
*info
)
4207 if (netif_queue_stopped(info
->netdev
))
4208 netif_wake_queue(info
->netdev
);
4212 * called by device driver when frame received
4213 * pass frame to network layer
4215 * info pointer to device instance information
4216 * buf pointer to buffer contianing frame data
4217 * size count of data bytes in buf
4219 static void hdlcdev_rx(MGSLPC_INFO
*info
, char *buf
, int size
)
4221 struct sk_buff
*skb
= dev_alloc_skb(size
);
4222 struct net_device
*dev
= info
->netdev
;
4224 if (debug_level
>= DEBUG_LEVEL_INFO
)
4225 printk("hdlcdev_rx(%s)\n",dev
->name
);
4228 printk(KERN_NOTICE
"%s: can't alloc skb, dropping packet\n", dev
->name
);
4229 dev
->stats
.rx_dropped
++;
4233 memcpy(skb_put(skb
, size
), buf
, size
);
4235 skb
->protocol
= hdlc_type_trans(skb
, dev
);
4237 dev
->stats
.rx_packets
++;
4238 dev
->stats
.rx_bytes
+= size
;
4243 static const struct net_device_ops hdlcdev_ops
= {
4244 .ndo_open
= hdlcdev_open
,
4245 .ndo_stop
= hdlcdev_close
,
4246 .ndo_change_mtu
= hdlc_change_mtu
,
4247 .ndo_start_xmit
= hdlc_start_xmit
,
4248 .ndo_do_ioctl
= hdlcdev_ioctl
,
4249 .ndo_tx_timeout
= hdlcdev_tx_timeout
,
4253 * called by device driver when adding device instance
4254 * do generic HDLC initialization
4256 * info pointer to device instance information
4258 * returns 0 if success, otherwise error code
4260 static int hdlcdev_init(MGSLPC_INFO
*info
)
4263 struct net_device
*dev
;
4266 /* allocate and initialize network and HDLC layer objects */
4268 if (!(dev
= alloc_hdlcdev(info
))) {
4269 printk(KERN_ERR
"%s:hdlc device allocation failure\n",__FILE__
);
4273 /* for network layer reporting purposes only */
4274 dev
->base_addr
= info
->io_base
;
4275 dev
->irq
= info
->irq_level
;
4277 /* network layer callbacks and settings */
4278 dev
->netdev_ops
= &hdlcdev_ops
;
4279 dev
->watchdog_timeo
= 10 * HZ
;
4280 dev
->tx_queue_len
= 50;
4282 /* generic HDLC layer callbacks and settings */
4283 hdlc
= dev_to_hdlc(dev
);
4284 hdlc
->attach
= hdlcdev_attach
;
4285 hdlc
->xmit
= hdlcdev_xmit
;
4287 /* register objects with HDLC layer */
4288 if ((rc
= register_hdlc_device(dev
))) {
4289 printk(KERN_WARNING
"%s:unable to register hdlc device\n",__FILE__
);
4299 * called by device driver when removing device instance
4300 * do generic HDLC cleanup
4302 * info pointer to device instance information
4304 static void hdlcdev_exit(MGSLPC_INFO
*info
)
4306 unregister_hdlc_device(info
->netdev
);
4307 free_netdev(info
->netdev
);
4308 info
->netdev
= NULL
;
4311 #endif /* CONFIG_HDLC */