2 * $Id: synclink_gt.c,v 4.50 2007/07/25 19:29:25 paulkf Exp $
4 * Device driver for Microgate SyncLink GT serial adapters.
6 * written by Paul Fulghum for Microgate Corporation
9 * Microgate and SyncLink are trademarks of Microgate Corporation
11 * This code is released under the GNU General Public License (GPL)
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
14 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
17 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
19 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
23 * OF THE POSSIBILITY OF SUCH DAMAGE.
27 * DEBUG OUTPUT DEFINITIONS
29 * uncomment lines below to enable specific types of debug output
31 * DBGINFO information - most verbose output
32 * DBGERR serious errors
33 * DBGBH bottom half service routine debugging
34 * DBGISR interrupt service routine debugging
35 * DBGDATA output receive and transmit data
36 * DBGTBUF output transmit DMA buffers and registers
37 * DBGRBUF output receive DMA buffers and registers
40 #define DBGINFO(fmt) if (debug_level >= DEBUG_LEVEL_INFO) printk fmt
41 #define DBGERR(fmt) if (debug_level >= DEBUG_LEVEL_ERROR) printk fmt
42 #define DBGBH(fmt) if (debug_level >= DEBUG_LEVEL_BH) printk fmt
43 #define DBGISR(fmt) if (debug_level >= DEBUG_LEVEL_ISR) printk fmt
44 #define DBGDATA(info, buf, size, label) if (debug_level >= DEBUG_LEVEL_DATA) trace_block((info), (buf), (size), (label))
45 //#define DBGTBUF(info) dump_tbufs(info)
46 //#define DBGRBUF(info) dump_rbufs(info)
49 #include <linux/module.h>
50 #include <linux/version.h>
51 #include <linux/errno.h>
52 #include <linux/signal.h>
53 #include <linux/sched.h>
54 #include <linux/timer.h>
55 #include <linux/interrupt.h>
56 #include <linux/pci.h>
57 #include <linux/tty.h>
58 #include <linux/tty_flip.h>
59 #include <linux/serial.h>
60 #include <linux/major.h>
61 #include <linux/string.h>
62 #include <linux/fcntl.h>
63 #include <linux/ptrace.h>
64 #include <linux/ioport.h>
66 #include <linux/slab.h>
67 #include <linux/netdevice.h>
68 #include <linux/vmalloc.h>
69 #include <linux/init.h>
70 #include <linux/delay.h>
71 #include <linux/ioctl.h>
72 #include <linux/termios.h>
73 #include <linux/bitops.h>
74 #include <linux/workqueue.h>
75 #include <linux/hdlc.h>
77 #include <asm/system.h>
81 #include <asm/types.h>
82 #include <asm/uaccess.h>
84 #include "linux/synclink.h"
86 #if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_GT_MODULE))
87 #define SYNCLINK_GENERIC_HDLC 1
89 #define SYNCLINK_GENERIC_HDLC 0
93 * module identification
95 static char *driver_name
= "SyncLink GT";
96 static char *driver_version
= "$Revision: 4.50 $";
97 static char *tty_driver_name
= "synclink_gt";
98 static char *tty_dev_prefix
= "ttySLG";
99 MODULE_LICENSE("GPL");
100 #define MGSL_MAGIC 0x5401
101 #define MAX_DEVICES 32
103 static struct pci_device_id pci_table
[] = {
104 {PCI_VENDOR_ID_MICROGATE
, SYNCLINK_GT_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
105 {PCI_VENDOR_ID_MICROGATE
, SYNCLINK_GT2_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
106 {PCI_VENDOR_ID_MICROGATE
, SYNCLINK_GT4_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
107 {PCI_VENDOR_ID_MICROGATE
, SYNCLINK_AC_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
108 {0,}, /* terminate list */
110 MODULE_DEVICE_TABLE(pci
, pci_table
);
112 static int init_one(struct pci_dev
*dev
,const struct pci_device_id
*ent
);
113 static void remove_one(struct pci_dev
*dev
);
114 static struct pci_driver pci_driver
= {
115 .name
= "synclink_gt",
116 .id_table
= pci_table
,
118 .remove
= __devexit_p(remove_one
),
121 static int pci_registered
;
124 * module configuration and status
126 static struct slgt_info
*slgt_device_list
;
127 static int slgt_device_count
;
130 static int debug_level
;
131 static int maxframe
[MAX_DEVICES
];
132 static int dosyncppp
[MAX_DEVICES
];
134 module_param(ttymajor
, int, 0);
135 module_param(debug_level
, int, 0);
136 module_param_array(maxframe
, int, NULL
, 0);
137 module_param_array(dosyncppp
, int, NULL
, 0);
139 MODULE_PARM_DESC(ttymajor
, "TTY major device number override: 0=auto assigned");
140 MODULE_PARM_DESC(debug_level
, "Debug syslog output: 0=disabled, 1 to 5=increasing detail");
141 MODULE_PARM_DESC(maxframe
, "Maximum frame size used by device (4096 to 65535)");
142 MODULE_PARM_DESC(dosyncppp
, "Enable synchronous net device, 0=disable 1=enable");
145 * tty support and callbacks
147 static struct tty_driver
*serial_driver
;
149 static int open(struct tty_struct
*tty
, struct file
* filp
);
150 static void close(struct tty_struct
*tty
, struct file
* filp
);
151 static void hangup(struct tty_struct
*tty
);
152 static void set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
);
154 static int write(struct tty_struct
*tty
, const unsigned char *buf
, int count
);
155 static void put_char(struct tty_struct
*tty
, unsigned char ch
);
156 static void send_xchar(struct tty_struct
*tty
, char ch
);
157 static void wait_until_sent(struct tty_struct
*tty
, int timeout
);
158 static int write_room(struct tty_struct
*tty
);
159 static void flush_chars(struct tty_struct
*tty
);
160 static void flush_buffer(struct tty_struct
*tty
);
161 static void tx_hold(struct tty_struct
*tty
);
162 static void tx_release(struct tty_struct
*tty
);
164 static int ioctl(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
, unsigned long arg
);
165 static int read_proc(char *page
, char **start
, off_t off
, int count
,int *eof
, void *data
);
166 static int chars_in_buffer(struct tty_struct
*tty
);
167 static void throttle(struct tty_struct
* tty
);
168 static void unthrottle(struct tty_struct
* tty
);
169 static void set_break(struct tty_struct
*tty
, int break_state
);
172 * generic HDLC support and callbacks
174 #if SYNCLINK_GENERIC_HDLC
175 #define dev_to_port(D) (dev_to_hdlc(D)->priv)
176 static void hdlcdev_tx_done(struct slgt_info
*info
);
177 static void hdlcdev_rx(struct slgt_info
*info
, char *buf
, int size
);
178 static int hdlcdev_init(struct slgt_info
*info
);
179 static void hdlcdev_exit(struct slgt_info
*info
);
184 * device specific structures, macros and functions
187 #define SLGT_MAX_PORTS 4
188 #define SLGT_REG_SIZE 256
191 * conditional wait facility
194 struct cond_wait
*next
;
199 static void init_cond_wait(struct cond_wait
*w
, unsigned int data
);
200 static void add_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
);
201 static void remove_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
);
202 static void flush_cond_wait(struct cond_wait
**head
);
205 * DMA buffer descriptor and access macros
209 unsigned short count
;
210 unsigned short status
;
211 unsigned int pbuf
; /* physical address of data buffer */
212 unsigned int next
; /* physical address of next descriptor */
214 /* driver book keeping */
215 char *buf
; /* virtual address of data buffer */
216 unsigned int pdesc
; /* physical address of this descriptor */
217 dma_addr_t buf_dma_addr
;
220 #define set_desc_buffer(a,b) (a).pbuf = cpu_to_le32((unsigned int)(b))
221 #define set_desc_next(a,b) (a).next = cpu_to_le32((unsigned int)(b))
222 #define set_desc_count(a,b)(a).count = cpu_to_le16((unsigned short)(b))
223 #define set_desc_eof(a,b) (a).status = cpu_to_le16((b) ? (le16_to_cpu((a).status) | BIT0) : (le16_to_cpu((a).status) & ~BIT0))
224 #define desc_count(a) (le16_to_cpu((a).count))
225 #define desc_status(a) (le16_to_cpu((a).status))
226 #define desc_complete(a) (le16_to_cpu((a).status) & BIT15)
227 #define desc_eof(a) (le16_to_cpu((a).status) & BIT2)
228 #define desc_crc_error(a) (le16_to_cpu((a).status) & BIT1)
229 #define desc_abort(a) (le16_to_cpu((a).status) & BIT0)
230 #define desc_residue(a) ((le16_to_cpu((a).status) & 0x38) >> 3)
232 struct _input_signal_events
{
244 * device instance data structure
247 void *if_ptr
; /* General purpose pointer (used by SPPP) */
249 struct slgt_info
*next_device
; /* device list link */
254 char device_name
[25];
255 struct pci_dev
*pdev
;
257 int port_count
; /* count of ports on adapter */
258 int adapter_num
; /* adapter instance number */
259 int port_num
; /* port instance number */
261 /* array of pointers to port contexts on this adapter */
262 struct slgt_info
*port_array
[SLGT_MAX_PORTS
];
264 int count
; /* count of opens */
265 int line
; /* tty line instance number */
266 unsigned short close_delay
;
267 unsigned short closing_wait
; /* time to wait before closing */
269 struct mgsl_icount icount
;
271 struct tty_struct
*tty
;
273 int x_char
; /* xon/xoff character */
274 int blocked_open
; /* # of blocked opens */
275 unsigned int read_status_mask
;
276 unsigned int ignore_status_mask
;
278 wait_queue_head_t open_wait
;
279 wait_queue_head_t close_wait
;
281 wait_queue_head_t status_event_wait_q
;
282 wait_queue_head_t event_wait_q
;
283 struct timer_list tx_timer
;
284 struct timer_list rx_timer
;
286 unsigned int gpio_present
;
287 struct cond_wait
*gpio_wait_q
;
289 spinlock_t lock
; /* spinlock for synchronizing with ISR */
291 struct work_struct task
;
297 int irq_requested
; /* nonzero if IRQ requested */
298 int irq_occurred
; /* for diagnostics use */
300 /* device configuration */
302 unsigned int bus_type
;
303 unsigned int irq_level
;
304 unsigned long irq_flags
;
306 unsigned char __iomem
* reg_addr
; /* memory mapped registers address */
308 int reg_addr_requested
;
310 MGSL_PARAMS params
; /* communications parameters */
312 u32 max_frame_size
; /* as set by device config */
314 unsigned int raw_rx_size
;
315 unsigned int if_mode
;
325 unsigned char signals
; /* serial signal states */
326 int init_error
; /* initialization error */
328 unsigned char *tx_buf
;
331 char flag_buf
[MAX_ASYNC_BUFFER_SIZE
];
332 char char_buf
[MAX_ASYNC_BUFFER_SIZE
];
333 BOOLEAN drop_rts_on_tx_done
;
334 struct _input_signal_events input_signal_events
;
336 int dcd_chkcount
; /* check counts to prevent */
337 int cts_chkcount
; /* too many IRQs if a signal */
338 int dsr_chkcount
; /* is floating */
341 char *bufs
; /* virtual address of DMA buffer lists */
342 dma_addr_t bufs_dma_addr
; /* physical address of buffer descriptors */
344 unsigned int rbuf_count
;
345 struct slgt_desc
*rbufs
;
346 unsigned int rbuf_current
;
347 unsigned int rbuf_index
;
349 unsigned int tbuf_count
;
350 struct slgt_desc
*tbufs
;
351 unsigned int tbuf_current
;
352 unsigned int tbuf_start
;
354 unsigned char *tmp_rbuf
;
355 unsigned int tmp_rbuf_count
;
357 /* SPPP/Cisco HDLC device parts */
362 #if SYNCLINK_GENERIC_HDLC
363 struct net_device
*netdev
;
368 static MGSL_PARAMS default_params
= {
369 .mode
= MGSL_MODE_HDLC
,
371 .flags
= HDLC_FLAG_UNDERRUN_ABORT15
,
372 .encoding
= HDLC_ENCODING_NRZI_SPACE
,
375 .crc_type
= HDLC_CRC_16_CCITT
,
376 .preamble_length
= HDLC_PREAMBLE_LENGTH_8BITS
,
377 .preamble
= HDLC_PREAMBLE_PATTERN_NONE
,
381 .parity
= ASYNC_PARITY_NONE
386 #define BH_TRANSMIT 2
388 #define IO_PIN_SHUTDOWN_LIMIT 100
390 #define DMABUFSIZE 256
391 #define DESC_LIST_SIZE 4096
393 #define MASK_PARITY BIT1
394 #define MASK_FRAMING BIT0
395 #define MASK_BREAK BIT14
396 #define MASK_OVERRUN BIT4
398 #define GSR 0x00 /* global status */
399 #define JCR 0x04 /* JTAG control */
400 #define IODR 0x08 /* GPIO direction */
401 #define IOER 0x0c /* GPIO interrupt enable */
402 #define IOVR 0x10 /* GPIO value */
403 #define IOSR 0x14 /* GPIO interrupt status */
404 #define TDR 0x80 /* tx data */
405 #define RDR 0x80 /* rx data */
406 #define TCR 0x82 /* tx control */
407 #define TIR 0x84 /* tx idle */
408 #define TPR 0x85 /* tx preamble */
409 #define RCR 0x86 /* rx control */
410 #define VCR 0x88 /* V.24 control */
411 #define CCR 0x89 /* clock control */
412 #define BDR 0x8a /* baud divisor */
413 #define SCR 0x8c /* serial control */
414 #define SSR 0x8e /* serial status */
415 #define RDCSR 0x90 /* rx DMA control/status */
416 #define TDCSR 0x94 /* tx DMA control/status */
417 #define RDDAR 0x98 /* rx DMA descriptor address */
418 #define TDDAR 0x9c /* tx DMA descriptor address */
421 #define RXBREAK BIT14
422 #define IRQ_TXDATA BIT13
423 #define IRQ_TXIDLE BIT12
424 #define IRQ_TXUNDER BIT11 /* HDLC */
425 #define IRQ_RXDATA BIT10
426 #define IRQ_RXIDLE BIT9 /* HDLC */
427 #define IRQ_RXBREAK BIT9 /* async */
428 #define IRQ_RXOVER BIT8
433 #define IRQ_ALL 0x3ff0
434 #define IRQ_MASTER BIT0
436 #define slgt_irq_on(info, mask) \
437 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) | (mask)))
438 #define slgt_irq_off(info, mask) \
439 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) & ~(mask)))
441 static __u8
rd_reg8(struct slgt_info
*info
, unsigned int addr
);
442 static void wr_reg8(struct slgt_info
*info
, unsigned int addr
, __u8 value
);
443 static __u16
rd_reg16(struct slgt_info
*info
, unsigned int addr
);
444 static void wr_reg16(struct slgt_info
*info
, unsigned int addr
, __u16 value
);
445 static __u32
rd_reg32(struct slgt_info
*info
, unsigned int addr
);
446 static void wr_reg32(struct slgt_info
*info
, unsigned int addr
, __u32 value
);
448 static void msc_set_vcr(struct slgt_info
*info
);
450 static int startup(struct slgt_info
*info
);
451 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,struct slgt_info
*info
);
452 static void shutdown(struct slgt_info
*info
);
453 static void program_hw(struct slgt_info
*info
);
454 static void change_params(struct slgt_info
*info
);
456 static int register_test(struct slgt_info
*info
);
457 static int irq_test(struct slgt_info
*info
);
458 static int loopback_test(struct slgt_info
*info
);
459 static int adapter_test(struct slgt_info
*info
);
461 static void reset_adapter(struct slgt_info
*info
);
462 static void reset_port(struct slgt_info
*info
);
463 static void async_mode(struct slgt_info
*info
);
464 static void sync_mode(struct slgt_info
*info
);
466 static void rx_stop(struct slgt_info
*info
);
467 static void rx_start(struct slgt_info
*info
);
468 static void reset_rbufs(struct slgt_info
*info
);
469 static void free_rbufs(struct slgt_info
*info
, unsigned int first
, unsigned int last
);
470 static void rdma_reset(struct slgt_info
*info
);
471 static int rx_get_frame(struct slgt_info
*info
);
472 static int rx_get_buf(struct slgt_info
*info
);
474 static void tx_start(struct slgt_info
*info
);
475 static void tx_stop(struct slgt_info
*info
);
476 static void tx_set_idle(struct slgt_info
*info
);
477 static unsigned int free_tbuf_count(struct slgt_info
*info
);
478 static void reset_tbufs(struct slgt_info
*info
);
479 static void tdma_reset(struct slgt_info
*info
);
480 static void tdma_start(struct slgt_info
*info
);
481 static void tx_load(struct slgt_info
*info
, const char *buf
, unsigned int count
);
483 static void get_signals(struct slgt_info
*info
);
484 static void set_signals(struct slgt_info
*info
);
485 static void enable_loopback(struct slgt_info
*info
);
486 static void set_rate(struct slgt_info
*info
, u32 data_rate
);
488 static int bh_action(struct slgt_info
*info
);
489 static void bh_handler(struct work_struct
*work
);
490 static void bh_transmit(struct slgt_info
*info
);
491 static void isr_serial(struct slgt_info
*info
);
492 static void isr_rdma(struct slgt_info
*info
);
493 static void isr_txeom(struct slgt_info
*info
, unsigned short status
);
494 static void isr_tdma(struct slgt_info
*info
);
495 static irqreturn_t
slgt_interrupt(int irq
, void *dev_id
);
497 static int alloc_dma_bufs(struct slgt_info
*info
);
498 static void free_dma_bufs(struct slgt_info
*info
);
499 static int alloc_desc(struct slgt_info
*info
);
500 static void free_desc(struct slgt_info
*info
);
501 static int alloc_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
);
502 static void free_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
);
504 static int alloc_tmp_rbuf(struct slgt_info
*info
);
505 static void free_tmp_rbuf(struct slgt_info
*info
);
507 static void tx_timeout(unsigned long context
);
508 static void rx_timeout(unsigned long context
);
513 static int get_stats(struct slgt_info
*info
, struct mgsl_icount __user
*user_icount
);
514 static int get_params(struct slgt_info
*info
, MGSL_PARAMS __user
*params
);
515 static int set_params(struct slgt_info
*info
, MGSL_PARAMS __user
*params
);
516 static int get_txidle(struct slgt_info
*info
, int __user
*idle_mode
);
517 static int set_txidle(struct slgt_info
*info
, int idle_mode
);
518 static int tx_enable(struct slgt_info
*info
, int enable
);
519 static int tx_abort(struct slgt_info
*info
);
520 static int rx_enable(struct slgt_info
*info
, int enable
);
521 static int modem_input_wait(struct slgt_info
*info
,int arg
);
522 static int wait_mgsl_event(struct slgt_info
*info
, int __user
*mask_ptr
);
523 static int tiocmget(struct tty_struct
*tty
, struct file
*file
);
524 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
525 unsigned int set
, unsigned int clear
);
526 static void set_break(struct tty_struct
*tty
, int break_state
);
527 static int get_interface(struct slgt_info
*info
, int __user
*if_mode
);
528 static int set_interface(struct slgt_info
*info
, int if_mode
);
529 static int set_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
530 static int get_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
531 static int wait_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
536 static void add_device(struct slgt_info
*info
);
537 static void device_init(int adapter_num
, struct pci_dev
*pdev
);
538 static int claim_resources(struct slgt_info
*info
);
539 static void release_resources(struct slgt_info
*info
);
558 static void trace_block(struct slgt_info
*info
, const char *data
, int count
, const char *label
)
562 printk("%s %s data:\n",info
->device_name
, label
);
564 linecount
= (count
> 16) ? 16 : count
;
565 for(i
=0; i
< linecount
; i
++)
566 printk("%02X ",(unsigned char)data
[i
]);
569 for(i
=0;i
<linecount
;i
++) {
570 if (data
[i
]>=040 && data
[i
]<=0176)
571 printk("%c",data
[i
]);
581 #define DBGDATA(info, buf, size, label)
585 static void dump_tbufs(struct slgt_info
*info
)
588 printk("tbuf_current=%d\n", info
->tbuf_current
);
589 for (i
=0 ; i
< info
->tbuf_count
; i
++) {
590 printk("%d: count=%04X status=%04X\n",
591 i
, le16_to_cpu(info
->tbufs
[i
].count
), le16_to_cpu(info
->tbufs
[i
].status
));
595 #define DBGTBUF(info)
599 static void dump_rbufs(struct slgt_info
*info
)
602 printk("rbuf_current=%d\n", info
->rbuf_current
);
603 for (i
=0 ; i
< info
->rbuf_count
; i
++) {
604 printk("%d: count=%04X status=%04X\n",
605 i
, le16_to_cpu(info
->rbufs
[i
].count
), le16_to_cpu(info
->rbufs
[i
].status
));
609 #define DBGRBUF(info)
612 static inline int sanity_check(struct slgt_info
*info
, char *devname
, const char *name
)
616 printk("null struct slgt_info for (%s) in %s\n", devname
, name
);
619 if (info
->magic
!= MGSL_MAGIC
) {
620 printk("bad magic number struct slgt_info (%s) in %s\n", devname
, name
);
631 * line discipline callback wrappers
633 * The wrappers maintain line discipline references
634 * while calling into the line discipline.
636 * ldisc_receive_buf - pass receive data to line discipline
638 static void ldisc_receive_buf(struct tty_struct
*tty
,
639 const __u8
*data
, char *flags
, int count
)
641 struct tty_ldisc
*ld
;
644 ld
= tty_ldisc_ref(tty
);
647 ld
->receive_buf(tty
, data
, flags
, count
);
654 static int open(struct tty_struct
*tty
, struct file
*filp
)
656 struct slgt_info
*info
;
661 if ((line
< 0) || (line
>= slgt_device_count
)) {
662 DBGERR(("%s: open with invalid line #%d.\n", driver_name
, line
));
666 info
= slgt_device_list
;
667 while(info
&& info
->line
!= line
)
668 info
= info
->next_device
;
669 if (sanity_check(info
, tty
->name
, "open"))
671 if (info
->init_error
) {
672 DBGERR(("%s init error=%d\n", info
->device_name
, info
->init_error
));
676 tty
->driver_data
= info
;
679 DBGINFO(("%s open, old ref count = %d\n", info
->device_name
, info
->count
));
681 /* If port is closing, signal caller to try again */
682 if (tty_hung_up_p(filp
) || info
->flags
& ASYNC_CLOSING
){
683 if (info
->flags
& ASYNC_CLOSING
)
684 interruptible_sleep_on(&info
->close_wait
);
685 retval
= ((info
->flags
& ASYNC_HUP_NOTIFY
) ?
686 -EAGAIN
: -ERESTARTSYS
);
690 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
692 spin_lock_irqsave(&info
->netlock
, flags
);
693 if (info
->netcount
) {
695 spin_unlock_irqrestore(&info
->netlock
, flags
);
699 spin_unlock_irqrestore(&info
->netlock
, flags
);
701 if (info
->count
== 1) {
702 /* 1st open on this device, init hardware */
703 retval
= startup(info
);
708 retval
= block_til_ready(tty
, filp
, info
);
710 DBGINFO(("%s block_til_ready rc=%d\n", info
->device_name
, retval
));
719 info
->tty
= NULL
; /* tty layer will release tty struct */
724 DBGINFO(("%s open rc=%d\n", info
->device_name
, retval
));
728 static void close(struct tty_struct
*tty
, struct file
*filp
)
730 struct slgt_info
*info
= tty
->driver_data
;
732 if (sanity_check(info
, tty
->name
, "close"))
734 DBGINFO(("%s close entry, count=%d\n", info
->device_name
, info
->count
));
739 if (tty_hung_up_p(filp
))
742 if ((tty
->count
== 1) && (info
->count
!= 1)) {
744 * tty->count is 1 and the tty structure will be freed.
745 * info->count should be one in this case.
746 * if it's not, correct it so that the port is shutdown.
748 DBGERR(("%s close: bad refcount; tty->count=1, "
749 "info->count=%d\n", info
->device_name
, info
->count
));
755 /* if at least one open remaining, leave hardware active */
759 info
->flags
|= ASYNC_CLOSING
;
761 /* set tty->closing to notify line discipline to
762 * only process XON/XOFF characters. Only the N_TTY
763 * discipline appears to use this (ppp does not).
767 /* wait for transmit data to clear all layers */
769 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
) {
770 DBGINFO(("%s call tty_wait_until_sent\n", info
->device_name
));
771 tty_wait_until_sent(tty
, info
->closing_wait
);
774 if (info
->flags
& ASYNC_INITIALIZED
)
775 wait_until_sent(tty
, info
->timeout
);
776 if (tty
->driver
->flush_buffer
)
777 tty
->driver
->flush_buffer(tty
);
778 tty_ldisc_flush(tty
);
785 if (info
->blocked_open
) {
786 if (info
->close_delay
) {
787 msleep_interruptible(jiffies_to_msecs(info
->close_delay
));
789 wake_up_interruptible(&info
->open_wait
);
792 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
794 wake_up_interruptible(&info
->close_wait
);
797 DBGINFO(("%s close exit, count=%d\n", tty
->driver
->name
, info
->count
));
800 static void hangup(struct tty_struct
*tty
)
802 struct slgt_info
*info
= tty
->driver_data
;
804 if (sanity_check(info
, tty
->name
, "hangup"))
806 DBGINFO(("%s hangup\n", info
->device_name
));
812 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
815 wake_up_interruptible(&info
->open_wait
);
818 static void set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
820 struct slgt_info
*info
= tty
->driver_data
;
823 DBGINFO(("%s set_termios\n", tty
->driver
->name
));
827 /* Handle transition to B0 status */
828 if (old_termios
->c_cflag
& CBAUD
&&
829 !(tty
->termios
->c_cflag
& CBAUD
)) {
830 info
->signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
831 spin_lock_irqsave(&info
->lock
,flags
);
833 spin_unlock_irqrestore(&info
->lock
,flags
);
836 /* Handle transition away from B0 status */
837 if (!(old_termios
->c_cflag
& CBAUD
) &&
838 tty
->termios
->c_cflag
& CBAUD
) {
839 info
->signals
|= SerialSignal_DTR
;
840 if (!(tty
->termios
->c_cflag
& CRTSCTS
) ||
841 !test_bit(TTY_THROTTLED
, &tty
->flags
)) {
842 info
->signals
|= SerialSignal_RTS
;
844 spin_lock_irqsave(&info
->lock
,flags
);
846 spin_unlock_irqrestore(&info
->lock
,flags
);
849 /* Handle turning off CRTSCTS */
850 if (old_termios
->c_cflag
& CRTSCTS
&&
851 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
857 static int write(struct tty_struct
*tty
,
858 const unsigned char *buf
, int count
)
861 struct slgt_info
*info
= tty
->driver_data
;
864 if (sanity_check(info
, tty
->name
, "write"))
866 DBGINFO(("%s write count=%d\n", info
->device_name
, count
));
871 if (count
> info
->max_frame_size
) {
879 if (info
->params
.mode
== MGSL_MODE_RAW
||
880 info
->params
.mode
== MGSL_MODE_MONOSYNC
||
881 info
->params
.mode
== MGSL_MODE_BISYNC
) {
882 unsigned int bufs_needed
= (count
/DMABUFSIZE
);
883 unsigned int bufs_free
= free_tbuf_count(info
);
884 if (count
% DMABUFSIZE
)
886 if (bufs_needed
> bufs_free
)
891 if (info
->tx_count
) {
892 /* send accumulated data from send_char() calls */
893 /* as frame and wait before accepting more data. */
894 tx_load(info
, info
->tx_buf
, info
->tx_count
);
899 ret
= info
->tx_count
= count
;
900 tx_load(info
, buf
, count
);
904 if (info
->tx_count
&& !tty
->stopped
&& !tty
->hw_stopped
) {
905 spin_lock_irqsave(&info
->lock
,flags
);
906 if (!info
->tx_active
)
910 spin_unlock_irqrestore(&info
->lock
,flags
);
914 DBGINFO(("%s write rc=%d\n", info
->device_name
, ret
));
918 static void put_char(struct tty_struct
*tty
, unsigned char ch
)
920 struct slgt_info
*info
= tty
->driver_data
;
923 if (sanity_check(info
, tty
->name
, "put_char"))
925 DBGINFO(("%s put_char(%d)\n", info
->device_name
, ch
));
928 spin_lock_irqsave(&info
->lock
,flags
);
929 if (!info
->tx_active
&& (info
->tx_count
< info
->max_frame_size
))
930 info
->tx_buf
[info
->tx_count
++] = ch
;
931 spin_unlock_irqrestore(&info
->lock
,flags
);
934 static void send_xchar(struct tty_struct
*tty
, char ch
)
936 struct slgt_info
*info
= tty
->driver_data
;
939 if (sanity_check(info
, tty
->name
, "send_xchar"))
941 DBGINFO(("%s send_xchar(%d)\n", info
->device_name
, ch
));
944 spin_lock_irqsave(&info
->lock
,flags
);
945 if (!info
->tx_enabled
)
947 spin_unlock_irqrestore(&info
->lock
,flags
);
951 static void wait_until_sent(struct tty_struct
*tty
, int timeout
)
953 struct slgt_info
*info
= tty
->driver_data
;
954 unsigned long orig_jiffies
, char_time
;
958 if (sanity_check(info
, tty
->name
, "wait_until_sent"))
960 DBGINFO(("%s wait_until_sent entry\n", info
->device_name
));
961 if (!(info
->flags
& ASYNC_INITIALIZED
))
964 orig_jiffies
= jiffies
;
966 /* Set check interval to 1/5 of estimated time to
967 * send a character, and make it at least 1. The check
968 * interval should also be less than the timeout.
969 * Note: use tight timings here to satisfy the NIST-PCTS.
972 if (info
->params
.data_rate
) {
973 char_time
= info
->timeout
/(32 * 5);
980 char_time
= min_t(unsigned long, char_time
, timeout
);
982 while (info
->tx_active
) {
983 msleep_interruptible(jiffies_to_msecs(char_time
));
984 if (signal_pending(current
))
986 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
991 DBGINFO(("%s wait_until_sent exit\n", info
->device_name
));
994 static int write_room(struct tty_struct
*tty
)
996 struct slgt_info
*info
= tty
->driver_data
;
999 if (sanity_check(info
, tty
->name
, "write_room"))
1001 ret
= (info
->tx_active
) ? 0 : HDLC_MAX_FRAME_SIZE
;
1002 DBGINFO(("%s write_room=%d\n", info
->device_name
, ret
));
1006 static void flush_chars(struct tty_struct
*tty
)
1008 struct slgt_info
*info
= tty
->driver_data
;
1009 unsigned long flags
;
1011 if (sanity_check(info
, tty
->name
, "flush_chars"))
1013 DBGINFO(("%s flush_chars entry tx_count=%d\n", info
->device_name
, info
->tx_count
));
1015 if (info
->tx_count
<= 0 || tty
->stopped
||
1016 tty
->hw_stopped
|| !info
->tx_buf
)
1019 DBGINFO(("%s flush_chars start transmit\n", info
->device_name
));
1021 spin_lock_irqsave(&info
->lock
,flags
);
1022 if (!info
->tx_active
&& info
->tx_count
) {
1023 tx_load(info
, info
->tx_buf
,info
->tx_count
);
1026 spin_unlock_irqrestore(&info
->lock
,flags
);
1029 static void flush_buffer(struct tty_struct
*tty
)
1031 struct slgt_info
*info
= tty
->driver_data
;
1032 unsigned long flags
;
1034 if (sanity_check(info
, tty
->name
, "flush_buffer"))
1036 DBGINFO(("%s flush_buffer\n", info
->device_name
));
1038 spin_lock_irqsave(&info
->lock
,flags
);
1039 if (!info
->tx_active
)
1041 spin_unlock_irqrestore(&info
->lock
,flags
);
1047 * throttle (stop) transmitter
1049 static void tx_hold(struct tty_struct
*tty
)
1051 struct slgt_info
*info
= tty
->driver_data
;
1052 unsigned long flags
;
1054 if (sanity_check(info
, tty
->name
, "tx_hold"))
1056 DBGINFO(("%s tx_hold\n", info
->device_name
));
1057 spin_lock_irqsave(&info
->lock
,flags
);
1058 if (info
->tx_enabled
&& info
->params
.mode
== MGSL_MODE_ASYNC
)
1060 spin_unlock_irqrestore(&info
->lock
,flags
);
1064 * release (start) transmitter
1066 static void tx_release(struct tty_struct
*tty
)
1068 struct slgt_info
*info
= tty
->driver_data
;
1069 unsigned long flags
;
1071 if (sanity_check(info
, tty
->name
, "tx_release"))
1073 DBGINFO(("%s tx_release\n", info
->device_name
));
1074 spin_lock_irqsave(&info
->lock
,flags
);
1075 if (!info
->tx_active
&& info
->tx_count
) {
1076 tx_load(info
, info
->tx_buf
, info
->tx_count
);
1079 spin_unlock_irqrestore(&info
->lock
,flags
);
1083 * Service an IOCTL request
1087 * tty pointer to tty instance data
1088 * file pointer to associated file object for device
1089 * cmd IOCTL command code
1090 * arg command argument/context
1092 * Return 0 if success, otherwise error code
1094 static int ioctl(struct tty_struct
*tty
, struct file
*file
,
1095 unsigned int cmd
, unsigned long arg
)
1097 struct slgt_info
*info
= tty
->driver_data
;
1098 struct mgsl_icount cnow
; /* kernel counter temps */
1099 struct serial_icounter_struct __user
*p_cuser
; /* user space */
1100 unsigned long flags
;
1101 void __user
*argp
= (void __user
*)arg
;
1103 if (sanity_check(info
, tty
->name
, "ioctl"))
1105 DBGINFO(("%s ioctl() cmd=%08X\n", info
->device_name
, cmd
));
1107 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1108 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1109 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1114 case MGSL_IOCGPARAMS
:
1115 return get_params(info
, argp
);
1116 case MGSL_IOCSPARAMS
:
1117 return set_params(info
, argp
);
1118 case MGSL_IOCGTXIDLE
:
1119 return get_txidle(info
, argp
);
1120 case MGSL_IOCSTXIDLE
:
1121 return set_txidle(info
, (int)arg
);
1122 case MGSL_IOCTXENABLE
:
1123 return tx_enable(info
, (int)arg
);
1124 case MGSL_IOCRXENABLE
:
1125 return rx_enable(info
, (int)arg
);
1126 case MGSL_IOCTXABORT
:
1127 return tx_abort(info
);
1128 case MGSL_IOCGSTATS
:
1129 return get_stats(info
, argp
);
1130 case MGSL_IOCWAITEVENT
:
1131 return wait_mgsl_event(info
, argp
);
1133 return modem_input_wait(info
,(int)arg
);
1135 return get_interface(info
, argp
);
1137 return set_interface(info
,(int)arg
);
1139 return set_gpio(info
, argp
);
1141 return get_gpio(info
, argp
);
1142 case MGSL_IOCWAITGPIO
:
1143 return wait_gpio(info
, argp
);
1145 spin_lock_irqsave(&info
->lock
,flags
);
1146 cnow
= info
->icount
;
1147 spin_unlock_irqrestore(&info
->lock
,flags
);
1149 if (put_user(cnow
.cts
, &p_cuser
->cts
) ||
1150 put_user(cnow
.dsr
, &p_cuser
->dsr
) ||
1151 put_user(cnow
.rng
, &p_cuser
->rng
) ||
1152 put_user(cnow
.dcd
, &p_cuser
->dcd
) ||
1153 put_user(cnow
.rx
, &p_cuser
->rx
) ||
1154 put_user(cnow
.tx
, &p_cuser
->tx
) ||
1155 put_user(cnow
.frame
, &p_cuser
->frame
) ||
1156 put_user(cnow
.overrun
, &p_cuser
->overrun
) ||
1157 put_user(cnow
.parity
, &p_cuser
->parity
) ||
1158 put_user(cnow
.brk
, &p_cuser
->brk
) ||
1159 put_user(cnow
.buf_overrun
, &p_cuser
->buf_overrun
))
1163 return -ENOIOCTLCMD
;
1169 * support for 32 bit ioctl calls on 64 bit systems
1171 #ifdef CONFIG_COMPAT
1172 static long get_params32(struct slgt_info
*info
, struct MGSL_PARAMS32 __user
*user_params
)
1174 struct MGSL_PARAMS32 tmp_params
;
1176 DBGINFO(("%s get_params32\n", info
->device_name
));
1177 tmp_params
.mode
= (compat_ulong_t
)info
->params
.mode
;
1178 tmp_params
.loopback
= info
->params
.loopback
;
1179 tmp_params
.flags
= info
->params
.flags
;
1180 tmp_params
.encoding
= info
->params
.encoding
;
1181 tmp_params
.clock_speed
= (compat_ulong_t
)info
->params
.clock_speed
;
1182 tmp_params
.addr_filter
= info
->params
.addr_filter
;
1183 tmp_params
.crc_type
= info
->params
.crc_type
;
1184 tmp_params
.preamble_length
= info
->params
.preamble_length
;
1185 tmp_params
.preamble
= info
->params
.preamble
;
1186 tmp_params
.data_rate
= (compat_ulong_t
)info
->params
.data_rate
;
1187 tmp_params
.data_bits
= info
->params
.data_bits
;
1188 tmp_params
.stop_bits
= info
->params
.stop_bits
;
1189 tmp_params
.parity
= info
->params
.parity
;
1190 if (copy_to_user(user_params
, &tmp_params
, sizeof(struct MGSL_PARAMS32
)))
1195 static long set_params32(struct slgt_info
*info
, struct MGSL_PARAMS32 __user
*new_params
)
1197 struct MGSL_PARAMS32 tmp_params
;
1199 DBGINFO(("%s set_params32\n", info
->device_name
));
1200 if (copy_from_user(&tmp_params
, new_params
, sizeof(struct MGSL_PARAMS32
)))
1203 spin_lock(&info
->lock
);
1204 info
->params
.mode
= tmp_params
.mode
;
1205 info
->params
.loopback
= tmp_params
.loopback
;
1206 info
->params
.flags
= tmp_params
.flags
;
1207 info
->params
.encoding
= tmp_params
.encoding
;
1208 info
->params
.clock_speed
= tmp_params
.clock_speed
;
1209 info
->params
.addr_filter
= tmp_params
.addr_filter
;
1210 info
->params
.crc_type
= tmp_params
.crc_type
;
1211 info
->params
.preamble_length
= tmp_params
.preamble_length
;
1212 info
->params
.preamble
= tmp_params
.preamble
;
1213 info
->params
.data_rate
= tmp_params
.data_rate
;
1214 info
->params
.data_bits
= tmp_params
.data_bits
;
1215 info
->params
.stop_bits
= tmp_params
.stop_bits
;
1216 info
->params
.parity
= tmp_params
.parity
;
1217 spin_unlock(&info
->lock
);
1219 change_params(info
);
1224 static long slgt_compat_ioctl(struct tty_struct
*tty
, struct file
*file
,
1225 unsigned int cmd
, unsigned long arg
)
1227 struct slgt_info
*info
= tty
->driver_data
;
1228 int rc
= -ENOIOCTLCMD
;
1230 if (sanity_check(info
, tty
->name
, "compat_ioctl"))
1232 DBGINFO(("%s compat_ioctl() cmd=%08X\n", info
->device_name
, cmd
));
1236 case MGSL_IOCSPARAMS32
:
1237 rc
= set_params32(info
, compat_ptr(arg
));
1240 case MGSL_IOCGPARAMS32
:
1241 rc
= get_params32(info
, compat_ptr(arg
));
1244 case MGSL_IOCGPARAMS
:
1245 case MGSL_IOCSPARAMS
:
1246 case MGSL_IOCGTXIDLE
:
1247 case MGSL_IOCGSTATS
:
1248 case MGSL_IOCWAITEVENT
:
1252 case MGSL_IOCWAITGPIO
:
1254 rc
= ioctl(tty
, file
, cmd
, (unsigned long)(compat_ptr(arg
)));
1257 case MGSL_IOCSTXIDLE
:
1258 case MGSL_IOCTXENABLE
:
1259 case MGSL_IOCRXENABLE
:
1260 case MGSL_IOCTXABORT
:
1263 rc
= ioctl(tty
, file
, cmd
, arg
);
1267 DBGINFO(("%s compat_ioctl() cmd=%08X rc=%d\n", info
->device_name
, cmd
, rc
));
1271 #define slgt_compat_ioctl NULL
1272 #endif /* ifdef CONFIG_COMPAT */
1277 static inline int line_info(char *buf
, struct slgt_info
*info
)
1281 unsigned long flags
;
1283 ret
= sprintf(buf
, "%s: IO=%08X IRQ=%d MaxFrameSize=%u\n",
1284 info
->device_name
, info
->phys_reg_addr
,
1285 info
->irq_level
, info
->max_frame_size
);
1287 /* output current serial signal states */
1288 spin_lock_irqsave(&info
->lock
,flags
);
1290 spin_unlock_irqrestore(&info
->lock
,flags
);
1294 if (info
->signals
& SerialSignal_RTS
)
1295 strcat(stat_buf
, "|RTS");
1296 if (info
->signals
& SerialSignal_CTS
)
1297 strcat(stat_buf
, "|CTS");
1298 if (info
->signals
& SerialSignal_DTR
)
1299 strcat(stat_buf
, "|DTR");
1300 if (info
->signals
& SerialSignal_DSR
)
1301 strcat(stat_buf
, "|DSR");
1302 if (info
->signals
& SerialSignal_DCD
)
1303 strcat(stat_buf
, "|CD");
1304 if (info
->signals
& SerialSignal_RI
)
1305 strcat(stat_buf
, "|RI");
1307 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
1308 ret
+= sprintf(buf
+ret
, "\tHDLC txok:%d rxok:%d",
1309 info
->icount
.txok
, info
->icount
.rxok
);
1310 if (info
->icount
.txunder
)
1311 ret
+= sprintf(buf
+ret
, " txunder:%d", info
->icount
.txunder
);
1312 if (info
->icount
.txabort
)
1313 ret
+= sprintf(buf
+ret
, " txabort:%d", info
->icount
.txabort
);
1314 if (info
->icount
.rxshort
)
1315 ret
+= sprintf(buf
+ret
, " rxshort:%d", info
->icount
.rxshort
);
1316 if (info
->icount
.rxlong
)
1317 ret
+= sprintf(buf
+ret
, " rxlong:%d", info
->icount
.rxlong
);
1318 if (info
->icount
.rxover
)
1319 ret
+= sprintf(buf
+ret
, " rxover:%d", info
->icount
.rxover
);
1320 if (info
->icount
.rxcrc
)
1321 ret
+= sprintf(buf
+ret
, " rxcrc:%d", info
->icount
.rxcrc
);
1323 ret
+= sprintf(buf
+ret
, "\tASYNC tx:%d rx:%d",
1324 info
->icount
.tx
, info
->icount
.rx
);
1325 if (info
->icount
.frame
)
1326 ret
+= sprintf(buf
+ret
, " fe:%d", info
->icount
.frame
);
1327 if (info
->icount
.parity
)
1328 ret
+= sprintf(buf
+ret
, " pe:%d", info
->icount
.parity
);
1329 if (info
->icount
.brk
)
1330 ret
+= sprintf(buf
+ret
, " brk:%d", info
->icount
.brk
);
1331 if (info
->icount
.overrun
)
1332 ret
+= sprintf(buf
+ret
, " oe:%d", info
->icount
.overrun
);
1335 /* Append serial signal status to end */
1336 ret
+= sprintf(buf
+ret
, " %s\n", stat_buf
+1);
1338 ret
+= sprintf(buf
+ret
, "\ttxactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
1339 info
->tx_active
,info
->bh_requested
,info
->bh_running
,
1345 /* Called to print information about devices
1347 static int read_proc(char *page
, char **start
, off_t off
, int count
,
1348 int *eof
, void *data
)
1352 struct slgt_info
*info
;
1354 len
+= sprintf(page
, "synclink_gt driver:%s\n", driver_version
);
1356 info
= slgt_device_list
;
1358 l
= line_info(page
+ len
, info
);
1360 if (len
+begin
> off
+count
)
1362 if (len
+begin
< off
) {
1366 info
= info
->next_device
;
1371 if (off
>= len
+begin
)
1373 *start
= page
+ (off
-begin
);
1374 return ((count
< begin
+len
-off
) ? count
: begin
+len
-off
);
1378 * return count of bytes in transmit buffer
1380 static int chars_in_buffer(struct tty_struct
*tty
)
1382 struct slgt_info
*info
= tty
->driver_data
;
1383 if (sanity_check(info
, tty
->name
, "chars_in_buffer"))
1385 DBGINFO(("%s chars_in_buffer()=%d\n", info
->device_name
, info
->tx_count
));
1386 return info
->tx_count
;
1390 * signal remote device to throttle send data (our receive data)
1392 static void throttle(struct tty_struct
* tty
)
1394 struct slgt_info
*info
= tty
->driver_data
;
1395 unsigned long flags
;
1397 if (sanity_check(info
, tty
->name
, "throttle"))
1399 DBGINFO(("%s throttle\n", info
->device_name
));
1401 send_xchar(tty
, STOP_CHAR(tty
));
1402 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1403 spin_lock_irqsave(&info
->lock
,flags
);
1404 info
->signals
&= ~SerialSignal_RTS
;
1406 spin_unlock_irqrestore(&info
->lock
,flags
);
1411 * signal remote device to stop throttling send data (our receive data)
1413 static void unthrottle(struct tty_struct
* tty
)
1415 struct slgt_info
*info
= tty
->driver_data
;
1416 unsigned long flags
;
1418 if (sanity_check(info
, tty
->name
, "unthrottle"))
1420 DBGINFO(("%s unthrottle\n", info
->device_name
));
1425 send_xchar(tty
, START_CHAR(tty
));
1427 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1428 spin_lock_irqsave(&info
->lock
,flags
);
1429 info
->signals
|= SerialSignal_RTS
;
1431 spin_unlock_irqrestore(&info
->lock
,flags
);
1436 * set or clear transmit break condition
1437 * break_state -1=set break condition, 0=clear
1439 static void set_break(struct tty_struct
*tty
, int break_state
)
1441 struct slgt_info
*info
= tty
->driver_data
;
1442 unsigned short value
;
1443 unsigned long flags
;
1445 if (sanity_check(info
, tty
->name
, "set_break"))
1447 DBGINFO(("%s set_break(%d)\n", info
->device_name
, break_state
));
1449 spin_lock_irqsave(&info
->lock
,flags
);
1450 value
= rd_reg16(info
, TCR
);
1451 if (break_state
== -1)
1455 wr_reg16(info
, TCR
, value
);
1456 spin_unlock_irqrestore(&info
->lock
,flags
);
1459 #if SYNCLINK_GENERIC_HDLC
1462 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
1463 * set encoding and frame check sequence (FCS) options
1465 * dev pointer to network device structure
1466 * encoding serial encoding setting
1467 * parity FCS setting
1469 * returns 0 if success, otherwise error code
1471 static int hdlcdev_attach(struct net_device
*dev
, unsigned short encoding
,
1472 unsigned short parity
)
1474 struct slgt_info
*info
= dev_to_port(dev
);
1475 unsigned char new_encoding
;
1476 unsigned short new_crctype
;
1478 /* return error if TTY interface open */
1482 DBGINFO(("%s hdlcdev_attach\n", info
->device_name
));
1486 case ENCODING_NRZ
: new_encoding
= HDLC_ENCODING_NRZ
; break;
1487 case ENCODING_NRZI
: new_encoding
= HDLC_ENCODING_NRZI_SPACE
; break;
1488 case ENCODING_FM_MARK
: new_encoding
= HDLC_ENCODING_BIPHASE_MARK
; break;
1489 case ENCODING_FM_SPACE
: new_encoding
= HDLC_ENCODING_BIPHASE_SPACE
; break;
1490 case ENCODING_MANCHESTER
: new_encoding
= HDLC_ENCODING_BIPHASE_LEVEL
; break;
1491 default: return -EINVAL
;
1496 case PARITY_NONE
: new_crctype
= HDLC_CRC_NONE
; break;
1497 case PARITY_CRC16_PR1_CCITT
: new_crctype
= HDLC_CRC_16_CCITT
; break;
1498 case PARITY_CRC32_PR1_CCITT
: new_crctype
= HDLC_CRC_32_CCITT
; break;
1499 default: return -EINVAL
;
1502 info
->params
.encoding
= new_encoding
;
1503 info
->params
.crc_type
= new_crctype
;
1505 /* if network interface up, reprogram hardware */
1513 * called by generic HDLC layer to send frame
1515 * skb socket buffer containing HDLC frame
1516 * dev pointer to network device structure
1518 * returns 0 if success, otherwise error code
1520 static int hdlcdev_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1522 struct slgt_info
*info
= dev_to_port(dev
);
1523 struct net_device_stats
*stats
= hdlc_stats(dev
);
1524 unsigned long flags
;
1526 DBGINFO(("%s hdlc_xmit\n", dev
->name
));
1528 /* stop sending until this frame completes */
1529 netif_stop_queue(dev
);
1531 /* copy data to device buffers */
1532 info
->tx_count
= skb
->len
;
1533 tx_load(info
, skb
->data
, skb
->len
);
1535 /* update network statistics */
1536 stats
->tx_packets
++;
1537 stats
->tx_bytes
+= skb
->len
;
1539 /* done with socket buffer, so free it */
1542 /* save start time for transmit timeout detection */
1543 dev
->trans_start
= jiffies
;
1545 /* start hardware transmitter if necessary */
1546 spin_lock_irqsave(&info
->lock
,flags
);
1547 if (!info
->tx_active
)
1549 spin_unlock_irqrestore(&info
->lock
,flags
);
1555 * called by network layer when interface enabled
1556 * claim resources and initialize hardware
1558 * dev pointer to network device structure
1560 * returns 0 if success, otherwise error code
1562 static int hdlcdev_open(struct net_device
*dev
)
1564 struct slgt_info
*info
= dev_to_port(dev
);
1566 unsigned long flags
;
1568 if (!try_module_get(THIS_MODULE
))
1571 DBGINFO(("%s hdlcdev_open\n", dev
->name
));
1573 /* generic HDLC layer open processing */
1574 if ((rc
= hdlc_open(dev
)))
1577 /* arbitrate between network and tty opens */
1578 spin_lock_irqsave(&info
->netlock
, flags
);
1579 if (info
->count
!= 0 || info
->netcount
!= 0) {
1580 DBGINFO(("%s hdlc_open busy\n", dev
->name
));
1581 spin_unlock_irqrestore(&info
->netlock
, flags
);
1585 spin_unlock_irqrestore(&info
->netlock
, flags
);
1587 /* claim resources and init adapter */
1588 if ((rc
= startup(info
)) != 0) {
1589 spin_lock_irqsave(&info
->netlock
, flags
);
1591 spin_unlock_irqrestore(&info
->netlock
, flags
);
1595 /* assert DTR and RTS, apply hardware settings */
1596 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
1599 /* enable network layer transmit */
1600 dev
->trans_start
= jiffies
;
1601 netif_start_queue(dev
);
1603 /* inform generic HDLC layer of current DCD status */
1604 spin_lock_irqsave(&info
->lock
, flags
);
1606 spin_unlock_irqrestore(&info
->lock
, flags
);
1607 if (info
->signals
& SerialSignal_DCD
)
1608 netif_carrier_on(dev
);
1610 netif_carrier_off(dev
);
1615 * called by network layer when interface is disabled
1616 * shutdown hardware and release resources
1618 * dev pointer to network device structure
1620 * returns 0 if success, otherwise error code
1622 static int hdlcdev_close(struct net_device
*dev
)
1624 struct slgt_info
*info
= dev_to_port(dev
);
1625 unsigned long flags
;
1627 DBGINFO(("%s hdlcdev_close\n", dev
->name
));
1629 netif_stop_queue(dev
);
1631 /* shutdown adapter and release resources */
1636 spin_lock_irqsave(&info
->netlock
, flags
);
1638 spin_unlock_irqrestore(&info
->netlock
, flags
);
1640 module_put(THIS_MODULE
);
1645 * called by network layer to process IOCTL call to network device
1647 * dev pointer to network device structure
1648 * ifr pointer to network interface request structure
1649 * cmd IOCTL command code
1651 * returns 0 if success, otherwise error code
1653 static int hdlcdev_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
1655 const size_t size
= sizeof(sync_serial_settings
);
1656 sync_serial_settings new_line
;
1657 sync_serial_settings __user
*line
= ifr
->ifr_settings
.ifs_ifsu
.sync
;
1658 struct slgt_info
*info
= dev_to_port(dev
);
1661 DBGINFO(("%s hdlcdev_ioctl\n", dev
->name
));
1663 /* return error if TTY interface open */
1667 if (cmd
!= SIOCWANDEV
)
1668 return hdlc_ioctl(dev
, ifr
, cmd
);
1670 switch(ifr
->ifr_settings
.type
) {
1671 case IF_GET_IFACE
: /* return current sync_serial_settings */
1673 ifr
->ifr_settings
.type
= IF_IFACE_SYNC_SERIAL
;
1674 if (ifr
->ifr_settings
.size
< size
) {
1675 ifr
->ifr_settings
.size
= size
; /* data size wanted */
1679 flags
= info
->params
.flags
& (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1680 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1681 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1682 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
1685 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
): new_line
.clock_type
= CLOCK_EXT
; break;
1686 case (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_INT
; break;
1687 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_TXINT
; break;
1688 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
): new_line
.clock_type
= CLOCK_TXFROMRX
; break;
1689 default: new_line
.clock_type
= CLOCK_DEFAULT
;
1692 new_line
.clock_rate
= info
->params
.clock_speed
;
1693 new_line
.loopback
= info
->params
.loopback
? 1:0;
1695 if (copy_to_user(line
, &new_line
, size
))
1699 case IF_IFACE_SYNC_SERIAL
: /* set sync_serial_settings */
1701 if(!capable(CAP_NET_ADMIN
))
1703 if (copy_from_user(&new_line
, line
, size
))
1706 switch (new_line
.clock_type
)
1708 case CLOCK_EXT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
; break;
1709 case CLOCK_TXFROMRX
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
; break;
1710 case CLOCK_INT
: flags
= HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
; break;
1711 case CLOCK_TXINT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
; break;
1712 case CLOCK_DEFAULT
: flags
= info
->params
.flags
&
1713 (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1714 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1715 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1716 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
); break;
1717 default: return -EINVAL
;
1720 if (new_line
.loopback
!= 0 && new_line
.loopback
!= 1)
1723 info
->params
.flags
&= ~(HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1724 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1725 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1726 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
1727 info
->params
.flags
|= flags
;
1729 info
->params
.loopback
= new_line
.loopback
;
1731 if (flags
& (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
))
1732 info
->params
.clock_speed
= new_line
.clock_rate
;
1734 info
->params
.clock_speed
= 0;
1736 /* if network interface up, reprogram hardware */
1742 return hdlc_ioctl(dev
, ifr
, cmd
);
1747 * called by network layer when transmit timeout is detected
1749 * dev pointer to network device structure
1751 static void hdlcdev_tx_timeout(struct net_device
*dev
)
1753 struct slgt_info
*info
= dev_to_port(dev
);
1754 struct net_device_stats
*stats
= hdlc_stats(dev
);
1755 unsigned long flags
;
1757 DBGINFO(("%s hdlcdev_tx_timeout\n", dev
->name
));
1760 stats
->tx_aborted_errors
++;
1762 spin_lock_irqsave(&info
->lock
,flags
);
1764 spin_unlock_irqrestore(&info
->lock
,flags
);
1766 netif_wake_queue(dev
);
1770 * called by device driver when transmit completes
1771 * reenable network layer transmit if stopped
1773 * info pointer to device instance information
1775 static void hdlcdev_tx_done(struct slgt_info
*info
)
1777 if (netif_queue_stopped(info
->netdev
))
1778 netif_wake_queue(info
->netdev
);
1782 * called by device driver when frame received
1783 * pass frame to network layer
1785 * info pointer to device instance information
1786 * buf pointer to buffer contianing frame data
1787 * size count of data bytes in buf
1789 static void hdlcdev_rx(struct slgt_info
*info
, char *buf
, int size
)
1791 struct sk_buff
*skb
= dev_alloc_skb(size
);
1792 struct net_device
*dev
= info
->netdev
;
1793 struct net_device_stats
*stats
= hdlc_stats(dev
);
1795 DBGINFO(("%s hdlcdev_rx\n", dev
->name
));
1798 DBGERR(("%s: can't alloc skb, drop packet\n", dev
->name
));
1799 stats
->rx_dropped
++;
1803 memcpy(skb_put(skb
, size
),buf
,size
);
1805 skb
->protocol
= hdlc_type_trans(skb
, info
->netdev
);
1807 stats
->rx_packets
++;
1808 stats
->rx_bytes
+= size
;
1812 info
->netdev
->last_rx
= jiffies
;
1816 * called by device driver when adding device instance
1817 * do generic HDLC initialization
1819 * info pointer to device instance information
1821 * returns 0 if success, otherwise error code
1823 static int hdlcdev_init(struct slgt_info
*info
)
1826 struct net_device
*dev
;
1829 /* allocate and initialize network and HDLC layer objects */
1831 if (!(dev
= alloc_hdlcdev(info
))) {
1832 printk(KERN_ERR
"%s hdlc device alloc failure\n", info
->device_name
);
1836 /* for network layer reporting purposes only */
1837 dev
->mem_start
= info
->phys_reg_addr
;
1838 dev
->mem_end
= info
->phys_reg_addr
+ SLGT_REG_SIZE
- 1;
1839 dev
->irq
= info
->irq_level
;
1841 /* network layer callbacks and settings */
1842 dev
->do_ioctl
= hdlcdev_ioctl
;
1843 dev
->open
= hdlcdev_open
;
1844 dev
->stop
= hdlcdev_close
;
1845 dev
->tx_timeout
= hdlcdev_tx_timeout
;
1846 dev
->watchdog_timeo
= 10*HZ
;
1847 dev
->tx_queue_len
= 50;
1849 /* generic HDLC layer callbacks and settings */
1850 hdlc
= dev_to_hdlc(dev
);
1851 hdlc
->attach
= hdlcdev_attach
;
1852 hdlc
->xmit
= hdlcdev_xmit
;
1854 /* register objects with HDLC layer */
1855 if ((rc
= register_hdlc_device(dev
))) {
1856 printk(KERN_WARNING
"%s:unable to register hdlc device\n",__FILE__
);
1866 * called by device driver when removing device instance
1867 * do generic HDLC cleanup
1869 * info pointer to device instance information
1871 static void hdlcdev_exit(struct slgt_info
*info
)
1873 unregister_hdlc_device(info
->netdev
);
1874 free_netdev(info
->netdev
);
1875 info
->netdev
= NULL
;
1878 #endif /* ifdef CONFIG_HDLC */
1881 * get async data from rx DMA buffers
1883 static void rx_async(struct slgt_info
*info
)
1885 struct tty_struct
*tty
= info
->tty
;
1886 struct mgsl_icount
*icount
= &info
->icount
;
1887 unsigned int start
, end
;
1889 unsigned char status
;
1890 struct slgt_desc
*bufs
= info
->rbufs
;
1896 start
= end
= info
->rbuf_current
;
1898 while(desc_complete(bufs
[end
])) {
1899 count
= desc_count(bufs
[end
]) - info
->rbuf_index
;
1900 p
= bufs
[end
].buf
+ info
->rbuf_index
;
1902 DBGISR(("%s rx_async count=%d\n", info
->device_name
, count
));
1903 DBGDATA(info
, p
, count
, "rx");
1905 for(i
=0 ; i
< count
; i
+=2, p
+=2) {
1911 if ((status
= *(p
+1) & (BIT1
+ BIT0
))) {
1914 else if (status
& BIT0
)
1916 /* discard char if tty control flags say so */
1917 if (status
& info
->ignore_status_mask
)
1921 else if (status
& BIT0
)
1925 tty_insert_flip_char(tty
, ch
, stat
);
1931 /* receive buffer not completed */
1932 info
->rbuf_index
+= i
;
1933 mod_timer(&info
->rx_timer
, jiffies
+ 1);
1937 info
->rbuf_index
= 0;
1938 free_rbufs(info
, end
, end
);
1940 if (++end
== info
->rbuf_count
)
1943 /* if entire list searched then no frame available */
1949 tty_flip_buffer_push(tty
);
1953 * return next bottom half action to perform
1955 static int bh_action(struct slgt_info
*info
)
1957 unsigned long flags
;
1960 spin_lock_irqsave(&info
->lock
,flags
);
1962 if (info
->pending_bh
& BH_RECEIVE
) {
1963 info
->pending_bh
&= ~BH_RECEIVE
;
1965 } else if (info
->pending_bh
& BH_TRANSMIT
) {
1966 info
->pending_bh
&= ~BH_TRANSMIT
;
1968 } else if (info
->pending_bh
& BH_STATUS
) {
1969 info
->pending_bh
&= ~BH_STATUS
;
1972 /* Mark BH routine as complete */
1973 info
->bh_running
= 0;
1974 info
->bh_requested
= 0;
1978 spin_unlock_irqrestore(&info
->lock
,flags
);
1984 * perform bottom half processing
1986 static void bh_handler(struct work_struct
*work
)
1988 struct slgt_info
*info
= container_of(work
, struct slgt_info
, task
);
1993 info
->bh_running
= 1;
1995 while((action
= bh_action(info
))) {
1998 DBGBH(("%s bh receive\n", info
->device_name
));
1999 switch(info
->params
.mode
) {
2000 case MGSL_MODE_ASYNC
:
2003 case MGSL_MODE_HDLC
:
2004 while(rx_get_frame(info
));
2007 case MGSL_MODE_MONOSYNC
:
2008 case MGSL_MODE_BISYNC
:
2009 while(rx_get_buf(info
));
2012 /* restart receiver if rx DMA buffers exhausted */
2013 if (info
->rx_restart
)
2020 DBGBH(("%s bh status\n", info
->device_name
));
2021 info
->ri_chkcount
= 0;
2022 info
->dsr_chkcount
= 0;
2023 info
->dcd_chkcount
= 0;
2024 info
->cts_chkcount
= 0;
2027 DBGBH(("%s unknown action\n", info
->device_name
));
2031 DBGBH(("%s bh_handler exit\n", info
->device_name
));
2034 static void bh_transmit(struct slgt_info
*info
)
2036 struct tty_struct
*tty
= info
->tty
;
2038 DBGBH(("%s bh_transmit\n", info
->device_name
));
2043 static void dsr_change(struct slgt_info
*info
)
2046 DBGISR(("dsr_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2047 if ((info
->dsr_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2048 slgt_irq_off(info
, IRQ_DSR
);
2052 if (info
->signals
& SerialSignal_DSR
)
2053 info
->input_signal_events
.dsr_up
++;
2055 info
->input_signal_events
.dsr_down
++;
2056 wake_up_interruptible(&info
->status_event_wait_q
);
2057 wake_up_interruptible(&info
->event_wait_q
);
2058 info
->pending_bh
|= BH_STATUS
;
2061 static void cts_change(struct slgt_info
*info
)
2064 DBGISR(("cts_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2065 if ((info
->cts_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2066 slgt_irq_off(info
, IRQ_CTS
);
2070 if (info
->signals
& SerialSignal_CTS
)
2071 info
->input_signal_events
.cts_up
++;
2073 info
->input_signal_events
.cts_down
++;
2074 wake_up_interruptible(&info
->status_event_wait_q
);
2075 wake_up_interruptible(&info
->event_wait_q
);
2076 info
->pending_bh
|= BH_STATUS
;
2078 if (info
->flags
& ASYNC_CTS_FLOW
) {
2080 if (info
->tty
->hw_stopped
) {
2081 if (info
->signals
& SerialSignal_CTS
) {
2082 info
->tty
->hw_stopped
= 0;
2083 info
->pending_bh
|= BH_TRANSMIT
;
2087 if (!(info
->signals
& SerialSignal_CTS
))
2088 info
->tty
->hw_stopped
= 1;
2094 static void dcd_change(struct slgt_info
*info
)
2097 DBGISR(("dcd_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2098 if ((info
->dcd_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2099 slgt_irq_off(info
, IRQ_DCD
);
2103 if (info
->signals
& SerialSignal_DCD
) {
2104 info
->input_signal_events
.dcd_up
++;
2106 info
->input_signal_events
.dcd_down
++;
2108 #if SYNCLINK_GENERIC_HDLC
2109 if (info
->netcount
) {
2110 if (info
->signals
& SerialSignal_DCD
)
2111 netif_carrier_on(info
->netdev
);
2113 netif_carrier_off(info
->netdev
);
2116 wake_up_interruptible(&info
->status_event_wait_q
);
2117 wake_up_interruptible(&info
->event_wait_q
);
2118 info
->pending_bh
|= BH_STATUS
;
2120 if (info
->flags
& ASYNC_CHECK_CD
) {
2121 if (info
->signals
& SerialSignal_DCD
)
2122 wake_up_interruptible(&info
->open_wait
);
2125 tty_hangup(info
->tty
);
2130 static void ri_change(struct slgt_info
*info
)
2133 DBGISR(("ri_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2134 if ((info
->ri_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2135 slgt_irq_off(info
, IRQ_RI
);
2139 if (info
->signals
& SerialSignal_RI
) {
2140 info
->input_signal_events
.ri_up
++;
2142 info
->input_signal_events
.ri_down
++;
2144 wake_up_interruptible(&info
->status_event_wait_q
);
2145 wake_up_interruptible(&info
->event_wait_q
);
2146 info
->pending_bh
|= BH_STATUS
;
2149 static void isr_serial(struct slgt_info
*info
)
2151 unsigned short status
= rd_reg16(info
, SSR
);
2153 DBGISR(("%s isr_serial status=%04X\n", info
->device_name
, status
));
2155 wr_reg16(info
, SSR
, status
); /* clear pending */
2157 info
->irq_occurred
= 1;
2159 if (info
->params
.mode
== MGSL_MODE_ASYNC
) {
2160 if (status
& IRQ_TXIDLE
) {
2162 isr_txeom(info
, status
);
2164 if ((status
& IRQ_RXBREAK
) && (status
& RXBREAK
)) {
2166 /* process break detection if tty control allows */
2168 if (!(status
& info
->ignore_status_mask
)) {
2169 if (info
->read_status_mask
& MASK_BREAK
) {
2170 tty_insert_flip_char(info
->tty
, 0, TTY_BREAK
);
2171 if (info
->flags
& ASYNC_SAK
)
2178 if (status
& (IRQ_TXIDLE
+ IRQ_TXUNDER
))
2179 isr_txeom(info
, status
);
2181 if (status
& IRQ_RXIDLE
) {
2182 if (status
& RXIDLE
)
2183 info
->icount
.rxidle
++;
2185 info
->icount
.exithunt
++;
2186 wake_up_interruptible(&info
->event_wait_q
);
2189 if (status
& IRQ_RXOVER
)
2193 if (status
& IRQ_DSR
)
2195 if (status
& IRQ_CTS
)
2197 if (status
& IRQ_DCD
)
2199 if (status
& IRQ_RI
)
2203 static void isr_rdma(struct slgt_info
*info
)
2205 unsigned int status
= rd_reg32(info
, RDCSR
);
2207 DBGISR(("%s isr_rdma status=%08x\n", info
->device_name
, status
));
2209 /* RDCSR (rx DMA control/status)
2212 * 06 save status byte to DMA buffer
2214 * 04 eol (end of list)
2215 * 03 eob (end of buffer)
2220 wr_reg32(info
, RDCSR
, status
); /* clear pending */
2222 if (status
& (BIT5
+ BIT4
)) {
2223 DBGISR(("%s isr_rdma rx_restart=1\n", info
->device_name
));
2224 info
->rx_restart
= 1;
2226 info
->pending_bh
|= BH_RECEIVE
;
2229 static void isr_tdma(struct slgt_info
*info
)
2231 unsigned int status
= rd_reg32(info
, TDCSR
);
2233 DBGISR(("%s isr_tdma status=%08x\n", info
->device_name
, status
));
2235 /* TDCSR (tx DMA control/status)
2239 * 04 eol (end of list)
2240 * 03 eob (end of buffer)
2245 wr_reg32(info
, TDCSR
, status
); /* clear pending */
2247 if (status
& (BIT5
+ BIT4
+ BIT3
)) {
2248 // another transmit buffer has completed
2249 // run bottom half to get more send data from user
2250 info
->pending_bh
|= BH_TRANSMIT
;
2254 static void isr_txeom(struct slgt_info
*info
, unsigned short status
)
2256 DBGISR(("%s txeom status=%04x\n", info
->device_name
, status
));
2258 slgt_irq_off(info
, IRQ_TXDATA
+ IRQ_TXIDLE
+ IRQ_TXUNDER
);
2261 if (status
& IRQ_TXUNDER
) {
2262 unsigned short val
= rd_reg16(info
, TCR
);
2263 wr_reg16(info
, TCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
2264 wr_reg16(info
, TCR
, val
); /* clear reset bit */
2267 if (info
->tx_active
) {
2268 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
2269 if (status
& IRQ_TXUNDER
)
2270 info
->icount
.txunder
++;
2271 else if (status
& IRQ_TXIDLE
)
2272 info
->icount
.txok
++;
2275 info
->tx_active
= 0;
2278 del_timer(&info
->tx_timer
);
2280 if (info
->params
.mode
!= MGSL_MODE_ASYNC
&& info
->drop_rts_on_tx_done
) {
2281 info
->signals
&= ~SerialSignal_RTS
;
2282 info
->drop_rts_on_tx_done
= 0;
2286 #if SYNCLINK_GENERIC_HDLC
2288 hdlcdev_tx_done(info
);
2292 if (info
->tty
&& (info
->tty
->stopped
|| info
->tty
->hw_stopped
)) {
2296 info
->pending_bh
|= BH_TRANSMIT
;
2301 static void isr_gpio(struct slgt_info
*info
, unsigned int changed
, unsigned int state
)
2303 struct cond_wait
*w
, *prev
;
2305 /* wake processes waiting for specific transitions */
2306 for (w
= info
->gpio_wait_q
, prev
= NULL
; w
!= NULL
; w
= w
->next
) {
2307 if (w
->data
& changed
) {
2309 wake_up_interruptible(&w
->q
);
2311 prev
->next
= w
->next
;
2313 info
->gpio_wait_q
= w
->next
;
2319 /* interrupt service routine
2321 * irq interrupt number
2322 * dev_id device ID supplied during interrupt registration
2324 static irqreturn_t
slgt_interrupt(int irq
, void *dev_id
)
2326 struct slgt_info
*info
;
2330 DBGISR(("slgt_interrupt irq=%d entry\n", irq
));
2336 spin_lock(&info
->lock
);
2338 while((gsr
= rd_reg32(info
, GSR
) & 0xffffff00)) {
2339 DBGISR(("%s gsr=%08x\n", info
->device_name
, gsr
));
2340 info
->irq_occurred
= 1;
2341 for(i
=0; i
< info
->port_count
; i
++) {
2342 if (info
->port_array
[i
] == NULL
)
2344 if (gsr
& (BIT8
<< i
))
2345 isr_serial(info
->port_array
[i
]);
2346 if (gsr
& (BIT16
<< (i
*2)))
2347 isr_rdma(info
->port_array
[i
]);
2348 if (gsr
& (BIT17
<< (i
*2)))
2349 isr_tdma(info
->port_array
[i
]);
2353 if (info
->gpio_present
) {
2355 unsigned int changed
;
2356 while ((changed
= rd_reg32(info
, IOSR
)) != 0) {
2357 DBGISR(("%s iosr=%08x\n", info
->device_name
, changed
));
2358 /* read latched state of GPIO signals */
2359 state
= rd_reg32(info
, IOVR
);
2360 /* clear pending GPIO interrupt bits */
2361 wr_reg32(info
, IOSR
, changed
);
2362 for (i
=0 ; i
< info
->port_count
; i
++) {
2363 if (info
->port_array
[i
] != NULL
)
2364 isr_gpio(info
->port_array
[i
], changed
, state
);
2369 for(i
=0; i
< info
->port_count
; i
++) {
2370 struct slgt_info
*port
= info
->port_array
[i
];
2372 if (port
&& (port
->count
|| port
->netcount
) &&
2373 port
->pending_bh
&& !port
->bh_running
&&
2374 !port
->bh_requested
) {
2375 DBGISR(("%s bh queued\n", port
->device_name
));
2376 schedule_work(&port
->task
);
2377 port
->bh_requested
= 1;
2381 spin_unlock(&info
->lock
);
2383 DBGISR(("slgt_interrupt irq=%d exit\n", irq
));
2387 static int startup(struct slgt_info
*info
)
2389 DBGINFO(("%s startup\n", info
->device_name
));
2391 if (info
->flags
& ASYNC_INITIALIZED
)
2394 if (!info
->tx_buf
) {
2395 info
->tx_buf
= kmalloc(info
->max_frame_size
, GFP_KERNEL
);
2396 if (!info
->tx_buf
) {
2397 DBGERR(("%s can't allocate tx buffer\n", info
->device_name
));
2402 info
->pending_bh
= 0;
2404 memset(&info
->icount
, 0, sizeof(info
->icount
));
2406 /* program hardware for current parameters */
2407 change_params(info
);
2410 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2412 info
->flags
|= ASYNC_INITIALIZED
;
2418 * called by close() and hangup() to shutdown hardware
2420 static void shutdown(struct slgt_info
*info
)
2422 unsigned long flags
;
2424 if (!(info
->flags
& ASYNC_INITIALIZED
))
2427 DBGINFO(("%s shutdown\n", info
->device_name
));
2429 /* clear status wait queue because status changes */
2430 /* can't happen after shutting down the hardware */
2431 wake_up_interruptible(&info
->status_event_wait_q
);
2432 wake_up_interruptible(&info
->event_wait_q
);
2434 del_timer_sync(&info
->tx_timer
);
2435 del_timer_sync(&info
->rx_timer
);
2437 kfree(info
->tx_buf
);
2438 info
->tx_buf
= NULL
;
2440 spin_lock_irqsave(&info
->lock
,flags
);
2445 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
2447 if (!info
->tty
|| info
->tty
->termios
->c_cflag
& HUPCL
) {
2448 info
->signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
2452 flush_cond_wait(&info
->gpio_wait_q
);
2454 spin_unlock_irqrestore(&info
->lock
,flags
);
2457 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2459 info
->flags
&= ~ASYNC_INITIALIZED
;
2462 static void program_hw(struct slgt_info
*info
)
2464 unsigned long flags
;
2466 spin_lock_irqsave(&info
->lock
,flags
);
2471 if (info
->params
.mode
!= MGSL_MODE_ASYNC
||
2479 info
->dcd_chkcount
= 0;
2480 info
->cts_chkcount
= 0;
2481 info
->ri_chkcount
= 0;
2482 info
->dsr_chkcount
= 0;
2484 slgt_irq_on(info
, IRQ_DCD
| IRQ_CTS
| IRQ_DSR
);
2487 if (info
->netcount
||
2488 (info
->tty
&& info
->tty
->termios
->c_cflag
& CREAD
))
2491 spin_unlock_irqrestore(&info
->lock
,flags
);
2495 * reconfigure adapter based on new parameters
2497 static void change_params(struct slgt_info
*info
)
2502 if (!info
->tty
|| !info
->tty
->termios
)
2504 DBGINFO(("%s change_params\n", info
->device_name
));
2506 cflag
= info
->tty
->termios
->c_cflag
;
2508 /* if B0 rate (hangup) specified then negate DTR and RTS */
2509 /* otherwise assert DTR and RTS */
2511 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
2513 info
->signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
2515 /* byte size and parity */
2517 switch (cflag
& CSIZE
) {
2518 case CS5
: info
->params
.data_bits
= 5; break;
2519 case CS6
: info
->params
.data_bits
= 6; break;
2520 case CS7
: info
->params
.data_bits
= 7; break;
2521 case CS8
: info
->params
.data_bits
= 8; break;
2522 default: info
->params
.data_bits
= 7; break;
2525 info
->params
.stop_bits
= (cflag
& CSTOPB
) ? 2 : 1;
2528 info
->params
.parity
= (cflag
& PARODD
) ? ASYNC_PARITY_ODD
: ASYNC_PARITY_EVEN
;
2530 info
->params
.parity
= ASYNC_PARITY_NONE
;
2532 /* calculate number of jiffies to transmit a full
2533 * FIFO (32 bytes) at specified data rate
2535 bits_per_char
= info
->params
.data_bits
+
2536 info
->params
.stop_bits
+ 1;
2538 info
->params
.data_rate
= tty_get_baud_rate(info
->tty
);
2540 if (info
->params
.data_rate
) {
2541 info
->timeout
= (32*HZ
*bits_per_char
) /
2542 info
->params
.data_rate
;
2544 info
->timeout
+= HZ
/50; /* Add .02 seconds of slop */
2546 if (cflag
& CRTSCTS
)
2547 info
->flags
|= ASYNC_CTS_FLOW
;
2549 info
->flags
&= ~ASYNC_CTS_FLOW
;
2552 info
->flags
&= ~ASYNC_CHECK_CD
;
2554 info
->flags
|= ASYNC_CHECK_CD
;
2556 /* process tty input control flags */
2558 info
->read_status_mask
= IRQ_RXOVER
;
2559 if (I_INPCK(info
->tty
))
2560 info
->read_status_mask
|= MASK_PARITY
| MASK_FRAMING
;
2561 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
2562 info
->read_status_mask
|= MASK_BREAK
;
2563 if (I_IGNPAR(info
->tty
))
2564 info
->ignore_status_mask
|= MASK_PARITY
| MASK_FRAMING
;
2565 if (I_IGNBRK(info
->tty
)) {
2566 info
->ignore_status_mask
|= MASK_BREAK
;
2567 /* If ignoring parity and break indicators, ignore
2568 * overruns too. (For real raw support).
2570 if (I_IGNPAR(info
->tty
))
2571 info
->ignore_status_mask
|= MASK_OVERRUN
;
2577 static int get_stats(struct slgt_info
*info
, struct mgsl_icount __user
*user_icount
)
2579 DBGINFO(("%s get_stats\n", info
->device_name
));
2581 memset(&info
->icount
, 0, sizeof(info
->icount
));
2583 if (copy_to_user(user_icount
, &info
->icount
, sizeof(struct mgsl_icount
)))
2589 static int get_params(struct slgt_info
*info
, MGSL_PARAMS __user
*user_params
)
2591 DBGINFO(("%s get_params\n", info
->device_name
));
2592 if (copy_to_user(user_params
, &info
->params
, sizeof(MGSL_PARAMS
)))
2597 static int set_params(struct slgt_info
*info
, MGSL_PARAMS __user
*new_params
)
2599 unsigned long flags
;
2600 MGSL_PARAMS tmp_params
;
2602 DBGINFO(("%s set_params\n", info
->device_name
));
2603 if (copy_from_user(&tmp_params
, new_params
, sizeof(MGSL_PARAMS
)))
2606 spin_lock_irqsave(&info
->lock
, flags
);
2607 memcpy(&info
->params
, &tmp_params
, sizeof(MGSL_PARAMS
));
2608 spin_unlock_irqrestore(&info
->lock
, flags
);
2610 change_params(info
);
2615 static int get_txidle(struct slgt_info
*info
, int __user
*idle_mode
)
2617 DBGINFO(("%s get_txidle=%d\n", info
->device_name
, info
->idle_mode
));
2618 if (put_user(info
->idle_mode
, idle_mode
))
2623 static int set_txidle(struct slgt_info
*info
, int idle_mode
)
2625 unsigned long flags
;
2626 DBGINFO(("%s set_txidle(%d)\n", info
->device_name
, idle_mode
));
2627 spin_lock_irqsave(&info
->lock
,flags
);
2628 info
->idle_mode
= idle_mode
;
2629 if (info
->params
.mode
!= MGSL_MODE_ASYNC
)
2631 spin_unlock_irqrestore(&info
->lock
,flags
);
2635 static int tx_enable(struct slgt_info
*info
, int enable
)
2637 unsigned long flags
;
2638 DBGINFO(("%s tx_enable(%d)\n", info
->device_name
, enable
));
2639 spin_lock_irqsave(&info
->lock
,flags
);
2641 if (!info
->tx_enabled
)
2644 if (info
->tx_enabled
)
2647 spin_unlock_irqrestore(&info
->lock
,flags
);
2652 * abort transmit HDLC frame
2654 static int tx_abort(struct slgt_info
*info
)
2656 unsigned long flags
;
2657 DBGINFO(("%s tx_abort\n", info
->device_name
));
2658 spin_lock_irqsave(&info
->lock
,flags
);
2660 spin_unlock_irqrestore(&info
->lock
,flags
);
2664 static int rx_enable(struct slgt_info
*info
, int enable
)
2666 unsigned long flags
;
2667 DBGINFO(("%s rx_enable(%d)\n", info
->device_name
, enable
));
2668 spin_lock_irqsave(&info
->lock
,flags
);
2670 if (!info
->rx_enabled
)
2672 else if (enable
== 2) {
2673 /* force hunt mode (write 1 to RCR[3]) */
2674 wr_reg16(info
, RCR
, rd_reg16(info
, RCR
) | BIT3
);
2677 if (info
->rx_enabled
)
2680 spin_unlock_irqrestore(&info
->lock
,flags
);
2685 * wait for specified event to occur
2687 static int wait_mgsl_event(struct slgt_info
*info
, int __user
*mask_ptr
)
2689 unsigned long flags
;
2692 struct mgsl_icount cprev
, cnow
;
2695 struct _input_signal_events oldsigs
, newsigs
;
2696 DECLARE_WAITQUEUE(wait
, current
);
2698 if (get_user(mask
, mask_ptr
))
2701 DBGINFO(("%s wait_mgsl_event(%d)\n", info
->device_name
, mask
));
2703 spin_lock_irqsave(&info
->lock
,flags
);
2705 /* return immediately if state matches requested events */
2710 ( ((s
& SerialSignal_DSR
) ? MgslEvent_DsrActive
:MgslEvent_DsrInactive
) +
2711 ((s
& SerialSignal_DCD
) ? MgslEvent_DcdActive
:MgslEvent_DcdInactive
) +
2712 ((s
& SerialSignal_CTS
) ? MgslEvent_CtsActive
:MgslEvent_CtsInactive
) +
2713 ((s
& SerialSignal_RI
) ? MgslEvent_RiActive
:MgslEvent_RiInactive
) );
2715 spin_unlock_irqrestore(&info
->lock
,flags
);
2719 /* save current irq counts */
2720 cprev
= info
->icount
;
2721 oldsigs
= info
->input_signal_events
;
2723 /* enable hunt and idle irqs if needed */
2724 if (mask
& (MgslEvent_ExitHuntMode
+MgslEvent_IdleReceived
)) {
2725 unsigned short val
= rd_reg16(info
, SCR
);
2726 if (!(val
& IRQ_RXIDLE
))
2727 wr_reg16(info
, SCR
, (unsigned short)(val
| IRQ_RXIDLE
));
2730 set_current_state(TASK_INTERRUPTIBLE
);
2731 add_wait_queue(&info
->event_wait_q
, &wait
);
2733 spin_unlock_irqrestore(&info
->lock
,flags
);
2737 if (signal_pending(current
)) {
2742 /* get current irq counts */
2743 spin_lock_irqsave(&info
->lock
,flags
);
2744 cnow
= info
->icount
;
2745 newsigs
= info
->input_signal_events
;
2746 set_current_state(TASK_INTERRUPTIBLE
);
2747 spin_unlock_irqrestore(&info
->lock
,flags
);
2749 /* if no change, wait aborted for some reason */
2750 if (newsigs
.dsr_up
== oldsigs
.dsr_up
&&
2751 newsigs
.dsr_down
== oldsigs
.dsr_down
&&
2752 newsigs
.dcd_up
== oldsigs
.dcd_up
&&
2753 newsigs
.dcd_down
== oldsigs
.dcd_down
&&
2754 newsigs
.cts_up
== oldsigs
.cts_up
&&
2755 newsigs
.cts_down
== oldsigs
.cts_down
&&
2756 newsigs
.ri_up
== oldsigs
.ri_up
&&
2757 newsigs
.ri_down
== oldsigs
.ri_down
&&
2758 cnow
.exithunt
== cprev
.exithunt
&&
2759 cnow
.rxidle
== cprev
.rxidle
) {
2765 ( (newsigs
.dsr_up
!= oldsigs
.dsr_up
? MgslEvent_DsrActive
:0) +
2766 (newsigs
.dsr_down
!= oldsigs
.dsr_down
? MgslEvent_DsrInactive
:0) +
2767 (newsigs
.dcd_up
!= oldsigs
.dcd_up
? MgslEvent_DcdActive
:0) +
2768 (newsigs
.dcd_down
!= oldsigs
.dcd_down
? MgslEvent_DcdInactive
:0) +
2769 (newsigs
.cts_up
!= oldsigs
.cts_up
? MgslEvent_CtsActive
:0) +
2770 (newsigs
.cts_down
!= oldsigs
.cts_down
? MgslEvent_CtsInactive
:0) +
2771 (newsigs
.ri_up
!= oldsigs
.ri_up
? MgslEvent_RiActive
:0) +
2772 (newsigs
.ri_down
!= oldsigs
.ri_down
? MgslEvent_RiInactive
:0) +
2773 (cnow
.exithunt
!= cprev
.exithunt
? MgslEvent_ExitHuntMode
:0) +
2774 (cnow
.rxidle
!= cprev
.rxidle
? MgslEvent_IdleReceived
:0) );
2782 remove_wait_queue(&info
->event_wait_q
, &wait
);
2783 set_current_state(TASK_RUNNING
);
2786 if (mask
& (MgslEvent_ExitHuntMode
+ MgslEvent_IdleReceived
)) {
2787 spin_lock_irqsave(&info
->lock
,flags
);
2788 if (!waitqueue_active(&info
->event_wait_q
)) {
2789 /* disable enable exit hunt mode/idle rcvd IRQs */
2791 (unsigned short)(rd_reg16(info
, SCR
) & ~IRQ_RXIDLE
));
2793 spin_unlock_irqrestore(&info
->lock
,flags
);
2797 rc
= put_user(events
, mask_ptr
);
2801 static int get_interface(struct slgt_info
*info
, int __user
*if_mode
)
2803 DBGINFO(("%s get_interface=%x\n", info
->device_name
, info
->if_mode
));
2804 if (put_user(info
->if_mode
, if_mode
))
2809 static int set_interface(struct slgt_info
*info
, int if_mode
)
2811 unsigned long flags
;
2814 DBGINFO(("%s set_interface=%x)\n", info
->device_name
, if_mode
));
2815 spin_lock_irqsave(&info
->lock
,flags
);
2816 info
->if_mode
= if_mode
;
2820 /* TCR (tx control) 07 1=RTS driver control */
2821 val
= rd_reg16(info
, TCR
);
2822 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
2826 wr_reg16(info
, TCR
, val
);
2828 spin_unlock_irqrestore(&info
->lock
,flags
);
2833 * set general purpose IO pin state and direction
2836 * state each bit indicates a pin state
2837 * smask set bit indicates pin state to set
2838 * dir each bit indicates a pin direction (0=input, 1=output)
2839 * dmask set bit indicates pin direction to set
2841 static int set_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2843 unsigned long flags
;
2844 struct gpio_desc gpio
;
2847 if (!info
->gpio_present
)
2849 if (copy_from_user(&gpio
, user_gpio
, sizeof(gpio
)))
2851 DBGINFO(("%s set_gpio state=%08x smask=%08x dir=%08x dmask=%08x\n",
2852 info
->device_name
, gpio
.state
, gpio
.smask
,
2853 gpio
.dir
, gpio
.dmask
));
2855 spin_lock_irqsave(&info
->lock
,flags
);
2857 data
= rd_reg32(info
, IODR
);
2858 data
|= gpio
.dmask
& gpio
.dir
;
2859 data
&= ~(gpio
.dmask
& ~gpio
.dir
);
2860 wr_reg32(info
, IODR
, data
);
2863 data
= rd_reg32(info
, IOVR
);
2864 data
|= gpio
.smask
& gpio
.state
;
2865 data
&= ~(gpio
.smask
& ~gpio
.state
);
2866 wr_reg32(info
, IOVR
, data
);
2868 spin_unlock_irqrestore(&info
->lock
,flags
);
2874 * get general purpose IO pin state and direction
2876 static int get_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2878 struct gpio_desc gpio
;
2879 if (!info
->gpio_present
)
2881 gpio
.state
= rd_reg32(info
, IOVR
);
2882 gpio
.smask
= 0xffffffff;
2883 gpio
.dir
= rd_reg32(info
, IODR
);
2884 gpio
.dmask
= 0xffffffff;
2885 if (copy_to_user(user_gpio
, &gpio
, sizeof(gpio
)))
2887 DBGINFO(("%s get_gpio state=%08x dir=%08x\n",
2888 info
->device_name
, gpio
.state
, gpio
.dir
));
2893 * conditional wait facility
2895 static void init_cond_wait(struct cond_wait
*w
, unsigned int data
)
2897 init_waitqueue_head(&w
->q
);
2898 init_waitqueue_entry(&w
->wait
, current
);
2902 static void add_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
)
2904 set_current_state(TASK_INTERRUPTIBLE
);
2905 add_wait_queue(&w
->q
, &w
->wait
);
2910 static void remove_cond_wait(struct cond_wait
**head
, struct cond_wait
*cw
)
2912 struct cond_wait
*w
, *prev
;
2913 remove_wait_queue(&cw
->q
, &cw
->wait
);
2914 set_current_state(TASK_RUNNING
);
2915 for (w
= *head
, prev
= NULL
; w
!= NULL
; prev
= w
, w
= w
->next
) {
2918 prev
->next
= w
->next
;
2926 static void flush_cond_wait(struct cond_wait
**head
)
2928 while (*head
!= NULL
) {
2929 wake_up_interruptible(&(*head
)->q
);
2930 *head
= (*head
)->next
;
2935 * wait for general purpose I/O pin(s) to enter specified state
2938 * state - bit indicates target pin state
2939 * smask - set bit indicates watched pin
2941 * The wait ends when at least one watched pin enters the specified
2942 * state. When 0 (no error) is returned, user_gpio->state is set to the
2943 * state of all GPIO pins when the wait ends.
2945 * Note: Each pin may be a dedicated input, dedicated output, or
2946 * configurable input/output. The number and configuration of pins
2947 * varies with the specific adapter model. Only input pins (dedicated
2948 * or configured) can be monitored with this function.
2950 static int wait_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2952 unsigned long flags
;
2954 struct gpio_desc gpio
;
2955 struct cond_wait wait
;
2958 if (!info
->gpio_present
)
2960 if (copy_from_user(&gpio
, user_gpio
, sizeof(gpio
)))
2962 DBGINFO(("%s wait_gpio() state=%08x smask=%08x\n",
2963 info
->device_name
, gpio
.state
, gpio
.smask
));
2964 /* ignore output pins identified by set IODR bit */
2965 if ((gpio
.smask
&= ~rd_reg32(info
, IODR
)) == 0)
2967 init_cond_wait(&wait
, gpio
.smask
);
2969 spin_lock_irqsave(&info
->lock
, flags
);
2970 /* enable interrupts for watched pins */
2971 wr_reg32(info
, IOER
, rd_reg32(info
, IOER
) | gpio
.smask
);
2972 /* get current pin states */
2973 state
= rd_reg32(info
, IOVR
);
2975 if (gpio
.smask
& ~(state
^ gpio
.state
)) {
2976 /* already in target state */
2979 /* wait for target state */
2980 add_cond_wait(&info
->gpio_wait_q
, &wait
);
2981 spin_unlock_irqrestore(&info
->lock
, flags
);
2983 if (signal_pending(current
))
2986 gpio
.state
= wait
.data
;
2987 spin_lock_irqsave(&info
->lock
, flags
);
2988 remove_cond_wait(&info
->gpio_wait_q
, &wait
);
2991 /* disable all GPIO interrupts if no waiting processes */
2992 if (info
->gpio_wait_q
== NULL
)
2993 wr_reg32(info
, IOER
, 0);
2994 spin_unlock_irqrestore(&info
->lock
,flags
);
2996 if ((rc
== 0) && copy_to_user(user_gpio
, &gpio
, sizeof(gpio
)))
3001 static int modem_input_wait(struct slgt_info
*info
,int arg
)
3003 unsigned long flags
;
3005 struct mgsl_icount cprev
, cnow
;
3006 DECLARE_WAITQUEUE(wait
, current
);
3008 /* save current irq counts */
3009 spin_lock_irqsave(&info
->lock
,flags
);
3010 cprev
= info
->icount
;
3011 add_wait_queue(&info
->status_event_wait_q
, &wait
);
3012 set_current_state(TASK_INTERRUPTIBLE
);
3013 spin_unlock_irqrestore(&info
->lock
,flags
);
3017 if (signal_pending(current
)) {
3022 /* get new irq counts */
3023 spin_lock_irqsave(&info
->lock
,flags
);
3024 cnow
= info
->icount
;
3025 set_current_state(TASK_INTERRUPTIBLE
);
3026 spin_unlock_irqrestore(&info
->lock
,flags
);
3028 /* if no change, wait aborted for some reason */
3029 if (cnow
.rng
== cprev
.rng
&& cnow
.dsr
== cprev
.dsr
&&
3030 cnow
.dcd
== cprev
.dcd
&& cnow
.cts
== cprev
.cts
) {
3035 /* check for change in caller specified modem input */
3036 if ((arg
& TIOCM_RNG
&& cnow
.rng
!= cprev
.rng
) ||
3037 (arg
& TIOCM_DSR
&& cnow
.dsr
!= cprev
.dsr
) ||
3038 (arg
& TIOCM_CD
&& cnow
.dcd
!= cprev
.dcd
) ||
3039 (arg
& TIOCM_CTS
&& cnow
.cts
!= cprev
.cts
)) {
3046 remove_wait_queue(&info
->status_event_wait_q
, &wait
);
3047 set_current_state(TASK_RUNNING
);
3052 * return state of serial control and status signals
3054 static int tiocmget(struct tty_struct
*tty
, struct file
*file
)
3056 struct slgt_info
*info
= tty
->driver_data
;
3057 unsigned int result
;
3058 unsigned long flags
;
3060 spin_lock_irqsave(&info
->lock
,flags
);
3062 spin_unlock_irqrestore(&info
->lock
,flags
);
3064 result
= ((info
->signals
& SerialSignal_RTS
) ? TIOCM_RTS
:0) +
3065 ((info
->signals
& SerialSignal_DTR
) ? TIOCM_DTR
:0) +
3066 ((info
->signals
& SerialSignal_DCD
) ? TIOCM_CAR
:0) +
3067 ((info
->signals
& SerialSignal_RI
) ? TIOCM_RNG
:0) +
3068 ((info
->signals
& SerialSignal_DSR
) ? TIOCM_DSR
:0) +
3069 ((info
->signals
& SerialSignal_CTS
) ? TIOCM_CTS
:0);
3071 DBGINFO(("%s tiocmget value=%08X\n", info
->device_name
, result
));
3076 * set modem control signals (DTR/RTS)
3078 * cmd signal command: TIOCMBIS = set bit TIOCMBIC = clear bit
3079 * TIOCMSET = set/clear signal values
3080 * value bit mask for command
3082 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
3083 unsigned int set
, unsigned int clear
)
3085 struct slgt_info
*info
= tty
->driver_data
;
3086 unsigned long flags
;
3088 DBGINFO(("%s tiocmset(%x,%x)\n", info
->device_name
, set
, clear
));
3090 if (set
& TIOCM_RTS
)
3091 info
->signals
|= SerialSignal_RTS
;
3092 if (set
& TIOCM_DTR
)
3093 info
->signals
|= SerialSignal_DTR
;
3094 if (clear
& TIOCM_RTS
)
3095 info
->signals
&= ~SerialSignal_RTS
;
3096 if (clear
& TIOCM_DTR
)
3097 info
->signals
&= ~SerialSignal_DTR
;
3099 spin_lock_irqsave(&info
->lock
,flags
);
3101 spin_unlock_irqrestore(&info
->lock
,flags
);
3106 * block current process until the device is ready to open
3108 static int block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
3109 struct slgt_info
*info
)
3111 DECLARE_WAITQUEUE(wait
, current
);
3113 int do_clocal
= 0, extra_count
= 0;
3114 unsigned long flags
;
3116 DBGINFO(("%s block_til_ready\n", tty
->driver
->name
));
3118 if (filp
->f_flags
& O_NONBLOCK
|| tty
->flags
& (1 << TTY_IO_ERROR
)){
3119 /* nonblock mode is set or port is not enabled */
3120 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
3124 if (tty
->termios
->c_cflag
& CLOCAL
)
3127 /* Wait for carrier detect and the line to become
3128 * free (i.e., not in use by the callout). While we are in
3129 * this loop, info->count is dropped by one, so that
3130 * close() knows when to free things. We restore it upon
3131 * exit, either normal or abnormal.
3135 add_wait_queue(&info
->open_wait
, &wait
);
3137 spin_lock_irqsave(&info
->lock
, flags
);
3138 if (!tty_hung_up_p(filp
)) {
3142 spin_unlock_irqrestore(&info
->lock
, flags
);
3143 info
->blocked_open
++;
3146 if ((tty
->termios
->c_cflag
& CBAUD
)) {
3147 spin_lock_irqsave(&info
->lock
,flags
);
3148 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
3150 spin_unlock_irqrestore(&info
->lock
,flags
);
3153 set_current_state(TASK_INTERRUPTIBLE
);
3155 if (tty_hung_up_p(filp
) || !(info
->flags
& ASYNC_INITIALIZED
)){
3156 retval
= (info
->flags
& ASYNC_HUP_NOTIFY
) ?
3157 -EAGAIN
: -ERESTARTSYS
;
3161 spin_lock_irqsave(&info
->lock
,flags
);
3163 spin_unlock_irqrestore(&info
->lock
,flags
);
3165 if (!(info
->flags
& ASYNC_CLOSING
) &&
3166 (do_clocal
|| (info
->signals
& SerialSignal_DCD
)) ) {
3170 if (signal_pending(current
)) {
3171 retval
= -ERESTARTSYS
;
3175 DBGINFO(("%s block_til_ready wait\n", tty
->driver
->name
));
3179 set_current_state(TASK_RUNNING
);
3180 remove_wait_queue(&info
->open_wait
, &wait
);
3184 info
->blocked_open
--;
3187 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
3189 DBGINFO(("%s block_til_ready ready, rc=%d\n", tty
->driver
->name
, retval
));
3193 static int alloc_tmp_rbuf(struct slgt_info
*info
)
3195 info
->tmp_rbuf
= kmalloc(info
->max_frame_size
+ 5, GFP_KERNEL
);
3196 if (info
->tmp_rbuf
== NULL
)
3201 static void free_tmp_rbuf(struct slgt_info
*info
)
3203 kfree(info
->tmp_rbuf
);
3204 info
->tmp_rbuf
= NULL
;
3208 * allocate DMA descriptor lists.
3210 static int alloc_desc(struct slgt_info
*info
)
3215 /* allocate memory to hold descriptor lists */
3216 info
->bufs
= pci_alloc_consistent(info
->pdev
, DESC_LIST_SIZE
, &info
->bufs_dma_addr
);
3217 if (info
->bufs
== NULL
)
3220 memset(info
->bufs
, 0, DESC_LIST_SIZE
);
3222 info
->rbufs
= (struct slgt_desc
*)info
->bufs
;
3223 info
->tbufs
= ((struct slgt_desc
*)info
->bufs
) + info
->rbuf_count
;
3225 pbufs
= (unsigned int)info
->bufs_dma_addr
;
3228 * Build circular lists of descriptors
3231 for (i
=0; i
< info
->rbuf_count
; i
++) {
3232 /* physical address of this descriptor */
3233 info
->rbufs
[i
].pdesc
= pbufs
+ (i
* sizeof(struct slgt_desc
));
3235 /* physical address of next descriptor */
3236 if (i
== info
->rbuf_count
- 1)
3237 info
->rbufs
[i
].next
= cpu_to_le32(pbufs
);
3239 info
->rbufs
[i
].next
= cpu_to_le32(pbufs
+ ((i
+1) * sizeof(struct slgt_desc
)));
3240 set_desc_count(info
->rbufs
[i
], DMABUFSIZE
);
3243 for (i
=0; i
< info
->tbuf_count
; i
++) {
3244 /* physical address of this descriptor */
3245 info
->tbufs
[i
].pdesc
= pbufs
+ ((info
->rbuf_count
+ i
) * sizeof(struct slgt_desc
));
3247 /* physical address of next descriptor */
3248 if (i
== info
->tbuf_count
- 1)
3249 info
->tbufs
[i
].next
= cpu_to_le32(pbufs
+ info
->rbuf_count
* sizeof(struct slgt_desc
));
3251 info
->tbufs
[i
].next
= cpu_to_le32(pbufs
+ ((info
->rbuf_count
+ i
+ 1) * sizeof(struct slgt_desc
)));
3257 static void free_desc(struct slgt_info
*info
)
3259 if (info
->bufs
!= NULL
) {
3260 pci_free_consistent(info
->pdev
, DESC_LIST_SIZE
, info
->bufs
, info
->bufs_dma_addr
);
3267 static int alloc_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
)
3270 for (i
=0; i
< count
; i
++) {
3271 if ((bufs
[i
].buf
= pci_alloc_consistent(info
->pdev
, DMABUFSIZE
, &bufs
[i
].buf_dma_addr
)) == NULL
)
3273 bufs
[i
].pbuf
= cpu_to_le32((unsigned int)bufs
[i
].buf_dma_addr
);
3278 static void free_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
)
3281 for (i
=0; i
< count
; i
++) {
3282 if (bufs
[i
].buf
== NULL
)
3284 pci_free_consistent(info
->pdev
, DMABUFSIZE
, bufs
[i
].buf
, bufs
[i
].buf_dma_addr
);
3289 static int alloc_dma_bufs(struct slgt_info
*info
)
3291 info
->rbuf_count
= 32;
3292 info
->tbuf_count
= 32;
3294 if (alloc_desc(info
) < 0 ||
3295 alloc_bufs(info
, info
->rbufs
, info
->rbuf_count
) < 0 ||
3296 alloc_bufs(info
, info
->tbufs
, info
->tbuf_count
) < 0 ||
3297 alloc_tmp_rbuf(info
) < 0) {
3298 DBGERR(("%s DMA buffer alloc fail\n", info
->device_name
));
3305 static void free_dma_bufs(struct slgt_info
*info
)
3308 free_bufs(info
, info
->rbufs
, info
->rbuf_count
);
3309 free_bufs(info
, info
->tbufs
, info
->tbuf_count
);
3312 free_tmp_rbuf(info
);
3315 static int claim_resources(struct slgt_info
*info
)
3317 if (request_mem_region(info
->phys_reg_addr
, SLGT_REG_SIZE
, "synclink_gt") == NULL
) {
3318 DBGERR(("%s reg addr conflict, addr=%08X\n",
3319 info
->device_name
, info
->phys_reg_addr
));
3320 info
->init_error
= DiagStatus_AddressConflict
;
3324 info
->reg_addr_requested
= 1;
3326 info
->reg_addr
= ioremap(info
->phys_reg_addr
, SLGT_REG_SIZE
);
3327 if (!info
->reg_addr
) {
3328 DBGERR(("%s cant map device registers, addr=%08X\n",
3329 info
->device_name
, info
->phys_reg_addr
));
3330 info
->init_error
= DiagStatus_CantAssignPciResources
;
3336 release_resources(info
);
3340 static void release_resources(struct slgt_info
*info
)
3342 if (info
->irq_requested
) {
3343 free_irq(info
->irq_level
, info
);
3344 info
->irq_requested
= 0;
3347 if (info
->reg_addr_requested
) {
3348 release_mem_region(info
->phys_reg_addr
, SLGT_REG_SIZE
);
3349 info
->reg_addr_requested
= 0;
3352 if (info
->reg_addr
) {
3353 iounmap(info
->reg_addr
);
3354 info
->reg_addr
= NULL
;
3358 /* Add the specified device instance data structure to the
3359 * global linked list of devices and increment the device count.
3361 static void add_device(struct slgt_info
*info
)
3365 info
->next_device
= NULL
;
3366 info
->line
= slgt_device_count
;
3367 sprintf(info
->device_name
, "%s%d", tty_dev_prefix
, info
->line
);
3369 if (info
->line
< MAX_DEVICES
) {
3370 if (maxframe
[info
->line
])
3371 info
->max_frame_size
= maxframe
[info
->line
];
3372 info
->dosyncppp
= dosyncppp
[info
->line
];
3375 slgt_device_count
++;
3377 if (!slgt_device_list
)
3378 slgt_device_list
= info
;
3380 struct slgt_info
*current_dev
= slgt_device_list
;
3381 while(current_dev
->next_device
)
3382 current_dev
= current_dev
->next_device
;
3383 current_dev
->next_device
= info
;
3386 if (info
->max_frame_size
< 4096)
3387 info
->max_frame_size
= 4096;
3388 else if (info
->max_frame_size
> 65535)
3389 info
->max_frame_size
= 65535;
3391 switch(info
->pdev
->device
) {
3392 case SYNCLINK_GT_DEVICE_ID
:
3395 case SYNCLINK_GT2_DEVICE_ID
:
3398 case SYNCLINK_GT4_DEVICE_ID
:
3401 case SYNCLINK_AC_DEVICE_ID
:
3403 info
->params
.mode
= MGSL_MODE_ASYNC
;
3406 devstr
= "(unknown model)";
3408 printk("SyncLink %s %s IO=%08x IRQ=%d MaxFrameSize=%u\n",
3409 devstr
, info
->device_name
, info
->phys_reg_addr
,
3410 info
->irq_level
, info
->max_frame_size
);
3412 #if SYNCLINK_GENERIC_HDLC
3418 * allocate device instance structure, return NULL on failure
3420 static struct slgt_info
*alloc_dev(int adapter_num
, int port_num
, struct pci_dev
*pdev
)
3422 struct slgt_info
*info
;
3424 info
= kzalloc(sizeof(struct slgt_info
), GFP_KERNEL
);
3427 DBGERR(("%s device alloc failed adapter=%d port=%d\n",
3428 driver_name
, adapter_num
, port_num
));
3430 info
->magic
= MGSL_MAGIC
;
3431 INIT_WORK(&info
->task
, bh_handler
);
3432 info
->max_frame_size
= 4096;
3433 info
->raw_rx_size
= DMABUFSIZE
;
3434 info
->close_delay
= 5*HZ
/10;
3435 info
->closing_wait
= 30*HZ
;
3436 init_waitqueue_head(&info
->open_wait
);
3437 init_waitqueue_head(&info
->close_wait
);
3438 init_waitqueue_head(&info
->status_event_wait_q
);
3439 init_waitqueue_head(&info
->event_wait_q
);
3440 spin_lock_init(&info
->netlock
);
3441 memcpy(&info
->params
,&default_params
,sizeof(MGSL_PARAMS
));
3442 info
->idle_mode
= HDLC_TXIDLE_FLAGS
;
3443 info
->adapter_num
= adapter_num
;
3444 info
->port_num
= port_num
;
3446 setup_timer(&info
->tx_timer
, tx_timeout
, (unsigned long)info
);
3447 setup_timer(&info
->rx_timer
, rx_timeout
, (unsigned long)info
);
3449 /* Copy configuration info to device instance data */
3451 info
->irq_level
= pdev
->irq
;
3452 info
->phys_reg_addr
= pci_resource_start(pdev
,0);
3454 info
->bus_type
= MGSL_BUS_TYPE_PCI
;
3455 info
->irq_flags
= IRQF_SHARED
;
3457 info
->init_error
= -1; /* assume error, set to 0 on successful init */
3463 static void device_init(int adapter_num
, struct pci_dev
*pdev
)
3465 struct slgt_info
*port_array
[SLGT_MAX_PORTS
];
3469 if (pdev
->device
== SYNCLINK_GT2_DEVICE_ID
)
3471 else if (pdev
->device
== SYNCLINK_GT4_DEVICE_ID
)
3474 /* allocate device instances for all ports */
3475 for (i
=0; i
< port_count
; ++i
) {
3476 port_array
[i
] = alloc_dev(adapter_num
, i
, pdev
);
3477 if (port_array
[i
] == NULL
) {
3478 for (--i
; i
>= 0; --i
)
3479 kfree(port_array
[i
]);
3484 /* give copy of port_array to all ports and add to device list */
3485 for (i
=0; i
< port_count
; ++i
) {
3486 memcpy(port_array
[i
]->port_array
, port_array
, sizeof(port_array
));
3487 add_device(port_array
[i
]);
3488 port_array
[i
]->port_count
= port_count
;
3489 spin_lock_init(&port_array
[i
]->lock
);
3492 /* Allocate and claim adapter resources */
3493 if (!claim_resources(port_array
[0])) {
3495 alloc_dma_bufs(port_array
[0]);
3497 /* copy resource information from first port to others */
3498 for (i
= 1; i
< port_count
; ++i
) {
3499 port_array
[i
]->lock
= port_array
[0]->lock
;
3500 port_array
[i
]->irq_level
= port_array
[0]->irq_level
;
3501 port_array
[i
]->reg_addr
= port_array
[0]->reg_addr
;
3502 alloc_dma_bufs(port_array
[i
]);
3505 if (request_irq(port_array
[0]->irq_level
,
3507 port_array
[0]->irq_flags
,
3508 port_array
[0]->device_name
,
3509 port_array
[0]) < 0) {
3510 DBGERR(("%s request_irq failed IRQ=%d\n",
3511 port_array
[0]->device_name
,
3512 port_array
[0]->irq_level
));
3514 port_array
[0]->irq_requested
= 1;
3515 adapter_test(port_array
[0]);
3516 for (i
=1 ; i
< port_count
; i
++) {
3517 port_array
[i
]->init_error
= port_array
[0]->init_error
;
3518 port_array
[i
]->gpio_present
= port_array
[0]->gpio_present
;
3523 for (i
=0; i
< port_count
; ++i
)
3524 tty_register_device(serial_driver
, port_array
[i
]->line
, &(port_array
[i
]->pdev
->dev
));
3527 static int __devinit
init_one(struct pci_dev
*dev
,
3528 const struct pci_device_id
*ent
)
3530 if (pci_enable_device(dev
)) {
3531 printk("error enabling pci device %p\n", dev
);
3534 pci_set_master(dev
);
3535 device_init(slgt_device_count
, dev
);
3539 static void __devexit
remove_one(struct pci_dev
*dev
)
3543 static const struct tty_operations ops
= {
3547 .put_char
= put_char
,
3548 .flush_chars
= flush_chars
,
3549 .write_room
= write_room
,
3550 .chars_in_buffer
= chars_in_buffer
,
3551 .flush_buffer
= flush_buffer
,
3553 .compat_ioctl
= slgt_compat_ioctl
,
3554 .throttle
= throttle
,
3555 .unthrottle
= unthrottle
,
3556 .send_xchar
= send_xchar
,
3557 .break_ctl
= set_break
,
3558 .wait_until_sent
= wait_until_sent
,
3559 .read_proc
= read_proc
,
3560 .set_termios
= set_termios
,
3562 .start
= tx_release
,
3564 .tiocmget
= tiocmget
,
3565 .tiocmset
= tiocmset
,
3568 static void slgt_cleanup(void)
3571 struct slgt_info
*info
;
3572 struct slgt_info
*tmp
;
3574 printk("unload %s %s\n", driver_name
, driver_version
);
3576 if (serial_driver
) {
3577 for (info
=slgt_device_list
; info
!= NULL
; info
=info
->next_device
)
3578 tty_unregister_device(serial_driver
, info
->line
);
3579 if ((rc
= tty_unregister_driver(serial_driver
)))
3580 DBGERR(("tty_unregister_driver error=%d\n", rc
));
3581 put_tty_driver(serial_driver
);
3585 info
= slgt_device_list
;
3588 info
= info
->next_device
;
3591 /* release devices */
3592 info
= slgt_device_list
;
3594 #if SYNCLINK_GENERIC_HDLC
3597 free_dma_bufs(info
);
3598 free_tmp_rbuf(info
);
3599 if (info
->port_num
== 0)
3600 release_resources(info
);
3602 info
= info
->next_device
;
3607 pci_unregister_driver(&pci_driver
);
3611 * Driver initialization entry point.
3613 static int __init
slgt_init(void)
3617 printk("%s %s\n", driver_name
, driver_version
);
3619 serial_driver
= alloc_tty_driver(MAX_DEVICES
);
3620 if (!serial_driver
) {
3621 printk("%s can't allocate tty driver\n", driver_name
);
3625 /* Initialize the tty_driver structure */
3627 serial_driver
->owner
= THIS_MODULE
;
3628 serial_driver
->driver_name
= tty_driver_name
;
3629 serial_driver
->name
= tty_dev_prefix
;
3630 serial_driver
->major
= ttymajor
;
3631 serial_driver
->minor_start
= 64;
3632 serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
3633 serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
3634 serial_driver
->init_termios
= tty_std_termios
;
3635 serial_driver
->init_termios
.c_cflag
=
3636 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
3637 serial_driver
->init_termios
.c_ispeed
= 9600;
3638 serial_driver
->init_termios
.c_ospeed
= 9600;
3639 serial_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
3640 tty_set_operations(serial_driver
, &ops
);
3641 if ((rc
= tty_register_driver(serial_driver
)) < 0) {
3642 DBGERR(("%s can't register serial driver\n", driver_name
));
3643 put_tty_driver(serial_driver
);
3644 serial_driver
= NULL
;
3648 printk("%s %s, tty major#%d\n",
3649 driver_name
, driver_version
,
3650 serial_driver
->major
);
3652 slgt_device_count
= 0;
3653 if ((rc
= pci_register_driver(&pci_driver
)) < 0) {
3654 printk("%s pci_register_driver error=%d\n", driver_name
, rc
);
3659 if (!slgt_device_list
)
3660 printk("%s no devices found\n",driver_name
);
3669 static void __exit
slgt_exit(void)
3674 module_init(slgt_init
);
3675 module_exit(slgt_exit
);
3678 * register access routines
3681 #define CALC_REGADDR() \
3682 unsigned long reg_addr = ((unsigned long)info->reg_addr) + addr; \
3684 reg_addr += (info->port_num) * 32;
3686 static __u8
rd_reg8(struct slgt_info
*info
, unsigned int addr
)
3689 return readb((void __iomem
*)reg_addr
);
3692 static void wr_reg8(struct slgt_info
*info
, unsigned int addr
, __u8 value
)
3695 writeb(value
, (void __iomem
*)reg_addr
);
3698 static __u16
rd_reg16(struct slgt_info
*info
, unsigned int addr
)
3701 return readw((void __iomem
*)reg_addr
);
3704 static void wr_reg16(struct slgt_info
*info
, unsigned int addr
, __u16 value
)
3707 writew(value
, (void __iomem
*)reg_addr
);
3710 static __u32
rd_reg32(struct slgt_info
*info
, unsigned int addr
)
3713 return readl((void __iomem
*)reg_addr
);
3716 static void wr_reg32(struct slgt_info
*info
, unsigned int addr
, __u32 value
)
3719 writel(value
, (void __iomem
*)reg_addr
);
3722 static void rdma_reset(struct slgt_info
*info
)
3727 wr_reg32(info
, RDCSR
, BIT1
);
3729 /* wait for enable bit cleared */
3730 for(i
=0 ; i
< 1000 ; i
++)
3731 if (!(rd_reg32(info
, RDCSR
) & BIT0
))
3735 static void tdma_reset(struct slgt_info
*info
)
3740 wr_reg32(info
, TDCSR
, BIT1
);
3742 /* wait for enable bit cleared */
3743 for(i
=0 ; i
< 1000 ; i
++)
3744 if (!(rd_reg32(info
, TDCSR
) & BIT0
))
3749 * enable internal loopback
3750 * TxCLK and RxCLK are generated from BRG
3751 * and TxD is looped back to RxD internally.
3753 static void enable_loopback(struct slgt_info
*info
)
3755 /* SCR (serial control) BIT2=looopback enable */
3756 wr_reg16(info
, SCR
, (unsigned short)(rd_reg16(info
, SCR
) | BIT2
));
3758 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3759 /* CCR (clock control)
3760 * 07..05 tx clock source (010 = BRG)
3761 * 04..02 rx clock source (010 = BRG)
3762 * 01 auxclk enable (0 = disable)
3763 * 00 BRG enable (1 = enable)
3767 wr_reg8(info
, CCR
, 0x49);
3769 /* set speed if available, otherwise use default */
3770 if (info
->params
.clock_speed
)
3771 set_rate(info
, info
->params
.clock_speed
);
3773 set_rate(info
, 3686400);
3778 * set baud rate generator to specified rate
3780 static void set_rate(struct slgt_info
*info
, u32 rate
)
3783 static unsigned int osc
= 14745600;
3785 /* div = osc/rate - 1
3787 * Round div up if osc/rate is not integer to
3788 * force to next slowest rate.
3793 if (!(osc
% rate
) && div
)
3795 wr_reg16(info
, BDR
, (unsigned short)div
);
3799 static void rx_stop(struct slgt_info
*info
)
3803 /* disable and reset receiver */
3804 val
= rd_reg16(info
, RCR
) & ~BIT1
; /* clear enable bit */
3805 wr_reg16(info
, RCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3806 wr_reg16(info
, RCR
, val
); /* clear reset bit */
3808 slgt_irq_off(info
, IRQ_RXOVER
+ IRQ_RXDATA
+ IRQ_RXIDLE
);
3810 /* clear pending rx interrupts */
3811 wr_reg16(info
, SSR
, IRQ_RXIDLE
+ IRQ_RXOVER
);
3815 info
->rx_enabled
= 0;
3816 info
->rx_restart
= 0;
3819 static void rx_start(struct slgt_info
*info
)
3823 slgt_irq_off(info
, IRQ_RXOVER
+ IRQ_RXDATA
);
3825 /* clear pending rx overrun IRQ */
3826 wr_reg16(info
, SSR
, IRQ_RXOVER
);
3828 /* reset and disable receiver */
3829 val
= rd_reg16(info
, RCR
) & ~BIT1
; /* clear enable bit */
3830 wr_reg16(info
, RCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3831 wr_reg16(info
, RCR
, val
); /* clear reset bit */
3836 /* set 1st descriptor address */
3837 wr_reg32(info
, RDDAR
, info
->rbufs
[0].pdesc
);
3839 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3840 /* enable rx DMA and DMA interrupt */
3841 wr_reg32(info
, RDCSR
, (BIT2
+ BIT0
));
3843 /* enable saving of rx status, rx DMA and DMA interrupt */
3844 wr_reg32(info
, RDCSR
, (BIT6
+ BIT2
+ BIT0
));
3847 slgt_irq_on(info
, IRQ_RXOVER
);
3849 /* enable receiver */
3850 wr_reg16(info
, RCR
, (unsigned short)(rd_reg16(info
, RCR
) | BIT1
));
3852 info
->rx_restart
= 0;
3853 info
->rx_enabled
= 1;
3856 static void tx_start(struct slgt_info
*info
)
3858 if (!info
->tx_enabled
) {
3860 (unsigned short)((rd_reg16(info
, TCR
) | BIT1
) & ~BIT2
));
3861 info
->tx_enabled
= TRUE
;
3864 if (info
->tx_count
) {
3865 info
->drop_rts_on_tx_done
= 0;
3867 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3868 if (info
->params
.flags
& HDLC_FLAG_AUTO_RTS
) {
3870 if (!(info
->signals
& SerialSignal_RTS
)) {
3871 info
->signals
|= SerialSignal_RTS
;
3873 info
->drop_rts_on_tx_done
= 1;
3877 slgt_irq_off(info
, IRQ_TXDATA
);
3878 slgt_irq_on(info
, IRQ_TXUNDER
+ IRQ_TXIDLE
);
3879 /* clear tx idle and underrun status bits */
3880 wr_reg16(info
, SSR
, (unsigned short)(IRQ_TXIDLE
+ IRQ_TXUNDER
));
3881 if (info
->params
.mode
== MGSL_MODE_HDLC
)
3882 mod_timer(&info
->tx_timer
, jiffies
+
3883 msecs_to_jiffies(5000));
3885 slgt_irq_off(info
, IRQ_TXDATA
);
3886 slgt_irq_on(info
, IRQ_TXIDLE
);
3887 /* clear tx idle status bit */
3888 wr_reg16(info
, SSR
, IRQ_TXIDLE
);
3891 info
->tx_active
= 1;
3896 * start transmit DMA if inactive and there are unsent buffers
3898 static void tdma_start(struct slgt_info
*info
)
3902 if (rd_reg32(info
, TDCSR
) & BIT0
)
3905 /* transmit DMA inactive, check for unsent buffers */
3906 i
= info
->tbuf_start
;
3907 while (!desc_count(info
->tbufs
[i
])) {
3908 if (++i
== info
->tbuf_count
)
3910 if (i
== info
->tbuf_current
)
3913 info
->tbuf_start
= i
;
3915 /* there are unsent buffers, start transmit DMA */
3917 /* reset needed if previous error condition */
3920 /* set 1st descriptor address */
3921 wr_reg32(info
, TDDAR
, info
->tbufs
[info
->tbuf_start
].pdesc
);
3922 switch(info
->params
.mode
) {
3924 case MGSL_MODE_MONOSYNC
:
3925 case MGSL_MODE_BISYNC
:
3926 wr_reg32(info
, TDCSR
, BIT2
+ BIT0
); /* IRQ + DMA enable */
3929 wr_reg32(info
, TDCSR
, BIT0
); /* DMA enable */
3933 static void tx_stop(struct slgt_info
*info
)
3937 del_timer(&info
->tx_timer
);
3941 /* reset and disable transmitter */
3942 val
= rd_reg16(info
, TCR
) & ~BIT1
; /* clear enable bit */
3943 wr_reg16(info
, TCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3945 slgt_irq_off(info
, IRQ_TXDATA
+ IRQ_TXIDLE
+ IRQ_TXUNDER
);
3947 /* clear tx idle and underrun status bit */
3948 wr_reg16(info
, SSR
, (unsigned short)(IRQ_TXIDLE
+ IRQ_TXUNDER
));
3952 info
->tx_enabled
= 0;
3953 info
->tx_active
= 0;
3956 static void reset_port(struct slgt_info
*info
)
3958 if (!info
->reg_addr
)
3964 info
->signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
3967 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
3970 static void reset_adapter(struct slgt_info
*info
)
3973 for (i
=0; i
< info
->port_count
; ++i
) {
3974 if (info
->port_array
[i
])
3975 reset_port(info
->port_array
[i
]);
3979 static void async_mode(struct slgt_info
*info
)
3983 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
3989 * 15..13 mode, 010=async
3990 * 12..10 encoding, 000=NRZ
3992 * 08 1=odd parity, 0=even parity
3993 * 07 1=RTS driver control
3995 * 05..04 character length
4000 * 03 0=1 stop bit, 1=2 stop bits
4003 * 00 auto-CTS enable
4007 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
4010 if (info
->params
.parity
!= ASYNC_PARITY_NONE
) {
4012 if (info
->params
.parity
== ASYNC_PARITY_ODD
)
4016 switch (info
->params
.data_bits
)
4018 case 6: val
|= BIT4
; break;
4019 case 7: val
|= BIT5
; break;
4020 case 8: val
|= BIT5
+ BIT4
; break;
4023 if (info
->params
.stop_bits
!= 1)
4026 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
4029 wr_reg16(info
, TCR
, val
);
4033 * 15..13 mode, 010=async
4034 * 12..10 encoding, 000=NRZ
4036 * 08 1=odd parity, 0=even parity
4037 * 07..06 reserved, must be 0
4038 * 05..04 character length
4043 * 03 reserved, must be zero
4046 * 00 auto-DCD enable
4050 if (info
->params
.parity
!= ASYNC_PARITY_NONE
) {
4052 if (info
->params
.parity
== ASYNC_PARITY_ODD
)
4056 switch (info
->params
.data_bits
)
4058 case 6: val
|= BIT4
; break;
4059 case 7: val
|= BIT5
; break;
4060 case 8: val
|= BIT5
+ BIT4
; break;
4063 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
4066 wr_reg16(info
, RCR
, val
);
4068 /* CCR (clock control)
4070 * 07..05 011 = tx clock source is BRG/16
4071 * 04..02 010 = rx clock source is BRG
4072 * 01 0 = auxclk disabled
4073 * 00 1 = BRG enabled
4077 wr_reg8(info
, CCR
, 0x69);
4081 /* SCR (serial control)
4083 * 15 1=tx req on FIFO half empty
4084 * 14 1=rx req on FIFO half full
4085 * 13 tx data IRQ enable
4086 * 12 tx idle IRQ enable
4087 * 11 rx break on IRQ enable
4088 * 10 rx data IRQ enable
4089 * 09 rx break off IRQ enable
4090 * 08 overrun IRQ enable
4095 * 03 reserved, must be zero
4096 * 02 1=txd->rxd internal loopback enable
4097 * 01 reserved, must be zero
4098 * 00 1=master IRQ enable
4100 val
= BIT15
+ BIT14
+ BIT0
;
4101 wr_reg16(info
, SCR
, val
);
4103 slgt_irq_on(info
, IRQ_RXBREAK
| IRQ_RXOVER
);
4105 set_rate(info
, info
->params
.data_rate
* 16);
4107 if (info
->params
.loopback
)
4108 enable_loopback(info
);
4111 static void sync_mode(struct slgt_info
*info
)
4115 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
4121 * 15..13 mode, 000=HDLC 001=raw 010=async 011=monosync 100=bisync
4125 * 07 1=RTS driver control
4126 * 06 preamble enable
4127 * 05..04 preamble length
4128 * 03 share open/close flag
4131 * 00 auto-CTS enable
4135 switch(info
->params
.mode
) {
4136 case MGSL_MODE_MONOSYNC
: val
|= BIT14
+ BIT13
; break;
4137 case MGSL_MODE_BISYNC
: val
|= BIT15
; break;
4138 case MGSL_MODE_RAW
: val
|= BIT13
; break;
4140 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
4143 switch(info
->params
.encoding
)
4145 case HDLC_ENCODING_NRZB
: val
|= BIT10
; break;
4146 case HDLC_ENCODING_NRZI_MARK
: val
|= BIT11
; break;
4147 case HDLC_ENCODING_NRZI
: val
|= BIT11
+ BIT10
; break;
4148 case HDLC_ENCODING_BIPHASE_MARK
: val
|= BIT12
; break;
4149 case HDLC_ENCODING_BIPHASE_SPACE
: val
|= BIT12
+ BIT10
; break;
4150 case HDLC_ENCODING_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
; break;
4151 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
+ BIT10
; break;
4154 switch (info
->params
.crc_type
& HDLC_CRC_MASK
)
4156 case HDLC_CRC_16_CCITT
: val
|= BIT9
; break;
4157 case HDLC_CRC_32_CCITT
: val
|= BIT9
+ BIT8
; break;
4160 if (info
->params
.preamble
!= HDLC_PREAMBLE_PATTERN_NONE
)
4163 switch (info
->params
.preamble_length
)
4165 case HDLC_PREAMBLE_LENGTH_16BITS
: val
|= BIT5
; break;
4166 case HDLC_PREAMBLE_LENGTH_32BITS
: val
|= BIT4
; break;
4167 case HDLC_PREAMBLE_LENGTH_64BITS
: val
|= BIT5
+ BIT4
; break;
4170 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
4173 wr_reg16(info
, TCR
, val
);
4175 /* TPR (transmit preamble) */
4177 switch (info
->params
.preamble
)
4179 case HDLC_PREAMBLE_PATTERN_FLAGS
: val
= 0x7e; break;
4180 case HDLC_PREAMBLE_PATTERN_ONES
: val
= 0xff; break;
4181 case HDLC_PREAMBLE_PATTERN_ZEROS
: val
= 0x00; break;
4182 case HDLC_PREAMBLE_PATTERN_10
: val
= 0x55; break;
4183 case HDLC_PREAMBLE_PATTERN_01
: val
= 0xaa; break;
4184 default: val
= 0x7e; break;
4186 wr_reg8(info
, TPR
, (unsigned char)val
);
4190 * 15..13 mode, 000=HDLC 001=raw 010=async 011=monosync 100=bisync
4194 * 07..03 reserved, must be 0
4197 * 00 auto-DCD enable
4201 switch(info
->params
.mode
) {
4202 case MGSL_MODE_MONOSYNC
: val
|= BIT14
+ BIT13
; break;
4203 case MGSL_MODE_BISYNC
: val
|= BIT15
; break;
4204 case MGSL_MODE_RAW
: val
|= BIT13
; break;
4207 switch(info
->params
.encoding
)
4209 case HDLC_ENCODING_NRZB
: val
|= BIT10
; break;
4210 case HDLC_ENCODING_NRZI_MARK
: val
|= BIT11
; break;
4211 case HDLC_ENCODING_NRZI
: val
|= BIT11
+ BIT10
; break;
4212 case HDLC_ENCODING_BIPHASE_MARK
: val
|= BIT12
; break;
4213 case HDLC_ENCODING_BIPHASE_SPACE
: val
|= BIT12
+ BIT10
; break;
4214 case HDLC_ENCODING_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
; break;
4215 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
+ BIT10
; break;
4218 switch (info
->params
.crc_type
& HDLC_CRC_MASK
)
4220 case HDLC_CRC_16_CCITT
: val
|= BIT9
; break;
4221 case HDLC_CRC_32_CCITT
: val
|= BIT9
+ BIT8
; break;
4224 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
4227 wr_reg16(info
, RCR
, val
);
4229 /* CCR (clock control)
4231 * 07..05 tx clock source
4232 * 04..02 rx clock source
4238 if (info
->params
.flags
& HDLC_FLAG_TXC_BRG
)
4240 // when RxC source is DPLL, BRG generates 16X DPLL
4241 // reference clock, so take TxC from BRG/16 to get
4242 // transmit clock at actual data rate
4243 if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
4244 val
|= BIT6
+ BIT5
; /* 011, txclk = BRG/16 */
4246 val
|= BIT6
; /* 010, txclk = BRG */
4248 else if (info
->params
.flags
& HDLC_FLAG_TXC_DPLL
)
4249 val
|= BIT7
; /* 100, txclk = DPLL Input */
4250 else if (info
->params
.flags
& HDLC_FLAG_TXC_RXCPIN
)
4251 val
|= BIT5
; /* 001, txclk = RXC Input */
4253 if (info
->params
.flags
& HDLC_FLAG_RXC_BRG
)
4254 val
|= BIT3
; /* 010, rxclk = BRG */
4255 else if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
4256 val
|= BIT4
; /* 100, rxclk = DPLL */
4257 else if (info
->params
.flags
& HDLC_FLAG_RXC_TXCPIN
)
4258 val
|= BIT2
; /* 001, rxclk = TXC Input */
4260 if (info
->params
.clock_speed
)
4263 wr_reg8(info
, CCR
, (unsigned char)val
);
4265 if (info
->params
.flags
& (HDLC_FLAG_TXC_DPLL
+ HDLC_FLAG_RXC_DPLL
))
4267 // program DPLL mode
4268 switch(info
->params
.encoding
)
4270 case HDLC_ENCODING_BIPHASE_MARK
:
4271 case HDLC_ENCODING_BIPHASE_SPACE
:
4273 case HDLC_ENCODING_BIPHASE_LEVEL
:
4274 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
:
4275 val
= BIT7
+ BIT6
; break;
4276 default: val
= BIT6
; // NRZ encodings
4278 wr_reg16(info
, RCR
, (unsigned short)(rd_reg16(info
, RCR
) | val
));
4280 // DPLL requires a 16X reference clock from BRG
4281 set_rate(info
, info
->params
.clock_speed
* 16);
4284 set_rate(info
, info
->params
.clock_speed
);
4290 /* SCR (serial control)
4292 * 15 1=tx req on FIFO half empty
4293 * 14 1=rx req on FIFO half full
4294 * 13 tx data IRQ enable
4295 * 12 tx idle IRQ enable
4296 * 11 underrun IRQ enable
4297 * 10 rx data IRQ enable
4298 * 09 rx idle IRQ enable
4299 * 08 overrun IRQ enable
4304 * 03 reserved, must be zero
4305 * 02 1=txd->rxd internal loopback enable
4306 * 01 reserved, must be zero
4307 * 00 1=master IRQ enable
4309 wr_reg16(info
, SCR
, BIT15
+ BIT14
+ BIT0
);
4311 if (info
->params
.loopback
)
4312 enable_loopback(info
);
4316 * set transmit idle mode
4318 static void tx_set_idle(struct slgt_info
*info
)
4323 /* if preamble enabled (tcr[6] == 1) then tx idle size = 8 bits
4324 * else tcr[5:4] = tx idle size: 00 = 8 bits, 01 = 16 bits
4326 tcr
= rd_reg16(info
, TCR
);
4327 if (info
->idle_mode
& HDLC_TXIDLE_CUSTOM_16
) {
4328 /* disable preamble, set idle size to 16 bits */
4329 tcr
= (tcr
& ~(BIT6
+ BIT5
)) | BIT4
;
4330 /* MSB of 16 bit idle specified in tx preamble register (TPR) */
4331 wr_reg8(info
, TPR
, (unsigned char)((info
->idle_mode
>> 8) & 0xff));
4332 } else if (!(tcr
& BIT6
)) {
4333 /* preamble is disabled, set idle size to 8 bits */
4334 tcr
&= ~(BIT5
+ BIT4
);
4336 wr_reg16(info
, TCR
, tcr
);
4338 if (info
->idle_mode
& (HDLC_TXIDLE_CUSTOM_8
| HDLC_TXIDLE_CUSTOM_16
)) {
4339 /* LSB of custom tx idle specified in tx idle register */
4340 val
= (unsigned char)(info
->idle_mode
& 0xff);
4342 /* standard 8 bit idle patterns */
4343 switch(info
->idle_mode
)
4345 case HDLC_TXIDLE_FLAGS
: val
= 0x7e; break;
4346 case HDLC_TXIDLE_ALT_ZEROS_ONES
:
4347 case HDLC_TXIDLE_ALT_MARK_SPACE
: val
= 0xaa; break;
4348 case HDLC_TXIDLE_ZEROS
:
4349 case HDLC_TXIDLE_SPACE
: val
= 0x00; break;
4350 default: val
= 0xff;
4354 wr_reg8(info
, TIR
, val
);
4358 * get state of V24 status (input) signals
4360 static void get_signals(struct slgt_info
*info
)
4362 unsigned short status
= rd_reg16(info
, SSR
);
4364 /* clear all serial signals except DTR and RTS */
4365 info
->signals
&= SerialSignal_DTR
+ SerialSignal_RTS
;
4368 info
->signals
|= SerialSignal_DSR
;
4370 info
->signals
|= SerialSignal_CTS
;
4372 info
->signals
|= SerialSignal_DCD
;
4374 info
->signals
|= SerialSignal_RI
;
4378 * set V.24 Control Register based on current configuration
4380 static void msc_set_vcr(struct slgt_info
*info
)
4382 unsigned char val
= 0;
4384 /* VCR (V.24 control)
4386 * 07..04 serial IF select
4393 switch(info
->if_mode
& MGSL_INTERFACE_MASK
)
4395 case MGSL_INTERFACE_RS232
:
4396 val
|= BIT5
; /* 0010 */
4398 case MGSL_INTERFACE_V35
:
4399 val
|= BIT7
+ BIT6
+ BIT5
; /* 1110 */
4401 case MGSL_INTERFACE_RS422
:
4402 val
|= BIT6
; /* 0100 */
4406 if (info
->signals
& SerialSignal_DTR
)
4408 if (info
->signals
& SerialSignal_RTS
)
4410 if (info
->if_mode
& MGSL_INTERFACE_LL
)
4412 if (info
->if_mode
& MGSL_INTERFACE_RL
)
4414 wr_reg8(info
, VCR
, val
);
4418 * set state of V24 control (output) signals
4420 static void set_signals(struct slgt_info
*info
)
4422 unsigned char val
= rd_reg8(info
, VCR
);
4423 if (info
->signals
& SerialSignal_DTR
)
4427 if (info
->signals
& SerialSignal_RTS
)
4431 wr_reg8(info
, VCR
, val
);
4435 * free range of receive DMA buffers (i to last)
4437 static void free_rbufs(struct slgt_info
*info
, unsigned int i
, unsigned int last
)
4442 /* reset current buffer for reuse */
4443 info
->rbufs
[i
].status
= 0;
4444 switch(info
->params
.mode
) {
4446 case MGSL_MODE_MONOSYNC
:
4447 case MGSL_MODE_BISYNC
:
4448 set_desc_count(info
->rbufs
[i
], info
->raw_rx_size
);
4451 set_desc_count(info
->rbufs
[i
], DMABUFSIZE
);
4456 if (++i
== info
->rbuf_count
)
4459 info
->rbuf_current
= i
;
4463 * mark all receive DMA buffers as free
4465 static void reset_rbufs(struct slgt_info
*info
)
4467 free_rbufs(info
, 0, info
->rbuf_count
- 1);
4471 * pass receive HDLC frame to upper layer
4473 * return 1 if frame available, otherwise 0
4475 static int rx_get_frame(struct slgt_info
*info
)
4477 unsigned int start
, end
;
4478 unsigned short status
;
4479 unsigned int framesize
= 0;
4481 unsigned long flags
;
4482 struct tty_struct
*tty
= info
->tty
;
4483 unsigned char addr_field
= 0xff;
4484 unsigned int crc_size
= 0;
4486 switch (info
->params
.crc_type
& HDLC_CRC_MASK
) {
4487 case HDLC_CRC_16_CCITT
: crc_size
= 2; break;
4488 case HDLC_CRC_32_CCITT
: crc_size
= 4; break;
4495 start
= end
= info
->rbuf_current
;
4498 if (!desc_complete(info
->rbufs
[end
]))
4501 if (framesize
== 0 && info
->params
.addr_filter
!= 0xff)
4502 addr_field
= info
->rbufs
[end
].buf
[0];
4504 framesize
+= desc_count(info
->rbufs
[end
]);
4506 if (desc_eof(info
->rbufs
[end
]))
4509 if (++end
== info
->rbuf_count
)
4512 if (end
== info
->rbuf_current
) {
4513 if (info
->rx_enabled
){
4514 spin_lock_irqsave(&info
->lock
,flags
);
4516 spin_unlock_irqrestore(&info
->lock
,flags
);
4524 * 15 buffer complete
4527 * 02 eof (end of frame)
4531 status
= desc_status(info
->rbufs
[end
]);
4533 /* ignore CRC bit if not using CRC (bit is undefined) */
4534 if ((info
->params
.crc_type
& HDLC_CRC_MASK
) == HDLC_CRC_NONE
)
4537 if (framesize
== 0 ||
4538 (addr_field
!= 0xff && addr_field
!= info
->params
.addr_filter
)) {
4539 free_rbufs(info
, start
, end
);
4543 if (framesize
< (2 + crc_size
) || status
& BIT0
) {
4544 info
->icount
.rxshort
++;
4546 } else if (status
& BIT1
) {
4547 info
->icount
.rxcrc
++;
4548 if (!(info
->params
.crc_type
& HDLC_CRC_RETURN_EX
))
4552 #if SYNCLINK_GENERIC_HDLC
4553 if (framesize
== 0) {
4554 struct net_device_stats
*stats
= hdlc_stats(info
->netdev
);
4556 stats
->rx_frame_errors
++;
4560 DBGBH(("%s rx frame status=%04X size=%d\n",
4561 info
->device_name
, status
, framesize
));
4562 DBGDATA(info
, info
->rbufs
[start
].buf
, min_t(int, framesize
, DMABUFSIZE
), "rx");
4565 if (!(info
->params
.crc_type
& HDLC_CRC_RETURN_EX
)) {
4566 framesize
-= crc_size
;
4570 if (framesize
> info
->max_frame_size
+ crc_size
)
4571 info
->icount
.rxlong
++;
4573 /* copy dma buffer(s) to contiguous temp buffer */
4574 int copy_count
= framesize
;
4576 unsigned char *p
= info
->tmp_rbuf
;
4577 info
->tmp_rbuf_count
= framesize
;
4579 info
->icount
.rxok
++;
4582 int partial_count
= min(copy_count
, DMABUFSIZE
);
4583 memcpy(p
, info
->rbufs
[i
].buf
, partial_count
);
4585 copy_count
-= partial_count
;
4586 if (++i
== info
->rbuf_count
)
4590 if (info
->params
.crc_type
& HDLC_CRC_RETURN_EX
) {
4591 *p
= (status
& BIT1
) ? RX_CRC_ERROR
: RX_OK
;
4595 #if SYNCLINK_GENERIC_HDLC
4597 hdlcdev_rx(info
,info
->tmp_rbuf
, framesize
);
4600 ldisc_receive_buf(tty
, info
->tmp_rbuf
, info
->flag_buf
, framesize
);
4603 free_rbufs(info
, start
, end
);
4611 * pass receive buffer (RAW synchronous mode) to tty layer
4612 * return 1 if buffer available, otherwise 0
4614 static int rx_get_buf(struct slgt_info
*info
)
4616 unsigned int i
= info
->rbuf_current
;
4619 if (!desc_complete(info
->rbufs
[i
]))
4621 count
= desc_count(info
->rbufs
[i
]);
4622 switch(info
->params
.mode
) {
4623 case MGSL_MODE_MONOSYNC
:
4624 case MGSL_MODE_BISYNC
:
4625 /* ignore residue in byte synchronous modes */
4626 if (desc_residue(info
->rbufs
[i
]))
4630 DBGDATA(info
, info
->rbufs
[i
].buf
, count
, "rx");
4631 DBGINFO(("rx_get_buf size=%d\n", count
));
4633 ldisc_receive_buf(info
->tty
, info
->rbufs
[i
].buf
,
4634 info
->flag_buf
, count
);
4635 free_rbufs(info
, i
, i
);
4639 static void reset_tbufs(struct slgt_info
*info
)
4642 info
->tbuf_current
= 0;
4643 for (i
=0 ; i
< info
->tbuf_count
; i
++) {
4644 info
->tbufs
[i
].status
= 0;
4645 info
->tbufs
[i
].count
= 0;
4650 * return number of free transmit DMA buffers
4652 static unsigned int free_tbuf_count(struct slgt_info
*info
)
4654 unsigned int count
= 0;
4655 unsigned int i
= info
->tbuf_current
;
4659 if (desc_count(info
->tbufs
[i
]))
4660 break; /* buffer in use */
4662 if (++i
== info
->tbuf_count
)
4664 } while (i
!= info
->tbuf_current
);
4666 /* if tx DMA active, last zero count buffer is in use */
4667 if (count
&& (rd_reg32(info
, TDCSR
) & BIT0
))
4674 * load transmit DMA buffer(s) with data
4676 static void tx_load(struct slgt_info
*info
, const char *buf
, unsigned int size
)
4678 unsigned short count
;
4680 struct slgt_desc
*d
;
4685 DBGDATA(info
, buf
, size
, "tx");
4687 info
->tbuf_start
= i
= info
->tbuf_current
;
4690 d
= &info
->tbufs
[i
];
4691 if (++i
== info
->tbuf_count
)
4694 count
= (unsigned short)((size
> DMABUFSIZE
) ? DMABUFSIZE
: size
);
4695 memcpy(d
->buf
, buf
, count
);
4701 * set EOF bit for last buffer of HDLC frame or
4702 * for every buffer in raw mode
4704 if ((!size
&& info
->params
.mode
== MGSL_MODE_HDLC
) ||
4705 info
->params
.mode
== MGSL_MODE_RAW
)
4706 set_desc_eof(*d
, 1);
4708 set_desc_eof(*d
, 0);
4710 set_desc_count(*d
, count
);
4713 info
->tbuf_current
= i
;
4716 static int register_test(struct slgt_info
*info
)
4718 static unsigned short patterns
[] =
4719 {0x0000, 0xffff, 0xaaaa, 0x5555, 0x6969, 0x9696};
4720 static unsigned int count
= sizeof(patterns
)/sizeof(patterns
[0]);
4724 for (i
=0 ; i
< count
; i
++) {
4725 wr_reg16(info
, TIR
, patterns
[i
]);
4726 wr_reg16(info
, BDR
, patterns
[(i
+1)%count
]);
4727 if ((rd_reg16(info
, TIR
) != patterns
[i
]) ||
4728 (rd_reg16(info
, BDR
) != patterns
[(i
+1)%count
])) {
4733 info
->gpio_present
= (rd_reg32(info
, JCR
) & BIT5
) ? 1 : 0;
4734 info
->init_error
= rc
? 0 : DiagStatus_AddressFailure
;
4738 static int irq_test(struct slgt_info
*info
)
4740 unsigned long timeout
;
4741 unsigned long flags
;
4742 struct tty_struct
*oldtty
= info
->tty
;
4743 u32 speed
= info
->params
.data_rate
;
4745 info
->params
.data_rate
= 921600;
4748 spin_lock_irqsave(&info
->lock
, flags
);
4750 slgt_irq_on(info
, IRQ_TXIDLE
);
4752 /* enable transmitter */
4754 (unsigned short)(rd_reg16(info
, TCR
) | BIT1
));
4756 /* write one byte and wait for tx idle */
4757 wr_reg16(info
, TDR
, 0);
4759 /* assume failure */
4760 info
->init_error
= DiagStatus_IrqFailure
;
4761 info
->irq_occurred
= FALSE
;
4763 spin_unlock_irqrestore(&info
->lock
, flags
);
4766 while(timeout
-- && !info
->irq_occurred
)
4767 msleep_interruptible(10);
4769 spin_lock_irqsave(&info
->lock
,flags
);
4771 spin_unlock_irqrestore(&info
->lock
,flags
);
4773 info
->params
.data_rate
= speed
;
4776 info
->init_error
= info
->irq_occurred
? 0 : DiagStatus_IrqFailure
;
4777 return info
->irq_occurred
? 0 : -ENODEV
;
4780 static int loopback_test_rx(struct slgt_info
*info
)
4782 unsigned char *src
, *dest
;
4785 if (desc_complete(info
->rbufs
[0])) {
4786 count
= desc_count(info
->rbufs
[0]);
4787 src
= info
->rbufs
[0].buf
;
4788 dest
= info
->tmp_rbuf
;
4790 for( ; count
; count
-=2, src
+=2) {
4791 /* src=data byte (src+1)=status byte */
4792 if (!(*(src
+1) & (BIT9
+ BIT8
))) {
4795 info
->tmp_rbuf_count
++;
4798 DBGDATA(info
, info
->tmp_rbuf
, info
->tmp_rbuf_count
, "rx");
4804 static int loopback_test(struct slgt_info
*info
)
4806 #define TESTFRAMESIZE 20
4808 unsigned long timeout
;
4809 u16 count
= TESTFRAMESIZE
;
4810 unsigned char buf
[TESTFRAMESIZE
];
4812 unsigned long flags
;
4814 struct tty_struct
*oldtty
= info
->tty
;
4817 memcpy(¶ms
, &info
->params
, sizeof(params
));
4819 info
->params
.mode
= MGSL_MODE_ASYNC
;
4820 info
->params
.data_rate
= 921600;
4821 info
->params
.loopback
= 1;
4824 /* build and send transmit frame */
4825 for (count
= 0; count
< TESTFRAMESIZE
; ++count
)
4826 buf
[count
] = (unsigned char)count
;
4828 info
->tmp_rbuf_count
= 0;
4829 memset(info
->tmp_rbuf
, 0, TESTFRAMESIZE
);
4831 /* program hardware for HDLC and enabled receiver */
4832 spin_lock_irqsave(&info
->lock
,flags
);
4835 info
->tx_count
= count
;
4836 tx_load(info
, buf
, count
);
4838 spin_unlock_irqrestore(&info
->lock
, flags
);
4840 /* wait for receive complete */
4841 for (timeout
= 100; timeout
; --timeout
) {
4842 msleep_interruptible(10);
4843 if (loopback_test_rx(info
)) {
4849 /* verify received frame length and contents */
4850 if (!rc
&& (info
->tmp_rbuf_count
!= count
||
4851 memcmp(buf
, info
->tmp_rbuf
, count
))) {
4855 spin_lock_irqsave(&info
->lock
,flags
);
4856 reset_adapter(info
);
4857 spin_unlock_irqrestore(&info
->lock
,flags
);
4859 memcpy(&info
->params
, ¶ms
, sizeof(info
->params
));
4862 info
->init_error
= rc
? DiagStatus_DmaFailure
: 0;
4866 static int adapter_test(struct slgt_info
*info
)
4868 DBGINFO(("testing %s\n", info
->device_name
));
4869 if (register_test(info
) < 0) {
4870 printk("register test failure %s addr=%08X\n",
4871 info
->device_name
, info
->phys_reg_addr
);
4872 } else if (irq_test(info
) < 0) {
4873 printk("IRQ test failure %s IRQ=%d\n",
4874 info
->device_name
, info
->irq_level
);
4875 } else if (loopback_test(info
) < 0) {
4876 printk("loopback test failure %s\n", info
->device_name
);
4878 return info
->init_error
;
4882 * transmit timeout handler
4884 static void tx_timeout(unsigned long context
)
4886 struct slgt_info
*info
= (struct slgt_info
*)context
;
4887 unsigned long flags
;
4889 DBGINFO(("%s tx_timeout\n", info
->device_name
));
4890 if(info
->tx_active
&& info
->params
.mode
== MGSL_MODE_HDLC
) {
4891 info
->icount
.txtimeout
++;
4893 spin_lock_irqsave(&info
->lock
,flags
);
4894 info
->tx_active
= 0;
4896 spin_unlock_irqrestore(&info
->lock
,flags
);
4898 #if SYNCLINK_GENERIC_HDLC
4900 hdlcdev_tx_done(info
);
4907 * receive buffer polling timer
4909 static void rx_timeout(unsigned long context
)
4911 struct slgt_info
*info
= (struct slgt_info
*)context
;
4912 unsigned long flags
;
4914 DBGINFO(("%s rx_timeout\n", info
->device_name
));
4915 spin_lock_irqsave(&info
->lock
, flags
);
4916 info
->pending_bh
|= BH_RECEIVE
;
4917 spin_unlock_irqrestore(&info
->lock
, flags
);
4918 bh_handler(&info
->task
);