2 * $Id: synclinkmp.c,v 4.38 2005/07/15 13:29:44 paulkf Exp $
4 * Device driver for Microgate SyncLink Multiport
5 * high speed multiprotocol serial adapter.
7 * written by Paul Fulghum for Microgate Corporation
10 * Microgate and SyncLink are trademarks of Microgate Corporation
12 * Derived from serial.c written by Theodore Ts'o and Linus Torvalds
13 * This code is released under the GNU General Public License (GPL)
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
16 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
19 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
23 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
25 * OF THE POSSIBILITY OF SUCH DAMAGE.
28 #define VERSION(ver,rel,seq) (((ver)<<16) | ((rel)<<8) | (seq))
30 # define BREAKPOINT() asm(" int $3");
32 # define BREAKPOINT() { }
35 #define MAX_DEVICES 12
37 #include <linux/module.h>
38 #include <linux/errno.h>
39 #include <linux/signal.h>
40 #include <linux/sched.h>
41 #include <linux/timer.h>
42 #include <linux/interrupt.h>
43 #include <linux/pci.h>
44 #include <linux/tty.h>
45 #include <linux/tty_flip.h>
46 #include <linux/serial.h>
47 #include <linux/major.h>
48 #include <linux/string.h>
49 #include <linux/fcntl.h>
50 #include <linux/ptrace.h>
51 #include <linux/ioport.h>
53 #include <linux/slab.h>
54 #include <linux/netdevice.h>
55 #include <linux/vmalloc.h>
56 #include <linux/init.h>
57 #include <linux/delay.h>
58 #include <linux/ioctl.h>
60 #include <asm/system.h>
64 #include <linux/bitops.h>
65 #include <asm/types.h>
66 #include <linux/termios.h>
67 #include <linux/workqueue.h>
68 #include <linux/hdlc.h>
69 #include <linux/synclink.h>
71 #if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINKMP_MODULE))
72 #define SYNCLINK_GENERIC_HDLC 1
74 #define SYNCLINK_GENERIC_HDLC 0
77 #define GET_USER(error,value,addr) error = get_user(value,addr)
78 #define COPY_FROM_USER(error,dest,src,size) error = copy_from_user(dest,src,size) ? -EFAULT : 0
79 #define PUT_USER(error,value,addr) error = put_user(value,addr)
80 #define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0
82 #include <asm/uaccess.h>
84 static MGSL_PARAMS default_params
= {
85 MGSL_MODE_HDLC
, /* unsigned long mode */
86 0, /* unsigned char loopback; */
87 HDLC_FLAG_UNDERRUN_ABORT15
, /* unsigned short flags; */
88 HDLC_ENCODING_NRZI_SPACE
, /* unsigned char encoding; */
89 0, /* unsigned long clock_speed; */
90 0xff, /* unsigned char addr_filter; */
91 HDLC_CRC_16_CCITT
, /* unsigned short crc_type; */
92 HDLC_PREAMBLE_LENGTH_8BITS
, /* unsigned char preamble_length; */
93 HDLC_PREAMBLE_PATTERN_NONE
, /* unsigned char preamble; */
94 9600, /* unsigned long data_rate; */
95 8, /* unsigned char data_bits; */
96 1, /* unsigned char stop_bits; */
97 ASYNC_PARITY_NONE
/* unsigned char parity; */
100 /* size in bytes of DMA data buffers */
101 #define SCABUFSIZE 1024
102 #define SCA_MEM_SIZE 0x40000
103 #define SCA_BASE_SIZE 512
104 #define SCA_REG_SIZE 16
105 #define SCA_MAX_PORTS 4
106 #define SCAMAXDESC 128
108 #define BUFFERLISTSIZE 4096
110 /* SCA-I style DMA buffer descriptor */
111 typedef struct _SCADESC
113 u16 next
; /* lower l6 bits of next descriptor addr */
114 u16 buf_ptr
; /* lower 16 bits of buffer addr */
115 u8 buf_base
; /* upper 8 bits of buffer addr */
117 u16 length
; /* length of buffer */
118 u8 status
; /* status of buffer */
120 } SCADESC
, *PSCADESC
;
122 typedef struct _SCADESC_EX
124 /* device driver bookkeeping section */
125 char *virt_addr
; /* virtual address of data buffer */
126 u16 phys_entry
; /* lower 16-bits of physical address of this descriptor */
127 } SCADESC_EX
, *PSCADESC_EX
;
129 /* The queue of BH actions to be performed */
132 #define BH_TRANSMIT 2
135 #define IO_PIN_SHUTDOWN_LIMIT 100
137 struct _input_signal_events
{
149 * Device instance data structure
151 typedef struct _synclinkmp_info
{
152 void *if_ptr
; /* General purpose pointer (used by SPPP) */
155 int count
; /* count of opens */
157 unsigned short close_delay
;
158 unsigned short closing_wait
; /* time to wait before closing */
160 struct mgsl_icount icount
;
162 struct tty_struct
*tty
;
164 int x_char
; /* xon/xoff character */
165 int blocked_open
; /* # of blocked opens */
166 u16 read_status_mask1
; /* break detection (SR1 indications) */
167 u16 read_status_mask2
; /* parity/framing/overun (SR2 indications) */
168 unsigned char ignore_status_mask1
; /* break detection (SR1 indications) */
169 unsigned char ignore_status_mask2
; /* parity/framing/overun (SR2 indications) */
170 unsigned char *tx_buf
;
175 wait_queue_head_t open_wait
;
176 wait_queue_head_t close_wait
;
178 wait_queue_head_t status_event_wait_q
;
179 wait_queue_head_t event_wait_q
;
180 struct timer_list tx_timer
; /* HDLC transmit timeout timer */
181 struct _synclinkmp_info
*next_device
; /* device list link */
182 struct timer_list status_timer
; /* input signal status check timer */
184 spinlock_t lock
; /* spinlock for synchronizing with ISR */
185 struct work_struct task
; /* task structure for scheduling bh */
187 u32 max_frame_size
; /* as set by device config */
191 int bh_running
; /* Protection from multiple */
195 int dcd_chkcount
; /* check counts to prevent */
196 int cts_chkcount
; /* too many IRQs if a signal */
197 int dsr_chkcount
; /* is floating */
200 char *buffer_list
; /* virtual address of Rx & Tx buffer lists */
201 unsigned long buffer_list_phys
;
203 unsigned int rx_buf_count
; /* count of total allocated Rx buffers */
204 SCADESC
*rx_buf_list
; /* list of receive buffer entries */
205 SCADESC_EX rx_buf_list_ex
[SCAMAXDESC
]; /* list of receive buffer entries */
206 unsigned int current_rx_buf
;
208 unsigned int tx_buf_count
; /* count of total allocated Tx buffers */
209 SCADESC
*tx_buf_list
; /* list of transmit buffer entries */
210 SCADESC_EX tx_buf_list_ex
[SCAMAXDESC
]; /* list of transmit buffer entries */
211 unsigned int last_tx_buf
;
213 unsigned char *tmp_rx_buf
;
214 unsigned int tmp_rx_buf_count
;
223 unsigned char ie0_value
;
224 unsigned char ie1_value
;
225 unsigned char ie2_value
;
226 unsigned char ctrlreg_value
;
227 unsigned char old_signals
;
229 char device_name
[25]; /* device instance name */
235 struct _synclinkmp_info
*port_array
[SCA_MAX_PORTS
];
237 unsigned int bus_type
; /* expansion bus type (ISA,EISA,PCI) */
239 unsigned int irq_level
; /* interrupt level */
240 unsigned long irq_flags
;
241 int irq_requested
; /* nonzero if IRQ requested */
243 MGSL_PARAMS params
; /* communications parameters */
245 unsigned char serial_signals
; /* current serial signal states */
247 int irq_occurred
; /* for diagnostics use */
248 unsigned int init_error
; /* Initialization startup error */
251 unsigned char* memory_base
; /* shared memory address (PCI only) */
252 u32 phys_memory_base
;
253 int shared_mem_requested
;
255 unsigned char* sca_base
; /* HD64570 SCA Memory address */
258 int sca_base_requested
;
260 unsigned char* lcr_base
; /* local config registers (PCI only) */
263 int lcr_mem_requested
;
265 unsigned char* statctrl_base
; /* status/control register memory */
266 u32 phys_statctrl_base
;
268 int sca_statctrl_requested
;
271 char flag_buf
[MAX_ASYNC_BUFFER_SIZE
];
272 char char_buf
[MAX_ASYNC_BUFFER_SIZE
];
273 BOOLEAN drop_rts_on_tx_done
;
275 struct _input_signal_events input_signal_events
;
277 /* SPPP/Cisco HDLC device parts */
282 #if SYNCLINK_GENERIC_HDLC
283 struct net_device
*netdev
;
288 #define MGSL_MAGIC 0x5401
291 * define serial signal status change macros
293 #define MISCSTATUS_DCD_LATCHED (SerialSignal_DCD<<8) /* indicates change in DCD */
294 #define MISCSTATUS_RI_LATCHED (SerialSignal_RI<<8) /* indicates change in RI */
295 #define MISCSTATUS_CTS_LATCHED (SerialSignal_CTS<<8) /* indicates change in CTS */
296 #define MISCSTATUS_DSR_LATCHED (SerialSignal_DSR<<8) /* change in DSR */
298 /* Common Register macros */
317 /* MSCI Register macros */
347 /* Timer Register Macros */
357 /* DMA Controller Register macros */
388 /* combine with timer or DMA register address */
396 /* SCA Command Codes */
399 #define TXENABLE 0x02
400 #define TXDISABLE 0x03
401 #define TXCRCINIT 0x04
402 #define TXCRCEXCL 0x05
406 #define TXBUFCLR 0x09
408 #define RXENABLE 0x12
409 #define RXDISABLE 0x13
410 #define RXCRCINIT 0x14
411 #define RXREJECT 0x15
412 #define SEARCHMP 0x16
413 #define RXCRCEXCL 0x17
414 #define RXCRCCALC 0x18
418 /* DMA command codes */
420 #define FEICLEAR 0x02
454 * Global linked list of SyncLink devices
456 static SLMP_INFO
*synclinkmp_device_list
= NULL
;
457 static int synclinkmp_adapter_count
= -1;
458 static int synclinkmp_device_count
= 0;
461 * Set this param to non-zero to load eax with the
462 * .text section address and breakpoint on module load.
463 * This is useful for use with gdb and add-symbol-file command.
465 static int break_on_load
=0;
468 * Driver major number, defaults to zero to get auto
469 * assigned major number. May be forced as module parameter.
471 static int ttymajor
=0;
474 * Array of user specified options for ISA adapters.
476 static int debug_level
= 0;
477 static int maxframe
[MAX_DEVICES
] = {0,};
478 static int dosyncppp
[MAX_DEVICES
] = {0,};
480 module_param(break_on_load
, bool, 0);
481 module_param(ttymajor
, int, 0);
482 module_param(debug_level
, int, 0);
483 module_param_array(maxframe
, int, NULL
, 0);
484 module_param_array(dosyncppp
, int, NULL
, 0);
486 static char *driver_name
= "SyncLink MultiPort driver";
487 static char *driver_version
= "$Revision: 4.38 $";
489 static int synclinkmp_init_one(struct pci_dev
*dev
,const struct pci_device_id
*ent
);
490 static void synclinkmp_remove_one(struct pci_dev
*dev
);
492 static struct pci_device_id synclinkmp_pci_tbl
[] = {
493 { PCI_VENDOR_ID_MICROGATE
, PCI_DEVICE_ID_MICROGATE_SCA
, PCI_ANY_ID
, PCI_ANY_ID
, },
494 { 0, }, /* terminate list */
496 MODULE_DEVICE_TABLE(pci
, synclinkmp_pci_tbl
);
498 MODULE_LICENSE("GPL");
500 static struct pci_driver synclinkmp_pci_driver
= {
501 .name
= "synclinkmp",
502 .id_table
= synclinkmp_pci_tbl
,
503 .probe
= synclinkmp_init_one
,
504 .remove
= __devexit_p(synclinkmp_remove_one
),
508 static struct tty_driver
*serial_driver
;
510 /* number of characters left in xmit buffer before we ask for more */
511 #define WAKEUP_CHARS 256
516 static int open(struct tty_struct
*tty
, struct file
* filp
);
517 static void close(struct tty_struct
*tty
, struct file
* filp
);
518 static void hangup(struct tty_struct
*tty
);
519 static void set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
);
521 static int write(struct tty_struct
*tty
, const unsigned char *buf
, int count
);
522 static void put_char(struct tty_struct
*tty
, unsigned char ch
);
523 static void send_xchar(struct tty_struct
*tty
, char ch
);
524 static void wait_until_sent(struct tty_struct
*tty
, int timeout
);
525 static int write_room(struct tty_struct
*tty
);
526 static void flush_chars(struct tty_struct
*tty
);
527 static void flush_buffer(struct tty_struct
*tty
);
528 static void tx_hold(struct tty_struct
*tty
);
529 static void tx_release(struct tty_struct
*tty
);
531 static int ioctl(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
, unsigned long arg
);
532 static int read_proc(char *page
, char **start
, off_t off
, int count
,int *eof
, void *data
);
533 static int chars_in_buffer(struct tty_struct
*tty
);
534 static void throttle(struct tty_struct
* tty
);
535 static void unthrottle(struct tty_struct
* tty
);
536 static void set_break(struct tty_struct
*tty
, int break_state
);
538 #if SYNCLINK_GENERIC_HDLC
539 #define dev_to_port(D) (dev_to_hdlc(D)->priv)
540 static void hdlcdev_tx_done(SLMP_INFO
*info
);
541 static void hdlcdev_rx(SLMP_INFO
*info
, char *buf
, int size
);
542 static int hdlcdev_init(SLMP_INFO
*info
);
543 static void hdlcdev_exit(SLMP_INFO
*info
);
548 static int get_stats(SLMP_INFO
*info
, struct mgsl_icount __user
*user_icount
);
549 static int get_params(SLMP_INFO
*info
, MGSL_PARAMS __user
*params
);
550 static int set_params(SLMP_INFO
*info
, MGSL_PARAMS __user
*params
);
551 static int get_txidle(SLMP_INFO
*info
, int __user
*idle_mode
);
552 static int set_txidle(SLMP_INFO
*info
, int idle_mode
);
553 static int tx_enable(SLMP_INFO
*info
, int enable
);
554 static int tx_abort(SLMP_INFO
*info
);
555 static int rx_enable(SLMP_INFO
*info
, int enable
);
556 static int modem_input_wait(SLMP_INFO
*info
,int arg
);
557 static int wait_mgsl_event(SLMP_INFO
*info
, int __user
*mask_ptr
);
558 static int tiocmget(struct tty_struct
*tty
, struct file
*file
);
559 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
560 unsigned int set
, unsigned int clear
);
561 static void set_break(struct tty_struct
*tty
, int break_state
);
563 static void add_device(SLMP_INFO
*info
);
564 static void device_init(int adapter_num
, struct pci_dev
*pdev
);
565 static int claim_resources(SLMP_INFO
*info
);
566 static void release_resources(SLMP_INFO
*info
);
568 static int startup(SLMP_INFO
*info
);
569 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,SLMP_INFO
*info
);
570 static void shutdown(SLMP_INFO
*info
);
571 static void program_hw(SLMP_INFO
*info
);
572 static void change_params(SLMP_INFO
*info
);
574 static int init_adapter(SLMP_INFO
*info
);
575 static int register_test(SLMP_INFO
*info
);
576 static int irq_test(SLMP_INFO
*info
);
577 static int loopback_test(SLMP_INFO
*info
);
578 static int adapter_test(SLMP_INFO
*info
);
579 static int memory_test(SLMP_INFO
*info
);
581 static void reset_adapter(SLMP_INFO
*info
);
582 static void reset_port(SLMP_INFO
*info
);
583 static void async_mode(SLMP_INFO
*info
);
584 static void hdlc_mode(SLMP_INFO
*info
);
586 static void rx_stop(SLMP_INFO
*info
);
587 static void rx_start(SLMP_INFO
*info
);
588 static void rx_reset_buffers(SLMP_INFO
*info
);
589 static void rx_free_frame_buffers(SLMP_INFO
*info
, unsigned int first
, unsigned int last
);
590 static int rx_get_frame(SLMP_INFO
*info
);
592 static void tx_start(SLMP_INFO
*info
);
593 static void tx_stop(SLMP_INFO
*info
);
594 static void tx_load_fifo(SLMP_INFO
*info
);
595 static void tx_set_idle(SLMP_INFO
*info
);
596 static void tx_load_dma_buffer(SLMP_INFO
*info
, const char *buf
, unsigned int count
);
598 static void get_signals(SLMP_INFO
*info
);
599 static void set_signals(SLMP_INFO
*info
);
600 static void enable_loopback(SLMP_INFO
*info
, int enable
);
601 static void set_rate(SLMP_INFO
*info
, u32 data_rate
);
603 static int bh_action(SLMP_INFO
*info
);
604 static void bh_handler(struct work_struct
*work
);
605 static void bh_receive(SLMP_INFO
*info
);
606 static void bh_transmit(SLMP_INFO
*info
);
607 static void bh_status(SLMP_INFO
*info
);
608 static void isr_timer(SLMP_INFO
*info
);
609 static void isr_rxint(SLMP_INFO
*info
);
610 static void isr_rxrdy(SLMP_INFO
*info
);
611 static void isr_txint(SLMP_INFO
*info
);
612 static void isr_txrdy(SLMP_INFO
*info
);
613 static void isr_rxdmaok(SLMP_INFO
*info
);
614 static void isr_rxdmaerror(SLMP_INFO
*info
);
615 static void isr_txdmaok(SLMP_INFO
*info
);
616 static void isr_txdmaerror(SLMP_INFO
*info
);
617 static void isr_io_pin(SLMP_INFO
*info
, u16 status
);
619 static int alloc_dma_bufs(SLMP_INFO
*info
);
620 static void free_dma_bufs(SLMP_INFO
*info
);
621 static int alloc_buf_list(SLMP_INFO
*info
);
622 static int alloc_frame_bufs(SLMP_INFO
*info
, SCADESC
*list
, SCADESC_EX
*list_ex
,int count
);
623 static int alloc_tmp_rx_buf(SLMP_INFO
*info
);
624 static void free_tmp_rx_buf(SLMP_INFO
*info
);
626 static void load_pci_memory(SLMP_INFO
*info
, char* dest
, const char* src
, unsigned short count
);
627 static void trace_block(SLMP_INFO
*info
, const char* data
, int count
, int xmit
);
628 static void tx_timeout(unsigned long context
);
629 static void status_timeout(unsigned long context
);
631 static unsigned char read_reg(SLMP_INFO
*info
, unsigned char addr
);
632 static void write_reg(SLMP_INFO
*info
, unsigned char addr
, unsigned char val
);
633 static u16
read_reg16(SLMP_INFO
*info
, unsigned char addr
);
634 static void write_reg16(SLMP_INFO
*info
, unsigned char addr
, u16 val
);
635 static unsigned char read_status_reg(SLMP_INFO
* info
);
636 static void write_control_reg(SLMP_INFO
* info
);
639 static unsigned char rx_active_fifo_level
= 16; // rx request FIFO activation level in bytes
640 static unsigned char tx_active_fifo_level
= 16; // tx request FIFO activation level in bytes
641 static unsigned char tx_negate_fifo_level
= 32; // tx request FIFO negation level in bytes
643 static u32 misc_ctrl_value
= 0x007e4040;
644 static u32 lcr1_brdr_value
= 0x00800028;
646 static u32 read_ahead_count
= 8;
648 /* DPCR, DMA Priority Control
650 * 07..05 Not used, must be 0
651 * 04 BRC, bus release condition: 0=all transfers complete
652 * 1=release after 1 xfer on all channels
653 * 03 CCC, channel change condition: 0=every cycle
654 * 1=after each channel completes all xfers
655 * 02..00 PR<2..0>, priority 100=round robin
659 static unsigned char dma_priority
= 0x04;
661 // Number of bytes that can be written to shared RAM
662 // in a single write operation
663 static u32 sca_pci_load_interval
= 64;
666 * 1st function defined in .text section. Calling this function in
667 * init_module() followed by a breakpoint allows a remote debugger
668 * (gdb) to get the .text address for the add-symbol-file command.
669 * This allows remote debugging of dynamically loadable modules.
671 static void* synclinkmp_get_text_ptr(void);
672 static void* synclinkmp_get_text_ptr(void) {return synclinkmp_get_text_ptr
;}
674 static inline int sanity_check(SLMP_INFO
*info
,
675 char *name
, const char *routine
)
678 static const char *badmagic
=
679 "Warning: bad magic number for synclinkmp_struct (%s) in %s\n";
680 static const char *badinfo
=
681 "Warning: null synclinkmp_struct for (%s) in %s\n";
684 printk(badinfo
, name
, routine
);
687 if (info
->magic
!= MGSL_MAGIC
) {
688 printk(badmagic
, name
, routine
);
699 * line discipline callback wrappers
701 * The wrappers maintain line discipline references
702 * while calling into the line discipline.
704 * ldisc_receive_buf - pass receive data to line discipline
707 static void ldisc_receive_buf(struct tty_struct
*tty
,
708 const __u8
*data
, char *flags
, int count
)
710 struct tty_ldisc
*ld
;
713 ld
= tty_ldisc_ref(tty
);
716 ld
->receive_buf(tty
, data
, flags
, count
);
723 /* Called when a port is opened. Init and enable port.
725 static int open(struct tty_struct
*tty
, struct file
*filp
)
732 if ((line
< 0) || (line
>= synclinkmp_device_count
)) {
733 printk("%s(%d): open with invalid line #%d.\n",
734 __FILE__
,__LINE__
,line
);
738 info
= synclinkmp_device_list
;
739 while(info
&& info
->line
!= line
)
740 info
= info
->next_device
;
741 if (sanity_check(info
, tty
->name
, "open"))
743 if ( info
->init_error
) {
744 printk("%s(%d):%s device is not allocated, init error=%d\n",
745 __FILE__
,__LINE__
,info
->device_name
,info
->init_error
);
749 tty
->driver_data
= info
;
752 if (debug_level
>= DEBUG_LEVEL_INFO
)
753 printk("%s(%d):%s open(), old ref count = %d\n",
754 __FILE__
,__LINE__
,tty
->driver
->name
, info
->count
);
756 /* If port is closing, signal caller to try again */
757 if (tty_hung_up_p(filp
) || info
->flags
& ASYNC_CLOSING
){
758 if (info
->flags
& ASYNC_CLOSING
)
759 interruptible_sleep_on(&info
->close_wait
);
760 retval
= ((info
->flags
& ASYNC_HUP_NOTIFY
) ?
761 -EAGAIN
: -ERESTARTSYS
);
765 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
767 spin_lock_irqsave(&info
->netlock
, flags
);
768 if (info
->netcount
) {
770 spin_unlock_irqrestore(&info
->netlock
, flags
);
774 spin_unlock_irqrestore(&info
->netlock
, flags
);
776 if (info
->count
== 1) {
777 /* 1st open on this device, init hardware */
778 retval
= startup(info
);
783 retval
= block_til_ready(tty
, filp
, info
);
785 if (debug_level
>= DEBUG_LEVEL_INFO
)
786 printk("%s(%d):%s block_til_ready() returned %d\n",
787 __FILE__
,__LINE__
, info
->device_name
, retval
);
791 if (debug_level
>= DEBUG_LEVEL_INFO
)
792 printk("%s(%d):%s open() success\n",
793 __FILE__
,__LINE__
, info
->device_name
);
799 info
->tty
= NULL
; /* tty layer will release tty struct */
807 /* Called when port is closed. Wait for remaining data to be
808 * sent. Disable port and free resources.
810 static void close(struct tty_struct
*tty
, struct file
*filp
)
812 SLMP_INFO
* info
= (SLMP_INFO
*)tty
->driver_data
;
814 if (sanity_check(info
, tty
->name
, "close"))
817 if (debug_level
>= DEBUG_LEVEL_INFO
)
818 printk("%s(%d):%s close() entry, count=%d\n",
819 __FILE__
,__LINE__
, info
->device_name
, info
->count
);
824 if (tty_hung_up_p(filp
))
827 if ((tty
->count
== 1) && (info
->count
!= 1)) {
829 * tty->count is 1 and the tty structure will be freed.
830 * info->count should be one in this case.
831 * if it's not, correct it so that the port is shutdown.
833 printk("%s(%d):%s close: bad refcount; tty->count is 1, "
834 "info->count is %d\n",
835 __FILE__
,__LINE__
, info
->device_name
, info
->count
);
841 /* if at least one open remaining, leave hardware active */
845 info
->flags
|= ASYNC_CLOSING
;
847 /* set tty->closing to notify line discipline to
848 * only process XON/XOFF characters. Only the N_TTY
849 * discipline appears to use this (ppp does not).
853 /* wait for transmit data to clear all layers */
855 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
) {
856 if (debug_level
>= DEBUG_LEVEL_INFO
)
857 printk("%s(%d):%s close() calling tty_wait_until_sent\n",
858 __FILE__
,__LINE__
, info
->device_name
);
859 tty_wait_until_sent(tty
, info
->closing_wait
);
862 if (info
->flags
& ASYNC_INITIALIZED
)
863 wait_until_sent(tty
, info
->timeout
);
865 if (tty
->driver
->flush_buffer
)
866 tty
->driver
->flush_buffer(tty
);
868 tty_ldisc_flush(tty
);
875 if (info
->blocked_open
) {
876 if (info
->close_delay
) {
877 msleep_interruptible(jiffies_to_msecs(info
->close_delay
));
879 wake_up_interruptible(&info
->open_wait
);
882 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
884 wake_up_interruptible(&info
->close_wait
);
887 if (debug_level
>= DEBUG_LEVEL_INFO
)
888 printk("%s(%d):%s close() exit, count=%d\n", __FILE__
,__LINE__
,
889 tty
->driver
->name
, info
->count
);
892 /* Called by tty_hangup() when a hangup is signaled.
893 * This is the same as closing all open descriptors for the port.
895 static void hangup(struct tty_struct
*tty
)
897 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
899 if (debug_level
>= DEBUG_LEVEL_INFO
)
900 printk("%s(%d):%s hangup()\n",
901 __FILE__
,__LINE__
, info
->device_name
);
903 if (sanity_check(info
, tty
->name
, "hangup"))
910 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
913 wake_up_interruptible(&info
->open_wait
);
916 /* Set new termios settings
918 static void set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
920 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
923 if (debug_level
>= DEBUG_LEVEL_INFO
)
924 printk("%s(%d):%s set_termios()\n", __FILE__
,__LINE__
,
929 /* Handle transition to B0 status */
930 if (old_termios
->c_cflag
& CBAUD
&&
931 !(tty
->termios
->c_cflag
& CBAUD
)) {
932 info
->serial_signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
933 spin_lock_irqsave(&info
->lock
,flags
);
935 spin_unlock_irqrestore(&info
->lock
,flags
);
938 /* Handle transition away from B0 status */
939 if (!(old_termios
->c_cflag
& CBAUD
) &&
940 tty
->termios
->c_cflag
& CBAUD
) {
941 info
->serial_signals
|= SerialSignal_DTR
;
942 if (!(tty
->termios
->c_cflag
& CRTSCTS
) ||
943 !test_bit(TTY_THROTTLED
, &tty
->flags
)) {
944 info
->serial_signals
|= SerialSignal_RTS
;
946 spin_lock_irqsave(&info
->lock
,flags
);
948 spin_unlock_irqrestore(&info
->lock
,flags
);
951 /* Handle turning off CRTSCTS */
952 if (old_termios
->c_cflag
& CRTSCTS
&&
953 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
959 /* Send a block of data
963 * tty pointer to tty information structure
964 * buf pointer to buffer containing send data
965 * count size of send data in bytes
967 * Return Value: number of characters written
969 static int write(struct tty_struct
*tty
,
970 const unsigned char *buf
, int count
)
973 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
976 if (debug_level
>= DEBUG_LEVEL_INFO
)
977 printk("%s(%d):%s write() count=%d\n",
978 __FILE__
,__LINE__
,info
->device_name
,count
);
980 if (sanity_check(info
, tty
->name
, "write"))
986 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
987 if (count
> info
->max_frame_size
) {
993 if (info
->tx_count
) {
994 /* send accumulated data from send_char() calls */
995 /* as frame and wait before accepting more data. */
996 tx_load_dma_buffer(info
, info
->tx_buf
, info
->tx_count
);
999 ret
= info
->tx_count
= count
;
1000 tx_load_dma_buffer(info
, buf
, count
);
1005 c
= min_t(int, count
,
1006 min(info
->max_frame_size
- info
->tx_count
- 1,
1007 info
->max_frame_size
- info
->tx_put
));
1011 memcpy(info
->tx_buf
+ info
->tx_put
, buf
, c
);
1013 spin_lock_irqsave(&info
->lock
,flags
);
1015 if (info
->tx_put
>= info
->max_frame_size
)
1016 info
->tx_put
-= info
->max_frame_size
;
1017 info
->tx_count
+= c
;
1018 spin_unlock_irqrestore(&info
->lock
,flags
);
1025 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
1027 ret
= info
->tx_count
= 0;
1030 tx_load_dma_buffer(info
, info
->tx_buf
, info
->tx_count
);
1033 if (info
->tx_count
&& !tty
->stopped
&& !tty
->hw_stopped
) {
1034 spin_lock_irqsave(&info
->lock
,flags
);
1035 if (!info
->tx_active
)
1037 spin_unlock_irqrestore(&info
->lock
,flags
);
1041 if (debug_level
>= DEBUG_LEVEL_INFO
)
1042 printk( "%s(%d):%s write() returning=%d\n",
1043 __FILE__
,__LINE__
,info
->device_name
,ret
);
1047 /* Add a character to the transmit buffer.
1049 static void put_char(struct tty_struct
*tty
, unsigned char ch
)
1051 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1052 unsigned long flags
;
1054 if ( debug_level
>= DEBUG_LEVEL_INFO
) {
1055 printk( "%s(%d):%s put_char(%d)\n",
1056 __FILE__
,__LINE__
,info
->device_name
,ch
);
1059 if (sanity_check(info
, tty
->name
, "put_char"))
1065 spin_lock_irqsave(&info
->lock
,flags
);
1067 if ( (info
->params
.mode
!= MGSL_MODE_HDLC
) ||
1068 !info
->tx_active
) {
1070 if (info
->tx_count
< info
->max_frame_size
- 1) {
1071 info
->tx_buf
[info
->tx_put
++] = ch
;
1072 if (info
->tx_put
>= info
->max_frame_size
)
1073 info
->tx_put
-= info
->max_frame_size
;
1078 spin_unlock_irqrestore(&info
->lock
,flags
);
1081 /* Send a high-priority XON/XOFF character
1083 static void send_xchar(struct tty_struct
*tty
, char ch
)
1085 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1086 unsigned long flags
;
1088 if (debug_level
>= DEBUG_LEVEL_INFO
)
1089 printk("%s(%d):%s send_xchar(%d)\n",
1090 __FILE__
,__LINE__
, info
->device_name
, ch
);
1092 if (sanity_check(info
, tty
->name
, "send_xchar"))
1097 /* Make sure transmit interrupts are on */
1098 spin_lock_irqsave(&info
->lock
,flags
);
1099 if (!info
->tx_enabled
)
1101 spin_unlock_irqrestore(&info
->lock
,flags
);
1105 /* Wait until the transmitter is empty.
1107 static void wait_until_sent(struct tty_struct
*tty
, int timeout
)
1109 SLMP_INFO
* info
= (SLMP_INFO
*)tty
->driver_data
;
1110 unsigned long orig_jiffies
, char_time
;
1115 if (debug_level
>= DEBUG_LEVEL_INFO
)
1116 printk("%s(%d):%s wait_until_sent() entry\n",
1117 __FILE__
,__LINE__
, info
->device_name
);
1119 if (sanity_check(info
, tty
->name
, "wait_until_sent"))
1122 if (!(info
->flags
& ASYNC_INITIALIZED
))
1125 orig_jiffies
= jiffies
;
1127 /* Set check interval to 1/5 of estimated time to
1128 * send a character, and make it at least 1. The check
1129 * interval should also be less than the timeout.
1130 * Note: use tight timings here to satisfy the NIST-PCTS.
1133 if ( info
->params
.data_rate
) {
1134 char_time
= info
->timeout
/(32 * 5);
1141 char_time
= min_t(unsigned long, char_time
, timeout
);
1143 if ( info
->params
.mode
== MGSL_MODE_HDLC
) {
1144 while (info
->tx_active
) {
1145 msleep_interruptible(jiffies_to_msecs(char_time
));
1146 if (signal_pending(current
))
1148 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
1152 //TODO: determine if there is something similar to USC16C32
1153 // TXSTATUS_ALL_SENT status
1154 while ( info
->tx_active
&& info
->tx_enabled
) {
1155 msleep_interruptible(jiffies_to_msecs(char_time
));
1156 if (signal_pending(current
))
1158 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
1164 if (debug_level
>= DEBUG_LEVEL_INFO
)
1165 printk("%s(%d):%s wait_until_sent() exit\n",
1166 __FILE__
,__LINE__
, info
->device_name
);
1169 /* Return the count of free bytes in transmit buffer
1171 static int write_room(struct tty_struct
*tty
)
1173 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1176 if (sanity_check(info
, tty
->name
, "write_room"))
1179 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
1180 ret
= (info
->tx_active
) ? 0 : HDLC_MAX_FRAME_SIZE
;
1182 ret
= info
->max_frame_size
- info
->tx_count
- 1;
1187 if (debug_level
>= DEBUG_LEVEL_INFO
)
1188 printk("%s(%d):%s write_room()=%d\n",
1189 __FILE__
, __LINE__
, info
->device_name
, ret
);
1194 /* enable transmitter and send remaining buffered characters
1196 static void flush_chars(struct tty_struct
*tty
)
1198 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1199 unsigned long flags
;
1201 if ( debug_level
>= DEBUG_LEVEL_INFO
)
1202 printk( "%s(%d):%s flush_chars() entry tx_count=%d\n",
1203 __FILE__
,__LINE__
,info
->device_name
,info
->tx_count
);
1205 if (sanity_check(info
, tty
->name
, "flush_chars"))
1208 if (info
->tx_count
<= 0 || tty
->stopped
|| tty
->hw_stopped
||
1212 if ( debug_level
>= DEBUG_LEVEL_INFO
)
1213 printk( "%s(%d):%s flush_chars() entry, starting transmitter\n",
1214 __FILE__
,__LINE__
,info
->device_name
);
1216 spin_lock_irqsave(&info
->lock
,flags
);
1218 if (!info
->tx_active
) {
1219 if ( (info
->params
.mode
== MGSL_MODE_HDLC
) &&
1221 /* operating in synchronous (frame oriented) mode */
1222 /* copy data from circular tx_buf to */
1223 /* transmit DMA buffer. */
1224 tx_load_dma_buffer(info
,
1225 info
->tx_buf
,info
->tx_count
);
1230 spin_unlock_irqrestore(&info
->lock
,flags
);
1233 /* Discard all data in the send buffer
1235 static void flush_buffer(struct tty_struct
*tty
)
1237 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1238 unsigned long flags
;
1240 if (debug_level
>= DEBUG_LEVEL_INFO
)
1241 printk("%s(%d):%s flush_buffer() entry\n",
1242 __FILE__
,__LINE__
, info
->device_name
);
1244 if (sanity_check(info
, tty
->name
, "flush_buffer"))
1247 spin_lock_irqsave(&info
->lock
,flags
);
1248 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
1249 del_timer(&info
->tx_timer
);
1250 spin_unlock_irqrestore(&info
->lock
,flags
);
1255 /* throttle (stop) transmitter
1257 static void tx_hold(struct tty_struct
*tty
)
1259 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1260 unsigned long flags
;
1262 if (sanity_check(info
, tty
->name
, "tx_hold"))
1265 if ( debug_level
>= DEBUG_LEVEL_INFO
)
1266 printk("%s(%d):%s tx_hold()\n",
1267 __FILE__
,__LINE__
,info
->device_name
);
1269 spin_lock_irqsave(&info
->lock
,flags
);
1270 if (info
->tx_enabled
)
1272 spin_unlock_irqrestore(&info
->lock
,flags
);
1275 /* release (start) transmitter
1277 static void tx_release(struct tty_struct
*tty
)
1279 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1280 unsigned long flags
;
1282 if (sanity_check(info
, tty
->name
, "tx_release"))
1285 if ( debug_level
>= DEBUG_LEVEL_INFO
)
1286 printk("%s(%d):%s tx_release()\n",
1287 __FILE__
,__LINE__
,info
->device_name
);
1289 spin_lock_irqsave(&info
->lock
,flags
);
1290 if (!info
->tx_enabled
)
1292 spin_unlock_irqrestore(&info
->lock
,flags
);
1295 /* Service an IOCTL request
1299 * tty pointer to tty instance data
1300 * file pointer to associated file object for device
1301 * cmd IOCTL command code
1302 * arg command argument/context
1304 * Return Value: 0 if success, otherwise error code
1306 static int ioctl(struct tty_struct
*tty
, struct file
*file
,
1307 unsigned int cmd
, unsigned long arg
)
1309 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1311 struct mgsl_icount cnow
; /* kernel counter temps */
1312 struct serial_icounter_struct __user
*p_cuser
; /* user space */
1313 unsigned long flags
;
1314 void __user
*argp
= (void __user
*)arg
;
1316 if (debug_level
>= DEBUG_LEVEL_INFO
)
1317 printk("%s(%d):%s ioctl() cmd=%08X\n", __FILE__
,__LINE__
,
1318 info
->device_name
, cmd
);
1320 if (sanity_check(info
, tty
->name
, "ioctl"))
1323 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1324 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1325 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1330 case MGSL_IOCGPARAMS
:
1331 return get_params(info
, argp
);
1332 case MGSL_IOCSPARAMS
:
1333 return set_params(info
, argp
);
1334 case MGSL_IOCGTXIDLE
:
1335 return get_txidle(info
, argp
);
1336 case MGSL_IOCSTXIDLE
:
1337 return set_txidle(info
, (int)arg
);
1338 case MGSL_IOCTXENABLE
:
1339 return tx_enable(info
, (int)arg
);
1340 case MGSL_IOCRXENABLE
:
1341 return rx_enable(info
, (int)arg
);
1342 case MGSL_IOCTXABORT
:
1343 return tx_abort(info
);
1344 case MGSL_IOCGSTATS
:
1345 return get_stats(info
, argp
);
1346 case MGSL_IOCWAITEVENT
:
1347 return wait_mgsl_event(info
, argp
);
1348 case MGSL_IOCLOOPTXDONE
:
1349 return 0; // TODO: Not supported, need to document
1350 /* Wait for modem input (DCD,RI,DSR,CTS) change
1351 * as specified by mask in arg (TIOCM_RNG/DSR/CD/CTS)
1354 return modem_input_wait(info
,(int)arg
);
1357 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
1358 * Return: write counters to the user passed counter struct
1359 * NB: both 1->0 and 0->1 transitions are counted except for
1360 * RI where only 0->1 is counted.
1363 spin_lock_irqsave(&info
->lock
,flags
);
1364 cnow
= info
->icount
;
1365 spin_unlock_irqrestore(&info
->lock
,flags
);
1367 PUT_USER(error
,cnow
.cts
, &p_cuser
->cts
);
1368 if (error
) return error
;
1369 PUT_USER(error
,cnow
.dsr
, &p_cuser
->dsr
);
1370 if (error
) return error
;
1371 PUT_USER(error
,cnow
.rng
, &p_cuser
->rng
);
1372 if (error
) return error
;
1373 PUT_USER(error
,cnow
.dcd
, &p_cuser
->dcd
);
1374 if (error
) return error
;
1375 PUT_USER(error
,cnow
.rx
, &p_cuser
->rx
);
1376 if (error
) return error
;
1377 PUT_USER(error
,cnow
.tx
, &p_cuser
->tx
);
1378 if (error
) return error
;
1379 PUT_USER(error
,cnow
.frame
, &p_cuser
->frame
);
1380 if (error
) return error
;
1381 PUT_USER(error
,cnow
.overrun
, &p_cuser
->overrun
);
1382 if (error
) return error
;
1383 PUT_USER(error
,cnow
.parity
, &p_cuser
->parity
);
1384 if (error
) return error
;
1385 PUT_USER(error
,cnow
.brk
, &p_cuser
->brk
);
1386 if (error
) return error
;
1387 PUT_USER(error
,cnow
.buf_overrun
, &p_cuser
->buf_overrun
);
1388 if (error
) return error
;
1391 return -ENOIOCTLCMD
;
1397 * /proc fs routines....
1400 static inline int line_info(char *buf
, SLMP_INFO
*info
)
1404 unsigned long flags
;
1406 ret
= sprintf(buf
, "%s: SCABase=%08x Mem=%08X StatusControl=%08x LCR=%08X\n"
1407 "\tIRQ=%d MaxFrameSize=%u\n",
1409 info
->phys_sca_base
,
1410 info
->phys_memory_base
,
1411 info
->phys_statctrl_base
,
1412 info
->phys_lcr_base
,
1414 info
->max_frame_size
);
1416 /* output current serial signal states */
1417 spin_lock_irqsave(&info
->lock
,flags
);
1419 spin_unlock_irqrestore(&info
->lock
,flags
);
1423 if (info
->serial_signals
& SerialSignal_RTS
)
1424 strcat(stat_buf
, "|RTS");
1425 if (info
->serial_signals
& SerialSignal_CTS
)
1426 strcat(stat_buf
, "|CTS");
1427 if (info
->serial_signals
& SerialSignal_DTR
)
1428 strcat(stat_buf
, "|DTR");
1429 if (info
->serial_signals
& SerialSignal_DSR
)
1430 strcat(stat_buf
, "|DSR");
1431 if (info
->serial_signals
& SerialSignal_DCD
)
1432 strcat(stat_buf
, "|CD");
1433 if (info
->serial_signals
& SerialSignal_RI
)
1434 strcat(stat_buf
, "|RI");
1436 if (info
->params
.mode
== MGSL_MODE_HDLC
) {
1437 ret
+= sprintf(buf
+ret
, "\tHDLC txok:%d rxok:%d",
1438 info
->icount
.txok
, info
->icount
.rxok
);
1439 if (info
->icount
.txunder
)
1440 ret
+= sprintf(buf
+ret
, " txunder:%d", info
->icount
.txunder
);
1441 if (info
->icount
.txabort
)
1442 ret
+= sprintf(buf
+ret
, " txabort:%d", info
->icount
.txabort
);
1443 if (info
->icount
.rxshort
)
1444 ret
+= sprintf(buf
+ret
, " rxshort:%d", info
->icount
.rxshort
);
1445 if (info
->icount
.rxlong
)
1446 ret
+= sprintf(buf
+ret
, " rxlong:%d", info
->icount
.rxlong
);
1447 if (info
->icount
.rxover
)
1448 ret
+= sprintf(buf
+ret
, " rxover:%d", info
->icount
.rxover
);
1449 if (info
->icount
.rxcrc
)
1450 ret
+= sprintf(buf
+ret
, " rxlong:%d", info
->icount
.rxcrc
);
1452 ret
+= sprintf(buf
+ret
, "\tASYNC tx:%d rx:%d",
1453 info
->icount
.tx
, info
->icount
.rx
);
1454 if (info
->icount
.frame
)
1455 ret
+= sprintf(buf
+ret
, " fe:%d", info
->icount
.frame
);
1456 if (info
->icount
.parity
)
1457 ret
+= sprintf(buf
+ret
, " pe:%d", info
->icount
.parity
);
1458 if (info
->icount
.brk
)
1459 ret
+= sprintf(buf
+ret
, " brk:%d", info
->icount
.brk
);
1460 if (info
->icount
.overrun
)
1461 ret
+= sprintf(buf
+ret
, " oe:%d", info
->icount
.overrun
);
1464 /* Append serial signal status to end */
1465 ret
+= sprintf(buf
+ret
, " %s\n", stat_buf
+1);
1467 ret
+= sprintf(buf
+ret
, "\ttxactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
1468 info
->tx_active
,info
->bh_requested
,info
->bh_running
,
1474 /* Called to print information about devices
1476 int read_proc(char *page
, char **start
, off_t off
, int count
,
1477 int *eof
, void *data
)
1483 len
+= sprintf(page
, "synclinkmp driver:%s\n", driver_version
);
1485 info
= synclinkmp_device_list
;
1487 l
= line_info(page
+ len
, info
);
1489 if (len
+begin
> off
+count
)
1491 if (len
+begin
< off
) {
1495 info
= info
->next_device
;
1500 if (off
>= len
+begin
)
1502 *start
= page
+ (off
-begin
);
1503 return ((count
< begin
+len
-off
) ? count
: begin
+len
-off
);
1506 /* Return the count of bytes in transmit buffer
1508 static int chars_in_buffer(struct tty_struct
*tty
)
1510 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1512 if (sanity_check(info
, tty
->name
, "chars_in_buffer"))
1515 if (debug_level
>= DEBUG_LEVEL_INFO
)
1516 printk("%s(%d):%s chars_in_buffer()=%d\n",
1517 __FILE__
, __LINE__
, info
->device_name
, info
->tx_count
);
1519 return info
->tx_count
;
1522 /* Signal remote device to throttle send data (our receive data)
1524 static void throttle(struct tty_struct
* tty
)
1526 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1527 unsigned long flags
;
1529 if (debug_level
>= DEBUG_LEVEL_INFO
)
1530 printk("%s(%d):%s throttle() entry\n",
1531 __FILE__
,__LINE__
, info
->device_name
);
1533 if (sanity_check(info
, tty
->name
, "throttle"))
1537 send_xchar(tty
, STOP_CHAR(tty
));
1539 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1540 spin_lock_irqsave(&info
->lock
,flags
);
1541 info
->serial_signals
&= ~SerialSignal_RTS
;
1543 spin_unlock_irqrestore(&info
->lock
,flags
);
1547 /* Signal remote device to stop throttling send data (our receive data)
1549 static void unthrottle(struct tty_struct
* tty
)
1551 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
1552 unsigned long flags
;
1554 if (debug_level
>= DEBUG_LEVEL_INFO
)
1555 printk("%s(%d):%s unthrottle() entry\n",
1556 __FILE__
,__LINE__
, info
->device_name
);
1558 if (sanity_check(info
, tty
->name
, "unthrottle"))
1565 send_xchar(tty
, START_CHAR(tty
));
1568 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1569 spin_lock_irqsave(&info
->lock
,flags
);
1570 info
->serial_signals
|= SerialSignal_RTS
;
1572 spin_unlock_irqrestore(&info
->lock
,flags
);
1576 /* set or clear transmit break condition
1577 * break_state -1=set break condition, 0=clear
1579 static void set_break(struct tty_struct
*tty
, int break_state
)
1581 unsigned char RegValue
;
1582 SLMP_INFO
* info
= (SLMP_INFO
*)tty
->driver_data
;
1583 unsigned long flags
;
1585 if (debug_level
>= DEBUG_LEVEL_INFO
)
1586 printk("%s(%d):%s set_break(%d)\n",
1587 __FILE__
,__LINE__
, info
->device_name
, break_state
);
1589 if (sanity_check(info
, tty
->name
, "set_break"))
1592 spin_lock_irqsave(&info
->lock
,flags
);
1593 RegValue
= read_reg(info
, CTL
);
1594 if (break_state
== -1)
1598 write_reg(info
, CTL
, RegValue
);
1599 spin_unlock_irqrestore(&info
->lock
,flags
);
1602 #if SYNCLINK_GENERIC_HDLC
1605 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
1606 * set encoding and frame check sequence (FCS) options
1608 * dev pointer to network device structure
1609 * encoding serial encoding setting
1610 * parity FCS setting
1612 * returns 0 if success, otherwise error code
1614 static int hdlcdev_attach(struct net_device
*dev
, unsigned short encoding
,
1615 unsigned short parity
)
1617 SLMP_INFO
*info
= dev_to_port(dev
);
1618 unsigned char new_encoding
;
1619 unsigned short new_crctype
;
1621 /* return error if TTY interface open */
1627 case ENCODING_NRZ
: new_encoding
= HDLC_ENCODING_NRZ
; break;
1628 case ENCODING_NRZI
: new_encoding
= HDLC_ENCODING_NRZI_SPACE
; break;
1629 case ENCODING_FM_MARK
: new_encoding
= HDLC_ENCODING_BIPHASE_MARK
; break;
1630 case ENCODING_FM_SPACE
: new_encoding
= HDLC_ENCODING_BIPHASE_SPACE
; break;
1631 case ENCODING_MANCHESTER
: new_encoding
= HDLC_ENCODING_BIPHASE_LEVEL
; break;
1632 default: return -EINVAL
;
1637 case PARITY_NONE
: new_crctype
= HDLC_CRC_NONE
; break;
1638 case PARITY_CRC16_PR1_CCITT
: new_crctype
= HDLC_CRC_16_CCITT
; break;
1639 case PARITY_CRC32_PR1_CCITT
: new_crctype
= HDLC_CRC_32_CCITT
; break;
1640 default: return -EINVAL
;
1643 info
->params
.encoding
= new_encoding
;
1644 info
->params
.crc_type
= new_crctype
;
1646 /* if network interface up, reprogram hardware */
1654 * called by generic HDLC layer to send frame
1656 * skb socket buffer containing HDLC frame
1657 * dev pointer to network device structure
1659 * returns 0 if success, otherwise error code
1661 static int hdlcdev_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1663 SLMP_INFO
*info
= dev_to_port(dev
);
1664 struct net_device_stats
*stats
= hdlc_stats(dev
);
1665 unsigned long flags
;
1667 if (debug_level
>= DEBUG_LEVEL_INFO
)
1668 printk(KERN_INFO
"%s:hdlc_xmit(%s)\n",__FILE__
,dev
->name
);
1670 /* stop sending until this frame completes */
1671 netif_stop_queue(dev
);
1673 /* copy data to device buffers */
1674 info
->tx_count
= skb
->len
;
1675 tx_load_dma_buffer(info
, skb
->data
, skb
->len
);
1677 /* update network statistics */
1678 stats
->tx_packets
++;
1679 stats
->tx_bytes
+= skb
->len
;
1681 /* done with socket buffer, so free it */
1684 /* save start time for transmit timeout detection */
1685 dev
->trans_start
= jiffies
;
1687 /* start hardware transmitter if necessary */
1688 spin_lock_irqsave(&info
->lock
,flags
);
1689 if (!info
->tx_active
)
1691 spin_unlock_irqrestore(&info
->lock
,flags
);
1697 * called by network layer when interface enabled
1698 * claim resources and initialize hardware
1700 * dev pointer to network device structure
1702 * returns 0 if success, otherwise error code
1704 static int hdlcdev_open(struct net_device
*dev
)
1706 SLMP_INFO
*info
= dev_to_port(dev
);
1708 unsigned long flags
;
1710 if (debug_level
>= DEBUG_LEVEL_INFO
)
1711 printk("%s:hdlcdev_open(%s)\n",__FILE__
,dev
->name
);
1713 /* generic HDLC layer open processing */
1714 if ((rc
= hdlc_open(dev
)))
1717 /* arbitrate between network and tty opens */
1718 spin_lock_irqsave(&info
->netlock
, flags
);
1719 if (info
->count
!= 0 || info
->netcount
!= 0) {
1720 printk(KERN_WARNING
"%s: hdlc_open returning busy\n", dev
->name
);
1721 spin_unlock_irqrestore(&info
->netlock
, flags
);
1725 spin_unlock_irqrestore(&info
->netlock
, flags
);
1727 /* claim resources and init adapter */
1728 if ((rc
= startup(info
)) != 0) {
1729 spin_lock_irqsave(&info
->netlock
, flags
);
1731 spin_unlock_irqrestore(&info
->netlock
, flags
);
1735 /* assert DTR and RTS, apply hardware settings */
1736 info
->serial_signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
1739 /* enable network layer transmit */
1740 dev
->trans_start
= jiffies
;
1741 netif_start_queue(dev
);
1743 /* inform generic HDLC layer of current DCD status */
1744 spin_lock_irqsave(&info
->lock
, flags
);
1746 spin_unlock_irqrestore(&info
->lock
, flags
);
1747 if (info
->serial_signals
& SerialSignal_DCD
)
1748 netif_carrier_on(dev
);
1750 netif_carrier_off(dev
);
1755 * called by network layer when interface is disabled
1756 * shutdown hardware and release resources
1758 * dev pointer to network device structure
1760 * returns 0 if success, otherwise error code
1762 static int hdlcdev_close(struct net_device
*dev
)
1764 SLMP_INFO
*info
= dev_to_port(dev
);
1765 unsigned long flags
;
1767 if (debug_level
>= DEBUG_LEVEL_INFO
)
1768 printk("%s:hdlcdev_close(%s)\n",__FILE__
,dev
->name
);
1770 netif_stop_queue(dev
);
1772 /* shutdown adapter and release resources */
1777 spin_lock_irqsave(&info
->netlock
, flags
);
1779 spin_unlock_irqrestore(&info
->netlock
, flags
);
1785 * called by network layer to process IOCTL call to network device
1787 * dev pointer to network device structure
1788 * ifr pointer to network interface request structure
1789 * cmd IOCTL command code
1791 * returns 0 if success, otherwise error code
1793 static int hdlcdev_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
1795 const size_t size
= sizeof(sync_serial_settings
);
1796 sync_serial_settings new_line
;
1797 sync_serial_settings __user
*line
= ifr
->ifr_settings
.ifs_ifsu
.sync
;
1798 SLMP_INFO
*info
= dev_to_port(dev
);
1801 if (debug_level
>= DEBUG_LEVEL_INFO
)
1802 printk("%s:hdlcdev_ioctl(%s)\n",__FILE__
,dev
->name
);
1804 /* return error if TTY interface open */
1808 if (cmd
!= SIOCWANDEV
)
1809 return hdlc_ioctl(dev
, ifr
, cmd
);
1811 switch(ifr
->ifr_settings
.type
) {
1812 case IF_GET_IFACE
: /* return current sync_serial_settings */
1814 ifr
->ifr_settings
.type
= IF_IFACE_SYNC_SERIAL
;
1815 if (ifr
->ifr_settings
.size
< size
) {
1816 ifr
->ifr_settings
.size
= size
; /* data size wanted */
1820 flags
= info
->params
.flags
& (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1821 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1822 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1823 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
1826 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
): new_line
.clock_type
= CLOCK_EXT
; break;
1827 case (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_INT
; break;
1828 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_TXINT
; break;
1829 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
): new_line
.clock_type
= CLOCK_TXFROMRX
; break;
1830 default: new_line
.clock_type
= CLOCK_DEFAULT
;
1833 new_line
.clock_rate
= info
->params
.clock_speed
;
1834 new_line
.loopback
= info
->params
.loopback
? 1:0;
1836 if (copy_to_user(line
, &new_line
, size
))
1840 case IF_IFACE_SYNC_SERIAL
: /* set sync_serial_settings */
1842 if(!capable(CAP_NET_ADMIN
))
1844 if (copy_from_user(&new_line
, line
, size
))
1847 switch (new_line
.clock_type
)
1849 case CLOCK_EXT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
; break;
1850 case CLOCK_TXFROMRX
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
; break;
1851 case CLOCK_INT
: flags
= HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
; break;
1852 case CLOCK_TXINT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
; break;
1853 case CLOCK_DEFAULT
: flags
= info
->params
.flags
&
1854 (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1855 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1856 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1857 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
); break;
1858 default: return -EINVAL
;
1861 if (new_line
.loopback
!= 0 && new_line
.loopback
!= 1)
1864 info
->params
.flags
&= ~(HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1865 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1866 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1867 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
1868 info
->params
.flags
|= flags
;
1870 info
->params
.loopback
= new_line
.loopback
;
1872 if (flags
& (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
))
1873 info
->params
.clock_speed
= new_line
.clock_rate
;
1875 info
->params
.clock_speed
= 0;
1877 /* if network interface up, reprogram hardware */
1883 return hdlc_ioctl(dev
, ifr
, cmd
);
1888 * called by network layer when transmit timeout is detected
1890 * dev pointer to network device structure
1892 static void hdlcdev_tx_timeout(struct net_device
*dev
)
1894 SLMP_INFO
*info
= dev_to_port(dev
);
1895 struct net_device_stats
*stats
= hdlc_stats(dev
);
1896 unsigned long flags
;
1898 if (debug_level
>= DEBUG_LEVEL_INFO
)
1899 printk("hdlcdev_tx_timeout(%s)\n",dev
->name
);
1902 stats
->tx_aborted_errors
++;
1904 spin_lock_irqsave(&info
->lock
,flags
);
1906 spin_unlock_irqrestore(&info
->lock
,flags
);
1908 netif_wake_queue(dev
);
1912 * called by device driver when transmit completes
1913 * reenable network layer transmit if stopped
1915 * info pointer to device instance information
1917 static void hdlcdev_tx_done(SLMP_INFO
*info
)
1919 if (netif_queue_stopped(info
->netdev
))
1920 netif_wake_queue(info
->netdev
);
1924 * called by device driver when frame received
1925 * pass frame to network layer
1927 * info pointer to device instance information
1928 * buf pointer to buffer contianing frame data
1929 * size count of data bytes in buf
1931 static void hdlcdev_rx(SLMP_INFO
*info
, char *buf
, int size
)
1933 struct sk_buff
*skb
= dev_alloc_skb(size
);
1934 struct net_device
*dev
= info
->netdev
;
1935 struct net_device_stats
*stats
= hdlc_stats(dev
);
1937 if (debug_level
>= DEBUG_LEVEL_INFO
)
1938 printk("hdlcdev_rx(%s)\n",dev
->name
);
1941 printk(KERN_NOTICE
"%s: can't alloc skb, dropping packet\n", dev
->name
);
1942 stats
->rx_dropped
++;
1946 memcpy(skb_put(skb
, size
),buf
,size
);
1948 skb
->protocol
= hdlc_type_trans(skb
, info
->netdev
);
1950 stats
->rx_packets
++;
1951 stats
->rx_bytes
+= size
;
1955 info
->netdev
->last_rx
= jiffies
;
1959 * called by device driver when adding device instance
1960 * do generic HDLC initialization
1962 * info pointer to device instance information
1964 * returns 0 if success, otherwise error code
1966 static int hdlcdev_init(SLMP_INFO
*info
)
1969 struct net_device
*dev
;
1972 /* allocate and initialize network and HDLC layer objects */
1974 if (!(dev
= alloc_hdlcdev(info
))) {
1975 printk(KERN_ERR
"%s:hdlc device allocation failure\n",__FILE__
);
1979 /* for network layer reporting purposes only */
1980 dev
->mem_start
= info
->phys_sca_base
;
1981 dev
->mem_end
= info
->phys_sca_base
+ SCA_BASE_SIZE
- 1;
1982 dev
->irq
= info
->irq_level
;
1984 /* network layer callbacks and settings */
1985 dev
->do_ioctl
= hdlcdev_ioctl
;
1986 dev
->open
= hdlcdev_open
;
1987 dev
->stop
= hdlcdev_close
;
1988 dev
->tx_timeout
= hdlcdev_tx_timeout
;
1989 dev
->watchdog_timeo
= 10*HZ
;
1990 dev
->tx_queue_len
= 50;
1992 /* generic HDLC layer callbacks and settings */
1993 hdlc
= dev_to_hdlc(dev
);
1994 hdlc
->attach
= hdlcdev_attach
;
1995 hdlc
->xmit
= hdlcdev_xmit
;
1997 /* register objects with HDLC layer */
1998 if ((rc
= register_hdlc_device(dev
))) {
1999 printk(KERN_WARNING
"%s:unable to register hdlc device\n",__FILE__
);
2009 * called by device driver when removing device instance
2010 * do generic HDLC cleanup
2012 * info pointer to device instance information
2014 static void hdlcdev_exit(SLMP_INFO
*info
)
2016 unregister_hdlc_device(info
->netdev
);
2017 free_netdev(info
->netdev
);
2018 info
->netdev
= NULL
;
2021 #endif /* CONFIG_HDLC */
2024 /* Return next bottom half action to perform.
2025 * Return Value: BH action code or 0 if nothing to do.
2027 int bh_action(SLMP_INFO
*info
)
2029 unsigned long flags
;
2032 spin_lock_irqsave(&info
->lock
,flags
);
2034 if (info
->pending_bh
& BH_RECEIVE
) {
2035 info
->pending_bh
&= ~BH_RECEIVE
;
2037 } else if (info
->pending_bh
& BH_TRANSMIT
) {
2038 info
->pending_bh
&= ~BH_TRANSMIT
;
2040 } else if (info
->pending_bh
& BH_STATUS
) {
2041 info
->pending_bh
&= ~BH_STATUS
;
2046 /* Mark BH routine as complete */
2047 info
->bh_running
= 0;
2048 info
->bh_requested
= 0;
2051 spin_unlock_irqrestore(&info
->lock
,flags
);
2056 /* Perform bottom half processing of work items queued by ISR.
2058 void bh_handler(struct work_struct
*work
)
2060 SLMP_INFO
*info
= container_of(work
, SLMP_INFO
, task
);
2066 if ( debug_level
>= DEBUG_LEVEL_BH
)
2067 printk( "%s(%d):%s bh_handler() entry\n",
2068 __FILE__
,__LINE__
,info
->device_name
);
2070 info
->bh_running
= 1;
2072 while((action
= bh_action(info
)) != 0) {
2074 /* Process work item */
2075 if ( debug_level
>= DEBUG_LEVEL_BH
)
2076 printk( "%s(%d):%s bh_handler() work item action=%d\n",
2077 __FILE__
,__LINE__
,info
->device_name
, action
);
2091 /* unknown work item ID */
2092 printk("%s(%d):%s Unknown work item ID=%08X!\n",
2093 __FILE__
,__LINE__
,info
->device_name
,action
);
2098 if ( debug_level
>= DEBUG_LEVEL_BH
)
2099 printk( "%s(%d):%s bh_handler() exit\n",
2100 __FILE__
,__LINE__
,info
->device_name
);
2103 void bh_receive(SLMP_INFO
*info
)
2105 if ( debug_level
>= DEBUG_LEVEL_BH
)
2106 printk( "%s(%d):%s bh_receive()\n",
2107 __FILE__
,__LINE__
,info
->device_name
);
2109 while( rx_get_frame(info
) );
2112 void bh_transmit(SLMP_INFO
*info
)
2114 struct tty_struct
*tty
= info
->tty
;
2116 if ( debug_level
>= DEBUG_LEVEL_BH
)
2117 printk( "%s(%d):%s bh_transmit() entry\n",
2118 __FILE__
,__LINE__
,info
->device_name
);
2124 void bh_status(SLMP_INFO
*info
)
2126 if ( debug_level
>= DEBUG_LEVEL_BH
)
2127 printk( "%s(%d):%s bh_status() entry\n",
2128 __FILE__
,__LINE__
,info
->device_name
);
2130 info
->ri_chkcount
= 0;
2131 info
->dsr_chkcount
= 0;
2132 info
->dcd_chkcount
= 0;
2133 info
->cts_chkcount
= 0;
2136 void isr_timer(SLMP_INFO
* info
)
2138 unsigned char timer
= (info
->port_num
& 1) ? TIMER2
: TIMER0
;
2140 /* IER2<7..4> = timer<3..0> interrupt enables (0=disabled) */
2141 write_reg(info
, IER2
, 0);
2143 /* TMCS, Timer Control/Status Register
2145 * 07 CMF, Compare match flag (read only) 1=match
2146 * 06 ECMI, CMF Interrupt Enable: 0=disabled
2147 * 05 Reserved, must be 0
2148 * 04 TME, Timer Enable
2149 * 03..00 Reserved, must be 0
2153 write_reg(info
, (unsigned char)(timer
+ TMCS
), 0);
2155 info
->irq_occurred
= TRUE
;
2157 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2158 printk("%s(%d):%s isr_timer()\n",
2159 __FILE__
,__LINE__
,info
->device_name
);
2162 void isr_rxint(SLMP_INFO
* info
)
2164 struct tty_struct
*tty
= info
->tty
;
2165 struct mgsl_icount
*icount
= &info
->icount
;
2166 unsigned char status
= read_reg(info
, SR1
) & info
->ie1_value
& (FLGD
+ IDLD
+ CDCD
+ BRKD
);
2167 unsigned char status2
= read_reg(info
, SR2
) & info
->ie2_value
& OVRN
;
2169 /* clear status bits */
2171 write_reg(info
, SR1
, status
);
2174 write_reg(info
, SR2
, status2
);
2176 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2177 printk("%s(%d):%s isr_rxint status=%02X %02x\n",
2178 __FILE__
,__LINE__
,info
->device_name
,status
,status2
);
2180 if (info
->params
.mode
== MGSL_MODE_ASYNC
) {
2181 if (status
& BRKD
) {
2184 /* process break detection if tty control
2185 * is not set to ignore it
2188 if (!(status
& info
->ignore_status_mask1
)) {
2189 if (info
->read_status_mask1
& BRKD
) {
2190 tty_insert_flip_char(tty
, 0, TTY_BREAK
);
2191 if (info
->flags
& ASYNC_SAK
)
2199 if (status
& (FLGD
|IDLD
)) {
2201 info
->icount
.exithunt
++;
2202 else if (status
& IDLD
)
2203 info
->icount
.rxidle
++;
2204 wake_up_interruptible(&info
->event_wait_q
);
2208 if (status
& CDCD
) {
2209 /* simulate a common modem status change interrupt
2212 get_signals( info
);
2214 MISCSTATUS_DCD_LATCHED
|(info
->serial_signals
&SerialSignal_DCD
));
2219 * handle async rx data interrupts
2221 void isr_rxrdy(SLMP_INFO
* info
)
2224 unsigned char DataByte
;
2225 struct tty_struct
*tty
= info
->tty
;
2226 struct mgsl_icount
*icount
= &info
->icount
;
2228 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2229 printk("%s(%d):%s isr_rxrdy\n",
2230 __FILE__
,__LINE__
,info
->device_name
);
2232 while((status
= read_reg(info
,CST0
)) & BIT0
)
2236 DataByte
= read_reg(info
,TRB
);
2240 if ( status
& (PE
+ FRME
+ OVRN
) ) {
2241 printk("%s(%d):%s rxerr=%04X\n",
2242 __FILE__
,__LINE__
,info
->device_name
,status
);
2244 /* update error statistics */
2247 else if (status
& FRME
)
2249 else if (status
& OVRN
)
2252 /* discard char if tty control flags say so */
2253 if (status
& info
->ignore_status_mask2
)
2256 status
&= info
->read_status_mask2
;
2261 else if (status
& FRME
)
2263 if (status
& OVRN
) {
2264 /* Overrun is special, since it's
2265 * reported immediately, and doesn't
2266 * affect the current character
2271 } /* end of if (error) */
2274 tty_insert_flip_char(tty
, DataByte
, flag
);
2276 tty_insert_flip_char(tty
, 0, TTY_OVERRUN
);
2280 if ( debug_level
>= DEBUG_LEVEL_ISR
) {
2281 printk("%s(%d):%s rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
2282 __FILE__
,__LINE__
,info
->device_name
,
2283 icount
->rx
,icount
->brk
,icount
->parity
,
2284 icount
->frame
,icount
->overrun
);
2288 tty_flip_buffer_push(tty
);
2291 static void isr_txeom(SLMP_INFO
* info
, unsigned char status
)
2293 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2294 printk("%s(%d):%s isr_txeom status=%02x\n",
2295 __FILE__
,__LINE__
,info
->device_name
,status
);
2297 write_reg(info
, TXDMA
+ DIR, 0x00); /* disable Tx DMA IRQs */
2298 write_reg(info
, TXDMA
+ DSR
, 0xc0); /* clear IRQs and disable DMA */
2299 write_reg(info
, TXDMA
+ DCMD
, SWABORT
); /* reset/init DMA channel */
2301 if (status
& UDRN
) {
2302 write_reg(info
, CMD
, TXRESET
);
2303 write_reg(info
, CMD
, TXENABLE
);
2305 write_reg(info
, CMD
, TXBUFCLR
);
2307 /* disable and clear tx interrupts */
2308 info
->ie0_value
&= ~TXRDYE
;
2309 info
->ie1_value
&= ~(IDLE
+ UDRN
);
2310 write_reg16(info
, IE0
, (unsigned short)((info
->ie1_value
<< 8) + info
->ie0_value
));
2311 write_reg(info
, SR1
, (unsigned char)(UDRN
+ IDLE
));
2313 if ( info
->tx_active
) {
2314 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
2316 info
->icount
.txunder
++;
2317 else if (status
& IDLE
)
2318 info
->icount
.txok
++;
2321 info
->tx_active
= 0;
2322 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
2324 del_timer(&info
->tx_timer
);
2326 if (info
->params
.mode
!= MGSL_MODE_ASYNC
&& info
->drop_rts_on_tx_done
) {
2327 info
->serial_signals
&= ~SerialSignal_RTS
;
2328 info
->drop_rts_on_tx_done
= 0;
2332 #if SYNCLINK_GENERIC_HDLC
2334 hdlcdev_tx_done(info
);
2338 if (info
->tty
&& (info
->tty
->stopped
|| info
->tty
->hw_stopped
)) {
2342 info
->pending_bh
|= BH_TRANSMIT
;
2349 * handle tx status interrupts
2351 void isr_txint(SLMP_INFO
* info
)
2353 unsigned char status
= read_reg(info
, SR1
) & info
->ie1_value
& (UDRN
+ IDLE
+ CCTS
);
2355 /* clear status bits */
2356 write_reg(info
, SR1
, status
);
2358 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2359 printk("%s(%d):%s isr_txint status=%02x\n",
2360 __FILE__
,__LINE__
,info
->device_name
,status
);
2362 if (status
& (UDRN
+ IDLE
))
2363 isr_txeom(info
, status
);
2365 if (status
& CCTS
) {
2366 /* simulate a common modem status change interrupt
2369 get_signals( info
);
2371 MISCSTATUS_CTS_LATCHED
|(info
->serial_signals
&SerialSignal_CTS
));
2377 * handle async tx data interrupts
2379 void isr_txrdy(SLMP_INFO
* info
)
2381 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2382 printk("%s(%d):%s isr_txrdy() tx_count=%d\n",
2383 __FILE__
,__LINE__
,info
->device_name
,info
->tx_count
);
2385 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
2386 /* disable TXRDY IRQ, enable IDLE IRQ */
2387 info
->ie0_value
&= ~TXRDYE
;
2388 info
->ie1_value
|= IDLE
;
2389 write_reg16(info
, IE0
, (unsigned short)((info
->ie1_value
<< 8) + info
->ie0_value
));
2393 if (info
->tty
&& (info
->tty
->stopped
|| info
->tty
->hw_stopped
)) {
2398 if ( info
->tx_count
)
2399 tx_load_fifo( info
);
2401 info
->tx_active
= 0;
2402 info
->ie0_value
&= ~TXRDYE
;
2403 write_reg(info
, IE0
, info
->ie0_value
);
2406 if (info
->tx_count
< WAKEUP_CHARS
)
2407 info
->pending_bh
|= BH_TRANSMIT
;
2410 void isr_rxdmaok(SLMP_INFO
* info
)
2412 /* BIT7 = EOT (end of transfer)
2413 * BIT6 = EOM (end of message/frame)
2415 unsigned char status
= read_reg(info
,RXDMA
+ DSR
) & 0xc0;
2417 /* clear IRQ (BIT0 must be 1 to prevent clearing DE bit) */
2418 write_reg(info
, RXDMA
+ DSR
, (unsigned char)(status
| 1));
2420 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2421 printk("%s(%d):%s isr_rxdmaok(), status=%02x\n",
2422 __FILE__
,__LINE__
,info
->device_name
,status
);
2424 info
->pending_bh
|= BH_RECEIVE
;
2427 void isr_rxdmaerror(SLMP_INFO
* info
)
2429 /* BIT5 = BOF (buffer overflow)
2430 * BIT4 = COF (counter overflow)
2432 unsigned char status
= read_reg(info
,RXDMA
+ DSR
) & 0x30;
2434 /* clear IRQ (BIT0 must be 1 to prevent clearing DE bit) */
2435 write_reg(info
, RXDMA
+ DSR
, (unsigned char)(status
| 1));
2437 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2438 printk("%s(%d):%s isr_rxdmaerror(), status=%02x\n",
2439 __FILE__
,__LINE__
,info
->device_name
,status
);
2441 info
->rx_overflow
= TRUE
;
2442 info
->pending_bh
|= BH_RECEIVE
;
2445 void isr_txdmaok(SLMP_INFO
* info
)
2447 unsigned char status_reg1
= read_reg(info
, SR1
);
2449 write_reg(info
, TXDMA
+ DIR, 0x00); /* disable Tx DMA IRQs */
2450 write_reg(info
, TXDMA
+ DSR
, 0xc0); /* clear IRQs and disable DMA */
2451 write_reg(info
, TXDMA
+ DCMD
, SWABORT
); /* reset/init DMA channel */
2453 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2454 printk("%s(%d):%s isr_txdmaok(), status=%02x\n",
2455 __FILE__
,__LINE__
,info
->device_name
,status_reg1
);
2457 /* program TXRDY as FIFO empty flag, enable TXRDY IRQ */
2458 write_reg16(info
, TRC0
, 0);
2459 info
->ie0_value
|= TXRDYE
;
2460 write_reg(info
, IE0
, info
->ie0_value
);
2463 void isr_txdmaerror(SLMP_INFO
* info
)
2465 /* BIT5 = BOF (buffer overflow)
2466 * BIT4 = COF (counter overflow)
2468 unsigned char status
= read_reg(info
,TXDMA
+ DSR
) & 0x30;
2470 /* clear IRQ (BIT0 must be 1 to prevent clearing DE bit) */
2471 write_reg(info
, TXDMA
+ DSR
, (unsigned char)(status
| 1));
2473 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2474 printk("%s(%d):%s isr_txdmaerror(), status=%02x\n",
2475 __FILE__
,__LINE__
,info
->device_name
,status
);
2478 /* handle input serial signal changes
2480 void isr_io_pin( SLMP_INFO
*info
, u16 status
)
2482 struct mgsl_icount
*icount
;
2484 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2485 printk("%s(%d):isr_io_pin status=%04X\n",
2486 __FILE__
,__LINE__
,status
);
2488 if (status
& (MISCSTATUS_CTS_LATCHED
| MISCSTATUS_DCD_LATCHED
|
2489 MISCSTATUS_DSR_LATCHED
| MISCSTATUS_RI_LATCHED
) ) {
2490 icount
= &info
->icount
;
2491 /* update input line counters */
2492 if (status
& MISCSTATUS_RI_LATCHED
) {
2494 if ( status
& SerialSignal_RI
)
2495 info
->input_signal_events
.ri_up
++;
2497 info
->input_signal_events
.ri_down
++;
2499 if (status
& MISCSTATUS_DSR_LATCHED
) {
2501 if ( status
& SerialSignal_DSR
)
2502 info
->input_signal_events
.dsr_up
++;
2504 info
->input_signal_events
.dsr_down
++;
2506 if (status
& MISCSTATUS_DCD_LATCHED
) {
2507 if ((info
->dcd_chkcount
)++ >= IO_PIN_SHUTDOWN_LIMIT
) {
2508 info
->ie1_value
&= ~CDCD
;
2509 write_reg(info
, IE1
, info
->ie1_value
);
2512 if (status
& SerialSignal_DCD
) {
2513 info
->input_signal_events
.dcd_up
++;
2515 info
->input_signal_events
.dcd_down
++;
2516 #if SYNCLINK_GENERIC_HDLC
2517 if (info
->netcount
) {
2518 if (status
& SerialSignal_DCD
)
2519 netif_carrier_on(info
->netdev
);
2521 netif_carrier_off(info
->netdev
);
2525 if (status
& MISCSTATUS_CTS_LATCHED
)
2527 if ((info
->cts_chkcount
)++ >= IO_PIN_SHUTDOWN_LIMIT
) {
2528 info
->ie1_value
&= ~CCTS
;
2529 write_reg(info
, IE1
, info
->ie1_value
);
2532 if ( status
& SerialSignal_CTS
)
2533 info
->input_signal_events
.cts_up
++;
2535 info
->input_signal_events
.cts_down
++;
2537 wake_up_interruptible(&info
->status_event_wait_q
);
2538 wake_up_interruptible(&info
->event_wait_q
);
2540 if ( (info
->flags
& ASYNC_CHECK_CD
) &&
2541 (status
& MISCSTATUS_DCD_LATCHED
) ) {
2542 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2543 printk("%s CD now %s...", info
->device_name
,
2544 (status
& SerialSignal_DCD
) ? "on" : "off");
2545 if (status
& SerialSignal_DCD
)
2546 wake_up_interruptible(&info
->open_wait
);
2548 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2549 printk("doing serial hangup...");
2551 tty_hangup(info
->tty
);
2555 if ( (info
->flags
& ASYNC_CTS_FLOW
) &&
2556 (status
& MISCSTATUS_CTS_LATCHED
) ) {
2558 if (info
->tty
->hw_stopped
) {
2559 if (status
& SerialSignal_CTS
) {
2560 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2561 printk("CTS tx start...");
2562 info
->tty
->hw_stopped
= 0;
2564 info
->pending_bh
|= BH_TRANSMIT
;
2568 if (!(status
& SerialSignal_CTS
)) {
2569 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2570 printk("CTS tx stop...");
2571 info
->tty
->hw_stopped
= 1;
2579 info
->pending_bh
|= BH_STATUS
;
2582 /* Interrupt service routine entry point.
2585 * irq interrupt number that caused interrupt
2586 * dev_id device ID supplied during interrupt registration
2587 * regs interrupted processor context
2589 static irqreturn_t
synclinkmp_interrupt(int dummy
, void *dev_id
)
2591 SLMP_INFO
*info
= dev_id
;
2592 unsigned char status
, status0
, status1
=0;
2593 unsigned char dmastatus
, dmastatus0
, dmastatus1
=0;
2594 unsigned char timerstatus0
, timerstatus1
=0;
2595 unsigned char shift
;
2599 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2600 printk(KERN_DEBUG
"%s(%d): synclinkmp_interrupt(%d)entry.\n",
2601 __FILE__
, __LINE__
, info
->irq_level
);
2603 spin_lock(&info
->lock
);
2607 /* get status for SCA0 (ports 0-1) */
2608 tmp
= read_reg16(info
, ISR0
); /* get ISR0 and ISR1 in one read */
2609 status0
= (unsigned char)tmp
;
2610 dmastatus0
= (unsigned char)(tmp
>>8);
2611 timerstatus0
= read_reg(info
, ISR2
);
2613 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2614 printk(KERN_DEBUG
"%s(%d):%s status0=%02x, dmastatus0=%02x, timerstatus0=%02x\n",
2615 __FILE__
, __LINE__
, info
->device_name
,
2616 status0
, dmastatus0
, timerstatus0
);
2618 if (info
->port_count
== 4) {
2619 /* get status for SCA1 (ports 2-3) */
2620 tmp
= read_reg16(info
->port_array
[2], ISR0
);
2621 status1
= (unsigned char)tmp
;
2622 dmastatus1
= (unsigned char)(tmp
>>8);
2623 timerstatus1
= read_reg(info
->port_array
[2], ISR2
);
2625 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2626 printk("%s(%d):%s status1=%02x, dmastatus1=%02x, timerstatus1=%02x\n",
2627 __FILE__
,__LINE__
,info
->device_name
,
2628 status1
,dmastatus1
,timerstatus1
);
2631 if (!status0
&& !dmastatus0
&& !timerstatus0
&&
2632 !status1
&& !dmastatus1
&& !timerstatus1
)
2635 for(i
=0; i
< info
->port_count
; i
++) {
2636 if (info
->port_array
[i
] == NULL
)
2640 dmastatus
= dmastatus0
;
2643 dmastatus
= dmastatus1
;
2646 shift
= i
& 1 ? 4 :0;
2648 if (status
& BIT0
<< shift
)
2649 isr_rxrdy(info
->port_array
[i
]);
2650 if (status
& BIT1
<< shift
)
2651 isr_txrdy(info
->port_array
[i
]);
2652 if (status
& BIT2
<< shift
)
2653 isr_rxint(info
->port_array
[i
]);
2654 if (status
& BIT3
<< shift
)
2655 isr_txint(info
->port_array
[i
]);
2657 if (dmastatus
& BIT0
<< shift
)
2658 isr_rxdmaerror(info
->port_array
[i
]);
2659 if (dmastatus
& BIT1
<< shift
)
2660 isr_rxdmaok(info
->port_array
[i
]);
2661 if (dmastatus
& BIT2
<< shift
)
2662 isr_txdmaerror(info
->port_array
[i
]);
2663 if (dmastatus
& BIT3
<< shift
)
2664 isr_txdmaok(info
->port_array
[i
]);
2667 if (timerstatus0
& (BIT5
| BIT4
))
2668 isr_timer(info
->port_array
[0]);
2669 if (timerstatus0
& (BIT7
| BIT6
))
2670 isr_timer(info
->port_array
[1]);
2671 if (timerstatus1
& (BIT5
| BIT4
))
2672 isr_timer(info
->port_array
[2]);
2673 if (timerstatus1
& (BIT7
| BIT6
))
2674 isr_timer(info
->port_array
[3]);
2677 for(i
=0; i
< info
->port_count
; i
++) {
2678 SLMP_INFO
* port
= info
->port_array
[i
];
2680 /* Request bottom half processing if there's something
2681 * for it to do and the bh is not already running.
2683 * Note: startup adapter diags require interrupts.
2684 * do not request bottom half processing if the
2685 * device is not open in a normal mode.
2687 if ( port
&& (port
->count
|| port
->netcount
) &&
2688 port
->pending_bh
&& !port
->bh_running
&&
2689 !port
->bh_requested
) {
2690 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2691 printk("%s(%d):%s queueing bh task.\n",
2692 __FILE__
,__LINE__
,port
->device_name
);
2693 schedule_work(&port
->task
);
2694 port
->bh_requested
= 1;
2698 spin_unlock(&info
->lock
);
2700 if ( debug_level
>= DEBUG_LEVEL_ISR
)
2701 printk(KERN_DEBUG
"%s(%d):synclinkmp_interrupt(%d)exit.\n",
2702 __FILE__
, __LINE__
, info
->irq_level
);
2706 /* Initialize and start device.
2708 static int startup(SLMP_INFO
* info
)
2710 if ( debug_level
>= DEBUG_LEVEL_INFO
)
2711 printk("%s(%d):%s tx_releaseup()\n",__FILE__
,__LINE__
,info
->device_name
);
2713 if (info
->flags
& ASYNC_INITIALIZED
)
2716 if (!info
->tx_buf
) {
2717 info
->tx_buf
= kmalloc(info
->max_frame_size
, GFP_KERNEL
);
2718 if (!info
->tx_buf
) {
2719 printk(KERN_ERR
"%s(%d):%s can't allocate transmit buffer\n",
2720 __FILE__
,__LINE__
,info
->device_name
);
2725 info
->pending_bh
= 0;
2727 memset(&info
->icount
, 0, sizeof(info
->icount
));
2729 /* program hardware for current parameters */
2732 change_params(info
);
2734 mod_timer(&info
->status_timer
, jiffies
+ msecs_to_jiffies(10));
2737 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2739 info
->flags
|= ASYNC_INITIALIZED
;
2744 /* Called by close() and hangup() to shutdown hardware
2746 static void shutdown(SLMP_INFO
* info
)
2748 unsigned long flags
;
2750 if (!(info
->flags
& ASYNC_INITIALIZED
))
2753 if (debug_level
>= DEBUG_LEVEL_INFO
)
2754 printk("%s(%d):%s synclinkmp_shutdown()\n",
2755 __FILE__
,__LINE__
, info
->device_name
);
2757 /* clear status wait queue because status changes */
2758 /* can't happen after shutting down the hardware */
2759 wake_up_interruptible(&info
->status_event_wait_q
);
2760 wake_up_interruptible(&info
->event_wait_q
);
2762 del_timer(&info
->tx_timer
);
2763 del_timer(&info
->status_timer
);
2765 kfree(info
->tx_buf
);
2766 info
->tx_buf
= NULL
;
2768 spin_lock_irqsave(&info
->lock
,flags
);
2772 if (!info
->tty
|| info
->tty
->termios
->c_cflag
& HUPCL
) {
2773 info
->serial_signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
2777 spin_unlock_irqrestore(&info
->lock
,flags
);
2780 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2782 info
->flags
&= ~ASYNC_INITIALIZED
;
2785 static void program_hw(SLMP_INFO
*info
)
2787 unsigned long flags
;
2789 spin_lock_irqsave(&info
->lock
,flags
);
2794 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
2796 if (info
->params
.mode
== MGSL_MODE_HDLC
|| info
->netcount
)
2803 info
->dcd_chkcount
= 0;
2804 info
->cts_chkcount
= 0;
2805 info
->ri_chkcount
= 0;
2806 info
->dsr_chkcount
= 0;
2808 info
->ie1_value
|= (CDCD
|CCTS
);
2809 write_reg(info
, IE1
, info
->ie1_value
);
2813 if (info
->netcount
|| (info
->tty
&& info
->tty
->termios
->c_cflag
& CREAD
) )
2816 spin_unlock_irqrestore(&info
->lock
,flags
);
2819 /* Reconfigure adapter based on new parameters
2821 static void change_params(SLMP_INFO
*info
)
2826 if (!info
->tty
|| !info
->tty
->termios
)
2829 if (debug_level
>= DEBUG_LEVEL_INFO
)
2830 printk("%s(%d):%s change_params()\n",
2831 __FILE__
,__LINE__
, info
->device_name
);
2833 cflag
= info
->tty
->termios
->c_cflag
;
2835 /* if B0 rate (hangup) specified then negate DTR and RTS */
2836 /* otherwise assert DTR and RTS */
2838 info
->serial_signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
2840 info
->serial_signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
2842 /* byte size and parity */
2844 switch (cflag
& CSIZE
) {
2845 case CS5
: info
->params
.data_bits
= 5; break;
2846 case CS6
: info
->params
.data_bits
= 6; break;
2847 case CS7
: info
->params
.data_bits
= 7; break;
2848 case CS8
: info
->params
.data_bits
= 8; break;
2849 /* Never happens, but GCC is too dumb to figure it out */
2850 default: info
->params
.data_bits
= 7; break;
2854 info
->params
.stop_bits
= 2;
2856 info
->params
.stop_bits
= 1;
2858 info
->params
.parity
= ASYNC_PARITY_NONE
;
2859 if (cflag
& PARENB
) {
2861 info
->params
.parity
= ASYNC_PARITY_ODD
;
2863 info
->params
.parity
= ASYNC_PARITY_EVEN
;
2866 info
->params
.parity
= ASYNC_PARITY_SPACE
;
2870 /* calculate number of jiffies to transmit a full
2871 * FIFO (32 bytes) at specified data rate
2873 bits_per_char
= info
->params
.data_bits
+
2874 info
->params
.stop_bits
+ 1;
2876 /* if port data rate is set to 460800 or less then
2877 * allow tty settings to override, otherwise keep the
2878 * current data rate.
2880 if (info
->params
.data_rate
<= 460800) {
2881 info
->params
.data_rate
= tty_get_baud_rate(info
->tty
);
2884 if ( info
->params
.data_rate
) {
2885 info
->timeout
= (32*HZ
*bits_per_char
) /
2886 info
->params
.data_rate
;
2888 info
->timeout
+= HZ
/50; /* Add .02 seconds of slop */
2890 if (cflag
& CRTSCTS
)
2891 info
->flags
|= ASYNC_CTS_FLOW
;
2893 info
->flags
&= ~ASYNC_CTS_FLOW
;
2896 info
->flags
&= ~ASYNC_CHECK_CD
;
2898 info
->flags
|= ASYNC_CHECK_CD
;
2900 /* process tty input control flags */
2902 info
->read_status_mask2
= OVRN
;
2903 if (I_INPCK(info
->tty
))
2904 info
->read_status_mask2
|= PE
| FRME
;
2905 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
2906 info
->read_status_mask1
|= BRKD
;
2907 if (I_IGNPAR(info
->tty
))
2908 info
->ignore_status_mask2
|= PE
| FRME
;
2909 if (I_IGNBRK(info
->tty
)) {
2910 info
->ignore_status_mask1
|= BRKD
;
2911 /* If ignoring parity and break indicators, ignore
2912 * overruns too. (For real raw support).
2914 if (I_IGNPAR(info
->tty
))
2915 info
->ignore_status_mask2
|= OVRN
;
2921 static int get_stats(SLMP_INFO
* info
, struct mgsl_icount __user
*user_icount
)
2925 if (debug_level
>= DEBUG_LEVEL_INFO
)
2926 printk("%s(%d):%s get_params()\n",
2927 __FILE__
,__LINE__
, info
->device_name
);
2930 memset(&info
->icount
, 0, sizeof(info
->icount
));
2932 COPY_TO_USER(err
, user_icount
, &info
->icount
, sizeof(struct mgsl_icount
));
2940 static int get_params(SLMP_INFO
* info
, MGSL_PARAMS __user
*user_params
)
2943 if (debug_level
>= DEBUG_LEVEL_INFO
)
2944 printk("%s(%d):%s get_params()\n",
2945 __FILE__
,__LINE__
, info
->device_name
);
2947 COPY_TO_USER(err
,user_params
, &info
->params
, sizeof(MGSL_PARAMS
));
2949 if ( debug_level
>= DEBUG_LEVEL_INFO
)
2950 printk( "%s(%d):%s get_params() user buffer copy failed\n",
2951 __FILE__
,__LINE__
,info
->device_name
);
2958 static int set_params(SLMP_INFO
* info
, MGSL_PARAMS __user
*new_params
)
2960 unsigned long flags
;
2961 MGSL_PARAMS tmp_params
;
2964 if (debug_level
>= DEBUG_LEVEL_INFO
)
2965 printk("%s(%d):%s set_params\n",
2966 __FILE__
,__LINE__
,info
->device_name
);
2967 COPY_FROM_USER(err
,&tmp_params
, new_params
, sizeof(MGSL_PARAMS
));
2969 if ( debug_level
>= DEBUG_LEVEL_INFO
)
2970 printk( "%s(%d):%s set_params() user buffer copy failed\n",
2971 __FILE__
,__LINE__
,info
->device_name
);
2975 spin_lock_irqsave(&info
->lock
,flags
);
2976 memcpy(&info
->params
,&tmp_params
,sizeof(MGSL_PARAMS
));
2977 spin_unlock_irqrestore(&info
->lock
,flags
);
2979 change_params(info
);
2984 static int get_txidle(SLMP_INFO
* info
, int __user
*idle_mode
)
2988 if (debug_level
>= DEBUG_LEVEL_INFO
)
2989 printk("%s(%d):%s get_txidle()=%d\n",
2990 __FILE__
,__LINE__
, info
->device_name
, info
->idle_mode
);
2992 COPY_TO_USER(err
,idle_mode
, &info
->idle_mode
, sizeof(int));
2994 if ( debug_level
>= DEBUG_LEVEL_INFO
)
2995 printk( "%s(%d):%s get_txidle() user buffer copy failed\n",
2996 __FILE__
,__LINE__
,info
->device_name
);
3003 static int set_txidle(SLMP_INFO
* info
, int idle_mode
)
3005 unsigned long flags
;
3007 if (debug_level
>= DEBUG_LEVEL_INFO
)
3008 printk("%s(%d):%s set_txidle(%d)\n",
3009 __FILE__
,__LINE__
,info
->device_name
, idle_mode
);
3011 spin_lock_irqsave(&info
->lock
,flags
);
3012 info
->idle_mode
= idle_mode
;
3013 tx_set_idle( info
);
3014 spin_unlock_irqrestore(&info
->lock
,flags
);
3018 static int tx_enable(SLMP_INFO
* info
, int enable
)
3020 unsigned long flags
;
3022 if (debug_level
>= DEBUG_LEVEL_INFO
)
3023 printk("%s(%d):%s tx_enable(%d)\n",
3024 __FILE__
,__LINE__
,info
->device_name
, enable
);
3026 spin_lock_irqsave(&info
->lock
,flags
);
3028 if ( !info
->tx_enabled
) {
3032 if ( info
->tx_enabled
)
3035 spin_unlock_irqrestore(&info
->lock
,flags
);
3039 /* abort send HDLC frame
3041 static int tx_abort(SLMP_INFO
* info
)
3043 unsigned long flags
;
3045 if (debug_level
>= DEBUG_LEVEL_INFO
)
3046 printk("%s(%d):%s tx_abort()\n",
3047 __FILE__
,__LINE__
,info
->device_name
);
3049 spin_lock_irqsave(&info
->lock
,flags
);
3050 if ( info
->tx_active
&& info
->params
.mode
== MGSL_MODE_HDLC
) {
3051 info
->ie1_value
&= ~UDRN
;
3052 info
->ie1_value
|= IDLE
;
3053 write_reg(info
, IE1
, info
->ie1_value
); /* disable tx status interrupts */
3054 write_reg(info
, SR1
, (unsigned char)(IDLE
+ UDRN
)); /* clear pending */
3056 write_reg(info
, TXDMA
+ DSR
, 0); /* disable DMA channel */
3057 write_reg(info
, TXDMA
+ DCMD
, SWABORT
); /* reset/init DMA channel */
3059 write_reg(info
, CMD
, TXABORT
);
3061 spin_unlock_irqrestore(&info
->lock
,flags
);
3065 static int rx_enable(SLMP_INFO
* info
, int enable
)
3067 unsigned long flags
;
3069 if (debug_level
>= DEBUG_LEVEL_INFO
)
3070 printk("%s(%d):%s rx_enable(%d)\n",
3071 __FILE__
,__LINE__
,info
->device_name
,enable
);
3073 spin_lock_irqsave(&info
->lock
,flags
);
3075 if ( !info
->rx_enabled
)
3078 if ( info
->rx_enabled
)
3081 spin_unlock_irqrestore(&info
->lock
,flags
);
3085 /* wait for specified event to occur
3087 static int wait_mgsl_event(SLMP_INFO
* info
, int __user
*mask_ptr
)
3089 unsigned long flags
;
3092 struct mgsl_icount cprev
, cnow
;
3095 struct _input_signal_events oldsigs
, newsigs
;
3096 DECLARE_WAITQUEUE(wait
, current
);
3098 COPY_FROM_USER(rc
,&mask
, mask_ptr
, sizeof(int));
3103 if (debug_level
>= DEBUG_LEVEL_INFO
)
3104 printk("%s(%d):%s wait_mgsl_event(%d)\n",
3105 __FILE__
,__LINE__
,info
->device_name
,mask
);
3107 spin_lock_irqsave(&info
->lock
,flags
);
3109 /* return immediately if state matches requested events */
3111 s
= info
->serial_signals
;
3114 ( ((s
& SerialSignal_DSR
) ? MgslEvent_DsrActive
:MgslEvent_DsrInactive
) +
3115 ((s
& SerialSignal_DCD
) ? MgslEvent_DcdActive
:MgslEvent_DcdInactive
) +
3116 ((s
& SerialSignal_CTS
) ? MgslEvent_CtsActive
:MgslEvent_CtsInactive
) +
3117 ((s
& SerialSignal_RI
) ? MgslEvent_RiActive
:MgslEvent_RiInactive
) );
3119 spin_unlock_irqrestore(&info
->lock
,flags
);
3123 /* save current irq counts */
3124 cprev
= info
->icount
;
3125 oldsigs
= info
->input_signal_events
;
3127 /* enable hunt and idle irqs if needed */
3128 if (mask
& (MgslEvent_ExitHuntMode
+MgslEvent_IdleReceived
)) {
3129 unsigned char oldval
= info
->ie1_value
;
3130 unsigned char newval
= oldval
+
3131 (mask
& MgslEvent_ExitHuntMode
? FLGD
:0) +
3132 (mask
& MgslEvent_IdleReceived
? IDLD
:0);
3133 if ( oldval
!= newval
) {
3134 info
->ie1_value
= newval
;
3135 write_reg(info
, IE1
, info
->ie1_value
);
3139 set_current_state(TASK_INTERRUPTIBLE
);
3140 add_wait_queue(&info
->event_wait_q
, &wait
);
3142 spin_unlock_irqrestore(&info
->lock
,flags
);
3146 if (signal_pending(current
)) {
3151 /* get current irq counts */
3152 spin_lock_irqsave(&info
->lock
,flags
);
3153 cnow
= info
->icount
;
3154 newsigs
= info
->input_signal_events
;
3155 set_current_state(TASK_INTERRUPTIBLE
);
3156 spin_unlock_irqrestore(&info
->lock
,flags
);
3158 /* if no change, wait aborted for some reason */
3159 if (newsigs
.dsr_up
== oldsigs
.dsr_up
&&
3160 newsigs
.dsr_down
== oldsigs
.dsr_down
&&
3161 newsigs
.dcd_up
== oldsigs
.dcd_up
&&
3162 newsigs
.dcd_down
== oldsigs
.dcd_down
&&
3163 newsigs
.cts_up
== oldsigs
.cts_up
&&
3164 newsigs
.cts_down
== oldsigs
.cts_down
&&
3165 newsigs
.ri_up
== oldsigs
.ri_up
&&
3166 newsigs
.ri_down
== oldsigs
.ri_down
&&
3167 cnow
.exithunt
== cprev
.exithunt
&&
3168 cnow
.rxidle
== cprev
.rxidle
) {
3174 ( (newsigs
.dsr_up
!= oldsigs
.dsr_up
? MgslEvent_DsrActive
:0) +
3175 (newsigs
.dsr_down
!= oldsigs
.dsr_down
? MgslEvent_DsrInactive
:0) +
3176 (newsigs
.dcd_up
!= oldsigs
.dcd_up
? MgslEvent_DcdActive
:0) +
3177 (newsigs
.dcd_down
!= oldsigs
.dcd_down
? MgslEvent_DcdInactive
:0) +
3178 (newsigs
.cts_up
!= oldsigs
.cts_up
? MgslEvent_CtsActive
:0) +
3179 (newsigs
.cts_down
!= oldsigs
.cts_down
? MgslEvent_CtsInactive
:0) +
3180 (newsigs
.ri_up
!= oldsigs
.ri_up
? MgslEvent_RiActive
:0) +
3181 (newsigs
.ri_down
!= oldsigs
.ri_down
? MgslEvent_RiInactive
:0) +
3182 (cnow
.exithunt
!= cprev
.exithunt
? MgslEvent_ExitHuntMode
:0) +
3183 (cnow
.rxidle
!= cprev
.rxidle
? MgslEvent_IdleReceived
:0) );
3191 remove_wait_queue(&info
->event_wait_q
, &wait
);
3192 set_current_state(TASK_RUNNING
);
3195 if (mask
& (MgslEvent_ExitHuntMode
+ MgslEvent_IdleReceived
)) {
3196 spin_lock_irqsave(&info
->lock
,flags
);
3197 if (!waitqueue_active(&info
->event_wait_q
)) {
3198 /* disable enable exit hunt mode/idle rcvd IRQs */
3199 info
->ie1_value
&= ~(FLGD
|IDLD
);
3200 write_reg(info
, IE1
, info
->ie1_value
);
3202 spin_unlock_irqrestore(&info
->lock
,flags
);
3206 PUT_USER(rc
, events
, mask_ptr
);
3211 static int modem_input_wait(SLMP_INFO
*info
,int arg
)
3213 unsigned long flags
;
3215 struct mgsl_icount cprev
, cnow
;
3216 DECLARE_WAITQUEUE(wait
, current
);
3218 /* save current irq counts */
3219 spin_lock_irqsave(&info
->lock
,flags
);
3220 cprev
= info
->icount
;
3221 add_wait_queue(&info
->status_event_wait_q
, &wait
);
3222 set_current_state(TASK_INTERRUPTIBLE
);
3223 spin_unlock_irqrestore(&info
->lock
,flags
);
3227 if (signal_pending(current
)) {
3232 /* get new irq counts */
3233 spin_lock_irqsave(&info
->lock
,flags
);
3234 cnow
= info
->icount
;
3235 set_current_state(TASK_INTERRUPTIBLE
);
3236 spin_unlock_irqrestore(&info
->lock
,flags
);
3238 /* if no change, wait aborted for some reason */
3239 if (cnow
.rng
== cprev
.rng
&& cnow
.dsr
== cprev
.dsr
&&
3240 cnow
.dcd
== cprev
.dcd
&& cnow
.cts
== cprev
.cts
) {
3245 /* check for change in caller specified modem input */
3246 if ((arg
& TIOCM_RNG
&& cnow
.rng
!= cprev
.rng
) ||
3247 (arg
& TIOCM_DSR
&& cnow
.dsr
!= cprev
.dsr
) ||
3248 (arg
& TIOCM_CD
&& cnow
.dcd
!= cprev
.dcd
) ||
3249 (arg
& TIOCM_CTS
&& cnow
.cts
!= cprev
.cts
)) {
3256 remove_wait_queue(&info
->status_event_wait_q
, &wait
);
3257 set_current_state(TASK_RUNNING
);
3261 /* return the state of the serial control and status signals
3263 static int tiocmget(struct tty_struct
*tty
, struct file
*file
)
3265 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
3266 unsigned int result
;
3267 unsigned long flags
;
3269 spin_lock_irqsave(&info
->lock
,flags
);
3271 spin_unlock_irqrestore(&info
->lock
,flags
);
3273 result
= ((info
->serial_signals
& SerialSignal_RTS
) ? TIOCM_RTS
:0) +
3274 ((info
->serial_signals
& SerialSignal_DTR
) ? TIOCM_DTR
:0) +
3275 ((info
->serial_signals
& SerialSignal_DCD
) ? TIOCM_CAR
:0) +
3276 ((info
->serial_signals
& SerialSignal_RI
) ? TIOCM_RNG
:0) +
3277 ((info
->serial_signals
& SerialSignal_DSR
) ? TIOCM_DSR
:0) +
3278 ((info
->serial_signals
& SerialSignal_CTS
) ? TIOCM_CTS
:0);
3280 if (debug_level
>= DEBUG_LEVEL_INFO
)
3281 printk("%s(%d):%s tiocmget() value=%08X\n",
3282 __FILE__
,__LINE__
, info
->device_name
, result
);
3286 /* set modem control signals (DTR/RTS)
3288 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
3289 unsigned int set
, unsigned int clear
)
3291 SLMP_INFO
*info
= (SLMP_INFO
*)tty
->driver_data
;
3292 unsigned long flags
;
3294 if (debug_level
>= DEBUG_LEVEL_INFO
)
3295 printk("%s(%d):%s tiocmset(%x,%x)\n",
3296 __FILE__
,__LINE__
,info
->device_name
, set
, clear
);
3298 if (set
& TIOCM_RTS
)
3299 info
->serial_signals
|= SerialSignal_RTS
;
3300 if (set
& TIOCM_DTR
)
3301 info
->serial_signals
|= SerialSignal_DTR
;
3302 if (clear
& TIOCM_RTS
)
3303 info
->serial_signals
&= ~SerialSignal_RTS
;
3304 if (clear
& TIOCM_DTR
)
3305 info
->serial_signals
&= ~SerialSignal_DTR
;
3307 spin_lock_irqsave(&info
->lock
,flags
);
3309 spin_unlock_irqrestore(&info
->lock
,flags
);
3316 /* Block the current process until the specified port is ready to open.
3318 static int block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
3321 DECLARE_WAITQUEUE(wait
, current
);
3323 int do_clocal
= 0, extra_count
= 0;
3324 unsigned long flags
;
3326 if (debug_level
>= DEBUG_LEVEL_INFO
)
3327 printk("%s(%d):%s block_til_ready()\n",
3328 __FILE__
,__LINE__
, tty
->driver
->name
);
3330 if (filp
->f_flags
& O_NONBLOCK
|| tty
->flags
& (1 << TTY_IO_ERROR
)){
3331 /* nonblock mode is set or port is not enabled */
3332 /* just verify that callout device is not active */
3333 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
3337 if (tty
->termios
->c_cflag
& CLOCAL
)
3340 /* Wait for carrier detect and the line to become
3341 * free (i.e., not in use by the callout). While we are in
3342 * this loop, info->count is dropped by one, so that
3343 * close() knows when to free things. We restore it upon
3344 * exit, either normal or abnormal.
3348 add_wait_queue(&info
->open_wait
, &wait
);
3350 if (debug_level
>= DEBUG_LEVEL_INFO
)
3351 printk("%s(%d):%s block_til_ready() before block, count=%d\n",
3352 __FILE__
,__LINE__
, tty
->driver
->name
, info
->count
);
3354 spin_lock_irqsave(&info
->lock
, flags
);
3355 if (!tty_hung_up_p(filp
)) {
3359 spin_unlock_irqrestore(&info
->lock
, flags
);
3360 info
->blocked_open
++;
3363 if ((tty
->termios
->c_cflag
& CBAUD
)) {
3364 spin_lock_irqsave(&info
->lock
,flags
);
3365 info
->serial_signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
3367 spin_unlock_irqrestore(&info
->lock
,flags
);
3370 set_current_state(TASK_INTERRUPTIBLE
);
3372 if (tty_hung_up_p(filp
) || !(info
->flags
& ASYNC_INITIALIZED
)){
3373 retval
= (info
->flags
& ASYNC_HUP_NOTIFY
) ?
3374 -EAGAIN
: -ERESTARTSYS
;
3378 spin_lock_irqsave(&info
->lock
,flags
);
3380 spin_unlock_irqrestore(&info
->lock
,flags
);
3382 if (!(info
->flags
& ASYNC_CLOSING
) &&
3383 (do_clocal
|| (info
->serial_signals
& SerialSignal_DCD
)) ) {
3387 if (signal_pending(current
)) {
3388 retval
= -ERESTARTSYS
;
3392 if (debug_level
>= DEBUG_LEVEL_INFO
)
3393 printk("%s(%d):%s block_til_ready() count=%d\n",
3394 __FILE__
,__LINE__
, tty
->driver
->name
, info
->count
);
3399 set_current_state(TASK_RUNNING
);
3400 remove_wait_queue(&info
->open_wait
, &wait
);
3404 info
->blocked_open
--;
3406 if (debug_level
>= DEBUG_LEVEL_INFO
)
3407 printk("%s(%d):%s block_til_ready() after, count=%d\n",
3408 __FILE__
,__LINE__
, tty
->driver
->name
, info
->count
);
3411 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
3416 int alloc_dma_bufs(SLMP_INFO
*info
)
3418 unsigned short BuffersPerFrame
;
3419 unsigned short BufferCount
;
3421 // Force allocation to start at 64K boundary for each port.
3422 // This is necessary because *all* buffer descriptors for a port
3423 // *must* be in the same 64K block. All descriptors on a port
3424 // share a common 'base' address (upper 8 bits of 24 bits) programmed
3425 // into the CBP register.
3426 info
->port_array
[0]->last_mem_alloc
= (SCA_MEM_SIZE
/4) * info
->port_num
;
3428 /* Calculate the number of DMA buffers necessary to hold the */
3429 /* largest allowable frame size. Note: If the max frame size is */
3430 /* not an even multiple of the DMA buffer size then we need to */
3431 /* round the buffer count per frame up one. */
3433 BuffersPerFrame
= (unsigned short)(info
->max_frame_size
/SCABUFSIZE
);
3434 if ( info
->max_frame_size
% SCABUFSIZE
)
3437 /* calculate total number of data buffers (SCABUFSIZE) possible
3438 * in one ports memory (SCA_MEM_SIZE/4) after allocating memory
3439 * for the descriptor list (BUFFERLISTSIZE).
3441 BufferCount
= (SCA_MEM_SIZE
/4 - BUFFERLISTSIZE
)/SCABUFSIZE
;
3443 /* limit number of buffers to maximum amount of descriptors */
3444 if (BufferCount
> BUFFERLISTSIZE
/sizeof(SCADESC
))
3445 BufferCount
= BUFFERLISTSIZE
/sizeof(SCADESC
);
3447 /* use enough buffers to transmit one max size frame */
3448 info
->tx_buf_count
= BuffersPerFrame
+ 1;
3450 /* never use more than half the available buffers for transmit */
3451 if (info
->tx_buf_count
> (BufferCount
/2))
3452 info
->tx_buf_count
= BufferCount
/2;
3454 if (info
->tx_buf_count
> SCAMAXDESC
)
3455 info
->tx_buf_count
= SCAMAXDESC
;
3457 /* use remaining buffers for receive */
3458 info
->rx_buf_count
= BufferCount
- info
->tx_buf_count
;
3460 if (info
->rx_buf_count
> SCAMAXDESC
)
3461 info
->rx_buf_count
= SCAMAXDESC
;
3463 if ( debug_level
>= DEBUG_LEVEL_INFO
)
3464 printk("%s(%d):%s Allocating %d TX and %d RX DMA buffers.\n",
3465 __FILE__
,__LINE__
, info
->device_name
,
3466 info
->tx_buf_count
,info
->rx_buf_count
);
3468 if ( alloc_buf_list( info
) < 0 ||
3469 alloc_frame_bufs(info
,
3471 info
->rx_buf_list_ex
,
3472 info
->rx_buf_count
) < 0 ||
3473 alloc_frame_bufs(info
,
3475 info
->tx_buf_list_ex
,
3476 info
->tx_buf_count
) < 0 ||
3477 alloc_tmp_rx_buf(info
) < 0 ) {
3478 printk("%s(%d):%s Can't allocate DMA buffer memory\n",
3479 __FILE__
,__LINE__
, info
->device_name
);
3483 rx_reset_buffers( info
);
3488 /* Allocate DMA buffers for the transmit and receive descriptor lists.
3490 int alloc_buf_list(SLMP_INFO
*info
)
3494 /* build list in adapter shared memory */
3495 info
->buffer_list
= info
->memory_base
+ info
->port_array
[0]->last_mem_alloc
;
3496 info
->buffer_list_phys
= info
->port_array
[0]->last_mem_alloc
;
3497 info
->port_array
[0]->last_mem_alloc
+= BUFFERLISTSIZE
;
3499 memset(info
->buffer_list
, 0, BUFFERLISTSIZE
);
3501 /* Save virtual address pointers to the receive and */
3502 /* transmit buffer lists. (Receive 1st). These pointers will */
3503 /* be used by the processor to access the lists. */
3504 info
->rx_buf_list
= (SCADESC
*)info
->buffer_list
;
3506 info
->tx_buf_list
= (SCADESC
*)info
->buffer_list
;
3507 info
->tx_buf_list
+= info
->rx_buf_count
;
3509 /* Build links for circular buffer entry lists (tx and rx)
3511 * Note: links are physical addresses read by the SCA device
3512 * to determine the next buffer entry to use.
3515 for ( i
= 0; i
< info
->rx_buf_count
; i
++ ) {
3516 /* calculate and store physical address of this buffer entry */
3517 info
->rx_buf_list_ex
[i
].phys_entry
=
3518 info
->buffer_list_phys
+ (i
* sizeof(SCABUFSIZE
));
3520 /* calculate and store physical address of */
3521 /* next entry in cirular list of entries */
3522 info
->rx_buf_list
[i
].next
= info
->buffer_list_phys
;
3523 if ( i
< info
->rx_buf_count
- 1 )
3524 info
->rx_buf_list
[i
].next
+= (i
+ 1) * sizeof(SCADESC
);
3526 info
->rx_buf_list
[i
].length
= SCABUFSIZE
;
3529 for ( i
= 0; i
< info
->tx_buf_count
; i
++ ) {
3530 /* calculate and store physical address of this buffer entry */
3531 info
->tx_buf_list_ex
[i
].phys_entry
= info
->buffer_list_phys
+
3532 ((info
->rx_buf_count
+ i
) * sizeof(SCADESC
));
3534 /* calculate and store physical address of */
3535 /* next entry in cirular list of entries */
3537 info
->tx_buf_list
[i
].next
= info
->buffer_list_phys
+
3538 info
->rx_buf_count
* sizeof(SCADESC
);
3540 if ( i
< info
->tx_buf_count
- 1 )
3541 info
->tx_buf_list
[i
].next
+= (i
+ 1) * sizeof(SCADESC
);
3547 /* Allocate the frame DMA buffers used by the specified buffer list.
3549 int alloc_frame_bufs(SLMP_INFO
*info
, SCADESC
*buf_list
,SCADESC_EX
*buf_list_ex
,int count
)
3552 unsigned long phys_addr
;
3554 for ( i
= 0; i
< count
; i
++ ) {
3555 buf_list_ex
[i
].virt_addr
= info
->memory_base
+ info
->port_array
[0]->last_mem_alloc
;
3556 phys_addr
= info
->port_array
[0]->last_mem_alloc
;
3557 info
->port_array
[0]->last_mem_alloc
+= SCABUFSIZE
;
3559 buf_list
[i
].buf_ptr
= (unsigned short)phys_addr
;
3560 buf_list
[i
].buf_base
= (unsigned char)(phys_addr
>> 16);
3566 void free_dma_bufs(SLMP_INFO
*info
)
3568 info
->buffer_list
= NULL
;
3569 info
->rx_buf_list
= NULL
;
3570 info
->tx_buf_list
= NULL
;
3573 /* allocate buffer large enough to hold max_frame_size.
3574 * This buffer is used to pass an assembled frame to the line discipline.
3576 int alloc_tmp_rx_buf(SLMP_INFO
*info
)
3578 info
->tmp_rx_buf
= kmalloc(info
->max_frame_size
, GFP_KERNEL
);
3579 if (info
->tmp_rx_buf
== NULL
)
3584 void free_tmp_rx_buf(SLMP_INFO
*info
)
3586 kfree(info
->tmp_rx_buf
);
3587 info
->tmp_rx_buf
= NULL
;
3590 int claim_resources(SLMP_INFO
*info
)
3592 if (request_mem_region(info
->phys_memory_base
,SCA_MEM_SIZE
,"synclinkmp") == NULL
) {
3593 printk( "%s(%d):%s mem addr conflict, Addr=%08X\n",
3594 __FILE__
,__LINE__
,info
->device_name
, info
->phys_memory_base
);
3595 info
->init_error
= DiagStatus_AddressConflict
;
3599 info
->shared_mem_requested
= 1;
3601 if (request_mem_region(info
->phys_lcr_base
+ info
->lcr_offset
,128,"synclinkmp") == NULL
) {
3602 printk( "%s(%d):%s lcr mem addr conflict, Addr=%08X\n",
3603 __FILE__
,__LINE__
,info
->device_name
, info
->phys_lcr_base
);
3604 info
->init_error
= DiagStatus_AddressConflict
;
3608 info
->lcr_mem_requested
= 1;
3610 if (request_mem_region(info
->phys_sca_base
+ info
->sca_offset
,SCA_BASE_SIZE
,"synclinkmp") == NULL
) {
3611 printk( "%s(%d):%s sca mem addr conflict, Addr=%08X\n",
3612 __FILE__
,__LINE__
,info
->device_name
, info
->phys_sca_base
);
3613 info
->init_error
= DiagStatus_AddressConflict
;
3617 info
->sca_base_requested
= 1;
3619 if (request_mem_region(info
->phys_statctrl_base
+ info
->statctrl_offset
,SCA_REG_SIZE
,"synclinkmp") == NULL
) {
3620 printk( "%s(%d):%s stat/ctrl mem addr conflict, Addr=%08X\n",
3621 __FILE__
,__LINE__
,info
->device_name
, info
->phys_statctrl_base
);
3622 info
->init_error
= DiagStatus_AddressConflict
;
3626 info
->sca_statctrl_requested
= 1;
3628 info
->memory_base
= ioremap(info
->phys_memory_base
,SCA_MEM_SIZE
);
3629 if (!info
->memory_base
) {
3630 printk( "%s(%d):%s Cant map shared memory, MemAddr=%08X\n",
3631 __FILE__
,__LINE__
,info
->device_name
, info
->phys_memory_base
);
3632 info
->init_error
= DiagStatus_CantAssignPciResources
;
3636 info
->lcr_base
= ioremap(info
->phys_lcr_base
,PAGE_SIZE
);
3637 if (!info
->lcr_base
) {
3638 printk( "%s(%d):%s Cant map LCR memory, MemAddr=%08X\n",
3639 __FILE__
,__LINE__
,info
->device_name
, info
->phys_lcr_base
);
3640 info
->init_error
= DiagStatus_CantAssignPciResources
;
3643 info
->lcr_base
+= info
->lcr_offset
;
3645 info
->sca_base
= ioremap(info
->phys_sca_base
,PAGE_SIZE
);
3646 if (!info
->sca_base
) {
3647 printk( "%s(%d):%s Cant map SCA memory, MemAddr=%08X\n",
3648 __FILE__
,__LINE__
,info
->device_name
, info
->phys_sca_base
);
3649 info
->init_error
= DiagStatus_CantAssignPciResources
;
3652 info
->sca_base
+= info
->sca_offset
;
3654 info
->statctrl_base
= ioremap(info
->phys_statctrl_base
,PAGE_SIZE
);
3655 if (!info
->statctrl_base
) {
3656 printk( "%s(%d):%s Cant map SCA Status/Control memory, MemAddr=%08X\n",
3657 __FILE__
,__LINE__
,info
->device_name
, info
->phys_statctrl_base
);
3658 info
->init_error
= DiagStatus_CantAssignPciResources
;
3661 info
->statctrl_base
+= info
->statctrl_offset
;
3663 if ( !memory_test(info
) ) {
3664 printk( "%s(%d):Shared Memory Test failed for device %s MemAddr=%08X\n",
3665 __FILE__
,__LINE__
,info
->device_name
, info
->phys_memory_base
);
3666 info
->init_error
= DiagStatus_MemoryError
;
3673 release_resources( info
);
3677 void release_resources(SLMP_INFO
*info
)
3679 if ( debug_level
>= DEBUG_LEVEL_INFO
)
3680 printk( "%s(%d):%s release_resources() entry\n",
3681 __FILE__
,__LINE__
,info
->device_name
);
3683 if ( info
->irq_requested
) {
3684 free_irq(info
->irq_level
, info
);
3685 info
->irq_requested
= 0;
3688 if ( info
->shared_mem_requested
) {
3689 release_mem_region(info
->phys_memory_base
,SCA_MEM_SIZE
);
3690 info
->shared_mem_requested
= 0;
3692 if ( info
->lcr_mem_requested
) {
3693 release_mem_region(info
->phys_lcr_base
+ info
->lcr_offset
,128);
3694 info
->lcr_mem_requested
= 0;
3696 if ( info
->sca_base_requested
) {
3697 release_mem_region(info
->phys_sca_base
+ info
->sca_offset
,SCA_BASE_SIZE
);
3698 info
->sca_base_requested
= 0;
3700 if ( info
->sca_statctrl_requested
) {
3701 release_mem_region(info
->phys_statctrl_base
+ info
->statctrl_offset
,SCA_REG_SIZE
);
3702 info
->sca_statctrl_requested
= 0;
3705 if (info
->memory_base
){
3706 iounmap(info
->memory_base
);
3707 info
->memory_base
= NULL
;
3710 if (info
->sca_base
) {
3711 iounmap(info
->sca_base
- info
->sca_offset
);
3712 info
->sca_base
=NULL
;
3715 if (info
->statctrl_base
) {
3716 iounmap(info
->statctrl_base
- info
->statctrl_offset
);
3717 info
->statctrl_base
=NULL
;
3720 if (info
->lcr_base
){
3721 iounmap(info
->lcr_base
- info
->lcr_offset
);
3722 info
->lcr_base
= NULL
;
3725 if ( debug_level
>= DEBUG_LEVEL_INFO
)
3726 printk( "%s(%d):%s release_resources() exit\n",
3727 __FILE__
,__LINE__
,info
->device_name
);
3730 /* Add the specified device instance data structure to the
3731 * global linked list of devices and increment the device count.
3733 void add_device(SLMP_INFO
*info
)
3735 info
->next_device
= NULL
;
3736 info
->line
= synclinkmp_device_count
;
3737 sprintf(info
->device_name
,"ttySLM%dp%d",info
->adapter_num
,info
->port_num
);
3739 if (info
->line
< MAX_DEVICES
) {
3740 if (maxframe
[info
->line
])
3741 info
->max_frame_size
= maxframe
[info
->line
];
3742 info
->dosyncppp
= dosyncppp
[info
->line
];
3745 synclinkmp_device_count
++;
3747 if ( !synclinkmp_device_list
)
3748 synclinkmp_device_list
= info
;
3750 SLMP_INFO
*current_dev
= synclinkmp_device_list
;
3751 while( current_dev
->next_device
)
3752 current_dev
= current_dev
->next_device
;
3753 current_dev
->next_device
= info
;
3756 if ( info
->max_frame_size
< 4096 )
3757 info
->max_frame_size
= 4096;
3758 else if ( info
->max_frame_size
> 65535 )
3759 info
->max_frame_size
= 65535;
3761 printk( "SyncLink MultiPort %s: "
3762 "Mem=(%08x %08X %08x %08X) IRQ=%d MaxFrameSize=%u\n",
3764 info
->phys_sca_base
,
3765 info
->phys_memory_base
,
3766 info
->phys_statctrl_base
,
3767 info
->phys_lcr_base
,
3769 info
->max_frame_size
);
3771 #if SYNCLINK_GENERIC_HDLC
3776 /* Allocate and initialize a device instance structure
3778 * Return Value: pointer to SLMP_INFO if success, otherwise NULL
3780 static SLMP_INFO
*alloc_dev(int adapter_num
, int port_num
, struct pci_dev
*pdev
)
3784 info
= kzalloc(sizeof(SLMP_INFO
),
3788 printk("%s(%d) Error can't allocate device instance data for adapter %d, port %d\n",
3789 __FILE__
,__LINE__
, adapter_num
, port_num
);
3791 info
->magic
= MGSL_MAGIC
;
3792 INIT_WORK(&info
->task
, bh_handler
);
3793 info
->max_frame_size
= 4096;
3794 info
->close_delay
= 5*HZ
/10;
3795 info
->closing_wait
= 30*HZ
;
3796 init_waitqueue_head(&info
->open_wait
);
3797 init_waitqueue_head(&info
->close_wait
);
3798 init_waitqueue_head(&info
->status_event_wait_q
);
3799 init_waitqueue_head(&info
->event_wait_q
);
3800 spin_lock_init(&info
->netlock
);
3801 memcpy(&info
->params
,&default_params
,sizeof(MGSL_PARAMS
));
3802 info
->idle_mode
= HDLC_TXIDLE_FLAGS
;
3803 info
->adapter_num
= adapter_num
;
3804 info
->port_num
= port_num
;
3806 /* Copy configuration info to device instance data */
3807 info
->irq_level
= pdev
->irq
;
3808 info
->phys_lcr_base
= pci_resource_start(pdev
,0);
3809 info
->phys_sca_base
= pci_resource_start(pdev
,2);
3810 info
->phys_memory_base
= pci_resource_start(pdev
,3);
3811 info
->phys_statctrl_base
= pci_resource_start(pdev
,4);
3813 /* Because veremap only works on page boundaries we must map
3814 * a larger area than is actually implemented for the LCR
3815 * memory range. We map a full page starting at the page boundary.
3817 info
->lcr_offset
= info
->phys_lcr_base
& (PAGE_SIZE
-1);
3818 info
->phys_lcr_base
&= ~(PAGE_SIZE
-1);
3820 info
->sca_offset
= info
->phys_sca_base
& (PAGE_SIZE
-1);
3821 info
->phys_sca_base
&= ~(PAGE_SIZE
-1);
3823 info
->statctrl_offset
= info
->phys_statctrl_base
& (PAGE_SIZE
-1);
3824 info
->phys_statctrl_base
&= ~(PAGE_SIZE
-1);
3826 info
->bus_type
= MGSL_BUS_TYPE_PCI
;
3827 info
->irq_flags
= IRQF_SHARED
;
3829 setup_timer(&info
->tx_timer
, tx_timeout
, (unsigned long)info
);
3830 setup_timer(&info
->status_timer
, status_timeout
,
3831 (unsigned long)info
);
3833 /* Store the PCI9050 misc control register value because a flaw
3834 * in the PCI9050 prevents LCR registers from being read if
3835 * BIOS assigns an LCR base address with bit 7 set.
3837 * Only the misc control register is accessed for which only
3838 * write access is needed, so set an initial value and change
3839 * bits to the device instance data as we write the value
3840 * to the actual misc control register.
3842 info
->misc_ctrl_value
= 0x087e4546;
3844 /* initial port state is unknown - if startup errors
3845 * occur, init_error will be set to indicate the
3846 * problem. Once the port is fully initialized,
3847 * this value will be set to 0 to indicate the
3848 * port is available.
3850 info
->init_error
= -1;
3856 void device_init(int adapter_num
, struct pci_dev
*pdev
)
3858 SLMP_INFO
*port_array
[SCA_MAX_PORTS
];
3861 /* allocate device instances for up to SCA_MAX_PORTS devices */
3862 for ( port
= 0; port
< SCA_MAX_PORTS
; ++port
) {
3863 port_array
[port
] = alloc_dev(adapter_num
,port
,pdev
);
3864 if( port_array
[port
] == NULL
) {
3865 for ( --port
; port
>= 0; --port
)
3866 kfree(port_array
[port
]);
3871 /* give copy of port_array to all ports and add to device list */
3872 for ( port
= 0; port
< SCA_MAX_PORTS
; ++port
) {
3873 memcpy(port_array
[port
]->port_array
,port_array
,sizeof(port_array
));
3874 add_device( port_array
[port
] );
3875 spin_lock_init(&port_array
[port
]->lock
);
3878 /* Allocate and claim adapter resources */
3879 if ( !claim_resources(port_array
[0]) ) {
3881 alloc_dma_bufs(port_array
[0]);
3883 /* copy resource information from first port to others */
3884 for ( port
= 1; port
< SCA_MAX_PORTS
; ++port
) {
3885 port_array
[port
]->lock
= port_array
[0]->lock
;
3886 port_array
[port
]->irq_level
= port_array
[0]->irq_level
;
3887 port_array
[port
]->memory_base
= port_array
[0]->memory_base
;
3888 port_array
[port
]->sca_base
= port_array
[0]->sca_base
;
3889 port_array
[port
]->statctrl_base
= port_array
[0]->statctrl_base
;
3890 port_array
[port
]->lcr_base
= port_array
[0]->lcr_base
;
3891 alloc_dma_bufs(port_array
[port
]);
3894 if ( request_irq(port_array
[0]->irq_level
,
3895 synclinkmp_interrupt
,
3896 port_array
[0]->irq_flags
,
3897 port_array
[0]->device_name
,
3898 port_array
[0]) < 0 ) {
3899 printk( "%s(%d):%s Cant request interrupt, IRQ=%d\n",
3901 port_array
[0]->device_name
,
3902 port_array
[0]->irq_level
);
3905 port_array
[0]->irq_requested
= 1;
3906 adapter_test(port_array
[0]);
3911 static const struct tty_operations ops
= {
3915 .put_char
= put_char
,
3916 .flush_chars
= flush_chars
,
3917 .write_room
= write_room
,
3918 .chars_in_buffer
= chars_in_buffer
,
3919 .flush_buffer
= flush_buffer
,
3921 .throttle
= throttle
,
3922 .unthrottle
= unthrottle
,
3923 .send_xchar
= send_xchar
,
3924 .break_ctl
= set_break
,
3925 .wait_until_sent
= wait_until_sent
,
3926 .read_proc
= read_proc
,
3927 .set_termios
= set_termios
,
3929 .start
= tx_release
,
3931 .tiocmget
= tiocmget
,
3932 .tiocmset
= tiocmset
,
3935 static void synclinkmp_cleanup(void)
3941 printk("Unloading %s %s\n", driver_name
, driver_version
);
3943 if (serial_driver
) {
3944 if ((rc
= tty_unregister_driver(serial_driver
)))
3945 printk("%s(%d) failed to unregister tty driver err=%d\n",
3946 __FILE__
,__LINE__
,rc
);
3947 put_tty_driver(serial_driver
);
3951 info
= synclinkmp_device_list
;
3954 info
= info
->next_device
;
3957 /* release devices */
3958 info
= synclinkmp_device_list
;
3960 #if SYNCLINK_GENERIC_HDLC
3963 free_dma_bufs(info
);
3964 free_tmp_rx_buf(info
);
3965 if ( info
->port_num
== 0 ) {
3967 write_reg(info
, LPR
, 1); /* set low power mode */
3968 release_resources(info
);
3971 info
= info
->next_device
;
3975 pci_unregister_driver(&synclinkmp_pci_driver
);
3978 /* Driver initialization entry point.
3981 static int __init
synclinkmp_init(void)
3985 if (break_on_load
) {
3986 synclinkmp_get_text_ptr();
3990 printk("%s %s\n", driver_name
, driver_version
);
3992 if ((rc
= pci_register_driver(&synclinkmp_pci_driver
)) < 0) {
3993 printk("%s:failed to register PCI driver, error=%d\n",__FILE__
,rc
);
3997 serial_driver
= alloc_tty_driver(128);
3998 if (!serial_driver
) {
4003 /* Initialize the tty_driver structure */
4005 serial_driver
->owner
= THIS_MODULE
;
4006 serial_driver
->driver_name
= "synclinkmp";
4007 serial_driver
->name
= "ttySLM";
4008 serial_driver
->major
= ttymajor
;
4009 serial_driver
->minor_start
= 64;
4010 serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
4011 serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
4012 serial_driver
->init_termios
= tty_std_termios
;
4013 serial_driver
->init_termios
.c_cflag
=
4014 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
4015 serial_driver
->init_termios
.c_ispeed
= 9600;
4016 serial_driver
->init_termios
.c_ospeed
= 9600;
4017 serial_driver
->flags
= TTY_DRIVER_REAL_RAW
;
4018 tty_set_operations(serial_driver
, &ops
);
4019 if ((rc
= tty_register_driver(serial_driver
)) < 0) {
4020 printk("%s(%d):Couldn't register serial driver\n",
4022 put_tty_driver(serial_driver
);
4023 serial_driver
= NULL
;
4027 printk("%s %s, tty major#%d\n",
4028 driver_name
, driver_version
,
4029 serial_driver
->major
);
4034 synclinkmp_cleanup();
4038 static void __exit
synclinkmp_exit(void)
4040 synclinkmp_cleanup();
4043 module_init(synclinkmp_init
);
4044 module_exit(synclinkmp_exit
);
4046 /* Set the port for internal loopback mode.
4047 * The TxCLK and RxCLK signals are generated from the BRG and
4048 * the TxD is looped back to the RxD internally.
4050 void enable_loopback(SLMP_INFO
*info
, int enable
)
4053 /* MD2 (Mode Register 2)
4054 * 01..00 CNCT<1..0> Channel Connection 11=Local Loopback
4056 write_reg(info
, MD2
, (unsigned char)(read_reg(info
, MD2
) | (BIT1
+ BIT0
)));
4058 /* degate external TxC clock source */
4059 info
->port_array
[0]->ctrlreg_value
|= (BIT0
<< (info
->port_num
* 2));
4060 write_control_reg(info
);
4062 /* RXS/TXS (Rx/Tx clock source)
4063 * 07 Reserved, must be 0
4064 * 06..04 Clock Source, 100=BRG
4065 * 03..00 Clock Divisor, 0000=1
4067 write_reg(info
, RXS
, 0x40);
4068 write_reg(info
, TXS
, 0x40);
4071 /* MD2 (Mode Register 2)
4072 * 01..00 CNCT<1..0> Channel connection, 0=normal
4074 write_reg(info
, MD2
, (unsigned char)(read_reg(info
, MD2
) & ~(BIT1
+ BIT0
)));
4076 /* RXS/TXS (Rx/Tx clock source)
4077 * 07 Reserved, must be 0
4078 * 06..04 Clock Source, 000=RxC/TxC Pin
4079 * 03..00 Clock Divisor, 0000=1
4081 write_reg(info
, RXS
, 0x00);
4082 write_reg(info
, TXS
, 0x00);
4085 /* set LinkSpeed if available, otherwise default to 2Mbps */
4086 if (info
->params
.clock_speed
)
4087 set_rate(info
, info
->params
.clock_speed
);
4089 set_rate(info
, 3686400);
4092 /* Set the baud rate register to the desired speed
4094 * data_rate data rate of clock in bits per second
4095 * A data rate of 0 disables the AUX clock.
4097 void set_rate( SLMP_INFO
*info
, u32 data_rate
)
4100 unsigned char BRValue
;
4103 /* fBRG = fCLK/(TMC * 2^BR)
4105 if (data_rate
!= 0) {
4106 Divisor
= 14745600/data_rate
;
4113 if (TMCValue
!= 1 && TMCValue
!= 2) {
4114 /* BRValue of 0 provides 50/50 duty cycle *only* when
4115 * TMCValue is 1 or 2. BRValue of 1 to 9 always provides
4122 /* while TMCValue is too big for TMC register, divide
4123 * by 2 and increment BR exponent.
4125 for(; TMCValue
> 256 && BRValue
< 10; BRValue
++)
4128 write_reg(info
, TXS
,
4129 (unsigned char)((read_reg(info
, TXS
) & 0xf0) | BRValue
));
4130 write_reg(info
, RXS
,
4131 (unsigned char)((read_reg(info
, RXS
) & 0xf0) | BRValue
));
4132 write_reg(info
, TMC
, (unsigned char)TMCValue
);
4135 write_reg(info
, TXS
,0);
4136 write_reg(info
, RXS
,0);
4137 write_reg(info
, TMC
, 0);
4143 void rx_stop(SLMP_INFO
*info
)
4145 if (debug_level
>= DEBUG_LEVEL_ISR
)
4146 printk("%s(%d):%s rx_stop()\n",
4147 __FILE__
,__LINE__
, info
->device_name
);
4149 write_reg(info
, CMD
, RXRESET
);
4151 info
->ie0_value
&= ~RXRDYE
;
4152 write_reg(info
, IE0
, info
->ie0_value
); /* disable Rx data interrupts */
4154 write_reg(info
, RXDMA
+ DSR
, 0); /* disable Rx DMA */
4155 write_reg(info
, RXDMA
+ DCMD
, SWABORT
); /* reset/init Rx DMA */
4156 write_reg(info
, RXDMA
+ DIR, 0); /* disable Rx DMA interrupts */
4158 info
->rx_enabled
= 0;
4159 info
->rx_overflow
= 0;
4162 /* enable the receiver
4164 void rx_start(SLMP_INFO
*info
)
4168 if (debug_level
>= DEBUG_LEVEL_ISR
)
4169 printk("%s(%d):%s rx_start()\n",
4170 __FILE__
,__LINE__
, info
->device_name
);
4172 write_reg(info
, CMD
, RXRESET
);
4174 if ( info
->params
.mode
== MGSL_MODE_HDLC
) {
4175 /* HDLC, disabe IRQ on rxdata */
4176 info
->ie0_value
&= ~RXRDYE
;
4177 write_reg(info
, IE0
, info
->ie0_value
);
4179 /* Reset all Rx DMA buffers and program rx dma */
4180 write_reg(info
, RXDMA
+ DSR
, 0); /* disable Rx DMA */
4181 write_reg(info
, RXDMA
+ DCMD
, SWABORT
); /* reset/init Rx DMA */
4183 for (i
= 0; i
< info
->rx_buf_count
; i
++) {
4184 info
->rx_buf_list
[i
].status
= 0xff;
4186 // throttle to 4 shared memory writes at a time to prevent
4187 // hogging local bus (keep latency time for DMA requests low).
4189 read_status_reg(info
);
4191 info
->current_rx_buf
= 0;
4193 /* set current/1st descriptor address */
4194 write_reg16(info
, RXDMA
+ CDA
,
4195 info
->rx_buf_list_ex
[0].phys_entry
);
4197 /* set new last rx descriptor address */
4198 write_reg16(info
, RXDMA
+ EDA
,
4199 info
->rx_buf_list_ex
[info
->rx_buf_count
- 1].phys_entry
);
4201 /* set buffer length (shared by all rx dma data buffers) */
4202 write_reg16(info
, RXDMA
+ BFL
, SCABUFSIZE
);
4204 write_reg(info
, RXDMA
+ DIR, 0x60); /* enable Rx DMA interrupts (EOM/BOF) */
4205 write_reg(info
, RXDMA
+ DSR
, 0xf2); /* clear Rx DMA IRQs, enable Rx DMA */
4207 /* async, enable IRQ on rxdata */
4208 info
->ie0_value
|= RXRDYE
;
4209 write_reg(info
, IE0
, info
->ie0_value
);
4212 write_reg(info
, CMD
, RXENABLE
);
4214 info
->rx_overflow
= FALSE
;
4215 info
->rx_enabled
= 1;
4218 /* Enable the transmitter and send a transmit frame if
4219 * one is loaded in the DMA buffers.
4221 void tx_start(SLMP_INFO
*info
)
4223 if (debug_level
>= DEBUG_LEVEL_ISR
)
4224 printk("%s(%d):%s tx_start() tx_count=%d\n",
4225 __FILE__
,__LINE__
, info
->device_name
,info
->tx_count
);
4227 if (!info
->tx_enabled
) {
4228 write_reg(info
, CMD
, TXRESET
);
4229 write_reg(info
, CMD
, TXENABLE
);
4230 info
->tx_enabled
= TRUE
;
4233 if ( info
->tx_count
) {
4235 /* If auto RTS enabled and RTS is inactive, then assert */
4236 /* RTS and set a flag indicating that the driver should */
4237 /* negate RTS when the transmission completes. */
4239 info
->drop_rts_on_tx_done
= 0;
4241 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
4243 if ( info
->params
.flags
& HDLC_FLAG_AUTO_RTS
) {
4244 get_signals( info
);
4245 if ( !(info
->serial_signals
& SerialSignal_RTS
) ) {
4246 info
->serial_signals
|= SerialSignal_RTS
;
4247 set_signals( info
);
4248 info
->drop_rts_on_tx_done
= 1;
4252 write_reg16(info
, TRC0
,
4253 (unsigned short)(((tx_negate_fifo_level
-1)<<8) + tx_active_fifo_level
));
4255 write_reg(info
, TXDMA
+ DSR
, 0); /* disable DMA channel */
4256 write_reg(info
, TXDMA
+ DCMD
, SWABORT
); /* reset/init DMA channel */
4258 /* set TX CDA (current descriptor address) */
4259 write_reg16(info
, TXDMA
+ CDA
,
4260 info
->tx_buf_list_ex
[0].phys_entry
);
4262 /* set TX EDA (last descriptor address) */
4263 write_reg16(info
, TXDMA
+ EDA
,
4264 info
->tx_buf_list_ex
[info
->last_tx_buf
].phys_entry
);
4266 /* enable underrun IRQ */
4267 info
->ie1_value
&= ~IDLE
;
4268 info
->ie1_value
|= UDRN
;
4269 write_reg(info
, IE1
, info
->ie1_value
);
4270 write_reg(info
, SR1
, (unsigned char)(IDLE
+ UDRN
));
4272 write_reg(info
, TXDMA
+ DIR, 0x40); /* enable Tx DMA interrupts (EOM) */
4273 write_reg(info
, TXDMA
+ DSR
, 0xf2); /* clear Tx DMA IRQs, enable Tx DMA */
4275 mod_timer(&info
->tx_timer
, jiffies
+
4276 msecs_to_jiffies(5000));
4280 /* async, enable IRQ on txdata */
4281 info
->ie0_value
|= TXRDYE
;
4282 write_reg(info
, IE0
, info
->ie0_value
);
4285 info
->tx_active
= 1;
4289 /* stop the transmitter and DMA
4291 void tx_stop( SLMP_INFO
*info
)
4293 if (debug_level
>= DEBUG_LEVEL_ISR
)
4294 printk("%s(%d):%s tx_stop()\n",
4295 __FILE__
,__LINE__
, info
->device_name
);
4297 del_timer(&info
->tx_timer
);
4299 write_reg(info
, TXDMA
+ DSR
, 0); /* disable DMA channel */
4300 write_reg(info
, TXDMA
+ DCMD
, SWABORT
); /* reset/init DMA channel */
4302 write_reg(info
, CMD
, TXRESET
);
4304 info
->ie1_value
&= ~(UDRN
+ IDLE
);
4305 write_reg(info
, IE1
, info
->ie1_value
); /* disable tx status interrupts */
4306 write_reg(info
, SR1
, (unsigned char)(IDLE
+ UDRN
)); /* clear pending */
4308 info
->ie0_value
&= ~TXRDYE
;
4309 write_reg(info
, IE0
, info
->ie0_value
); /* disable tx data interrupts */
4311 info
->tx_enabled
= 0;
4312 info
->tx_active
= 0;
4315 /* Fill the transmit FIFO until the FIFO is full or
4316 * there is no more data to load.
4318 void tx_load_fifo(SLMP_INFO
*info
)
4322 /* do nothing is now tx data available and no XON/XOFF pending */
4324 if ( !info
->tx_count
&& !info
->x_char
)
4327 /* load the Transmit FIFO until FIFOs full or all data sent */
4329 while( info
->tx_count
&& (read_reg(info
,SR0
) & BIT1
) ) {
4331 /* there is more space in the transmit FIFO and */
4332 /* there is more data in transmit buffer */
4334 if ( (info
->tx_count
> 1) && !info
->x_char
) {
4336 TwoBytes
[0] = info
->tx_buf
[info
->tx_get
++];
4337 if (info
->tx_get
>= info
->max_frame_size
)
4338 info
->tx_get
-= info
->max_frame_size
;
4339 TwoBytes
[1] = info
->tx_buf
[info
->tx_get
++];
4340 if (info
->tx_get
>= info
->max_frame_size
)
4341 info
->tx_get
-= info
->max_frame_size
;
4343 write_reg16(info
, TRB
, *((u16
*)TwoBytes
));
4345 info
->tx_count
-= 2;
4346 info
->icount
.tx
+= 2;
4348 /* only 1 byte left to transmit or 1 FIFO slot left */
4351 /* transmit pending high priority char */
4352 write_reg(info
, TRB
, info
->x_char
);
4355 write_reg(info
, TRB
, info
->tx_buf
[info
->tx_get
++]);
4356 if (info
->tx_get
>= info
->max_frame_size
)
4357 info
->tx_get
-= info
->max_frame_size
;
4365 /* Reset a port to a known state
4367 void reset_port(SLMP_INFO
*info
)
4369 if (info
->sca_base
) {
4374 info
->serial_signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
4377 /* disable all port interrupts */
4378 info
->ie0_value
= 0;
4379 info
->ie1_value
= 0;
4380 info
->ie2_value
= 0;
4381 write_reg(info
, IE0
, info
->ie0_value
);
4382 write_reg(info
, IE1
, info
->ie1_value
);
4383 write_reg(info
, IE2
, info
->ie2_value
);
4385 write_reg(info
, CMD
, CHRESET
);
4389 /* Reset all the ports to a known state.
4391 void reset_adapter(SLMP_INFO
*info
)
4395 for ( i
=0; i
< SCA_MAX_PORTS
; ++i
) {
4396 if (info
->port_array
[i
])
4397 reset_port(info
->port_array
[i
]);
4401 /* Program port for asynchronous communications.
4403 void async_mode(SLMP_INFO
*info
)
4406 unsigned char RegValue
;
4411 /* MD0, Mode Register 0
4413 * 07..05 PRCTL<2..0>, Protocol Mode, 000=async
4414 * 04 AUTO, Auto-enable (RTS/CTS/DCD)
4415 * 03 Reserved, must be 0
4416 * 02 CRCCC, CRC Calculation, 0=disabled
4417 * 01..00 STOP<1..0> Stop bits (00=1,10=2)
4422 if (info
->params
.stop_bits
!= 1)
4424 write_reg(info
, MD0
, RegValue
);
4426 /* MD1, Mode Register 1
4428 * 07..06 BRATE<1..0>, bit rate, 00=1/1 01=1/16 10=1/32 11=1/64
4429 * 05..04 TXCHR<1..0>, tx char size, 00=8 bits,01=7,10=6,11=5
4430 * 03..02 RXCHR<1..0>, rx char size
4431 * 01..00 PMPM<1..0>, Parity mode, 00=none 10=even 11=odd
4436 switch (info
->params
.data_bits
) {
4437 case 7: RegValue
|= BIT4
+ BIT2
; break;
4438 case 6: RegValue
|= BIT5
+ BIT3
; break;
4439 case 5: RegValue
|= BIT5
+ BIT4
+ BIT3
+ BIT2
; break;
4441 if (info
->params
.parity
!= ASYNC_PARITY_NONE
) {
4443 if (info
->params
.parity
== ASYNC_PARITY_ODD
)
4446 write_reg(info
, MD1
, RegValue
);
4448 /* MD2, Mode Register 2
4450 * 07..02 Reserved, must be 0
4451 * 01..00 CNCT<1..0> Channel connection, 00=normal 11=local loopback
4456 if (info
->params
.loopback
)
4457 RegValue
|= (BIT1
+ BIT0
);
4458 write_reg(info
, MD2
, RegValue
);
4460 /* RXS, Receive clock source
4462 * 07 Reserved, must be 0
4463 * 06..04 RXCS<2..0>, clock source, 000=RxC Pin, 100=BRG, 110=DPLL
4464 * 03..00 RXBR<3..0>, rate divisor, 0000=1
4467 write_reg(info
, RXS
, RegValue
);
4469 /* TXS, Transmit clock source
4471 * 07 Reserved, must be 0
4472 * 06..04 RXCS<2..0>, clock source, 000=TxC Pin, 100=BRG, 110=Receive Clock
4473 * 03..00 RXBR<3..0>, rate divisor, 0000=1
4476 write_reg(info
, TXS
, RegValue
);
4480 * 6,4,2,0 CLKSEL<3..0>, 0 = TcCLK in, 1 = Auxclk out
4482 info
->port_array
[0]->ctrlreg_value
|= (BIT0
<< (info
->port_num
* 2));
4483 write_control_reg(info
);
4487 /* RRC Receive Ready Control 0
4489 * 07..05 Reserved, must be 0
4490 * 04..00 RRC<4..0> Rx FIFO trigger active 0x00 = 1 byte
4492 write_reg(info
, RRC
, 0x00);
4494 /* TRC0 Transmit Ready Control 0
4496 * 07..05 Reserved, must be 0
4497 * 04..00 TRC<4..0> Tx FIFO trigger active 0x10 = 16 bytes
4499 write_reg(info
, TRC0
, 0x10);
4501 /* TRC1 Transmit Ready Control 1
4503 * 07..05 Reserved, must be 0
4504 * 04..00 TRC<4..0> Tx FIFO trigger inactive 0x1e = 31 bytes (full-1)
4506 write_reg(info
, TRC1
, 0x1e);
4508 /* CTL, MSCI control register
4510 * 07..06 Reserved, set to 0
4511 * 05 UDRNC, underrun control, 0=abort 1=CRC+flag (HDLC/BSC)
4512 * 04 IDLC, idle control, 0=mark 1=idle register
4513 * 03 BRK, break, 0=off 1 =on (async)
4514 * 02 SYNCLD, sync char load enable (BSC) 1=enabled
4515 * 01 GOP, go active on poll (LOOP mode) 1=enabled
4516 * 00 RTS, RTS output control, 0=active 1=inactive
4521 if (!(info
->serial_signals
& SerialSignal_RTS
))
4523 write_reg(info
, CTL
, RegValue
);
4525 /* enable status interrupts */
4526 info
->ie0_value
|= TXINTE
+ RXINTE
;
4527 write_reg(info
, IE0
, info
->ie0_value
);
4529 /* enable break detect interrupt */
4530 info
->ie1_value
= BRKD
;
4531 write_reg(info
, IE1
, info
->ie1_value
);
4533 /* enable rx overrun interrupt */
4534 info
->ie2_value
= OVRN
;
4535 write_reg(info
, IE2
, info
->ie2_value
);
4537 set_rate( info
, info
->params
.data_rate
* 16 );
4540 /* Program the SCA for HDLC communications.
4542 void hdlc_mode(SLMP_INFO
*info
)
4544 unsigned char RegValue
;
4547 // Can't use DPLL because SCA outputs recovered clock on RxC when
4548 // DPLL mode selected. This causes output contention with RxC receiver.
4549 // Use of DPLL would require external hardware to disable RxC receiver
4550 // when DPLL mode selected.
4551 info
->params
.flags
&= ~(HDLC_FLAG_TXC_DPLL
+ HDLC_FLAG_RXC_DPLL
);
4553 /* disable DMA interrupts */
4554 write_reg(info
, TXDMA
+ DIR, 0);
4555 write_reg(info
, RXDMA
+ DIR, 0);
4557 /* MD0, Mode Register 0
4559 * 07..05 PRCTL<2..0>, Protocol Mode, 100=HDLC
4560 * 04 AUTO, Auto-enable (RTS/CTS/DCD)
4561 * 03 Reserved, must be 0
4562 * 02 CRCCC, CRC Calculation, 1=enabled
4563 * 01 CRC1, CRC selection, 0=CRC-16,1=CRC-CCITT-16
4564 * 00 CRC0, CRC initial value, 1 = all 1s
4569 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
4571 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
4573 if (info
->params
.crc_type
== HDLC_CRC_16_CCITT
)
4574 RegValue
|= BIT2
+ BIT1
;
4575 write_reg(info
, MD0
, RegValue
);
4577 /* MD1, Mode Register 1
4579 * 07..06 ADDRS<1..0>, Address detect, 00=no addr check
4580 * 05..04 TXCHR<1..0>, tx char size, 00=8 bits
4581 * 03..02 RXCHR<1..0>, rx char size, 00=8 bits
4582 * 01..00 PMPM<1..0>, Parity mode, 00=no parity
4587 write_reg(info
, MD1
, RegValue
);
4589 /* MD2, Mode Register 2
4591 * 07 NRZFM, 0=NRZ, 1=FM
4592 * 06..05 CODE<1..0> Encoding, 00=NRZ
4593 * 04..03 DRATE<1..0> DPLL Divisor, 00=8
4594 * 02 Reserved, must be 0
4595 * 01..00 CNCT<1..0> Channel connection, 0=normal
4600 switch(info
->params
.encoding
) {
4601 case HDLC_ENCODING_NRZI
: RegValue
|= BIT5
; break;
4602 case HDLC_ENCODING_BIPHASE_MARK
: RegValue
|= BIT7
+ BIT5
; break; /* aka FM1 */
4603 case HDLC_ENCODING_BIPHASE_SPACE
: RegValue
|= BIT7
+ BIT6
; break; /* aka FM0 */
4604 case HDLC_ENCODING_BIPHASE_LEVEL
: RegValue
|= BIT7
; break; /* aka Manchester */
4606 case HDLC_ENCODING_NRZB
: /* not supported */
4607 case HDLC_ENCODING_NRZI_MARK
: /* not supported */
4608 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
: /* not supported */
4611 if ( info
->params
.flags
& HDLC_FLAG_DPLL_DIV16
) {
4614 } else if ( info
->params
.flags
& HDLC_FLAG_DPLL_DIV8
) {
4620 write_reg(info
, MD2
, RegValue
);
4623 /* RXS, Receive clock source
4625 * 07 Reserved, must be 0
4626 * 06..04 RXCS<2..0>, clock source, 000=RxC Pin, 100=BRG, 110=DPLL
4627 * 03..00 RXBR<3..0>, rate divisor, 0000=1
4630 if (info
->params
.flags
& HDLC_FLAG_RXC_BRG
)
4632 if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
4633 RegValue
|= BIT6
+ BIT5
;
4634 write_reg(info
, RXS
, RegValue
);
4636 /* TXS, Transmit clock source
4638 * 07 Reserved, must be 0
4639 * 06..04 RXCS<2..0>, clock source, 000=TxC Pin, 100=BRG, 110=Receive Clock
4640 * 03..00 RXBR<3..0>, rate divisor, 0000=1
4643 if (info
->params
.flags
& HDLC_FLAG_TXC_BRG
)
4645 if (info
->params
.flags
& HDLC_FLAG_TXC_DPLL
)
4646 RegValue
|= BIT6
+ BIT5
;
4647 write_reg(info
, TXS
, RegValue
);
4649 if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
4650 set_rate(info
, info
->params
.clock_speed
* DpllDivisor
);
4652 set_rate(info
, info
->params
.clock_speed
);
4654 /* GPDATA (General Purpose I/O Data Register)
4656 * 6,4,2,0 CLKSEL<3..0>, 0 = TcCLK in, 1 = Auxclk out
4658 if (info
->params
.flags
& HDLC_FLAG_TXC_BRG
)
4659 info
->port_array
[0]->ctrlreg_value
|= (BIT0
<< (info
->port_num
* 2));
4661 info
->port_array
[0]->ctrlreg_value
&= ~(BIT0
<< (info
->port_num
* 2));
4662 write_control_reg(info
);
4664 /* RRC Receive Ready Control 0
4666 * 07..05 Reserved, must be 0
4667 * 04..00 RRC<4..0> Rx FIFO trigger active
4669 write_reg(info
, RRC
, rx_active_fifo_level
);
4671 /* TRC0 Transmit Ready Control 0
4673 * 07..05 Reserved, must be 0
4674 * 04..00 TRC<4..0> Tx FIFO trigger active
4676 write_reg(info
, TRC0
, tx_active_fifo_level
);
4678 /* TRC1 Transmit Ready Control 1
4680 * 07..05 Reserved, must be 0
4681 * 04..00 TRC<4..0> Tx FIFO trigger inactive 0x1f = 32 bytes (full)
4683 write_reg(info
, TRC1
, (unsigned char)(tx_negate_fifo_level
- 1));
4685 /* DMR, DMA Mode Register
4687 * 07..05 Reserved, must be 0
4688 * 04 TMOD, Transfer Mode: 1=chained-block
4689 * 03 Reserved, must be 0
4690 * 02 NF, Number of Frames: 1=multi-frame
4691 * 01 CNTE, Frame End IRQ Counter enable: 0=disabled
4692 * 00 Reserved, must be 0
4696 write_reg(info
, TXDMA
+ DMR
, 0x14);
4697 write_reg(info
, RXDMA
+ DMR
, 0x14);
4699 /* Set chain pointer base (upper 8 bits of 24 bit addr) */
4700 write_reg(info
, RXDMA
+ CPB
,
4701 (unsigned char)(info
->buffer_list_phys
>> 16));
4703 /* Set chain pointer base (upper 8 bits of 24 bit addr) */
4704 write_reg(info
, TXDMA
+ CPB
,
4705 (unsigned char)(info
->buffer_list_phys
>> 16));
4707 /* enable status interrupts. other code enables/disables
4708 * the individual sources for these two interrupt classes.
4710 info
->ie0_value
|= TXINTE
+ RXINTE
;
4711 write_reg(info
, IE0
, info
->ie0_value
);
4713 /* CTL, MSCI control register
4715 * 07..06 Reserved, set to 0
4716 * 05 UDRNC, underrun control, 0=abort 1=CRC+flag (HDLC/BSC)
4717 * 04 IDLC, idle control, 0=mark 1=idle register
4718 * 03 BRK, break, 0=off 1 =on (async)
4719 * 02 SYNCLD, sync char load enable (BSC) 1=enabled
4720 * 01 GOP, go active on poll (LOOP mode) 1=enabled
4721 * 00 RTS, RTS output control, 0=active 1=inactive
4726 if (!(info
->serial_signals
& SerialSignal_RTS
))
4728 write_reg(info
, CTL
, RegValue
);
4730 /* preamble not supported ! */
4736 set_rate(info
, info
->params
.clock_speed
);
4738 if (info
->params
.loopback
)
4739 enable_loopback(info
,1);
4742 /* Set the transmit HDLC idle mode
4744 void tx_set_idle(SLMP_INFO
*info
)
4746 unsigned char RegValue
= 0xff;
4748 /* Map API idle mode to SCA register bits */
4749 switch(info
->idle_mode
) {
4750 case HDLC_TXIDLE_FLAGS
: RegValue
= 0x7e; break;
4751 case HDLC_TXIDLE_ALT_ZEROS_ONES
: RegValue
= 0xaa; break;
4752 case HDLC_TXIDLE_ZEROS
: RegValue
= 0x00; break;
4753 case HDLC_TXIDLE_ONES
: RegValue
= 0xff; break;
4754 case HDLC_TXIDLE_ALT_MARK_SPACE
: RegValue
= 0xaa; break;
4755 case HDLC_TXIDLE_SPACE
: RegValue
= 0x00; break;
4756 case HDLC_TXIDLE_MARK
: RegValue
= 0xff; break;
4759 write_reg(info
, IDL
, RegValue
);
4762 /* Query the adapter for the state of the V24 status (input) signals.
4764 void get_signals(SLMP_INFO
*info
)
4766 u16 status
= read_reg(info
, SR3
);
4767 u16 gpstatus
= read_status_reg(info
);
4770 /* clear all serial signals except DTR and RTS */
4771 info
->serial_signals
&= SerialSignal_DTR
+ SerialSignal_RTS
;
4773 /* set serial signal bits to reflect MISR */
4775 if (!(status
& BIT3
))
4776 info
->serial_signals
|= SerialSignal_CTS
;
4778 if ( !(status
& BIT2
))
4779 info
->serial_signals
|= SerialSignal_DCD
;
4781 testbit
= BIT1
<< (info
->port_num
* 2); // Port 0..3 RI is GPDATA<1,3,5,7>
4782 if (!(gpstatus
& testbit
))
4783 info
->serial_signals
|= SerialSignal_RI
;
4785 testbit
= BIT0
<< (info
->port_num
* 2); // Port 0..3 DSR is GPDATA<0,2,4,6>
4786 if (!(gpstatus
& testbit
))
4787 info
->serial_signals
|= SerialSignal_DSR
;
4790 /* Set the state of DTR and RTS based on contents of
4791 * serial_signals member of device context.
4793 void set_signals(SLMP_INFO
*info
)
4795 unsigned char RegValue
;
4798 RegValue
= read_reg(info
, CTL
);
4799 if (info
->serial_signals
& SerialSignal_RTS
)
4803 write_reg(info
, CTL
, RegValue
);
4805 // Port 0..3 DTR is ctrl reg <1,3,5,7>
4806 EnableBit
= BIT1
<< (info
->port_num
*2);
4807 if (info
->serial_signals
& SerialSignal_DTR
)
4808 info
->port_array
[0]->ctrlreg_value
&= ~EnableBit
;
4810 info
->port_array
[0]->ctrlreg_value
|= EnableBit
;
4811 write_control_reg(info
);
4814 /*******************/
4815 /* DMA Buffer Code */
4816 /*******************/
4818 /* Set the count for all receive buffers to SCABUFSIZE
4819 * and set the current buffer to the first buffer. This effectively
4820 * makes all buffers free and discards any data in buffers.
4822 void rx_reset_buffers(SLMP_INFO
*info
)
4824 rx_free_frame_buffers(info
, 0, info
->rx_buf_count
- 1);
4827 /* Free the buffers used by a received frame
4829 * info pointer to device instance data
4830 * first index of 1st receive buffer of frame
4831 * last index of last receive buffer of frame
4833 void rx_free_frame_buffers(SLMP_INFO
*info
, unsigned int first
, unsigned int last
)
4838 /* reset current buffer for reuse */
4839 info
->rx_buf_list
[first
].status
= 0xff;
4841 if (first
== last
) {
4843 /* set new last rx descriptor address */
4844 write_reg16(info
, RXDMA
+ EDA
, info
->rx_buf_list_ex
[first
].phys_entry
);
4848 if (first
== info
->rx_buf_count
)
4852 /* set current buffer to next buffer after last buffer of frame */
4853 info
->current_rx_buf
= first
;
4856 /* Return a received frame from the receive DMA buffers.
4857 * Only frames received without errors are returned.
4859 * Return Value: 1 if frame returned, otherwise 0
4861 int rx_get_frame(SLMP_INFO
*info
)
4863 unsigned int StartIndex
, EndIndex
; /* index of 1st and last buffers of Rx frame */
4864 unsigned short status
;
4865 unsigned int framesize
= 0;
4867 unsigned long flags
;
4868 struct tty_struct
*tty
= info
->tty
;
4869 unsigned char addr_field
= 0xff;
4871 SCADESC_EX
*desc_ex
;
4874 /* assume no frame returned, set zero length */
4879 * current_rx_buf points to the 1st buffer of the next available
4880 * receive frame. To find the last buffer of the frame look for
4881 * a non-zero status field in the buffer entries. (The status
4882 * field is set by the 16C32 after completing a receive frame.
4884 StartIndex
= EndIndex
= info
->current_rx_buf
;
4887 desc
= &info
->rx_buf_list
[EndIndex
];
4888 desc_ex
= &info
->rx_buf_list_ex
[EndIndex
];
4890 if (desc
->status
== 0xff)
4891 goto Cleanup
; /* current desc still in use, no frames available */
4893 if (framesize
== 0 && info
->params
.addr_filter
!= 0xff)
4894 addr_field
= desc_ex
->virt_addr
[0];
4896 framesize
+= desc
->length
;
4898 /* Status != 0 means last buffer of frame */
4903 if (EndIndex
== info
->rx_buf_count
)
4906 if (EndIndex
== info
->current_rx_buf
) {
4907 /* all buffers have been 'used' but none mark */
4908 /* the end of a frame. Reset buffers and receiver. */
4909 if ( info
->rx_enabled
){
4910 spin_lock_irqsave(&info
->lock
,flags
);
4912 spin_unlock_irqrestore(&info
->lock
,flags
);
4919 /* check status of receive frame */
4921 /* frame status is byte stored after frame data
4923 * 7 EOM (end of msg), 1 = last buffer of frame
4924 * 6 Short Frame, 1 = short frame
4925 * 5 Abort, 1 = frame aborted
4926 * 4 Residue, 1 = last byte is partial
4927 * 3 Overrun, 1 = overrun occurred during frame reception
4928 * 2 CRC, 1 = CRC error detected
4931 status
= desc
->status
;
4933 /* ignore CRC bit if not using CRC (bit is undefined) */
4934 /* Note:CRC is not save to data buffer */
4935 if (info
->params
.crc_type
== HDLC_CRC_NONE
)
4938 if (framesize
== 0 ||
4939 (addr_field
!= 0xff && addr_field
!= info
->params
.addr_filter
)) {
4940 /* discard 0 byte frames, this seems to occur sometime
4941 * when remote is idling flags.
4943 rx_free_frame_buffers(info
, StartIndex
, EndIndex
);
4950 if (status
& (BIT6
+BIT5
+BIT3
+BIT2
)) {
4951 /* received frame has errors,
4952 * update counts and mark frame size as 0
4955 info
->icount
.rxshort
++;
4956 else if (status
& BIT5
)
4957 info
->icount
.rxabort
++;
4958 else if (status
& BIT3
)
4959 info
->icount
.rxover
++;
4961 info
->icount
.rxcrc
++;
4964 #if SYNCLINK_GENERIC_HDLC
4966 struct net_device_stats
*stats
= hdlc_stats(info
->netdev
);
4968 stats
->rx_frame_errors
++;
4973 if ( debug_level
>= DEBUG_LEVEL_BH
)
4974 printk("%s(%d):%s rx_get_frame() status=%04X size=%d\n",
4975 __FILE__
,__LINE__
,info
->device_name
,status
,framesize
);
4977 if ( debug_level
>= DEBUG_LEVEL_DATA
)
4978 trace_block(info
,info
->rx_buf_list_ex
[StartIndex
].virt_addr
,
4979 min_t(int, framesize
,SCABUFSIZE
),0);
4982 if (framesize
> info
->max_frame_size
)
4983 info
->icount
.rxlong
++;
4985 /* copy dma buffer(s) to contiguous intermediate buffer */
4986 int copy_count
= framesize
;
4987 int index
= StartIndex
;
4988 unsigned char *ptmp
= info
->tmp_rx_buf
;
4989 info
->tmp_rx_buf_count
= framesize
;
4991 info
->icount
.rxok
++;
4994 int partial_count
= min(copy_count
,SCABUFSIZE
);
4996 info
->rx_buf_list_ex
[index
].virt_addr
,
4998 ptmp
+= partial_count
;
4999 copy_count
-= partial_count
;
5001 if ( ++index
== info
->rx_buf_count
)
5005 #if SYNCLINK_GENERIC_HDLC
5007 hdlcdev_rx(info
,info
->tmp_rx_buf
,framesize
);
5010 ldisc_receive_buf(tty
,info
->tmp_rx_buf
,
5011 info
->flag_buf
, framesize
);
5014 /* Free the buffers used by this frame. */
5015 rx_free_frame_buffers( info
, StartIndex
, EndIndex
);
5020 if ( info
->rx_enabled
&& info
->rx_overflow
) {
5021 /* Receiver is enabled, but needs to restarted due to
5022 * rx buffer overflow. If buffers are empty, restart receiver.
5024 if (info
->rx_buf_list
[EndIndex
].status
== 0xff) {
5025 spin_lock_irqsave(&info
->lock
,flags
);
5027 spin_unlock_irqrestore(&info
->lock
,flags
);
5034 /* load the transmit DMA buffer with data
5036 void tx_load_dma_buffer(SLMP_INFO
*info
, const char *buf
, unsigned int count
)
5038 unsigned short copy_count
;
5041 SCADESC_EX
*desc_ex
;
5043 if ( debug_level
>= DEBUG_LEVEL_DATA
)
5044 trace_block(info
,buf
, min_t(int, count
,SCABUFSIZE
), 1);
5046 /* Copy source buffer to one or more DMA buffers, starting with
5047 * the first transmit dma buffer.
5051 copy_count
= min_t(unsigned short,count
,SCABUFSIZE
);
5053 desc
= &info
->tx_buf_list
[i
];
5054 desc_ex
= &info
->tx_buf_list_ex
[i
];
5056 load_pci_memory(info
, desc_ex
->virt_addr
,buf
,copy_count
);
5058 desc
->length
= copy_count
;
5062 count
-= copy_count
;
5068 if (i
>= info
->tx_buf_count
)
5072 info
->tx_buf_list
[i
].status
= 0x81; /* set EOM and EOT status */
5073 info
->last_tx_buf
= ++i
;
5076 int register_test(SLMP_INFO
*info
)
5078 static unsigned char testval
[] = {0x00, 0xff, 0xaa, 0x55, 0x69, 0x96};
5079 static unsigned int count
= ARRAY_SIZE(testval
);
5082 unsigned long flags
;
5084 spin_lock_irqsave(&info
->lock
,flags
);
5087 /* assume failure */
5088 info
->init_error
= DiagStatus_AddressFailure
;
5090 /* Write bit patterns to various registers but do it out of */
5091 /* sync, then read back and verify values. */
5093 for (i
= 0 ; i
< count
; i
++) {
5094 write_reg(info
, TMC
, testval
[i
]);
5095 write_reg(info
, IDL
, testval
[(i
+1)%count
]);
5096 write_reg(info
, SA0
, testval
[(i
+2)%count
]);
5097 write_reg(info
, SA1
, testval
[(i
+3)%count
]);
5099 if ( (read_reg(info
, TMC
) != testval
[i
]) ||
5100 (read_reg(info
, IDL
) != testval
[(i
+1)%count
]) ||
5101 (read_reg(info
, SA0
) != testval
[(i
+2)%count
]) ||
5102 (read_reg(info
, SA1
) != testval
[(i
+3)%count
]) )
5110 spin_unlock_irqrestore(&info
->lock
,flags
);
5115 int irq_test(SLMP_INFO
*info
)
5117 unsigned long timeout
;
5118 unsigned long flags
;
5120 unsigned char timer
= (info
->port_num
& 1) ? TIMER2
: TIMER0
;
5122 spin_lock_irqsave(&info
->lock
,flags
);
5125 /* assume failure */
5126 info
->init_error
= DiagStatus_IrqFailure
;
5127 info
->irq_occurred
= FALSE
;
5129 /* setup timer0 on SCA0 to interrupt */
5131 /* IER2<7..4> = timer<3..0> interrupt enables (1=enabled) */
5132 write_reg(info
, IER2
, (unsigned char)((info
->port_num
& 1) ? BIT6
: BIT4
));
5134 write_reg(info
, (unsigned char)(timer
+ TEPR
), 0); /* timer expand prescale */
5135 write_reg16(info
, (unsigned char)(timer
+ TCONR
), 1); /* timer constant */
5138 /* TMCS, Timer Control/Status Register
5140 * 07 CMF, Compare match flag (read only) 1=match
5141 * 06 ECMI, CMF Interrupt Enable: 1=enabled
5142 * 05 Reserved, must be 0
5143 * 04 TME, Timer Enable
5144 * 03..00 Reserved, must be 0
5148 write_reg(info
, (unsigned char)(timer
+ TMCS
), 0x50);
5150 spin_unlock_irqrestore(&info
->lock
,flags
);
5153 while( timeout
-- && !info
->irq_occurred
) {
5154 msleep_interruptible(10);
5157 spin_lock_irqsave(&info
->lock
,flags
);
5159 spin_unlock_irqrestore(&info
->lock
,flags
);
5161 return info
->irq_occurred
;
5164 /* initialize individual SCA device (2 ports)
5166 static int sca_init(SLMP_INFO
*info
)
5168 /* set wait controller to single mem partition (low), no wait states */
5169 write_reg(info
, PABR0
, 0); /* wait controller addr boundary 0 */
5170 write_reg(info
, PABR1
, 0); /* wait controller addr boundary 1 */
5171 write_reg(info
, WCRL
, 0); /* wait controller low range */
5172 write_reg(info
, WCRM
, 0); /* wait controller mid range */
5173 write_reg(info
, WCRH
, 0); /* wait controller high range */
5175 /* DPCR, DMA Priority Control
5177 * 07..05 Not used, must be 0
5178 * 04 BRC, bus release condition: 0=all transfers complete
5179 * 03 CCC, channel change condition: 0=every cycle
5180 * 02..00 PR<2..0>, priority 100=round robin
5184 write_reg(info
, DPCR
, dma_priority
);
5186 /* DMA Master Enable, BIT7: 1=enable all channels */
5187 write_reg(info
, DMER
, 0x80);
5189 /* enable all interrupt classes */
5190 write_reg(info
, IER0
, 0xff); /* TxRDY,RxRDY,TxINT,RxINT (ports 0-1) */
5191 write_reg(info
, IER1
, 0xff); /* DMIB,DMIA (channels 0-3) */
5192 write_reg(info
, IER2
, 0xf0); /* TIRQ (timers 0-3) */
5194 /* ITCR, interrupt control register
5195 * 07 IPC, interrupt priority, 0=MSCI->DMA
5196 * 06..05 IAK<1..0>, Acknowledge cycle, 00=non-ack cycle
5197 * 04 VOS, Vector Output, 0=unmodified vector
5198 * 03..00 Reserved, must be 0
5200 write_reg(info
, ITCR
, 0);
5205 /* initialize adapter hardware
5207 int init_adapter(SLMP_INFO
*info
)
5211 /* Set BIT30 of Local Control Reg 0x50 to reset SCA */
5212 volatile u32
*MiscCtrl
= (u32
*)(info
->lcr_base
+ 0x50);
5215 info
->misc_ctrl_value
|= BIT30
;
5216 *MiscCtrl
= info
->misc_ctrl_value
;
5219 * Force at least 170ns delay before clearing
5220 * reset bit. Each read from LCR takes at least
5221 * 30ns so 10 times for 300ns to be safe.
5224 readval
= *MiscCtrl
;
5226 info
->misc_ctrl_value
&= ~BIT30
;
5227 *MiscCtrl
= info
->misc_ctrl_value
;
5229 /* init control reg (all DTRs off, all clksel=input) */
5230 info
->ctrlreg_value
= 0xaa;
5231 write_control_reg(info
);
5234 volatile u32
*LCR1BRDR
= (u32
*)(info
->lcr_base
+ 0x2c);
5235 lcr1_brdr_value
&= ~(BIT5
+ BIT4
+ BIT3
);
5237 switch(read_ahead_count
)
5240 lcr1_brdr_value
|= BIT5
+ BIT4
+ BIT3
;
5243 lcr1_brdr_value
|= BIT5
+ BIT4
;
5246 lcr1_brdr_value
|= BIT5
+ BIT3
;
5249 lcr1_brdr_value
|= BIT5
;
5253 *LCR1BRDR
= lcr1_brdr_value
;
5254 *MiscCtrl
= misc_ctrl_value
;
5257 sca_init(info
->port_array
[0]);
5258 sca_init(info
->port_array
[2]);
5263 /* Loopback an HDLC frame to test the hardware
5264 * interrupt and DMA functions.
5266 int loopback_test(SLMP_INFO
*info
)
5268 #define TESTFRAMESIZE 20
5270 unsigned long timeout
;
5271 u16 count
= TESTFRAMESIZE
;
5272 unsigned char buf
[TESTFRAMESIZE
];
5274 unsigned long flags
;
5276 struct tty_struct
*oldtty
= info
->tty
;
5277 u32 speed
= info
->params
.clock_speed
;
5279 info
->params
.clock_speed
= 3686400;
5282 /* assume failure */
5283 info
->init_error
= DiagStatus_DmaFailure
;
5285 /* build and send transmit frame */
5286 for (count
= 0; count
< TESTFRAMESIZE
;++count
)
5287 buf
[count
] = (unsigned char)count
;
5289 memset(info
->tmp_rx_buf
,0,TESTFRAMESIZE
);
5291 /* program hardware for HDLC and enabled receiver */
5292 spin_lock_irqsave(&info
->lock
,flags
);
5294 enable_loopback(info
,1);
5296 info
->tx_count
= count
;
5297 tx_load_dma_buffer(info
,buf
,count
);
5299 spin_unlock_irqrestore(&info
->lock
,flags
);
5301 /* wait for receive complete */
5302 /* Set a timeout for waiting for interrupt. */
5303 for ( timeout
= 100; timeout
; --timeout
) {
5304 msleep_interruptible(10);
5306 if (rx_get_frame(info
)) {
5312 /* verify received frame length and contents */
5314 ( info
->tmp_rx_buf_count
!= count
||
5315 memcmp(buf
, info
->tmp_rx_buf
,count
))) {
5319 spin_lock_irqsave(&info
->lock
,flags
);
5320 reset_adapter(info
);
5321 spin_unlock_irqrestore(&info
->lock
,flags
);
5323 info
->params
.clock_speed
= speed
;
5329 /* Perform diagnostics on hardware
5331 int adapter_test( SLMP_INFO
*info
)
5333 unsigned long flags
;
5334 if ( debug_level
>= DEBUG_LEVEL_INFO
)
5335 printk( "%s(%d):Testing device %s\n",
5336 __FILE__
,__LINE__
,info
->device_name
);
5338 spin_lock_irqsave(&info
->lock
,flags
);
5340 spin_unlock_irqrestore(&info
->lock
,flags
);
5342 info
->port_array
[0]->port_count
= 0;
5344 if ( register_test(info
->port_array
[0]) &&
5345 register_test(info
->port_array
[1])) {
5347 info
->port_array
[0]->port_count
= 2;
5349 if ( register_test(info
->port_array
[2]) &&
5350 register_test(info
->port_array
[3]) )
5351 info
->port_array
[0]->port_count
+= 2;
5354 printk( "%s(%d):Register test failure for device %s Addr=%08lX\n",
5355 __FILE__
,__LINE__
,info
->device_name
, (unsigned long)(info
->phys_sca_base
));
5359 if ( !irq_test(info
->port_array
[0]) ||
5360 !irq_test(info
->port_array
[1]) ||
5361 (info
->port_count
== 4 && !irq_test(info
->port_array
[2])) ||
5362 (info
->port_count
== 4 && !irq_test(info
->port_array
[3]))) {
5363 printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
5364 __FILE__
,__LINE__
,info
->device_name
, (unsigned short)(info
->irq_level
) );
5368 if (!loopback_test(info
->port_array
[0]) ||
5369 !loopback_test(info
->port_array
[1]) ||
5370 (info
->port_count
== 4 && !loopback_test(info
->port_array
[2])) ||
5371 (info
->port_count
== 4 && !loopback_test(info
->port_array
[3]))) {
5372 printk( "%s(%d):DMA test failure for device %s\n",
5373 __FILE__
,__LINE__
,info
->device_name
);
5377 if ( debug_level
>= DEBUG_LEVEL_INFO
)
5378 printk( "%s(%d):device %s passed diagnostics\n",
5379 __FILE__
,__LINE__
,info
->device_name
);
5381 info
->port_array
[0]->init_error
= 0;
5382 info
->port_array
[1]->init_error
= 0;
5383 if ( info
->port_count
> 2 ) {
5384 info
->port_array
[2]->init_error
= 0;
5385 info
->port_array
[3]->init_error
= 0;
5391 /* Test the shared memory on a PCI adapter.
5393 int memory_test(SLMP_INFO
*info
)
5395 static unsigned long testval
[] = { 0x0, 0x55555555, 0xaaaaaaaa,
5396 0x66666666, 0x99999999, 0xffffffff, 0x12345678 };
5397 unsigned long count
= ARRAY_SIZE(testval
);
5399 unsigned long limit
= SCA_MEM_SIZE
/sizeof(unsigned long);
5400 unsigned long * addr
= (unsigned long *)info
->memory_base
;
5402 /* Test data lines with test pattern at one location. */
5404 for ( i
= 0 ; i
< count
; i
++ ) {
5406 if ( *addr
!= testval
[i
] )
5410 /* Test address lines with incrementing pattern over */
5411 /* entire address range. */
5413 for ( i
= 0 ; i
< limit
; i
++ ) {
5418 addr
= (unsigned long *)info
->memory_base
;
5420 for ( i
= 0 ; i
< limit
; i
++ ) {
5421 if ( *addr
!= i
* 4 )
5426 memset( info
->memory_base
, 0, SCA_MEM_SIZE
);
5430 /* Load data into PCI adapter shared memory.
5432 * The PCI9050 releases control of the local bus
5433 * after completing the current read or write operation.
5435 * While the PCI9050 write FIFO not empty, the
5436 * PCI9050 treats all of the writes as a single transaction
5437 * and does not release the bus. This causes DMA latency problems
5438 * at high speeds when copying large data blocks to the shared memory.
5440 * This function breaks a write into multiple transations by
5441 * interleaving a read which flushes the write FIFO and 'completes'
5442 * the write transation. This allows any pending DMA request to gain control
5443 * of the local bus in a timely fasion.
5445 void load_pci_memory(SLMP_INFO
*info
, char* dest
, const char* src
, unsigned short count
)
5447 /* A load interval of 16 allows for 4 32-bit writes at */
5448 /* 136ns each for a maximum latency of 542ns on the local bus.*/
5450 unsigned short interval
= count
/ sca_pci_load_interval
;
5453 for ( i
= 0 ; i
< interval
; i
++ )
5455 memcpy(dest
, src
, sca_pci_load_interval
);
5456 read_status_reg(info
);
5457 dest
+= sca_pci_load_interval
;
5458 src
+= sca_pci_load_interval
;
5461 memcpy(dest
, src
, count
% sca_pci_load_interval
);
5464 void trace_block(SLMP_INFO
*info
,const char* data
, int count
, int xmit
)
5469 printk("%s tx data:\n",info
->device_name
);
5471 printk("%s rx data:\n",info
->device_name
);
5479 for(i
=0;i
<linecount
;i
++)
5480 printk("%02X ",(unsigned char)data
[i
]);
5483 for(i
=0;i
<linecount
;i
++) {
5484 if (data
[i
]>=040 && data
[i
]<=0176)
5485 printk("%c",data
[i
]);
5494 } /* end of trace_block() */
5496 /* called when HDLC frame times out
5497 * update stats and do tx completion processing
5499 void tx_timeout(unsigned long context
)
5501 SLMP_INFO
*info
= (SLMP_INFO
*)context
;
5502 unsigned long flags
;
5504 if ( debug_level
>= DEBUG_LEVEL_INFO
)
5505 printk( "%s(%d):%s tx_timeout()\n",
5506 __FILE__
,__LINE__
,info
->device_name
);
5507 if(info
->tx_active
&& info
->params
.mode
== MGSL_MODE_HDLC
) {
5508 info
->icount
.txtimeout
++;
5510 spin_lock_irqsave(&info
->lock
,flags
);
5511 info
->tx_active
= 0;
5512 info
->tx_count
= info
->tx_put
= info
->tx_get
= 0;
5514 spin_unlock_irqrestore(&info
->lock
,flags
);
5516 #if SYNCLINK_GENERIC_HDLC
5518 hdlcdev_tx_done(info
);
5524 /* called to periodically check the DSR/RI modem signal input status
5526 void status_timeout(unsigned long context
)
5529 SLMP_INFO
*info
= (SLMP_INFO
*)context
;
5530 unsigned long flags
;
5531 unsigned char delta
;
5534 spin_lock_irqsave(&info
->lock
,flags
);
5536 spin_unlock_irqrestore(&info
->lock
,flags
);
5538 /* check for DSR/RI state change */
5540 delta
= info
->old_signals
^ info
->serial_signals
;
5541 info
->old_signals
= info
->serial_signals
;
5543 if (delta
& SerialSignal_DSR
)
5544 status
|= MISCSTATUS_DSR_LATCHED
|(info
->serial_signals
&SerialSignal_DSR
);
5546 if (delta
& SerialSignal_RI
)
5547 status
|= MISCSTATUS_RI_LATCHED
|(info
->serial_signals
&SerialSignal_RI
);
5549 if (delta
& SerialSignal_DCD
)
5550 status
|= MISCSTATUS_DCD_LATCHED
|(info
->serial_signals
&SerialSignal_DCD
);
5552 if (delta
& SerialSignal_CTS
)
5553 status
|= MISCSTATUS_CTS_LATCHED
|(info
->serial_signals
&SerialSignal_CTS
);
5556 isr_io_pin(info
,status
);
5558 mod_timer(&info
->status_timer
, jiffies
+ msecs_to_jiffies(10));
5562 /* Register Access Routines -
5563 * All registers are memory mapped
5565 #define CALC_REGADDR() \
5566 unsigned char * RegAddr = (unsigned char*)(info->sca_base + Addr); \
5567 if (info->port_num > 1) \
5568 RegAddr += 256; /* port 0-1 SCA0, 2-3 SCA1 */ \
5569 if ( info->port_num & 1) { \
5571 RegAddr += 0x40; /* DMA access */ \
5572 else if (Addr > 0x1f && Addr < 0x60) \
5573 RegAddr += 0x20; /* MSCI access */ \
5577 unsigned char read_reg(SLMP_INFO
* info
, unsigned char Addr
)
5582 void write_reg(SLMP_INFO
* info
, unsigned char Addr
, unsigned char Value
)
5588 u16
read_reg16(SLMP_INFO
* info
, unsigned char Addr
)
5591 return *((u16
*)RegAddr
);
5594 void write_reg16(SLMP_INFO
* info
, unsigned char Addr
, u16 Value
)
5597 *((u16
*)RegAddr
) = Value
;
5600 unsigned char read_status_reg(SLMP_INFO
* info
)
5602 unsigned char *RegAddr
= (unsigned char *)info
->statctrl_base
;
5606 void write_control_reg(SLMP_INFO
* info
)
5608 unsigned char *RegAddr
= (unsigned char *)info
->statctrl_base
;
5609 *RegAddr
= info
->port_array
[0]->ctrlreg_value
;
5613 static int __devinit
synclinkmp_init_one (struct pci_dev
*dev
,
5614 const struct pci_device_id
*ent
)
5616 if (pci_enable_device(dev
)) {
5617 printk("error enabling pci device %p\n", dev
);
5620 device_init( ++synclinkmp_adapter_count
, dev
);
5624 static void __devexit
synclinkmp_remove_one (struct pci_dev
*dev
)