2 * $Id: synclink_gt.c,v 4.36 2006/08/28 20:47:14 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.36 $";
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 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
149 static struct tty_driver
*serial_driver
;
151 static int open(struct tty_struct
*tty
, struct file
* filp
);
152 static void close(struct tty_struct
*tty
, struct file
* filp
);
153 static void hangup(struct tty_struct
*tty
);
154 static void set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
);
156 static int write(struct tty_struct
*tty
, const unsigned char *buf
, int count
);
157 static void put_char(struct tty_struct
*tty
, unsigned char ch
);
158 static void send_xchar(struct tty_struct
*tty
, char ch
);
159 static void wait_until_sent(struct tty_struct
*tty
, int timeout
);
160 static int write_room(struct tty_struct
*tty
);
161 static void flush_chars(struct tty_struct
*tty
);
162 static void flush_buffer(struct tty_struct
*tty
);
163 static void tx_hold(struct tty_struct
*tty
);
164 static void tx_release(struct tty_struct
*tty
);
166 static int ioctl(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
, unsigned long arg
);
167 static int read_proc(char *page
, char **start
, off_t off
, int count
,int *eof
, void *data
);
168 static int chars_in_buffer(struct tty_struct
*tty
);
169 static void throttle(struct tty_struct
* tty
);
170 static void unthrottle(struct tty_struct
* tty
);
171 static void set_break(struct tty_struct
*tty
, int break_state
);
174 * generic HDLC support and callbacks
176 #if SYNCLINK_GENERIC_HDLC
177 #define dev_to_port(D) (dev_to_hdlc(D)->priv)
178 static void hdlcdev_tx_done(struct slgt_info
*info
);
179 static void hdlcdev_rx(struct slgt_info
*info
, char *buf
, int size
);
180 static int hdlcdev_init(struct slgt_info
*info
);
181 static void hdlcdev_exit(struct slgt_info
*info
);
186 * device specific structures, macros and functions
189 #define SLGT_MAX_PORTS 4
190 #define SLGT_REG_SIZE 256
193 * conditional wait facility
196 struct cond_wait
*next
;
201 static void init_cond_wait(struct cond_wait
*w
, unsigned int data
);
202 static void add_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
);
203 static void remove_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
);
204 static void flush_cond_wait(struct cond_wait
**head
);
207 * DMA buffer descriptor and access macros
211 unsigned short count
;
212 unsigned short status
;
213 unsigned int pbuf
; /* physical address of data buffer */
214 unsigned int next
; /* physical address of next descriptor */
216 /* driver book keeping */
217 char *buf
; /* virtual address of data buffer */
218 unsigned int pdesc
; /* physical address of this descriptor */
219 dma_addr_t buf_dma_addr
;
222 #define set_desc_buffer(a,b) (a).pbuf = cpu_to_le32((unsigned int)(b))
223 #define set_desc_next(a,b) (a).next = cpu_to_le32((unsigned int)(b))
224 #define set_desc_count(a,b)(a).count = cpu_to_le16((unsigned short)(b))
225 #define set_desc_eof(a,b) (a).status = cpu_to_le16((b) ? (le16_to_cpu((a).status) | BIT0) : (le16_to_cpu((a).status) & ~BIT0))
226 #define desc_count(a) (le16_to_cpu((a).count))
227 #define desc_status(a) (le16_to_cpu((a).status))
228 #define desc_complete(a) (le16_to_cpu((a).status) & BIT15)
229 #define desc_eof(a) (le16_to_cpu((a).status) & BIT2)
230 #define desc_crc_error(a) (le16_to_cpu((a).status) & BIT1)
231 #define desc_abort(a) (le16_to_cpu((a).status) & BIT0)
232 #define desc_residue(a) ((le16_to_cpu((a).status) & 0x38) >> 3)
234 struct _input_signal_events
{
246 * device instance data structure
249 void *if_ptr
; /* General purpose pointer (used by SPPP) */
251 struct slgt_info
*next_device
; /* device list link */
256 char device_name
[25];
257 struct pci_dev
*pdev
;
259 int port_count
; /* count of ports on adapter */
260 int adapter_num
; /* adapter instance number */
261 int port_num
; /* port instance number */
263 /* array of pointers to port contexts on this adapter */
264 struct slgt_info
*port_array
[SLGT_MAX_PORTS
];
266 int count
; /* count of opens */
267 int line
; /* tty line instance number */
268 unsigned short close_delay
;
269 unsigned short closing_wait
; /* time to wait before closing */
271 struct mgsl_icount icount
;
273 struct tty_struct
*tty
;
275 int x_char
; /* xon/xoff character */
276 int blocked_open
; /* # of blocked opens */
277 unsigned int read_status_mask
;
278 unsigned int ignore_status_mask
;
280 wait_queue_head_t open_wait
;
281 wait_queue_head_t close_wait
;
283 wait_queue_head_t status_event_wait_q
;
284 wait_queue_head_t event_wait_q
;
285 struct timer_list tx_timer
;
286 struct timer_list rx_timer
;
288 unsigned int gpio_present
;
289 struct cond_wait
*gpio_wait_q
;
291 spinlock_t lock
; /* spinlock for synchronizing with ISR */
293 struct work_struct task
;
299 int irq_requested
; /* nonzero if IRQ requested */
300 int irq_occurred
; /* for diagnostics use */
302 /* device configuration */
304 unsigned int bus_type
;
305 unsigned int irq_level
;
306 unsigned long irq_flags
;
308 unsigned char __iomem
* reg_addr
; /* memory mapped registers address */
310 int reg_addr_requested
;
312 MGSL_PARAMS params
; /* communications parameters */
314 u32 max_frame_size
; /* as set by device config */
316 unsigned int raw_rx_size
;
317 unsigned int if_mode
;
327 unsigned char signals
; /* serial signal states */
328 int init_error
; /* initialization error */
330 unsigned char *tx_buf
;
333 char flag_buf
[MAX_ASYNC_BUFFER_SIZE
];
334 char char_buf
[MAX_ASYNC_BUFFER_SIZE
];
335 BOOLEAN drop_rts_on_tx_done
;
336 struct _input_signal_events input_signal_events
;
338 int dcd_chkcount
; /* check counts to prevent */
339 int cts_chkcount
; /* too many IRQs if a signal */
340 int dsr_chkcount
; /* is floating */
343 char *bufs
; /* virtual address of DMA buffer lists */
344 dma_addr_t bufs_dma_addr
; /* physical address of buffer descriptors */
346 unsigned int rbuf_count
;
347 struct slgt_desc
*rbufs
;
348 unsigned int rbuf_current
;
349 unsigned int rbuf_index
;
351 unsigned int tbuf_count
;
352 struct slgt_desc
*tbufs
;
353 unsigned int tbuf_current
;
354 unsigned int tbuf_start
;
356 unsigned char *tmp_rbuf
;
357 unsigned int tmp_rbuf_count
;
359 /* SPPP/Cisco HDLC device parts */
364 #if SYNCLINK_GENERIC_HDLC
365 struct net_device
*netdev
;
370 static MGSL_PARAMS default_params
= {
371 .mode
= MGSL_MODE_HDLC
,
373 .flags
= HDLC_FLAG_UNDERRUN_ABORT15
,
374 .encoding
= HDLC_ENCODING_NRZI_SPACE
,
377 .crc_type
= HDLC_CRC_16_CCITT
,
378 .preamble_length
= HDLC_PREAMBLE_LENGTH_8BITS
,
379 .preamble
= HDLC_PREAMBLE_PATTERN_NONE
,
383 .parity
= ASYNC_PARITY_NONE
388 #define BH_TRANSMIT 2
390 #define IO_PIN_SHUTDOWN_LIMIT 100
392 #define DMABUFSIZE 256
393 #define DESC_LIST_SIZE 4096
395 #define MASK_PARITY BIT1
396 #define MASK_FRAMING BIT0
397 #define MASK_BREAK BIT14
398 #define MASK_OVERRUN BIT4
400 #define GSR 0x00 /* global status */
401 #define JCR 0x04 /* JTAG control */
402 #define IODR 0x08 /* GPIO direction */
403 #define IOER 0x0c /* GPIO interrupt enable */
404 #define IOVR 0x10 /* GPIO value */
405 #define IOSR 0x14 /* GPIO interrupt status */
406 #define TDR 0x80 /* tx data */
407 #define RDR 0x80 /* rx data */
408 #define TCR 0x82 /* tx control */
409 #define TIR 0x84 /* tx idle */
410 #define TPR 0x85 /* tx preamble */
411 #define RCR 0x86 /* rx control */
412 #define VCR 0x88 /* V.24 control */
413 #define CCR 0x89 /* clock control */
414 #define BDR 0x8a /* baud divisor */
415 #define SCR 0x8c /* serial control */
416 #define SSR 0x8e /* serial status */
417 #define RDCSR 0x90 /* rx DMA control/status */
418 #define TDCSR 0x94 /* tx DMA control/status */
419 #define RDDAR 0x98 /* rx DMA descriptor address */
420 #define TDDAR 0x9c /* tx DMA descriptor address */
423 #define RXBREAK BIT14
424 #define IRQ_TXDATA BIT13
425 #define IRQ_TXIDLE BIT12
426 #define IRQ_TXUNDER BIT11 /* HDLC */
427 #define IRQ_RXDATA BIT10
428 #define IRQ_RXIDLE BIT9 /* HDLC */
429 #define IRQ_RXBREAK BIT9 /* async */
430 #define IRQ_RXOVER BIT8
435 #define IRQ_ALL 0x3ff0
436 #define IRQ_MASTER BIT0
438 #define slgt_irq_on(info, mask) \
439 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) | (mask)))
440 #define slgt_irq_off(info, mask) \
441 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) & ~(mask)))
443 static __u8
rd_reg8(struct slgt_info
*info
, unsigned int addr
);
444 static void wr_reg8(struct slgt_info
*info
, unsigned int addr
, __u8 value
);
445 static __u16
rd_reg16(struct slgt_info
*info
, unsigned int addr
);
446 static void wr_reg16(struct slgt_info
*info
, unsigned int addr
, __u16 value
);
447 static __u32
rd_reg32(struct slgt_info
*info
, unsigned int addr
);
448 static void wr_reg32(struct slgt_info
*info
, unsigned int addr
, __u32 value
);
450 static void msc_set_vcr(struct slgt_info
*info
);
452 static int startup(struct slgt_info
*info
);
453 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,struct slgt_info
*info
);
454 static void shutdown(struct slgt_info
*info
);
455 static void program_hw(struct slgt_info
*info
);
456 static void change_params(struct slgt_info
*info
);
458 static int register_test(struct slgt_info
*info
);
459 static int irq_test(struct slgt_info
*info
);
460 static int loopback_test(struct slgt_info
*info
);
461 static int adapter_test(struct slgt_info
*info
);
463 static void reset_adapter(struct slgt_info
*info
);
464 static void reset_port(struct slgt_info
*info
);
465 static void async_mode(struct slgt_info
*info
);
466 static void sync_mode(struct slgt_info
*info
);
468 static void rx_stop(struct slgt_info
*info
);
469 static void rx_start(struct slgt_info
*info
);
470 static void reset_rbufs(struct slgt_info
*info
);
471 static void free_rbufs(struct slgt_info
*info
, unsigned int first
, unsigned int last
);
472 static void rdma_reset(struct slgt_info
*info
);
473 static int rx_get_frame(struct slgt_info
*info
);
474 static int rx_get_buf(struct slgt_info
*info
);
476 static void tx_start(struct slgt_info
*info
);
477 static void tx_stop(struct slgt_info
*info
);
478 static void tx_set_idle(struct slgt_info
*info
);
479 static unsigned int free_tbuf_count(struct slgt_info
*info
);
480 static void reset_tbufs(struct slgt_info
*info
);
481 static void tdma_reset(struct slgt_info
*info
);
482 static void tx_load(struct slgt_info
*info
, const char *buf
, unsigned int count
);
484 static void get_signals(struct slgt_info
*info
);
485 static void set_signals(struct slgt_info
*info
);
486 static void enable_loopback(struct slgt_info
*info
);
487 static void set_rate(struct slgt_info
*info
, u32 data_rate
);
489 static int bh_action(struct slgt_info
*info
);
490 static void bh_handler(struct work_struct
*work
);
491 static void bh_transmit(struct slgt_info
*info
);
492 static void isr_serial(struct slgt_info
*info
);
493 static void isr_rdma(struct slgt_info
*info
);
494 static void isr_txeom(struct slgt_info
*info
, unsigned short status
);
495 static void isr_tdma(struct slgt_info
*info
);
496 static irqreturn_t
slgt_interrupt(int irq
, void *dev_id
);
498 static int alloc_dma_bufs(struct slgt_info
*info
);
499 static void free_dma_bufs(struct slgt_info
*info
);
500 static int alloc_desc(struct slgt_info
*info
);
501 static void free_desc(struct slgt_info
*info
);
502 static int alloc_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
);
503 static void free_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
);
505 static int alloc_tmp_rbuf(struct slgt_info
*info
);
506 static void free_tmp_rbuf(struct slgt_info
*info
);
508 static void tx_timeout(unsigned long context
);
509 static void rx_timeout(unsigned long context
);
514 static int get_stats(struct slgt_info
*info
, struct mgsl_icount __user
*user_icount
);
515 static int get_params(struct slgt_info
*info
, MGSL_PARAMS __user
*params
);
516 static int set_params(struct slgt_info
*info
, MGSL_PARAMS __user
*params
);
517 static int get_txidle(struct slgt_info
*info
, int __user
*idle_mode
);
518 static int set_txidle(struct slgt_info
*info
, int idle_mode
);
519 static int tx_enable(struct slgt_info
*info
, int enable
);
520 static int tx_abort(struct slgt_info
*info
);
521 static int rx_enable(struct slgt_info
*info
, int enable
);
522 static int modem_input_wait(struct slgt_info
*info
,int arg
);
523 static int wait_mgsl_event(struct slgt_info
*info
, int __user
*mask_ptr
);
524 static int tiocmget(struct tty_struct
*tty
, struct file
*file
);
525 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
526 unsigned int set
, unsigned int clear
);
527 static void set_break(struct tty_struct
*tty
, int break_state
);
528 static int get_interface(struct slgt_info
*info
, int __user
*if_mode
);
529 static int set_interface(struct slgt_info
*info
, int if_mode
);
530 static int set_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
531 static int get_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
532 static int wait_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
537 static void add_device(struct slgt_info
*info
);
538 static void device_init(int adapter_num
, struct pci_dev
*pdev
);
539 static int claim_resources(struct slgt_info
*info
);
540 static void release_resources(struct slgt_info
*info
);
559 static void trace_block(struct slgt_info
*info
, const char *data
, int count
, const char *label
)
563 printk("%s %s data:\n",info
->device_name
, label
);
565 linecount
= (count
> 16) ? 16 : count
;
566 for(i
=0; i
< linecount
; i
++)
567 printk("%02X ",(unsigned char)data
[i
]);
570 for(i
=0;i
<linecount
;i
++) {
571 if (data
[i
]>=040 && data
[i
]<=0176)
572 printk("%c",data
[i
]);
582 #define DBGDATA(info, buf, size, label)
586 static void dump_tbufs(struct slgt_info
*info
)
589 printk("tbuf_current=%d\n", info
->tbuf_current
);
590 for (i
=0 ; i
< info
->tbuf_count
; i
++) {
591 printk("%d: count=%04X status=%04X\n",
592 i
, le16_to_cpu(info
->tbufs
[i
].count
), le16_to_cpu(info
->tbufs
[i
].status
));
596 #define DBGTBUF(info)
600 static void dump_rbufs(struct slgt_info
*info
)
603 printk("rbuf_current=%d\n", info
->rbuf_current
);
604 for (i
=0 ; i
< info
->rbuf_count
; i
++) {
605 printk("%d: count=%04X status=%04X\n",
606 i
, le16_to_cpu(info
->rbufs
[i
].count
), le16_to_cpu(info
->rbufs
[i
].status
));
610 #define DBGRBUF(info)
613 static inline int sanity_check(struct slgt_info
*info
, char *devname
, const char *name
)
617 printk("null struct slgt_info for (%s) in %s\n", devname
, name
);
620 if (info
->magic
!= MGSL_MAGIC
) {
621 printk("bad magic number struct slgt_info (%s) in %s\n", devname
, name
);
632 * line discipline callback wrappers
634 * The wrappers maintain line discipline references
635 * while calling into the line discipline.
637 * ldisc_receive_buf - pass receive data to line discipline
639 static void ldisc_receive_buf(struct tty_struct
*tty
,
640 const __u8
*data
, char *flags
, int count
)
642 struct tty_ldisc
*ld
;
645 ld
= tty_ldisc_ref(tty
);
648 ld
->receive_buf(tty
, data
, flags
, count
);
655 static int open(struct tty_struct
*tty
, struct file
*filp
)
657 struct slgt_info
*info
;
662 if ((line
< 0) || (line
>= slgt_device_count
)) {
663 DBGERR(("%s: open with invalid line #%d.\n", driver_name
, line
));
667 info
= slgt_device_list
;
668 while(info
&& info
->line
!= line
)
669 info
= info
->next_device
;
670 if (sanity_check(info
, tty
->name
, "open"))
672 if (info
->init_error
) {
673 DBGERR(("%s init error=%d\n", info
->device_name
, info
->init_error
));
677 tty
->driver_data
= info
;
680 DBGINFO(("%s open, old ref count = %d\n", info
->device_name
, info
->count
));
682 /* If port is closing, signal caller to try again */
683 if (tty_hung_up_p(filp
) || info
->flags
& ASYNC_CLOSING
){
684 if (info
->flags
& ASYNC_CLOSING
)
685 interruptible_sleep_on(&info
->close_wait
);
686 retval
= ((info
->flags
& ASYNC_HUP_NOTIFY
) ?
687 -EAGAIN
: -ERESTARTSYS
);
691 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
693 spin_lock_irqsave(&info
->netlock
, flags
);
694 if (info
->netcount
) {
696 spin_unlock_irqrestore(&info
->netlock
, flags
);
700 spin_unlock_irqrestore(&info
->netlock
, flags
);
702 if (info
->count
== 1) {
703 /* 1st open on this device, init hardware */
704 retval
= startup(info
);
709 retval
= block_til_ready(tty
, filp
, info
);
711 DBGINFO(("%s block_til_ready rc=%d\n", info
->device_name
, retval
));
720 info
->tty
= NULL
; /* tty layer will release tty struct */
725 DBGINFO(("%s open rc=%d\n", info
->device_name
, retval
));
729 static void close(struct tty_struct
*tty
, struct file
*filp
)
731 struct slgt_info
*info
= tty
->driver_data
;
733 if (sanity_check(info
, tty
->name
, "close"))
735 DBGINFO(("%s close entry, count=%d\n", info
->device_name
, info
->count
));
740 if (tty_hung_up_p(filp
))
743 if ((tty
->count
== 1) && (info
->count
!= 1)) {
745 * tty->count is 1 and the tty structure will be freed.
746 * info->count should be one in this case.
747 * if it's not, correct it so that the port is shutdown.
749 DBGERR(("%s close: bad refcount; tty->count=1, "
750 "info->count=%d\n", info
->device_name
, info
->count
));
756 /* if at least one open remaining, leave hardware active */
760 info
->flags
|= ASYNC_CLOSING
;
762 /* set tty->closing to notify line discipline to
763 * only process XON/XOFF characters. Only the N_TTY
764 * discipline appears to use this (ppp does not).
768 /* wait for transmit data to clear all layers */
770 if (info
->closing_wait
!= ASYNC_CLOSING_WAIT_NONE
) {
771 DBGINFO(("%s call tty_wait_until_sent\n", info
->device_name
));
772 tty_wait_until_sent(tty
, info
->closing_wait
);
775 if (info
->flags
& ASYNC_INITIALIZED
)
776 wait_until_sent(tty
, info
->timeout
);
777 if (tty
->driver
->flush_buffer
)
778 tty
->driver
->flush_buffer(tty
);
779 tty_ldisc_flush(tty
);
786 if (info
->blocked_open
) {
787 if (info
->close_delay
) {
788 msleep_interruptible(jiffies_to_msecs(info
->close_delay
));
790 wake_up_interruptible(&info
->open_wait
);
793 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
795 wake_up_interruptible(&info
->close_wait
);
798 DBGINFO(("%s close exit, count=%d\n", tty
->driver
->name
, info
->count
));
801 static void hangup(struct tty_struct
*tty
)
803 struct slgt_info
*info
= tty
->driver_data
;
805 if (sanity_check(info
, tty
->name
, "hangup"))
807 DBGINFO(("%s hangup\n", info
->device_name
));
813 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
816 wake_up_interruptible(&info
->open_wait
);
819 static void set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
821 struct slgt_info
*info
= tty
->driver_data
;
824 DBGINFO(("%s set_termios\n", tty
->driver
->name
));
826 /* just return if nothing has changed */
827 if ((tty
->termios
->c_cflag
== old_termios
->c_cflag
)
828 && (RELEVANT_IFLAG(tty
->termios
->c_iflag
)
829 == RELEVANT_IFLAG(old_termios
->c_iflag
)))
834 /* Handle transition to B0 status */
835 if (old_termios
->c_cflag
& CBAUD
&&
836 !(tty
->termios
->c_cflag
& CBAUD
)) {
837 info
->signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
838 spin_lock_irqsave(&info
->lock
,flags
);
840 spin_unlock_irqrestore(&info
->lock
,flags
);
843 /* Handle transition away from B0 status */
844 if (!(old_termios
->c_cflag
& CBAUD
) &&
845 tty
->termios
->c_cflag
& CBAUD
) {
846 info
->signals
|= SerialSignal_DTR
;
847 if (!(tty
->termios
->c_cflag
& CRTSCTS
) ||
848 !test_bit(TTY_THROTTLED
, &tty
->flags
)) {
849 info
->signals
|= SerialSignal_RTS
;
851 spin_lock_irqsave(&info
->lock
,flags
);
853 spin_unlock_irqrestore(&info
->lock
,flags
);
856 /* Handle turning off CRTSCTS */
857 if (old_termios
->c_cflag
& CRTSCTS
&&
858 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
864 static int write(struct tty_struct
*tty
,
865 const unsigned char *buf
, int count
)
868 struct slgt_info
*info
= tty
->driver_data
;
871 if (sanity_check(info
, tty
->name
, "write"))
873 DBGINFO(("%s write count=%d\n", info
->device_name
, count
));
878 if (count
> info
->max_frame_size
) {
886 if (info
->params
.mode
== MGSL_MODE_RAW
||
887 info
->params
.mode
== MGSL_MODE_MONOSYNC
||
888 info
->params
.mode
== MGSL_MODE_BISYNC
) {
889 unsigned int bufs_needed
= (count
/DMABUFSIZE
);
890 unsigned int bufs_free
= free_tbuf_count(info
);
891 if (count
% DMABUFSIZE
)
893 if (bufs_needed
> bufs_free
)
898 if (info
->tx_count
) {
899 /* send accumulated data from send_char() calls */
900 /* as frame and wait before accepting more data. */
901 tx_load(info
, info
->tx_buf
, info
->tx_count
);
906 ret
= info
->tx_count
= count
;
907 tx_load(info
, buf
, count
);
911 if (info
->tx_count
&& !tty
->stopped
&& !tty
->hw_stopped
) {
912 spin_lock_irqsave(&info
->lock
,flags
);
913 if (!info
->tx_active
)
915 spin_unlock_irqrestore(&info
->lock
,flags
);
919 DBGINFO(("%s write rc=%d\n", info
->device_name
, ret
));
923 static void put_char(struct tty_struct
*tty
, unsigned char ch
)
925 struct slgt_info
*info
= tty
->driver_data
;
928 if (sanity_check(info
, tty
->name
, "put_char"))
930 DBGINFO(("%s put_char(%d)\n", info
->device_name
, ch
));
933 spin_lock_irqsave(&info
->lock
,flags
);
934 if (!info
->tx_active
&& (info
->tx_count
< info
->max_frame_size
))
935 info
->tx_buf
[info
->tx_count
++] = ch
;
936 spin_unlock_irqrestore(&info
->lock
,flags
);
939 static void send_xchar(struct tty_struct
*tty
, char ch
)
941 struct slgt_info
*info
= tty
->driver_data
;
944 if (sanity_check(info
, tty
->name
, "send_xchar"))
946 DBGINFO(("%s send_xchar(%d)\n", info
->device_name
, ch
));
949 spin_lock_irqsave(&info
->lock
,flags
);
950 if (!info
->tx_enabled
)
952 spin_unlock_irqrestore(&info
->lock
,flags
);
956 static void wait_until_sent(struct tty_struct
*tty
, int timeout
)
958 struct slgt_info
*info
= tty
->driver_data
;
959 unsigned long orig_jiffies
, char_time
;
963 if (sanity_check(info
, tty
->name
, "wait_until_sent"))
965 DBGINFO(("%s wait_until_sent entry\n", info
->device_name
));
966 if (!(info
->flags
& ASYNC_INITIALIZED
))
969 orig_jiffies
= jiffies
;
971 /* Set check interval to 1/5 of estimated time to
972 * send a character, and make it at least 1. The check
973 * interval should also be less than the timeout.
974 * Note: use tight timings here to satisfy the NIST-PCTS.
977 if (info
->params
.data_rate
) {
978 char_time
= info
->timeout
/(32 * 5);
985 char_time
= min_t(unsigned long, char_time
, timeout
);
987 while (info
->tx_active
) {
988 msleep_interruptible(jiffies_to_msecs(char_time
));
989 if (signal_pending(current
))
991 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
996 DBGINFO(("%s wait_until_sent exit\n", info
->device_name
));
999 static int write_room(struct tty_struct
*tty
)
1001 struct slgt_info
*info
= tty
->driver_data
;
1004 if (sanity_check(info
, tty
->name
, "write_room"))
1006 ret
= (info
->tx_active
) ? 0 : HDLC_MAX_FRAME_SIZE
;
1007 DBGINFO(("%s write_room=%d\n", info
->device_name
, ret
));
1011 static void flush_chars(struct tty_struct
*tty
)
1013 struct slgt_info
*info
= tty
->driver_data
;
1014 unsigned long flags
;
1016 if (sanity_check(info
, tty
->name
, "flush_chars"))
1018 DBGINFO(("%s flush_chars entry tx_count=%d\n", info
->device_name
, info
->tx_count
));
1020 if (info
->tx_count
<= 0 || tty
->stopped
||
1021 tty
->hw_stopped
|| !info
->tx_buf
)
1024 DBGINFO(("%s flush_chars start transmit\n", info
->device_name
));
1026 spin_lock_irqsave(&info
->lock
,flags
);
1027 if (!info
->tx_active
&& info
->tx_count
) {
1028 tx_load(info
, info
->tx_buf
,info
->tx_count
);
1031 spin_unlock_irqrestore(&info
->lock
,flags
);
1034 static void flush_buffer(struct tty_struct
*tty
)
1036 struct slgt_info
*info
= tty
->driver_data
;
1037 unsigned long flags
;
1039 if (sanity_check(info
, tty
->name
, "flush_buffer"))
1041 DBGINFO(("%s flush_buffer\n", info
->device_name
));
1043 spin_lock_irqsave(&info
->lock
,flags
);
1044 if (!info
->tx_active
)
1046 spin_unlock_irqrestore(&info
->lock
,flags
);
1052 * throttle (stop) transmitter
1054 static void tx_hold(struct tty_struct
*tty
)
1056 struct slgt_info
*info
= tty
->driver_data
;
1057 unsigned long flags
;
1059 if (sanity_check(info
, tty
->name
, "tx_hold"))
1061 DBGINFO(("%s tx_hold\n", info
->device_name
));
1062 spin_lock_irqsave(&info
->lock
,flags
);
1063 if (info
->tx_enabled
&& info
->params
.mode
== MGSL_MODE_ASYNC
)
1065 spin_unlock_irqrestore(&info
->lock
,flags
);
1069 * release (start) transmitter
1071 static void tx_release(struct tty_struct
*tty
)
1073 struct slgt_info
*info
= tty
->driver_data
;
1074 unsigned long flags
;
1076 if (sanity_check(info
, tty
->name
, "tx_release"))
1078 DBGINFO(("%s tx_release\n", info
->device_name
));
1079 spin_lock_irqsave(&info
->lock
,flags
);
1080 if (!info
->tx_active
&& info
->tx_count
) {
1081 tx_load(info
, info
->tx_buf
, info
->tx_count
);
1084 spin_unlock_irqrestore(&info
->lock
,flags
);
1088 * Service an IOCTL request
1092 * tty pointer to tty instance data
1093 * file pointer to associated file object for device
1094 * cmd IOCTL command code
1095 * arg command argument/context
1097 * Return 0 if success, otherwise error code
1099 static int ioctl(struct tty_struct
*tty
, struct file
*file
,
1100 unsigned int cmd
, unsigned long arg
)
1102 struct slgt_info
*info
= tty
->driver_data
;
1103 struct mgsl_icount cnow
; /* kernel counter temps */
1104 struct serial_icounter_struct __user
*p_cuser
; /* user space */
1105 unsigned long flags
;
1106 void __user
*argp
= (void __user
*)arg
;
1108 if (sanity_check(info
, tty
->name
, "ioctl"))
1110 DBGINFO(("%s ioctl() cmd=%08X\n", info
->device_name
, cmd
));
1112 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1113 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1114 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1119 case MGSL_IOCGPARAMS
:
1120 return get_params(info
, argp
);
1121 case MGSL_IOCSPARAMS
:
1122 return set_params(info
, argp
);
1123 case MGSL_IOCGTXIDLE
:
1124 return get_txidle(info
, argp
);
1125 case MGSL_IOCSTXIDLE
:
1126 return set_txidle(info
, (int)arg
);
1127 case MGSL_IOCTXENABLE
:
1128 return tx_enable(info
, (int)arg
);
1129 case MGSL_IOCRXENABLE
:
1130 return rx_enable(info
, (int)arg
);
1131 case MGSL_IOCTXABORT
:
1132 return tx_abort(info
);
1133 case MGSL_IOCGSTATS
:
1134 return get_stats(info
, argp
);
1135 case MGSL_IOCWAITEVENT
:
1136 return wait_mgsl_event(info
, argp
);
1138 return modem_input_wait(info
,(int)arg
);
1140 return get_interface(info
, argp
);
1142 return set_interface(info
,(int)arg
);
1144 return set_gpio(info
, argp
);
1146 return get_gpio(info
, argp
);
1147 case MGSL_IOCWAITGPIO
:
1148 return wait_gpio(info
, argp
);
1150 spin_lock_irqsave(&info
->lock
,flags
);
1151 cnow
= info
->icount
;
1152 spin_unlock_irqrestore(&info
->lock
,flags
);
1154 if (put_user(cnow
.cts
, &p_cuser
->cts
) ||
1155 put_user(cnow
.dsr
, &p_cuser
->dsr
) ||
1156 put_user(cnow
.rng
, &p_cuser
->rng
) ||
1157 put_user(cnow
.dcd
, &p_cuser
->dcd
) ||
1158 put_user(cnow
.rx
, &p_cuser
->rx
) ||
1159 put_user(cnow
.tx
, &p_cuser
->tx
) ||
1160 put_user(cnow
.frame
, &p_cuser
->frame
) ||
1161 put_user(cnow
.overrun
, &p_cuser
->overrun
) ||
1162 put_user(cnow
.parity
, &p_cuser
->parity
) ||
1163 put_user(cnow
.brk
, &p_cuser
->brk
) ||
1164 put_user(cnow
.buf_overrun
, &p_cuser
->buf_overrun
))
1168 return -ENOIOCTLCMD
;
1174 * support for 32 bit ioctl calls on 64 bit systems
1176 #ifdef CONFIG_COMPAT
1177 static long get_params32(struct slgt_info
*info
, struct MGSL_PARAMS32 __user
*user_params
)
1179 struct MGSL_PARAMS32 tmp_params
;
1181 DBGINFO(("%s get_params32\n", info
->device_name
));
1182 tmp_params
.mode
= (compat_ulong_t
)info
->params
.mode
;
1183 tmp_params
.loopback
= info
->params
.loopback
;
1184 tmp_params
.flags
= info
->params
.flags
;
1185 tmp_params
.encoding
= info
->params
.encoding
;
1186 tmp_params
.clock_speed
= (compat_ulong_t
)info
->params
.clock_speed
;
1187 tmp_params
.addr_filter
= info
->params
.addr_filter
;
1188 tmp_params
.crc_type
= info
->params
.crc_type
;
1189 tmp_params
.preamble_length
= info
->params
.preamble_length
;
1190 tmp_params
.preamble
= info
->params
.preamble
;
1191 tmp_params
.data_rate
= (compat_ulong_t
)info
->params
.data_rate
;
1192 tmp_params
.data_bits
= info
->params
.data_bits
;
1193 tmp_params
.stop_bits
= info
->params
.stop_bits
;
1194 tmp_params
.parity
= info
->params
.parity
;
1195 if (copy_to_user(user_params
, &tmp_params
, sizeof(struct MGSL_PARAMS32
)))
1200 static long set_params32(struct slgt_info
*info
, struct MGSL_PARAMS32 __user
*new_params
)
1202 struct MGSL_PARAMS32 tmp_params
;
1204 DBGINFO(("%s set_params32\n", info
->device_name
));
1205 if (copy_from_user(&tmp_params
, new_params
, sizeof(struct MGSL_PARAMS32
)))
1208 spin_lock(&info
->lock
);
1209 info
->params
.mode
= tmp_params
.mode
;
1210 info
->params
.loopback
= tmp_params
.loopback
;
1211 info
->params
.flags
= tmp_params
.flags
;
1212 info
->params
.encoding
= tmp_params
.encoding
;
1213 info
->params
.clock_speed
= tmp_params
.clock_speed
;
1214 info
->params
.addr_filter
= tmp_params
.addr_filter
;
1215 info
->params
.crc_type
= tmp_params
.crc_type
;
1216 info
->params
.preamble_length
= tmp_params
.preamble_length
;
1217 info
->params
.preamble
= tmp_params
.preamble
;
1218 info
->params
.data_rate
= tmp_params
.data_rate
;
1219 info
->params
.data_bits
= tmp_params
.data_bits
;
1220 info
->params
.stop_bits
= tmp_params
.stop_bits
;
1221 info
->params
.parity
= tmp_params
.parity
;
1222 spin_unlock(&info
->lock
);
1224 change_params(info
);
1229 static long slgt_compat_ioctl(struct tty_struct
*tty
, struct file
*file
,
1230 unsigned int cmd
, unsigned long arg
)
1232 struct slgt_info
*info
= tty
->driver_data
;
1233 int rc
= -ENOIOCTLCMD
;
1235 if (sanity_check(info
, tty
->name
, "compat_ioctl"))
1237 DBGINFO(("%s compat_ioctl() cmd=%08X\n", info
->device_name
, cmd
));
1241 case MGSL_IOCSPARAMS32
:
1242 rc
= set_params32(info
, compat_ptr(arg
));
1245 case MGSL_IOCGPARAMS32
:
1246 rc
= get_params32(info
, compat_ptr(arg
));
1249 case MGSL_IOCGPARAMS
:
1250 case MGSL_IOCSPARAMS
:
1251 case MGSL_IOCGTXIDLE
:
1252 case MGSL_IOCGSTATS
:
1253 case MGSL_IOCWAITEVENT
:
1257 case MGSL_IOCWAITGPIO
:
1259 rc
= ioctl(tty
, file
, cmd
, (unsigned long)(compat_ptr(arg
)));
1262 case MGSL_IOCSTXIDLE
:
1263 case MGSL_IOCTXENABLE
:
1264 case MGSL_IOCRXENABLE
:
1265 case MGSL_IOCTXABORT
:
1268 rc
= ioctl(tty
, file
, cmd
, arg
);
1272 DBGINFO(("%s compat_ioctl() cmd=%08X rc=%d\n", info
->device_name
, cmd
, rc
));
1276 #define slgt_compat_ioctl NULL
1277 #endif /* ifdef CONFIG_COMPAT */
1282 static inline int line_info(char *buf
, struct slgt_info
*info
)
1286 unsigned long flags
;
1288 ret
= sprintf(buf
, "%s: IO=%08X IRQ=%d MaxFrameSize=%u\n",
1289 info
->device_name
, info
->phys_reg_addr
,
1290 info
->irq_level
, info
->max_frame_size
);
1292 /* output current serial signal states */
1293 spin_lock_irqsave(&info
->lock
,flags
);
1295 spin_unlock_irqrestore(&info
->lock
,flags
);
1299 if (info
->signals
& SerialSignal_RTS
)
1300 strcat(stat_buf
, "|RTS");
1301 if (info
->signals
& SerialSignal_CTS
)
1302 strcat(stat_buf
, "|CTS");
1303 if (info
->signals
& SerialSignal_DTR
)
1304 strcat(stat_buf
, "|DTR");
1305 if (info
->signals
& SerialSignal_DSR
)
1306 strcat(stat_buf
, "|DSR");
1307 if (info
->signals
& SerialSignal_DCD
)
1308 strcat(stat_buf
, "|CD");
1309 if (info
->signals
& SerialSignal_RI
)
1310 strcat(stat_buf
, "|RI");
1312 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
1313 ret
+= sprintf(buf
+ret
, "\tHDLC txok:%d rxok:%d",
1314 info
->icount
.txok
, info
->icount
.rxok
);
1315 if (info
->icount
.txunder
)
1316 ret
+= sprintf(buf
+ret
, " txunder:%d", info
->icount
.txunder
);
1317 if (info
->icount
.txabort
)
1318 ret
+= sprintf(buf
+ret
, " txabort:%d", info
->icount
.txabort
);
1319 if (info
->icount
.rxshort
)
1320 ret
+= sprintf(buf
+ret
, " rxshort:%d", info
->icount
.rxshort
);
1321 if (info
->icount
.rxlong
)
1322 ret
+= sprintf(buf
+ret
, " rxlong:%d", info
->icount
.rxlong
);
1323 if (info
->icount
.rxover
)
1324 ret
+= sprintf(buf
+ret
, " rxover:%d", info
->icount
.rxover
);
1325 if (info
->icount
.rxcrc
)
1326 ret
+= sprintf(buf
+ret
, " rxcrc:%d", info
->icount
.rxcrc
);
1328 ret
+= sprintf(buf
+ret
, "\tASYNC tx:%d rx:%d",
1329 info
->icount
.tx
, info
->icount
.rx
);
1330 if (info
->icount
.frame
)
1331 ret
+= sprintf(buf
+ret
, " fe:%d", info
->icount
.frame
);
1332 if (info
->icount
.parity
)
1333 ret
+= sprintf(buf
+ret
, " pe:%d", info
->icount
.parity
);
1334 if (info
->icount
.brk
)
1335 ret
+= sprintf(buf
+ret
, " brk:%d", info
->icount
.brk
);
1336 if (info
->icount
.overrun
)
1337 ret
+= sprintf(buf
+ret
, " oe:%d", info
->icount
.overrun
);
1340 /* Append serial signal status to end */
1341 ret
+= sprintf(buf
+ret
, " %s\n", stat_buf
+1);
1343 ret
+= sprintf(buf
+ret
, "\ttxactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
1344 info
->tx_active
,info
->bh_requested
,info
->bh_running
,
1350 /* Called to print information about devices
1352 static int read_proc(char *page
, char **start
, off_t off
, int count
,
1353 int *eof
, void *data
)
1357 struct slgt_info
*info
;
1359 len
+= sprintf(page
, "synclink_gt driver:%s\n", driver_version
);
1361 info
= slgt_device_list
;
1363 l
= line_info(page
+ len
, info
);
1365 if (len
+begin
> off
+count
)
1367 if (len
+begin
< off
) {
1371 info
= info
->next_device
;
1376 if (off
>= len
+begin
)
1378 *start
= page
+ (off
-begin
);
1379 return ((count
< begin
+len
-off
) ? count
: begin
+len
-off
);
1383 * return count of bytes in transmit buffer
1385 static int chars_in_buffer(struct tty_struct
*tty
)
1387 struct slgt_info
*info
= tty
->driver_data
;
1388 if (sanity_check(info
, tty
->name
, "chars_in_buffer"))
1390 DBGINFO(("%s chars_in_buffer()=%d\n", info
->device_name
, info
->tx_count
));
1391 return info
->tx_count
;
1395 * signal remote device to throttle send data (our receive data)
1397 static void throttle(struct tty_struct
* tty
)
1399 struct slgt_info
*info
= tty
->driver_data
;
1400 unsigned long flags
;
1402 if (sanity_check(info
, tty
->name
, "throttle"))
1404 DBGINFO(("%s throttle\n", info
->device_name
));
1406 send_xchar(tty
, STOP_CHAR(tty
));
1407 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1408 spin_lock_irqsave(&info
->lock
,flags
);
1409 info
->signals
&= ~SerialSignal_RTS
;
1411 spin_unlock_irqrestore(&info
->lock
,flags
);
1416 * signal remote device to stop throttling send data (our receive data)
1418 static void unthrottle(struct tty_struct
* tty
)
1420 struct slgt_info
*info
= tty
->driver_data
;
1421 unsigned long flags
;
1423 if (sanity_check(info
, tty
->name
, "unthrottle"))
1425 DBGINFO(("%s unthrottle\n", info
->device_name
));
1430 send_xchar(tty
, START_CHAR(tty
));
1432 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1433 spin_lock_irqsave(&info
->lock
,flags
);
1434 info
->signals
|= SerialSignal_RTS
;
1436 spin_unlock_irqrestore(&info
->lock
,flags
);
1441 * set or clear transmit break condition
1442 * break_state -1=set break condition, 0=clear
1444 static void set_break(struct tty_struct
*tty
, int break_state
)
1446 struct slgt_info
*info
= tty
->driver_data
;
1447 unsigned short value
;
1448 unsigned long flags
;
1450 if (sanity_check(info
, tty
->name
, "set_break"))
1452 DBGINFO(("%s set_break(%d)\n", info
->device_name
, break_state
));
1454 spin_lock_irqsave(&info
->lock
,flags
);
1455 value
= rd_reg16(info
, TCR
);
1456 if (break_state
== -1)
1460 wr_reg16(info
, TCR
, value
);
1461 spin_unlock_irqrestore(&info
->lock
,flags
);
1464 #if SYNCLINK_GENERIC_HDLC
1467 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
1468 * set encoding and frame check sequence (FCS) options
1470 * dev pointer to network device structure
1471 * encoding serial encoding setting
1472 * parity FCS setting
1474 * returns 0 if success, otherwise error code
1476 static int hdlcdev_attach(struct net_device
*dev
, unsigned short encoding
,
1477 unsigned short parity
)
1479 struct slgt_info
*info
= dev_to_port(dev
);
1480 unsigned char new_encoding
;
1481 unsigned short new_crctype
;
1483 /* return error if TTY interface open */
1487 DBGINFO(("%s hdlcdev_attach\n", info
->device_name
));
1491 case ENCODING_NRZ
: new_encoding
= HDLC_ENCODING_NRZ
; break;
1492 case ENCODING_NRZI
: new_encoding
= HDLC_ENCODING_NRZI_SPACE
; break;
1493 case ENCODING_FM_MARK
: new_encoding
= HDLC_ENCODING_BIPHASE_MARK
; break;
1494 case ENCODING_FM_SPACE
: new_encoding
= HDLC_ENCODING_BIPHASE_SPACE
; break;
1495 case ENCODING_MANCHESTER
: new_encoding
= HDLC_ENCODING_BIPHASE_LEVEL
; break;
1496 default: return -EINVAL
;
1501 case PARITY_NONE
: new_crctype
= HDLC_CRC_NONE
; break;
1502 case PARITY_CRC16_PR1_CCITT
: new_crctype
= HDLC_CRC_16_CCITT
; break;
1503 case PARITY_CRC32_PR1_CCITT
: new_crctype
= HDLC_CRC_32_CCITT
; break;
1504 default: return -EINVAL
;
1507 info
->params
.encoding
= new_encoding
;
1508 info
->params
.crc_type
= new_crctype
;
1510 /* if network interface up, reprogram hardware */
1518 * called by generic HDLC layer to send frame
1520 * skb socket buffer containing HDLC frame
1521 * dev pointer to network device structure
1523 * returns 0 if success, otherwise error code
1525 static int hdlcdev_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1527 struct slgt_info
*info
= dev_to_port(dev
);
1528 struct net_device_stats
*stats
= hdlc_stats(dev
);
1529 unsigned long flags
;
1531 DBGINFO(("%s hdlc_xmit\n", dev
->name
));
1533 /* stop sending until this frame completes */
1534 netif_stop_queue(dev
);
1536 /* copy data to device buffers */
1537 info
->tx_count
= skb
->len
;
1538 tx_load(info
, skb
->data
, skb
->len
);
1540 /* update network statistics */
1541 stats
->tx_packets
++;
1542 stats
->tx_bytes
+= skb
->len
;
1544 /* done with socket buffer, so free it */
1547 /* save start time for transmit timeout detection */
1548 dev
->trans_start
= jiffies
;
1550 /* start hardware transmitter if necessary */
1551 spin_lock_irqsave(&info
->lock
,flags
);
1552 if (!info
->tx_active
)
1554 spin_unlock_irqrestore(&info
->lock
,flags
);
1560 * called by network layer when interface enabled
1561 * claim resources and initialize hardware
1563 * dev pointer to network device structure
1565 * returns 0 if success, otherwise error code
1567 static int hdlcdev_open(struct net_device
*dev
)
1569 struct slgt_info
*info
= dev_to_port(dev
);
1571 unsigned long flags
;
1573 DBGINFO(("%s hdlcdev_open\n", dev
->name
));
1575 /* generic HDLC layer open processing */
1576 if ((rc
= hdlc_open(dev
)))
1579 /* arbitrate between network and tty opens */
1580 spin_lock_irqsave(&info
->netlock
, flags
);
1581 if (info
->count
!= 0 || info
->netcount
!= 0) {
1582 DBGINFO(("%s hdlc_open busy\n", dev
->name
));
1583 spin_unlock_irqrestore(&info
->netlock
, flags
);
1587 spin_unlock_irqrestore(&info
->netlock
, flags
);
1589 /* claim resources and init adapter */
1590 if ((rc
= startup(info
)) != 0) {
1591 spin_lock_irqsave(&info
->netlock
, flags
);
1593 spin_unlock_irqrestore(&info
->netlock
, flags
);
1597 /* assert DTR and RTS, apply hardware settings */
1598 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
1601 /* enable network layer transmit */
1602 dev
->trans_start
= jiffies
;
1603 netif_start_queue(dev
);
1605 /* inform generic HDLC layer of current DCD status */
1606 spin_lock_irqsave(&info
->lock
, flags
);
1608 spin_unlock_irqrestore(&info
->lock
, flags
);
1609 if (info
->signals
& SerialSignal_DCD
)
1610 netif_carrier_on(dev
);
1612 netif_carrier_off(dev
);
1617 * called by network layer when interface is disabled
1618 * shutdown hardware and release resources
1620 * dev pointer to network device structure
1622 * returns 0 if success, otherwise error code
1624 static int hdlcdev_close(struct net_device
*dev
)
1626 struct slgt_info
*info
= dev_to_port(dev
);
1627 unsigned long flags
;
1629 DBGINFO(("%s hdlcdev_close\n", dev
->name
));
1631 netif_stop_queue(dev
);
1633 /* shutdown adapter and release resources */
1638 spin_lock_irqsave(&info
->netlock
, flags
);
1640 spin_unlock_irqrestore(&info
->netlock
, flags
);
1646 * called by network layer to process IOCTL call to network device
1648 * dev pointer to network device structure
1649 * ifr pointer to network interface request structure
1650 * cmd IOCTL command code
1652 * returns 0 if success, otherwise error code
1654 static int hdlcdev_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
1656 const size_t size
= sizeof(sync_serial_settings
);
1657 sync_serial_settings new_line
;
1658 sync_serial_settings __user
*line
= ifr
->ifr_settings
.ifs_ifsu
.sync
;
1659 struct slgt_info
*info
= dev_to_port(dev
);
1662 DBGINFO(("%s hdlcdev_ioctl\n", dev
->name
));
1664 /* return error if TTY interface open */
1668 if (cmd
!= SIOCWANDEV
)
1669 return hdlc_ioctl(dev
, ifr
, cmd
);
1671 switch(ifr
->ifr_settings
.type
) {
1672 case IF_GET_IFACE
: /* return current sync_serial_settings */
1674 ifr
->ifr_settings
.type
= IF_IFACE_SYNC_SERIAL
;
1675 if (ifr
->ifr_settings
.size
< size
) {
1676 ifr
->ifr_settings
.size
= size
; /* data size wanted */
1680 flags
= info
->params
.flags
& (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1681 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1682 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1683 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
1686 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
): new_line
.clock_type
= CLOCK_EXT
; break;
1687 case (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_INT
; break;
1688 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_TXINT
; break;
1689 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
): new_line
.clock_type
= CLOCK_TXFROMRX
; break;
1690 default: new_line
.clock_type
= CLOCK_DEFAULT
;
1693 new_line
.clock_rate
= info
->params
.clock_speed
;
1694 new_line
.loopback
= info
->params
.loopback
? 1:0;
1696 if (copy_to_user(line
, &new_line
, size
))
1700 case IF_IFACE_SYNC_SERIAL
: /* set sync_serial_settings */
1702 if(!capable(CAP_NET_ADMIN
))
1704 if (copy_from_user(&new_line
, line
, size
))
1707 switch (new_line
.clock_type
)
1709 case CLOCK_EXT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
; break;
1710 case CLOCK_TXFROMRX
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
; break;
1711 case CLOCK_INT
: flags
= HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
; break;
1712 case CLOCK_TXINT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
; break;
1713 case CLOCK_DEFAULT
: flags
= info
->params
.flags
&
1714 (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1715 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1716 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1717 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
); break;
1718 default: return -EINVAL
;
1721 if (new_line
.loopback
!= 0 && new_line
.loopback
!= 1)
1724 info
->params
.flags
&= ~(HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1725 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1726 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1727 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
1728 info
->params
.flags
|= flags
;
1730 info
->params
.loopback
= new_line
.loopback
;
1732 if (flags
& (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
))
1733 info
->params
.clock_speed
= new_line
.clock_rate
;
1735 info
->params
.clock_speed
= 0;
1737 /* if network interface up, reprogram hardware */
1743 return hdlc_ioctl(dev
, ifr
, cmd
);
1748 * called by network layer when transmit timeout is detected
1750 * dev pointer to network device structure
1752 static void hdlcdev_tx_timeout(struct net_device
*dev
)
1754 struct slgt_info
*info
= dev_to_port(dev
);
1755 struct net_device_stats
*stats
= hdlc_stats(dev
);
1756 unsigned long flags
;
1758 DBGINFO(("%s hdlcdev_tx_timeout\n", dev
->name
));
1761 stats
->tx_aborted_errors
++;
1763 spin_lock_irqsave(&info
->lock
,flags
);
1765 spin_unlock_irqrestore(&info
->lock
,flags
);
1767 netif_wake_queue(dev
);
1771 * called by device driver when transmit completes
1772 * reenable network layer transmit if stopped
1774 * info pointer to device instance information
1776 static void hdlcdev_tx_done(struct slgt_info
*info
)
1778 if (netif_queue_stopped(info
->netdev
))
1779 netif_wake_queue(info
->netdev
);
1783 * called by device driver when frame received
1784 * pass frame to network layer
1786 * info pointer to device instance information
1787 * buf pointer to buffer contianing frame data
1788 * size count of data bytes in buf
1790 static void hdlcdev_rx(struct slgt_info
*info
, char *buf
, int size
)
1792 struct sk_buff
*skb
= dev_alloc_skb(size
);
1793 struct net_device
*dev
= info
->netdev
;
1794 struct net_device_stats
*stats
= hdlc_stats(dev
);
1796 DBGINFO(("%s hdlcdev_rx\n", dev
->name
));
1799 DBGERR(("%s: can't alloc skb, drop packet\n", dev
->name
));
1800 stats
->rx_dropped
++;
1804 memcpy(skb_put(skb
, size
),buf
,size
);
1806 skb
->protocol
= hdlc_type_trans(skb
, info
->netdev
);
1808 stats
->rx_packets
++;
1809 stats
->rx_bytes
+= size
;
1813 info
->netdev
->last_rx
= jiffies
;
1817 * called by device driver when adding device instance
1818 * do generic HDLC initialization
1820 * info pointer to device instance information
1822 * returns 0 if success, otherwise error code
1824 static int hdlcdev_init(struct slgt_info
*info
)
1827 struct net_device
*dev
;
1830 /* allocate and initialize network and HDLC layer objects */
1832 if (!(dev
= alloc_hdlcdev(info
))) {
1833 printk(KERN_ERR
"%s hdlc device alloc failure\n", info
->device_name
);
1837 /* for network layer reporting purposes only */
1838 dev
->mem_start
= info
->phys_reg_addr
;
1839 dev
->mem_end
= info
->phys_reg_addr
+ SLGT_REG_SIZE
- 1;
1840 dev
->irq
= info
->irq_level
;
1842 /* network layer callbacks and settings */
1843 dev
->do_ioctl
= hdlcdev_ioctl
;
1844 dev
->open
= hdlcdev_open
;
1845 dev
->stop
= hdlcdev_close
;
1846 dev
->tx_timeout
= hdlcdev_tx_timeout
;
1847 dev
->watchdog_timeo
= 10*HZ
;
1848 dev
->tx_queue_len
= 50;
1850 /* generic HDLC layer callbacks and settings */
1851 hdlc
= dev_to_hdlc(dev
);
1852 hdlc
->attach
= hdlcdev_attach
;
1853 hdlc
->xmit
= hdlcdev_xmit
;
1855 /* register objects with HDLC layer */
1856 if ((rc
= register_hdlc_device(dev
))) {
1857 printk(KERN_WARNING
"%s:unable to register hdlc device\n",__FILE__
);
1867 * called by device driver when removing device instance
1868 * do generic HDLC cleanup
1870 * info pointer to device instance information
1872 static void hdlcdev_exit(struct slgt_info
*info
)
1874 unregister_hdlc_device(info
->netdev
);
1875 free_netdev(info
->netdev
);
1876 info
->netdev
= NULL
;
1879 #endif /* ifdef CONFIG_HDLC */
1882 * get async data from rx DMA buffers
1884 static void rx_async(struct slgt_info
*info
)
1886 struct tty_struct
*tty
= info
->tty
;
1887 struct mgsl_icount
*icount
= &info
->icount
;
1888 unsigned int start
, end
;
1890 unsigned char status
;
1891 struct slgt_desc
*bufs
= info
->rbufs
;
1897 start
= end
= info
->rbuf_current
;
1899 while(desc_complete(bufs
[end
])) {
1900 count
= desc_count(bufs
[end
]) - info
->rbuf_index
;
1901 p
= bufs
[end
].buf
+ info
->rbuf_index
;
1903 DBGISR(("%s rx_async count=%d\n", info
->device_name
, count
));
1904 DBGDATA(info
, p
, count
, "rx");
1906 for(i
=0 ; i
< count
; i
+=2, p
+=2) {
1912 if ((status
= *(p
+1) & (BIT1
+ BIT0
))) {
1915 else if (status
& BIT0
)
1917 /* discard char if tty control flags say so */
1918 if (status
& info
->ignore_status_mask
)
1922 else if (status
& BIT0
)
1926 tty_insert_flip_char(tty
, ch
, stat
);
1932 /* receive buffer not completed */
1933 info
->rbuf_index
+= i
;
1934 mod_timer(&info
->rx_timer
, jiffies
+ 1);
1938 info
->rbuf_index
= 0;
1939 free_rbufs(info
, end
, end
);
1941 if (++end
== info
->rbuf_count
)
1944 /* if entire list searched then no frame available */
1950 tty_flip_buffer_push(tty
);
1954 * return next bottom half action to perform
1956 static int bh_action(struct slgt_info
*info
)
1958 unsigned long flags
;
1961 spin_lock_irqsave(&info
->lock
,flags
);
1963 if (info
->pending_bh
& BH_RECEIVE
) {
1964 info
->pending_bh
&= ~BH_RECEIVE
;
1966 } else if (info
->pending_bh
& BH_TRANSMIT
) {
1967 info
->pending_bh
&= ~BH_TRANSMIT
;
1969 } else if (info
->pending_bh
& BH_STATUS
) {
1970 info
->pending_bh
&= ~BH_STATUS
;
1973 /* Mark BH routine as complete */
1974 info
->bh_running
= 0;
1975 info
->bh_requested
= 0;
1979 spin_unlock_irqrestore(&info
->lock
,flags
);
1985 * perform bottom half processing
1987 static void bh_handler(struct work_struct
*work
)
1989 struct slgt_info
*info
= container_of(work
, struct slgt_info
, task
);
1994 info
->bh_running
= 1;
1996 while((action
= bh_action(info
))) {
1999 DBGBH(("%s bh receive\n", info
->device_name
));
2000 switch(info
->params
.mode
) {
2001 case MGSL_MODE_ASYNC
:
2004 case MGSL_MODE_HDLC
:
2005 while(rx_get_frame(info
));
2008 case MGSL_MODE_MONOSYNC
:
2009 case MGSL_MODE_BISYNC
:
2010 while(rx_get_buf(info
));
2013 /* restart receiver if rx DMA buffers exhausted */
2014 if (info
->rx_restart
)
2021 DBGBH(("%s bh status\n", info
->device_name
));
2022 info
->ri_chkcount
= 0;
2023 info
->dsr_chkcount
= 0;
2024 info
->dcd_chkcount
= 0;
2025 info
->cts_chkcount
= 0;
2028 DBGBH(("%s unknown action\n", info
->device_name
));
2032 DBGBH(("%s bh_handler exit\n", info
->device_name
));
2035 static void bh_transmit(struct slgt_info
*info
)
2037 struct tty_struct
*tty
= info
->tty
;
2039 DBGBH(("%s bh_transmit\n", info
->device_name
));
2044 static void dsr_change(struct slgt_info
*info
)
2047 DBGISR(("dsr_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2048 if ((info
->dsr_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2049 slgt_irq_off(info
, IRQ_DSR
);
2053 if (info
->signals
& SerialSignal_DSR
)
2054 info
->input_signal_events
.dsr_up
++;
2056 info
->input_signal_events
.dsr_down
++;
2057 wake_up_interruptible(&info
->status_event_wait_q
);
2058 wake_up_interruptible(&info
->event_wait_q
);
2059 info
->pending_bh
|= BH_STATUS
;
2062 static void cts_change(struct slgt_info
*info
)
2065 DBGISR(("cts_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2066 if ((info
->cts_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2067 slgt_irq_off(info
, IRQ_CTS
);
2071 if (info
->signals
& SerialSignal_CTS
)
2072 info
->input_signal_events
.cts_up
++;
2074 info
->input_signal_events
.cts_down
++;
2075 wake_up_interruptible(&info
->status_event_wait_q
);
2076 wake_up_interruptible(&info
->event_wait_q
);
2077 info
->pending_bh
|= BH_STATUS
;
2079 if (info
->flags
& ASYNC_CTS_FLOW
) {
2081 if (info
->tty
->hw_stopped
) {
2082 if (info
->signals
& SerialSignal_CTS
) {
2083 info
->tty
->hw_stopped
= 0;
2084 info
->pending_bh
|= BH_TRANSMIT
;
2088 if (!(info
->signals
& SerialSignal_CTS
))
2089 info
->tty
->hw_stopped
= 1;
2095 static void dcd_change(struct slgt_info
*info
)
2098 DBGISR(("dcd_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2099 if ((info
->dcd_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2100 slgt_irq_off(info
, IRQ_DCD
);
2104 if (info
->signals
& SerialSignal_DCD
) {
2105 info
->input_signal_events
.dcd_up
++;
2107 info
->input_signal_events
.dcd_down
++;
2109 #if SYNCLINK_GENERIC_HDLC
2110 if (info
->netcount
) {
2111 if (info
->signals
& SerialSignal_DCD
)
2112 netif_carrier_on(info
->netdev
);
2114 netif_carrier_off(info
->netdev
);
2117 wake_up_interruptible(&info
->status_event_wait_q
);
2118 wake_up_interruptible(&info
->event_wait_q
);
2119 info
->pending_bh
|= BH_STATUS
;
2121 if (info
->flags
& ASYNC_CHECK_CD
) {
2122 if (info
->signals
& SerialSignal_DCD
)
2123 wake_up_interruptible(&info
->open_wait
);
2126 tty_hangup(info
->tty
);
2131 static void ri_change(struct slgt_info
*info
)
2134 DBGISR(("ri_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2135 if ((info
->ri_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2136 slgt_irq_off(info
, IRQ_RI
);
2140 if (info
->signals
& SerialSignal_RI
) {
2141 info
->input_signal_events
.ri_up
++;
2143 info
->input_signal_events
.ri_down
++;
2145 wake_up_interruptible(&info
->status_event_wait_q
);
2146 wake_up_interruptible(&info
->event_wait_q
);
2147 info
->pending_bh
|= BH_STATUS
;
2150 static void isr_serial(struct slgt_info
*info
)
2152 unsigned short status
= rd_reg16(info
, SSR
);
2154 DBGISR(("%s isr_serial status=%04X\n", info
->device_name
, status
));
2156 wr_reg16(info
, SSR
, status
); /* clear pending */
2158 info
->irq_occurred
= 1;
2160 if (info
->params
.mode
== MGSL_MODE_ASYNC
) {
2161 if (status
& IRQ_TXIDLE
) {
2163 isr_txeom(info
, status
);
2165 if ((status
& IRQ_RXBREAK
) && (status
& RXBREAK
)) {
2167 /* process break detection if tty control allows */
2169 if (!(status
& info
->ignore_status_mask
)) {
2170 if (info
->read_status_mask
& MASK_BREAK
) {
2171 tty_insert_flip_char(info
->tty
, 0, TTY_BREAK
);
2172 if (info
->flags
& ASYNC_SAK
)
2179 if (status
& (IRQ_TXIDLE
+ IRQ_TXUNDER
))
2180 isr_txeom(info
, status
);
2182 if (status
& IRQ_RXIDLE
) {
2183 if (status
& RXIDLE
)
2184 info
->icount
.rxidle
++;
2186 info
->icount
.exithunt
++;
2187 wake_up_interruptible(&info
->event_wait_q
);
2190 if (status
& IRQ_RXOVER
)
2194 if (status
& IRQ_DSR
)
2196 if (status
& IRQ_CTS
)
2198 if (status
& IRQ_DCD
)
2200 if (status
& IRQ_RI
)
2204 static void isr_rdma(struct slgt_info
*info
)
2206 unsigned int status
= rd_reg32(info
, RDCSR
);
2208 DBGISR(("%s isr_rdma status=%08x\n", info
->device_name
, status
));
2210 /* RDCSR (rx DMA control/status)
2213 * 06 save status byte to DMA buffer
2215 * 04 eol (end of list)
2216 * 03 eob (end of buffer)
2221 wr_reg32(info
, RDCSR
, status
); /* clear pending */
2223 if (status
& (BIT5
+ BIT4
)) {
2224 DBGISR(("%s isr_rdma rx_restart=1\n", info
->device_name
));
2225 info
->rx_restart
= 1;
2227 info
->pending_bh
|= BH_RECEIVE
;
2230 static void isr_tdma(struct slgt_info
*info
)
2232 unsigned int status
= rd_reg32(info
, TDCSR
);
2234 DBGISR(("%s isr_tdma status=%08x\n", info
->device_name
, status
));
2236 /* TDCSR (tx DMA control/status)
2240 * 04 eol (end of list)
2241 * 03 eob (end of buffer)
2246 wr_reg32(info
, TDCSR
, status
); /* clear pending */
2248 if (status
& (BIT5
+ BIT4
+ BIT3
)) {
2249 // another transmit buffer has completed
2250 // run bottom half to get more send data from user
2251 info
->pending_bh
|= BH_TRANSMIT
;
2255 static void isr_txeom(struct slgt_info
*info
, unsigned short status
)
2257 DBGISR(("%s txeom status=%04x\n", info
->device_name
, status
));
2259 slgt_irq_off(info
, IRQ_TXDATA
+ IRQ_TXIDLE
+ IRQ_TXUNDER
);
2262 if (status
& IRQ_TXUNDER
) {
2263 unsigned short val
= rd_reg16(info
, TCR
);
2264 wr_reg16(info
, TCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
2265 wr_reg16(info
, TCR
, val
); /* clear reset bit */
2268 if (info
->tx_active
) {
2269 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
2270 if (status
& IRQ_TXUNDER
)
2271 info
->icount
.txunder
++;
2272 else if (status
& IRQ_TXIDLE
)
2273 info
->icount
.txok
++;
2276 info
->tx_active
= 0;
2279 del_timer(&info
->tx_timer
);
2281 if (info
->params
.mode
!= MGSL_MODE_ASYNC
&& info
->drop_rts_on_tx_done
) {
2282 info
->signals
&= ~SerialSignal_RTS
;
2283 info
->drop_rts_on_tx_done
= 0;
2287 #if SYNCLINK_GENERIC_HDLC
2289 hdlcdev_tx_done(info
);
2293 if (info
->tty
&& (info
->tty
->stopped
|| info
->tty
->hw_stopped
)) {
2297 info
->pending_bh
|= BH_TRANSMIT
;
2302 static void isr_gpio(struct slgt_info
*info
, unsigned int changed
, unsigned int state
)
2304 struct cond_wait
*w
, *prev
;
2306 /* wake processes waiting for specific transitions */
2307 for (w
= info
->gpio_wait_q
, prev
= NULL
; w
!= NULL
; w
= w
->next
) {
2308 if (w
->data
& changed
) {
2310 wake_up_interruptible(&w
->q
);
2312 prev
->next
= w
->next
;
2314 info
->gpio_wait_q
= w
->next
;
2320 /* interrupt service routine
2322 * irq interrupt number
2323 * dev_id device ID supplied during interrupt registration
2325 static irqreturn_t
slgt_interrupt(int irq
, void *dev_id
)
2327 struct slgt_info
*info
;
2331 DBGISR(("slgt_interrupt irq=%d entry\n", irq
));
2337 spin_lock(&info
->lock
);
2339 while((gsr
= rd_reg32(info
, GSR
) & 0xffffff00)) {
2340 DBGISR(("%s gsr=%08x\n", info
->device_name
, gsr
));
2341 info
->irq_occurred
= 1;
2342 for(i
=0; i
< info
->port_count
; i
++) {
2343 if (info
->port_array
[i
] == NULL
)
2345 if (gsr
& (BIT8
<< i
))
2346 isr_serial(info
->port_array
[i
]);
2347 if (gsr
& (BIT16
<< (i
*2)))
2348 isr_rdma(info
->port_array
[i
]);
2349 if (gsr
& (BIT17
<< (i
*2)))
2350 isr_tdma(info
->port_array
[i
]);
2354 if (info
->gpio_present
) {
2356 unsigned int changed
;
2357 while ((changed
= rd_reg32(info
, IOSR
)) != 0) {
2358 DBGISR(("%s iosr=%08x\n", info
->device_name
, changed
));
2359 /* read latched state of GPIO signals */
2360 state
= rd_reg32(info
, IOVR
);
2361 /* clear pending GPIO interrupt bits */
2362 wr_reg32(info
, IOSR
, changed
);
2363 for (i
=0 ; i
< info
->port_count
; i
++) {
2364 if (info
->port_array
[i
] != NULL
)
2365 isr_gpio(info
->port_array
[i
], changed
, state
);
2370 for(i
=0; i
< info
->port_count
; i
++) {
2371 struct slgt_info
*port
= info
->port_array
[i
];
2373 if (port
&& (port
->count
|| port
->netcount
) &&
2374 port
->pending_bh
&& !port
->bh_running
&&
2375 !port
->bh_requested
) {
2376 DBGISR(("%s bh queued\n", port
->device_name
));
2377 schedule_work(&port
->task
);
2378 port
->bh_requested
= 1;
2382 spin_unlock(&info
->lock
);
2384 DBGISR(("slgt_interrupt irq=%d exit\n", irq
));
2388 static int startup(struct slgt_info
*info
)
2390 DBGINFO(("%s startup\n", info
->device_name
));
2392 if (info
->flags
& ASYNC_INITIALIZED
)
2395 if (!info
->tx_buf
) {
2396 info
->tx_buf
= kmalloc(info
->max_frame_size
, GFP_KERNEL
);
2397 if (!info
->tx_buf
) {
2398 DBGERR(("%s can't allocate tx buffer\n", info
->device_name
));
2403 info
->pending_bh
= 0;
2405 memset(&info
->icount
, 0, sizeof(info
->icount
));
2407 /* program hardware for current parameters */
2408 change_params(info
);
2411 clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2413 info
->flags
|= ASYNC_INITIALIZED
;
2419 * called by close() and hangup() to shutdown hardware
2421 static void shutdown(struct slgt_info
*info
)
2423 unsigned long flags
;
2425 if (!(info
->flags
& ASYNC_INITIALIZED
))
2428 DBGINFO(("%s shutdown\n", info
->device_name
));
2430 /* clear status wait queue because status changes */
2431 /* can't happen after shutting down the hardware */
2432 wake_up_interruptible(&info
->status_event_wait_q
);
2433 wake_up_interruptible(&info
->event_wait_q
);
2435 del_timer_sync(&info
->tx_timer
);
2436 del_timer_sync(&info
->rx_timer
);
2438 kfree(info
->tx_buf
);
2439 info
->tx_buf
= NULL
;
2441 spin_lock_irqsave(&info
->lock
,flags
);
2446 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
2448 if (!info
->tty
|| info
->tty
->termios
->c_cflag
& HUPCL
) {
2449 info
->signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
2453 flush_cond_wait(&info
->gpio_wait_q
);
2455 spin_unlock_irqrestore(&info
->lock
,flags
);
2458 set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
2460 info
->flags
&= ~ASYNC_INITIALIZED
;
2463 static void program_hw(struct slgt_info
*info
)
2465 unsigned long flags
;
2467 spin_lock_irqsave(&info
->lock
,flags
);
2472 if (info
->params
.mode
!= MGSL_MODE_ASYNC
||
2480 info
->dcd_chkcount
= 0;
2481 info
->cts_chkcount
= 0;
2482 info
->ri_chkcount
= 0;
2483 info
->dsr_chkcount
= 0;
2485 slgt_irq_on(info
, IRQ_DCD
| IRQ_CTS
| IRQ_DSR
);
2488 if (info
->netcount
||
2489 (info
->tty
&& info
->tty
->termios
->c_cflag
& CREAD
))
2492 spin_unlock_irqrestore(&info
->lock
,flags
);
2496 * reconfigure adapter based on new parameters
2498 static void change_params(struct slgt_info
*info
)
2503 if (!info
->tty
|| !info
->tty
->termios
)
2505 DBGINFO(("%s change_params\n", info
->device_name
));
2507 cflag
= info
->tty
->termios
->c_cflag
;
2509 /* if B0 rate (hangup) specified then negate DTR and RTS */
2510 /* otherwise assert DTR and RTS */
2512 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
2514 info
->signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
2516 /* byte size and parity */
2518 switch (cflag
& CSIZE
) {
2519 case CS5
: info
->params
.data_bits
= 5; break;
2520 case CS6
: info
->params
.data_bits
= 6; break;
2521 case CS7
: info
->params
.data_bits
= 7; break;
2522 case CS8
: info
->params
.data_bits
= 8; break;
2523 default: info
->params
.data_bits
= 7; break;
2526 info
->params
.stop_bits
= (cflag
& CSTOPB
) ? 2 : 1;
2529 info
->params
.parity
= (cflag
& PARODD
) ? ASYNC_PARITY_ODD
: ASYNC_PARITY_EVEN
;
2531 info
->params
.parity
= ASYNC_PARITY_NONE
;
2533 /* calculate number of jiffies to transmit a full
2534 * FIFO (32 bytes) at specified data rate
2536 bits_per_char
= info
->params
.data_bits
+
2537 info
->params
.stop_bits
+ 1;
2539 info
->params
.data_rate
= tty_get_baud_rate(info
->tty
);
2541 if (info
->params
.data_rate
) {
2542 info
->timeout
= (32*HZ
*bits_per_char
) /
2543 info
->params
.data_rate
;
2545 info
->timeout
+= HZ
/50; /* Add .02 seconds of slop */
2547 if (cflag
& CRTSCTS
)
2548 info
->flags
|= ASYNC_CTS_FLOW
;
2550 info
->flags
&= ~ASYNC_CTS_FLOW
;
2553 info
->flags
&= ~ASYNC_CHECK_CD
;
2555 info
->flags
|= ASYNC_CHECK_CD
;
2557 /* process tty input control flags */
2559 info
->read_status_mask
= IRQ_RXOVER
;
2560 if (I_INPCK(info
->tty
))
2561 info
->read_status_mask
|= MASK_PARITY
| MASK_FRAMING
;
2562 if (I_BRKINT(info
->tty
) || I_PARMRK(info
->tty
))
2563 info
->read_status_mask
|= MASK_BREAK
;
2564 if (I_IGNPAR(info
->tty
))
2565 info
->ignore_status_mask
|= MASK_PARITY
| MASK_FRAMING
;
2566 if (I_IGNBRK(info
->tty
)) {
2567 info
->ignore_status_mask
|= MASK_BREAK
;
2568 /* If ignoring parity and break indicators, ignore
2569 * overruns too. (For real raw support).
2571 if (I_IGNPAR(info
->tty
))
2572 info
->ignore_status_mask
|= MASK_OVERRUN
;
2578 static int get_stats(struct slgt_info
*info
, struct mgsl_icount __user
*user_icount
)
2580 DBGINFO(("%s get_stats\n", info
->device_name
));
2582 memset(&info
->icount
, 0, sizeof(info
->icount
));
2584 if (copy_to_user(user_icount
, &info
->icount
, sizeof(struct mgsl_icount
)))
2590 static int get_params(struct slgt_info
*info
, MGSL_PARAMS __user
*user_params
)
2592 DBGINFO(("%s get_params\n", info
->device_name
));
2593 if (copy_to_user(user_params
, &info
->params
, sizeof(MGSL_PARAMS
)))
2598 static int set_params(struct slgt_info
*info
, MGSL_PARAMS __user
*new_params
)
2600 unsigned long flags
;
2601 MGSL_PARAMS tmp_params
;
2603 DBGINFO(("%s set_params\n", info
->device_name
));
2604 if (copy_from_user(&tmp_params
, new_params
, sizeof(MGSL_PARAMS
)))
2607 spin_lock_irqsave(&info
->lock
, flags
);
2608 memcpy(&info
->params
, &tmp_params
, sizeof(MGSL_PARAMS
));
2609 spin_unlock_irqrestore(&info
->lock
, flags
);
2611 change_params(info
);
2616 static int get_txidle(struct slgt_info
*info
, int __user
*idle_mode
)
2618 DBGINFO(("%s get_txidle=%d\n", info
->device_name
, info
->idle_mode
));
2619 if (put_user(info
->idle_mode
, idle_mode
))
2624 static int set_txidle(struct slgt_info
*info
, int idle_mode
)
2626 unsigned long flags
;
2627 DBGINFO(("%s set_txidle(%d)\n", info
->device_name
, idle_mode
));
2628 spin_lock_irqsave(&info
->lock
,flags
);
2629 info
->idle_mode
= idle_mode
;
2630 if (info
->params
.mode
!= MGSL_MODE_ASYNC
)
2632 spin_unlock_irqrestore(&info
->lock
,flags
);
2636 static int tx_enable(struct slgt_info
*info
, int enable
)
2638 unsigned long flags
;
2639 DBGINFO(("%s tx_enable(%d)\n", info
->device_name
, enable
));
2640 spin_lock_irqsave(&info
->lock
,flags
);
2642 if (!info
->tx_enabled
)
2645 if (info
->tx_enabled
)
2648 spin_unlock_irqrestore(&info
->lock
,flags
);
2653 * abort transmit HDLC frame
2655 static int tx_abort(struct slgt_info
*info
)
2657 unsigned long flags
;
2658 DBGINFO(("%s tx_abort\n", info
->device_name
));
2659 spin_lock_irqsave(&info
->lock
,flags
);
2661 spin_unlock_irqrestore(&info
->lock
,flags
);
2665 static int rx_enable(struct slgt_info
*info
, int enable
)
2667 unsigned long flags
;
2668 DBGINFO(("%s rx_enable(%d)\n", info
->device_name
, enable
));
2669 spin_lock_irqsave(&info
->lock
,flags
);
2671 if (!info
->rx_enabled
)
2673 else if (enable
== 2) {
2674 /* force hunt mode (write 1 to RCR[3]) */
2675 wr_reg16(info
, RCR
, rd_reg16(info
, RCR
) | BIT3
);
2678 if (info
->rx_enabled
)
2681 spin_unlock_irqrestore(&info
->lock
,flags
);
2686 * wait for specified event to occur
2688 static int wait_mgsl_event(struct slgt_info
*info
, int __user
*mask_ptr
)
2690 unsigned long flags
;
2693 struct mgsl_icount cprev
, cnow
;
2696 struct _input_signal_events oldsigs
, newsigs
;
2697 DECLARE_WAITQUEUE(wait
, current
);
2699 if (get_user(mask
, mask_ptr
))
2702 DBGINFO(("%s wait_mgsl_event(%d)\n", info
->device_name
, mask
));
2704 spin_lock_irqsave(&info
->lock
,flags
);
2706 /* return immediately if state matches requested events */
2711 ( ((s
& SerialSignal_DSR
) ? MgslEvent_DsrActive
:MgslEvent_DsrInactive
) +
2712 ((s
& SerialSignal_DCD
) ? MgslEvent_DcdActive
:MgslEvent_DcdInactive
) +
2713 ((s
& SerialSignal_CTS
) ? MgslEvent_CtsActive
:MgslEvent_CtsInactive
) +
2714 ((s
& SerialSignal_RI
) ? MgslEvent_RiActive
:MgslEvent_RiInactive
) );
2716 spin_unlock_irqrestore(&info
->lock
,flags
);
2720 /* save current irq counts */
2721 cprev
= info
->icount
;
2722 oldsigs
= info
->input_signal_events
;
2724 /* enable hunt and idle irqs if needed */
2725 if (mask
& (MgslEvent_ExitHuntMode
+MgslEvent_IdleReceived
)) {
2726 unsigned short val
= rd_reg16(info
, SCR
);
2727 if (!(val
& IRQ_RXIDLE
))
2728 wr_reg16(info
, SCR
, (unsigned short)(val
| IRQ_RXIDLE
));
2731 set_current_state(TASK_INTERRUPTIBLE
);
2732 add_wait_queue(&info
->event_wait_q
, &wait
);
2734 spin_unlock_irqrestore(&info
->lock
,flags
);
2738 if (signal_pending(current
)) {
2743 /* get current irq counts */
2744 spin_lock_irqsave(&info
->lock
,flags
);
2745 cnow
= info
->icount
;
2746 newsigs
= info
->input_signal_events
;
2747 set_current_state(TASK_INTERRUPTIBLE
);
2748 spin_unlock_irqrestore(&info
->lock
,flags
);
2750 /* if no change, wait aborted for some reason */
2751 if (newsigs
.dsr_up
== oldsigs
.dsr_up
&&
2752 newsigs
.dsr_down
== oldsigs
.dsr_down
&&
2753 newsigs
.dcd_up
== oldsigs
.dcd_up
&&
2754 newsigs
.dcd_down
== oldsigs
.dcd_down
&&
2755 newsigs
.cts_up
== oldsigs
.cts_up
&&
2756 newsigs
.cts_down
== oldsigs
.cts_down
&&
2757 newsigs
.ri_up
== oldsigs
.ri_up
&&
2758 newsigs
.ri_down
== oldsigs
.ri_down
&&
2759 cnow
.exithunt
== cprev
.exithunt
&&
2760 cnow
.rxidle
== cprev
.rxidle
) {
2766 ( (newsigs
.dsr_up
!= oldsigs
.dsr_up
? MgslEvent_DsrActive
:0) +
2767 (newsigs
.dsr_down
!= oldsigs
.dsr_down
? MgslEvent_DsrInactive
:0) +
2768 (newsigs
.dcd_up
!= oldsigs
.dcd_up
? MgslEvent_DcdActive
:0) +
2769 (newsigs
.dcd_down
!= oldsigs
.dcd_down
? MgslEvent_DcdInactive
:0) +
2770 (newsigs
.cts_up
!= oldsigs
.cts_up
? MgslEvent_CtsActive
:0) +
2771 (newsigs
.cts_down
!= oldsigs
.cts_down
? MgslEvent_CtsInactive
:0) +
2772 (newsigs
.ri_up
!= oldsigs
.ri_up
? MgslEvent_RiActive
:0) +
2773 (newsigs
.ri_down
!= oldsigs
.ri_down
? MgslEvent_RiInactive
:0) +
2774 (cnow
.exithunt
!= cprev
.exithunt
? MgslEvent_ExitHuntMode
:0) +
2775 (cnow
.rxidle
!= cprev
.rxidle
? MgslEvent_IdleReceived
:0) );
2783 remove_wait_queue(&info
->event_wait_q
, &wait
);
2784 set_current_state(TASK_RUNNING
);
2787 if (mask
& (MgslEvent_ExitHuntMode
+ MgslEvent_IdleReceived
)) {
2788 spin_lock_irqsave(&info
->lock
,flags
);
2789 if (!waitqueue_active(&info
->event_wait_q
)) {
2790 /* disable enable exit hunt mode/idle rcvd IRQs */
2792 (unsigned short)(rd_reg16(info
, SCR
) & ~IRQ_RXIDLE
));
2794 spin_unlock_irqrestore(&info
->lock
,flags
);
2798 rc
= put_user(events
, mask_ptr
);
2802 static int get_interface(struct slgt_info
*info
, int __user
*if_mode
)
2804 DBGINFO(("%s get_interface=%x\n", info
->device_name
, info
->if_mode
));
2805 if (put_user(info
->if_mode
, if_mode
))
2810 static int set_interface(struct slgt_info
*info
, int if_mode
)
2812 unsigned long flags
;
2815 DBGINFO(("%s set_interface=%x)\n", info
->device_name
, if_mode
));
2816 spin_lock_irqsave(&info
->lock
,flags
);
2817 info
->if_mode
= if_mode
;
2821 /* TCR (tx control) 07 1=RTS driver control */
2822 val
= rd_reg16(info
, TCR
);
2823 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
2827 wr_reg16(info
, TCR
, val
);
2829 spin_unlock_irqrestore(&info
->lock
,flags
);
2834 * set general purpose IO pin state and direction
2837 * state each bit indicates a pin state
2838 * smask set bit indicates pin state to set
2839 * dir each bit indicates a pin direction (0=input, 1=output)
2840 * dmask set bit indicates pin direction to set
2842 static int set_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2844 unsigned long flags
;
2845 struct gpio_desc gpio
;
2848 if (!info
->gpio_present
)
2850 if (copy_from_user(&gpio
, user_gpio
, sizeof(gpio
)))
2852 DBGINFO(("%s set_gpio state=%08x smask=%08x dir=%08x dmask=%08x\n",
2853 info
->device_name
, gpio
.state
, gpio
.smask
,
2854 gpio
.dir
, gpio
.dmask
));
2856 spin_lock_irqsave(&info
->lock
,flags
);
2858 data
= rd_reg32(info
, IODR
);
2859 data
|= gpio
.dmask
& gpio
.dir
;
2860 data
&= ~(gpio
.dmask
& ~gpio
.dir
);
2861 wr_reg32(info
, IODR
, data
);
2864 data
= rd_reg32(info
, IOVR
);
2865 data
|= gpio
.smask
& gpio
.state
;
2866 data
&= ~(gpio
.smask
& ~gpio
.state
);
2867 wr_reg32(info
, IOVR
, data
);
2869 spin_unlock_irqrestore(&info
->lock
,flags
);
2875 * get general purpose IO pin state and direction
2877 static int get_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2879 struct gpio_desc gpio
;
2880 if (!info
->gpio_present
)
2882 gpio
.state
= rd_reg32(info
, IOVR
);
2883 gpio
.smask
= 0xffffffff;
2884 gpio
.dir
= rd_reg32(info
, IODR
);
2885 gpio
.dmask
= 0xffffffff;
2886 if (copy_to_user(user_gpio
, &gpio
, sizeof(gpio
)))
2888 DBGINFO(("%s get_gpio state=%08x dir=%08x\n",
2889 info
->device_name
, gpio
.state
, gpio
.dir
));
2894 * conditional wait facility
2896 static void init_cond_wait(struct cond_wait
*w
, unsigned int data
)
2898 init_waitqueue_head(&w
->q
);
2899 init_waitqueue_entry(&w
->wait
, current
);
2903 static void add_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
)
2905 set_current_state(TASK_INTERRUPTIBLE
);
2906 add_wait_queue(&w
->q
, &w
->wait
);
2911 static void remove_cond_wait(struct cond_wait
**head
, struct cond_wait
*cw
)
2913 struct cond_wait
*w
, *prev
;
2914 remove_wait_queue(&cw
->q
, &cw
->wait
);
2915 set_current_state(TASK_RUNNING
);
2916 for (w
= *head
, prev
= NULL
; w
!= NULL
; prev
= w
, w
= w
->next
) {
2919 prev
->next
= w
->next
;
2927 static void flush_cond_wait(struct cond_wait
**head
)
2929 while (*head
!= NULL
) {
2930 wake_up_interruptible(&(*head
)->q
);
2931 *head
= (*head
)->next
;
2936 * wait for general purpose I/O pin(s) to enter specified state
2939 * state - bit indicates target pin state
2940 * smask - set bit indicates watched pin
2942 * The wait ends when at least one watched pin enters the specified
2943 * state. When 0 (no error) is returned, user_gpio->state is set to the
2944 * state of all GPIO pins when the wait ends.
2946 * Note: Each pin may be a dedicated input, dedicated output, or
2947 * configurable input/output. The number and configuration of pins
2948 * varies with the specific adapter model. Only input pins (dedicated
2949 * or configured) can be monitored with this function.
2951 static int wait_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2953 unsigned long flags
;
2955 struct gpio_desc gpio
;
2956 struct cond_wait wait
;
2959 if (!info
->gpio_present
)
2961 if (copy_from_user(&gpio
, user_gpio
, sizeof(gpio
)))
2963 DBGINFO(("%s wait_gpio() state=%08x smask=%08x\n",
2964 info
->device_name
, gpio
.state
, gpio
.smask
));
2965 /* ignore output pins identified by set IODR bit */
2966 if ((gpio
.smask
&= ~rd_reg32(info
, IODR
)) == 0)
2968 init_cond_wait(&wait
, gpio
.smask
);
2970 spin_lock_irqsave(&info
->lock
, flags
);
2971 /* enable interrupts for watched pins */
2972 wr_reg32(info
, IOER
, rd_reg32(info
, IOER
) | gpio
.smask
);
2973 /* get current pin states */
2974 state
= rd_reg32(info
, IOVR
);
2976 if (gpio
.smask
& ~(state
^ gpio
.state
)) {
2977 /* already in target state */
2980 /* wait for target state */
2981 add_cond_wait(&info
->gpio_wait_q
, &wait
);
2982 spin_unlock_irqrestore(&info
->lock
, flags
);
2984 if (signal_pending(current
))
2987 gpio
.state
= wait
.data
;
2988 spin_lock_irqsave(&info
->lock
, flags
);
2989 remove_cond_wait(&info
->gpio_wait_q
, &wait
);
2992 /* disable all GPIO interrupts if no waiting processes */
2993 if (info
->gpio_wait_q
== NULL
)
2994 wr_reg32(info
, IOER
, 0);
2995 spin_unlock_irqrestore(&info
->lock
,flags
);
2997 if ((rc
== 0) && copy_to_user(user_gpio
, &gpio
, sizeof(gpio
)))
3002 static int modem_input_wait(struct slgt_info
*info
,int arg
)
3004 unsigned long flags
;
3006 struct mgsl_icount cprev
, cnow
;
3007 DECLARE_WAITQUEUE(wait
, current
);
3009 /* save current irq counts */
3010 spin_lock_irqsave(&info
->lock
,flags
);
3011 cprev
= info
->icount
;
3012 add_wait_queue(&info
->status_event_wait_q
, &wait
);
3013 set_current_state(TASK_INTERRUPTIBLE
);
3014 spin_unlock_irqrestore(&info
->lock
,flags
);
3018 if (signal_pending(current
)) {
3023 /* get new irq counts */
3024 spin_lock_irqsave(&info
->lock
,flags
);
3025 cnow
= info
->icount
;
3026 set_current_state(TASK_INTERRUPTIBLE
);
3027 spin_unlock_irqrestore(&info
->lock
,flags
);
3029 /* if no change, wait aborted for some reason */
3030 if (cnow
.rng
== cprev
.rng
&& cnow
.dsr
== cprev
.dsr
&&
3031 cnow
.dcd
== cprev
.dcd
&& cnow
.cts
== cprev
.cts
) {
3036 /* check for change in caller specified modem input */
3037 if ((arg
& TIOCM_RNG
&& cnow
.rng
!= cprev
.rng
) ||
3038 (arg
& TIOCM_DSR
&& cnow
.dsr
!= cprev
.dsr
) ||
3039 (arg
& TIOCM_CD
&& cnow
.dcd
!= cprev
.dcd
) ||
3040 (arg
& TIOCM_CTS
&& cnow
.cts
!= cprev
.cts
)) {
3047 remove_wait_queue(&info
->status_event_wait_q
, &wait
);
3048 set_current_state(TASK_RUNNING
);
3053 * return state of serial control and status signals
3055 static int tiocmget(struct tty_struct
*tty
, struct file
*file
)
3057 struct slgt_info
*info
= tty
->driver_data
;
3058 unsigned int result
;
3059 unsigned long flags
;
3061 spin_lock_irqsave(&info
->lock
,flags
);
3063 spin_unlock_irqrestore(&info
->lock
,flags
);
3065 result
= ((info
->signals
& SerialSignal_RTS
) ? TIOCM_RTS
:0) +
3066 ((info
->signals
& SerialSignal_DTR
) ? TIOCM_DTR
:0) +
3067 ((info
->signals
& SerialSignal_DCD
) ? TIOCM_CAR
:0) +
3068 ((info
->signals
& SerialSignal_RI
) ? TIOCM_RNG
:0) +
3069 ((info
->signals
& SerialSignal_DSR
) ? TIOCM_DSR
:0) +
3070 ((info
->signals
& SerialSignal_CTS
) ? TIOCM_CTS
:0);
3072 DBGINFO(("%s tiocmget value=%08X\n", info
->device_name
, result
));
3077 * set modem control signals (DTR/RTS)
3079 * cmd signal command: TIOCMBIS = set bit TIOCMBIC = clear bit
3080 * TIOCMSET = set/clear signal values
3081 * value bit mask for command
3083 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
3084 unsigned int set
, unsigned int clear
)
3086 struct slgt_info
*info
= tty
->driver_data
;
3087 unsigned long flags
;
3089 DBGINFO(("%s tiocmset(%x,%x)\n", info
->device_name
, set
, clear
));
3091 if (set
& TIOCM_RTS
)
3092 info
->signals
|= SerialSignal_RTS
;
3093 if (set
& TIOCM_DTR
)
3094 info
->signals
|= SerialSignal_DTR
;
3095 if (clear
& TIOCM_RTS
)
3096 info
->signals
&= ~SerialSignal_RTS
;
3097 if (clear
& TIOCM_DTR
)
3098 info
->signals
&= ~SerialSignal_DTR
;
3100 spin_lock_irqsave(&info
->lock
,flags
);
3102 spin_unlock_irqrestore(&info
->lock
,flags
);
3107 * block current process until the device is ready to open
3109 static int block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
3110 struct slgt_info
*info
)
3112 DECLARE_WAITQUEUE(wait
, current
);
3114 int do_clocal
= 0, extra_count
= 0;
3115 unsigned long flags
;
3117 DBGINFO(("%s block_til_ready\n", tty
->driver
->name
));
3119 if (filp
->f_flags
& O_NONBLOCK
|| tty
->flags
& (1 << TTY_IO_ERROR
)){
3120 /* nonblock mode is set or port is not enabled */
3121 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
3125 if (tty
->termios
->c_cflag
& CLOCAL
)
3128 /* Wait for carrier detect and the line to become
3129 * free (i.e., not in use by the callout). While we are in
3130 * this loop, info->count is dropped by one, so that
3131 * close() knows when to free things. We restore it upon
3132 * exit, either normal or abnormal.
3136 add_wait_queue(&info
->open_wait
, &wait
);
3138 spin_lock_irqsave(&info
->lock
, flags
);
3139 if (!tty_hung_up_p(filp
)) {
3143 spin_unlock_irqrestore(&info
->lock
, flags
);
3144 info
->blocked_open
++;
3147 if ((tty
->termios
->c_cflag
& CBAUD
)) {
3148 spin_lock_irqsave(&info
->lock
,flags
);
3149 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
3151 spin_unlock_irqrestore(&info
->lock
,flags
);
3154 set_current_state(TASK_INTERRUPTIBLE
);
3156 if (tty_hung_up_p(filp
) || !(info
->flags
& ASYNC_INITIALIZED
)){
3157 retval
= (info
->flags
& ASYNC_HUP_NOTIFY
) ?
3158 -EAGAIN
: -ERESTARTSYS
;
3162 spin_lock_irqsave(&info
->lock
,flags
);
3164 spin_unlock_irqrestore(&info
->lock
,flags
);
3166 if (!(info
->flags
& ASYNC_CLOSING
) &&
3167 (do_clocal
|| (info
->signals
& SerialSignal_DCD
)) ) {
3171 if (signal_pending(current
)) {
3172 retval
= -ERESTARTSYS
;
3176 DBGINFO(("%s block_til_ready wait\n", tty
->driver
->name
));
3180 set_current_state(TASK_RUNNING
);
3181 remove_wait_queue(&info
->open_wait
, &wait
);
3185 info
->blocked_open
--;
3188 info
->flags
|= ASYNC_NORMAL_ACTIVE
;
3190 DBGINFO(("%s block_til_ready ready, rc=%d\n", tty
->driver
->name
, retval
));
3194 static int alloc_tmp_rbuf(struct slgt_info
*info
)
3196 info
->tmp_rbuf
= kmalloc(info
->max_frame_size
+ 5, GFP_KERNEL
);
3197 if (info
->tmp_rbuf
== NULL
)
3202 static void free_tmp_rbuf(struct slgt_info
*info
)
3204 kfree(info
->tmp_rbuf
);
3205 info
->tmp_rbuf
= NULL
;
3209 * allocate DMA descriptor lists.
3211 static int alloc_desc(struct slgt_info
*info
)
3216 /* allocate memory to hold descriptor lists */
3217 info
->bufs
= pci_alloc_consistent(info
->pdev
, DESC_LIST_SIZE
, &info
->bufs_dma_addr
);
3218 if (info
->bufs
== NULL
)
3221 memset(info
->bufs
, 0, DESC_LIST_SIZE
);
3223 info
->rbufs
= (struct slgt_desc
*)info
->bufs
;
3224 info
->tbufs
= ((struct slgt_desc
*)info
->bufs
) + info
->rbuf_count
;
3226 pbufs
= (unsigned int)info
->bufs_dma_addr
;
3229 * Build circular lists of descriptors
3232 for (i
=0; i
< info
->rbuf_count
; i
++) {
3233 /* physical address of this descriptor */
3234 info
->rbufs
[i
].pdesc
= pbufs
+ (i
* sizeof(struct slgt_desc
));
3236 /* physical address of next descriptor */
3237 if (i
== info
->rbuf_count
- 1)
3238 info
->rbufs
[i
].next
= cpu_to_le32(pbufs
);
3240 info
->rbufs
[i
].next
= cpu_to_le32(pbufs
+ ((i
+1) * sizeof(struct slgt_desc
)));
3241 set_desc_count(info
->rbufs
[i
], DMABUFSIZE
);
3244 for (i
=0; i
< info
->tbuf_count
; i
++) {
3245 /* physical address of this descriptor */
3246 info
->tbufs
[i
].pdesc
= pbufs
+ ((info
->rbuf_count
+ i
) * sizeof(struct slgt_desc
));
3248 /* physical address of next descriptor */
3249 if (i
== info
->tbuf_count
- 1)
3250 info
->tbufs
[i
].next
= cpu_to_le32(pbufs
+ info
->rbuf_count
* sizeof(struct slgt_desc
));
3252 info
->tbufs
[i
].next
= cpu_to_le32(pbufs
+ ((info
->rbuf_count
+ i
+ 1) * sizeof(struct slgt_desc
)));
3258 static void free_desc(struct slgt_info
*info
)
3260 if (info
->bufs
!= NULL
) {
3261 pci_free_consistent(info
->pdev
, DESC_LIST_SIZE
, info
->bufs
, info
->bufs_dma_addr
);
3268 static int alloc_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
)
3271 for (i
=0; i
< count
; i
++) {
3272 if ((bufs
[i
].buf
= pci_alloc_consistent(info
->pdev
, DMABUFSIZE
, &bufs
[i
].buf_dma_addr
)) == NULL
)
3274 bufs
[i
].pbuf
= cpu_to_le32((unsigned int)bufs
[i
].buf_dma_addr
);
3279 static void free_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
)
3282 for (i
=0; i
< count
; i
++) {
3283 if (bufs
[i
].buf
== NULL
)
3285 pci_free_consistent(info
->pdev
, DMABUFSIZE
, bufs
[i
].buf
, bufs
[i
].buf_dma_addr
);
3290 static int alloc_dma_bufs(struct slgt_info
*info
)
3292 info
->rbuf_count
= 32;
3293 info
->tbuf_count
= 32;
3295 if (alloc_desc(info
) < 0 ||
3296 alloc_bufs(info
, info
->rbufs
, info
->rbuf_count
) < 0 ||
3297 alloc_bufs(info
, info
->tbufs
, info
->tbuf_count
) < 0 ||
3298 alloc_tmp_rbuf(info
) < 0) {
3299 DBGERR(("%s DMA buffer alloc fail\n", info
->device_name
));
3306 static void free_dma_bufs(struct slgt_info
*info
)
3309 free_bufs(info
, info
->rbufs
, info
->rbuf_count
);
3310 free_bufs(info
, info
->tbufs
, info
->tbuf_count
);
3313 free_tmp_rbuf(info
);
3316 static int claim_resources(struct slgt_info
*info
)
3318 if (request_mem_region(info
->phys_reg_addr
, SLGT_REG_SIZE
, "synclink_gt") == NULL
) {
3319 DBGERR(("%s reg addr conflict, addr=%08X\n",
3320 info
->device_name
, info
->phys_reg_addr
));
3321 info
->init_error
= DiagStatus_AddressConflict
;
3325 info
->reg_addr_requested
= 1;
3327 info
->reg_addr
= ioremap(info
->phys_reg_addr
, SLGT_REG_SIZE
);
3328 if (!info
->reg_addr
) {
3329 DBGERR(("%s cant map device registers, addr=%08X\n",
3330 info
->device_name
, info
->phys_reg_addr
));
3331 info
->init_error
= DiagStatus_CantAssignPciResources
;
3337 release_resources(info
);
3341 static void release_resources(struct slgt_info
*info
)
3343 if (info
->irq_requested
) {
3344 free_irq(info
->irq_level
, info
);
3345 info
->irq_requested
= 0;
3348 if (info
->reg_addr_requested
) {
3349 release_mem_region(info
->phys_reg_addr
, SLGT_REG_SIZE
);
3350 info
->reg_addr_requested
= 0;
3353 if (info
->reg_addr
) {
3354 iounmap(info
->reg_addr
);
3355 info
->reg_addr
= NULL
;
3359 /* Add the specified device instance data structure to the
3360 * global linked list of devices and increment the device count.
3362 static void add_device(struct slgt_info
*info
)
3366 info
->next_device
= NULL
;
3367 info
->line
= slgt_device_count
;
3368 sprintf(info
->device_name
, "%s%d", tty_dev_prefix
, info
->line
);
3370 if (info
->line
< MAX_DEVICES
) {
3371 if (maxframe
[info
->line
])
3372 info
->max_frame_size
= maxframe
[info
->line
];
3373 info
->dosyncppp
= dosyncppp
[info
->line
];
3376 slgt_device_count
++;
3378 if (!slgt_device_list
)
3379 slgt_device_list
= info
;
3381 struct slgt_info
*current_dev
= slgt_device_list
;
3382 while(current_dev
->next_device
)
3383 current_dev
= current_dev
->next_device
;
3384 current_dev
->next_device
= info
;
3387 if (info
->max_frame_size
< 4096)
3388 info
->max_frame_size
= 4096;
3389 else if (info
->max_frame_size
> 65535)
3390 info
->max_frame_size
= 65535;
3392 switch(info
->pdev
->device
) {
3393 case SYNCLINK_GT_DEVICE_ID
:
3396 case SYNCLINK_GT2_DEVICE_ID
:
3399 case SYNCLINK_GT4_DEVICE_ID
:
3402 case SYNCLINK_AC_DEVICE_ID
:
3404 info
->params
.mode
= MGSL_MODE_ASYNC
;
3407 devstr
= "(unknown model)";
3409 printk("SyncLink %s %s IO=%08x IRQ=%d MaxFrameSize=%u\n",
3410 devstr
, info
->device_name
, info
->phys_reg_addr
,
3411 info
->irq_level
, info
->max_frame_size
);
3413 #if SYNCLINK_GENERIC_HDLC
3419 * allocate device instance structure, return NULL on failure
3421 static struct slgt_info
*alloc_dev(int adapter_num
, int port_num
, struct pci_dev
*pdev
)
3423 struct slgt_info
*info
;
3425 info
= kmalloc(sizeof(struct slgt_info
), GFP_KERNEL
);
3428 DBGERR(("%s device alloc failed adapter=%d port=%d\n",
3429 driver_name
, adapter_num
, port_num
));
3431 memset(info
, 0, sizeof(struct slgt_info
));
3432 info
->magic
= MGSL_MAGIC
;
3433 INIT_WORK(&info
->task
, bh_handler
);
3434 info
->max_frame_size
= 4096;
3435 info
->raw_rx_size
= DMABUFSIZE
;
3436 info
->close_delay
= 5*HZ
/10;
3437 info
->closing_wait
= 30*HZ
;
3438 init_waitqueue_head(&info
->open_wait
);
3439 init_waitqueue_head(&info
->close_wait
);
3440 init_waitqueue_head(&info
->status_event_wait_q
);
3441 init_waitqueue_head(&info
->event_wait_q
);
3442 spin_lock_init(&info
->netlock
);
3443 memcpy(&info
->params
,&default_params
,sizeof(MGSL_PARAMS
));
3444 info
->idle_mode
= HDLC_TXIDLE_FLAGS
;
3445 info
->adapter_num
= adapter_num
;
3446 info
->port_num
= port_num
;
3448 setup_timer(&info
->tx_timer
, tx_timeout
, (unsigned long)info
);
3449 setup_timer(&info
->rx_timer
, rx_timeout
, (unsigned long)info
);
3451 /* Copy configuration info to device instance data */
3453 info
->irq_level
= pdev
->irq
;
3454 info
->phys_reg_addr
= pci_resource_start(pdev
,0);
3456 info
->bus_type
= MGSL_BUS_TYPE_PCI
;
3457 info
->irq_flags
= IRQF_SHARED
;
3459 info
->init_error
= -1; /* assume error, set to 0 on successful init */
3465 static void device_init(int adapter_num
, struct pci_dev
*pdev
)
3467 struct slgt_info
*port_array
[SLGT_MAX_PORTS
];
3471 if (pdev
->device
== SYNCLINK_GT2_DEVICE_ID
)
3473 else if (pdev
->device
== SYNCLINK_GT4_DEVICE_ID
)
3476 /* allocate device instances for all ports */
3477 for (i
=0; i
< port_count
; ++i
) {
3478 port_array
[i
] = alloc_dev(adapter_num
, i
, pdev
);
3479 if (port_array
[i
] == NULL
) {
3480 for (--i
; i
>= 0; --i
)
3481 kfree(port_array
[i
]);
3486 /* give copy of port_array to all ports and add to device list */
3487 for (i
=0; i
< port_count
; ++i
) {
3488 memcpy(port_array
[i
]->port_array
, port_array
, sizeof(port_array
));
3489 add_device(port_array
[i
]);
3490 port_array
[i
]->port_count
= port_count
;
3491 spin_lock_init(&port_array
[i
]->lock
);
3494 /* Allocate and claim adapter resources */
3495 if (!claim_resources(port_array
[0])) {
3497 alloc_dma_bufs(port_array
[0]);
3499 /* copy resource information from first port to others */
3500 for (i
= 1; i
< port_count
; ++i
) {
3501 port_array
[i
]->lock
= port_array
[0]->lock
;
3502 port_array
[i
]->irq_level
= port_array
[0]->irq_level
;
3503 port_array
[i
]->reg_addr
= port_array
[0]->reg_addr
;
3504 alloc_dma_bufs(port_array
[i
]);
3507 if (request_irq(port_array
[0]->irq_level
,
3509 port_array
[0]->irq_flags
,
3510 port_array
[0]->device_name
,
3511 port_array
[0]) < 0) {
3512 DBGERR(("%s request_irq failed IRQ=%d\n",
3513 port_array
[0]->device_name
,
3514 port_array
[0]->irq_level
));
3516 port_array
[0]->irq_requested
= 1;
3517 adapter_test(port_array
[0]);
3518 for (i
=1 ; i
< port_count
; i
++) {
3519 port_array
[i
]->init_error
= port_array
[0]->init_error
;
3520 port_array
[i
]->gpio_present
= port_array
[0]->gpio_present
;
3525 for (i
=0; i
< port_count
; ++i
)
3526 tty_register_device(serial_driver
, port_array
[i
]->line
, &(port_array
[i
]->pdev
->dev
));
3529 static int __devinit
init_one(struct pci_dev
*dev
,
3530 const struct pci_device_id
*ent
)
3532 if (pci_enable_device(dev
)) {
3533 printk("error enabling pci device %p\n", dev
);
3536 pci_set_master(dev
);
3537 device_init(slgt_device_count
, dev
);
3541 static void __devexit
remove_one(struct pci_dev
*dev
)
3545 static const struct tty_operations ops
= {
3549 .put_char
= put_char
,
3550 .flush_chars
= flush_chars
,
3551 .write_room
= write_room
,
3552 .chars_in_buffer
= chars_in_buffer
,
3553 .flush_buffer
= flush_buffer
,
3555 .compat_ioctl
= slgt_compat_ioctl
,
3556 .throttle
= throttle
,
3557 .unthrottle
= unthrottle
,
3558 .send_xchar
= send_xchar
,
3559 .break_ctl
= set_break
,
3560 .wait_until_sent
= wait_until_sent
,
3561 .read_proc
= read_proc
,
3562 .set_termios
= set_termios
,
3564 .start
= tx_release
,
3566 .tiocmget
= tiocmget
,
3567 .tiocmset
= tiocmset
,
3570 static void slgt_cleanup(void)
3573 struct slgt_info
*info
;
3574 struct slgt_info
*tmp
;
3576 printk("unload %s %s\n", driver_name
, driver_version
);
3578 if (serial_driver
) {
3579 for (info
=slgt_device_list
; info
!= NULL
; info
=info
->next_device
)
3580 tty_unregister_device(serial_driver
, info
->line
);
3581 if ((rc
= tty_unregister_driver(serial_driver
)))
3582 DBGERR(("tty_unregister_driver error=%d\n", rc
));
3583 put_tty_driver(serial_driver
);
3587 info
= slgt_device_list
;
3590 info
= info
->next_device
;
3593 /* release devices */
3594 info
= slgt_device_list
;
3596 #if SYNCLINK_GENERIC_HDLC
3599 free_dma_bufs(info
);
3600 free_tmp_rbuf(info
);
3601 if (info
->port_num
== 0)
3602 release_resources(info
);
3604 info
= info
->next_device
;
3609 pci_unregister_driver(&pci_driver
);
3613 * Driver initialization entry point.
3615 static int __init
slgt_init(void)
3619 printk("%s %s\n", driver_name
, driver_version
);
3621 serial_driver
= alloc_tty_driver(MAX_DEVICES
);
3622 if (!serial_driver
) {
3623 printk("%s can't allocate tty driver\n", driver_name
);
3627 /* Initialize the tty_driver structure */
3629 serial_driver
->owner
= THIS_MODULE
;
3630 serial_driver
->driver_name
= tty_driver_name
;
3631 serial_driver
->name
= tty_dev_prefix
;
3632 serial_driver
->major
= ttymajor
;
3633 serial_driver
->minor_start
= 64;
3634 serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
3635 serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
3636 serial_driver
->init_termios
= tty_std_termios
;
3637 serial_driver
->init_termios
.c_cflag
=
3638 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
3639 serial_driver
->init_termios
.c_ispeed
= 9600;
3640 serial_driver
->init_termios
.c_ospeed
= 9600;
3641 serial_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
3642 tty_set_operations(serial_driver
, &ops
);
3643 if ((rc
= tty_register_driver(serial_driver
)) < 0) {
3644 DBGERR(("%s can't register serial driver\n", driver_name
));
3645 put_tty_driver(serial_driver
);
3646 serial_driver
= NULL
;
3650 printk("%s %s, tty major#%d\n",
3651 driver_name
, driver_version
,
3652 serial_driver
->major
);
3654 slgt_device_count
= 0;
3655 if ((rc
= pci_register_driver(&pci_driver
)) < 0) {
3656 printk("%s pci_register_driver error=%d\n", driver_name
, rc
);
3661 if (!slgt_device_list
)
3662 printk("%s no devices found\n",driver_name
);
3671 static void __exit
slgt_exit(void)
3676 module_init(slgt_init
);
3677 module_exit(slgt_exit
);
3680 * register access routines
3683 #define CALC_REGADDR() \
3684 unsigned long reg_addr = ((unsigned long)info->reg_addr) + addr; \
3686 reg_addr += (info->port_num) * 32;
3688 static __u8
rd_reg8(struct slgt_info
*info
, unsigned int addr
)
3691 return readb((void __iomem
*)reg_addr
);
3694 static void wr_reg8(struct slgt_info
*info
, unsigned int addr
, __u8 value
)
3697 writeb(value
, (void __iomem
*)reg_addr
);
3700 static __u16
rd_reg16(struct slgt_info
*info
, unsigned int addr
)
3703 return readw((void __iomem
*)reg_addr
);
3706 static void wr_reg16(struct slgt_info
*info
, unsigned int addr
, __u16 value
)
3709 writew(value
, (void __iomem
*)reg_addr
);
3712 static __u32
rd_reg32(struct slgt_info
*info
, unsigned int addr
)
3715 return readl((void __iomem
*)reg_addr
);
3718 static void wr_reg32(struct slgt_info
*info
, unsigned int addr
, __u32 value
)
3721 writel(value
, (void __iomem
*)reg_addr
);
3724 static void rdma_reset(struct slgt_info
*info
)
3729 wr_reg32(info
, RDCSR
, BIT1
);
3731 /* wait for enable bit cleared */
3732 for(i
=0 ; i
< 1000 ; i
++)
3733 if (!(rd_reg32(info
, RDCSR
) & BIT0
))
3737 static void tdma_reset(struct slgt_info
*info
)
3742 wr_reg32(info
, TDCSR
, BIT1
);
3744 /* wait for enable bit cleared */
3745 for(i
=0 ; i
< 1000 ; i
++)
3746 if (!(rd_reg32(info
, TDCSR
) & BIT0
))
3751 * enable internal loopback
3752 * TxCLK and RxCLK are generated from BRG
3753 * and TxD is looped back to RxD internally.
3755 static void enable_loopback(struct slgt_info
*info
)
3757 /* SCR (serial control) BIT2=looopback enable */
3758 wr_reg16(info
, SCR
, (unsigned short)(rd_reg16(info
, SCR
) | BIT2
));
3760 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3761 /* CCR (clock control)
3762 * 07..05 tx clock source (010 = BRG)
3763 * 04..02 rx clock source (010 = BRG)
3764 * 01 auxclk enable (0 = disable)
3765 * 00 BRG enable (1 = enable)
3769 wr_reg8(info
, CCR
, 0x49);
3771 /* set speed if available, otherwise use default */
3772 if (info
->params
.clock_speed
)
3773 set_rate(info
, info
->params
.clock_speed
);
3775 set_rate(info
, 3686400);
3780 * set baud rate generator to specified rate
3782 static void set_rate(struct slgt_info
*info
, u32 rate
)
3785 static unsigned int osc
= 14745600;
3787 /* div = osc/rate - 1
3789 * Round div up if osc/rate is not integer to
3790 * force to next slowest rate.
3795 if (!(osc
% rate
) && div
)
3797 wr_reg16(info
, BDR
, (unsigned short)div
);
3801 static void rx_stop(struct slgt_info
*info
)
3805 /* disable and reset receiver */
3806 val
= rd_reg16(info
, RCR
) & ~BIT1
; /* clear enable bit */
3807 wr_reg16(info
, RCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3808 wr_reg16(info
, RCR
, val
); /* clear reset bit */
3810 slgt_irq_off(info
, IRQ_RXOVER
+ IRQ_RXDATA
+ IRQ_RXIDLE
);
3812 /* clear pending rx interrupts */
3813 wr_reg16(info
, SSR
, IRQ_RXIDLE
+ IRQ_RXOVER
);
3817 info
->rx_enabled
= 0;
3818 info
->rx_restart
= 0;
3821 static void rx_start(struct slgt_info
*info
)
3825 slgt_irq_off(info
, IRQ_RXOVER
+ IRQ_RXDATA
);
3827 /* clear pending rx overrun IRQ */
3828 wr_reg16(info
, SSR
, IRQ_RXOVER
);
3830 /* reset and disable receiver */
3831 val
= rd_reg16(info
, RCR
) & ~BIT1
; /* clear enable bit */
3832 wr_reg16(info
, RCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3833 wr_reg16(info
, RCR
, val
); /* clear reset bit */
3838 /* set 1st descriptor address */
3839 wr_reg32(info
, RDDAR
, info
->rbufs
[0].pdesc
);
3841 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3842 /* enable rx DMA and DMA interrupt */
3843 wr_reg32(info
, RDCSR
, (BIT2
+ BIT0
));
3845 /* enable saving of rx status, rx DMA and DMA interrupt */
3846 wr_reg32(info
, RDCSR
, (BIT6
+ BIT2
+ BIT0
));
3849 slgt_irq_on(info
, IRQ_RXOVER
);
3851 /* enable receiver */
3852 wr_reg16(info
, RCR
, (unsigned short)(rd_reg16(info
, RCR
) | BIT1
));
3854 info
->rx_restart
= 0;
3855 info
->rx_enabled
= 1;
3858 static void tx_start(struct slgt_info
*info
)
3860 if (!info
->tx_enabled
) {
3862 (unsigned short)((rd_reg16(info
, TCR
) | BIT1
) & ~BIT2
));
3863 info
->tx_enabled
= TRUE
;
3866 if (info
->tx_count
) {
3867 info
->drop_rts_on_tx_done
= 0;
3869 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3870 if (info
->params
.flags
& HDLC_FLAG_AUTO_RTS
) {
3872 if (!(info
->signals
& SerialSignal_RTS
)) {
3873 info
->signals
|= SerialSignal_RTS
;
3875 info
->drop_rts_on_tx_done
= 1;
3879 slgt_irq_off(info
, IRQ_TXDATA
);
3880 slgt_irq_on(info
, IRQ_TXUNDER
+ IRQ_TXIDLE
);
3881 /* clear tx idle and underrun status bits */
3882 wr_reg16(info
, SSR
, (unsigned short)(IRQ_TXIDLE
+ IRQ_TXUNDER
));
3884 if (!(rd_reg32(info
, TDCSR
) & BIT0
)) {
3885 /* tx DMA stopped, restart tx DMA */
3887 /* set 1st descriptor address */
3888 wr_reg32(info
, TDDAR
, info
->tbufs
[info
->tbuf_start
].pdesc
);
3889 switch(info
->params
.mode
) {
3891 case MGSL_MODE_MONOSYNC
:
3892 case MGSL_MODE_BISYNC
:
3893 wr_reg32(info
, TDCSR
, BIT2
+ BIT0
); /* IRQ + DMA enable */
3896 wr_reg32(info
, TDCSR
, BIT0
); /* DMA enable */
3900 if (info
->params
.mode
== MGSL_MODE_HDLC
)
3901 mod_timer(&info
->tx_timer
, jiffies
+
3902 msecs_to_jiffies(5000));
3905 /* set 1st descriptor address */
3906 wr_reg32(info
, TDDAR
, info
->tbufs
[info
->tbuf_start
].pdesc
);
3908 slgt_irq_off(info
, IRQ_TXDATA
);
3909 slgt_irq_on(info
, IRQ_TXIDLE
);
3910 /* clear tx idle status bit */
3911 wr_reg16(info
, SSR
, IRQ_TXIDLE
);
3914 wr_reg32(info
, TDCSR
, BIT0
);
3917 info
->tx_active
= 1;
3921 static void tx_stop(struct slgt_info
*info
)
3925 del_timer(&info
->tx_timer
);
3929 /* reset and disable transmitter */
3930 val
= rd_reg16(info
, TCR
) & ~BIT1
; /* clear enable bit */
3931 wr_reg16(info
, TCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3933 slgt_irq_off(info
, IRQ_TXDATA
+ IRQ_TXIDLE
+ IRQ_TXUNDER
);
3935 /* clear tx idle and underrun status bit */
3936 wr_reg16(info
, SSR
, (unsigned short)(IRQ_TXIDLE
+ IRQ_TXUNDER
));
3940 info
->tx_enabled
= 0;
3941 info
->tx_active
= 0;
3944 static void reset_port(struct slgt_info
*info
)
3946 if (!info
->reg_addr
)
3952 info
->signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
3955 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
3958 static void reset_adapter(struct slgt_info
*info
)
3961 for (i
=0; i
< info
->port_count
; ++i
) {
3962 if (info
->port_array
[i
])
3963 reset_port(info
->port_array
[i
]);
3967 static void async_mode(struct slgt_info
*info
)
3971 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
3977 * 15..13 mode, 010=async
3978 * 12..10 encoding, 000=NRZ
3980 * 08 1=odd parity, 0=even parity
3981 * 07 1=RTS driver control
3983 * 05..04 character length
3988 * 03 0=1 stop bit, 1=2 stop bits
3991 * 00 auto-CTS enable
3995 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
3998 if (info
->params
.parity
!= ASYNC_PARITY_NONE
) {
4000 if (info
->params
.parity
== ASYNC_PARITY_ODD
)
4004 switch (info
->params
.data_bits
)
4006 case 6: val
|= BIT4
; break;
4007 case 7: val
|= BIT5
; break;
4008 case 8: val
|= BIT5
+ BIT4
; break;
4011 if (info
->params
.stop_bits
!= 1)
4014 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
4017 wr_reg16(info
, TCR
, val
);
4021 * 15..13 mode, 010=async
4022 * 12..10 encoding, 000=NRZ
4024 * 08 1=odd parity, 0=even parity
4025 * 07..06 reserved, must be 0
4026 * 05..04 character length
4031 * 03 reserved, must be zero
4034 * 00 auto-DCD enable
4038 if (info
->params
.parity
!= ASYNC_PARITY_NONE
) {
4040 if (info
->params
.parity
== ASYNC_PARITY_ODD
)
4044 switch (info
->params
.data_bits
)
4046 case 6: val
|= BIT4
; break;
4047 case 7: val
|= BIT5
; break;
4048 case 8: val
|= BIT5
+ BIT4
; break;
4051 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
4054 wr_reg16(info
, RCR
, val
);
4056 /* CCR (clock control)
4058 * 07..05 011 = tx clock source is BRG/16
4059 * 04..02 010 = rx clock source is BRG
4060 * 01 0 = auxclk disabled
4061 * 00 1 = BRG enabled
4065 wr_reg8(info
, CCR
, 0x69);
4069 /* SCR (serial control)
4071 * 15 1=tx req on FIFO half empty
4072 * 14 1=rx req on FIFO half full
4073 * 13 tx data IRQ enable
4074 * 12 tx idle IRQ enable
4075 * 11 rx break on IRQ enable
4076 * 10 rx data IRQ enable
4077 * 09 rx break off IRQ enable
4078 * 08 overrun IRQ enable
4083 * 03 reserved, must be zero
4084 * 02 1=txd->rxd internal loopback enable
4085 * 01 reserved, must be zero
4086 * 00 1=master IRQ enable
4088 val
= BIT15
+ BIT14
+ BIT0
;
4089 wr_reg16(info
, SCR
, val
);
4091 slgt_irq_on(info
, IRQ_RXBREAK
| IRQ_RXOVER
);
4093 set_rate(info
, info
->params
.data_rate
* 16);
4095 if (info
->params
.loopback
)
4096 enable_loopback(info
);
4099 static void sync_mode(struct slgt_info
*info
)
4103 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
4109 * 15..13 mode, 000=HDLC 001=raw 010=async 011=monosync 100=bisync
4113 * 07 1=RTS driver control
4114 * 06 preamble enable
4115 * 05..04 preamble length
4116 * 03 share open/close flag
4119 * 00 auto-CTS enable
4123 switch(info
->params
.mode
) {
4124 case MGSL_MODE_MONOSYNC
: val
|= BIT14
+ BIT13
; break;
4125 case MGSL_MODE_BISYNC
: val
|= BIT15
; break;
4126 case MGSL_MODE_RAW
: val
|= BIT13
; break;
4128 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
4131 switch(info
->params
.encoding
)
4133 case HDLC_ENCODING_NRZB
: val
|= BIT10
; break;
4134 case HDLC_ENCODING_NRZI_MARK
: val
|= BIT11
; break;
4135 case HDLC_ENCODING_NRZI
: val
|= BIT11
+ BIT10
; break;
4136 case HDLC_ENCODING_BIPHASE_MARK
: val
|= BIT12
; break;
4137 case HDLC_ENCODING_BIPHASE_SPACE
: val
|= BIT12
+ BIT10
; break;
4138 case HDLC_ENCODING_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
; break;
4139 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
+ BIT10
; break;
4142 switch (info
->params
.crc_type
& HDLC_CRC_MASK
)
4144 case HDLC_CRC_16_CCITT
: val
|= BIT9
; break;
4145 case HDLC_CRC_32_CCITT
: val
|= BIT9
+ BIT8
; break;
4148 if (info
->params
.preamble
!= HDLC_PREAMBLE_PATTERN_NONE
)
4151 switch (info
->params
.preamble_length
)
4153 case HDLC_PREAMBLE_LENGTH_16BITS
: val
|= BIT5
; break;
4154 case HDLC_PREAMBLE_LENGTH_32BITS
: val
|= BIT4
; break;
4155 case HDLC_PREAMBLE_LENGTH_64BITS
: val
|= BIT5
+ BIT4
; break;
4158 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
4161 wr_reg16(info
, TCR
, val
);
4163 /* TPR (transmit preamble) */
4165 switch (info
->params
.preamble
)
4167 case HDLC_PREAMBLE_PATTERN_FLAGS
: val
= 0x7e; break;
4168 case HDLC_PREAMBLE_PATTERN_ONES
: val
= 0xff; break;
4169 case HDLC_PREAMBLE_PATTERN_ZEROS
: val
= 0x00; break;
4170 case HDLC_PREAMBLE_PATTERN_10
: val
= 0x55; break;
4171 case HDLC_PREAMBLE_PATTERN_01
: val
= 0xaa; break;
4172 default: val
= 0x7e; break;
4174 wr_reg8(info
, TPR
, (unsigned char)val
);
4178 * 15..13 mode, 000=HDLC 001=raw 010=async 011=monosync 100=bisync
4182 * 07..03 reserved, must be 0
4185 * 00 auto-DCD enable
4189 switch(info
->params
.mode
) {
4190 case MGSL_MODE_MONOSYNC
: val
|= BIT14
+ BIT13
; break;
4191 case MGSL_MODE_BISYNC
: val
|= BIT15
; break;
4192 case MGSL_MODE_RAW
: val
|= BIT13
; break;
4195 switch(info
->params
.encoding
)
4197 case HDLC_ENCODING_NRZB
: val
|= BIT10
; break;
4198 case HDLC_ENCODING_NRZI_MARK
: val
|= BIT11
; break;
4199 case HDLC_ENCODING_NRZI
: val
|= BIT11
+ BIT10
; break;
4200 case HDLC_ENCODING_BIPHASE_MARK
: val
|= BIT12
; break;
4201 case HDLC_ENCODING_BIPHASE_SPACE
: val
|= BIT12
+ BIT10
; break;
4202 case HDLC_ENCODING_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
; break;
4203 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
+ BIT10
; break;
4206 switch (info
->params
.crc_type
& HDLC_CRC_MASK
)
4208 case HDLC_CRC_16_CCITT
: val
|= BIT9
; break;
4209 case HDLC_CRC_32_CCITT
: val
|= BIT9
+ BIT8
; break;
4212 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
4215 wr_reg16(info
, RCR
, val
);
4217 /* CCR (clock control)
4219 * 07..05 tx clock source
4220 * 04..02 rx clock source
4226 if (info
->params
.flags
& HDLC_FLAG_TXC_BRG
)
4228 // when RxC source is DPLL, BRG generates 16X DPLL
4229 // reference clock, so take TxC from BRG/16 to get
4230 // transmit clock at actual data rate
4231 if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
4232 val
|= BIT6
+ BIT5
; /* 011, txclk = BRG/16 */
4234 val
|= BIT6
; /* 010, txclk = BRG */
4236 else if (info
->params
.flags
& HDLC_FLAG_TXC_DPLL
)
4237 val
|= BIT7
; /* 100, txclk = DPLL Input */
4238 else if (info
->params
.flags
& HDLC_FLAG_TXC_RXCPIN
)
4239 val
|= BIT5
; /* 001, txclk = RXC Input */
4241 if (info
->params
.flags
& HDLC_FLAG_RXC_BRG
)
4242 val
|= BIT3
; /* 010, rxclk = BRG */
4243 else if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
4244 val
|= BIT4
; /* 100, rxclk = DPLL */
4245 else if (info
->params
.flags
& HDLC_FLAG_RXC_TXCPIN
)
4246 val
|= BIT2
; /* 001, rxclk = TXC Input */
4248 if (info
->params
.clock_speed
)
4251 wr_reg8(info
, CCR
, (unsigned char)val
);
4253 if (info
->params
.flags
& (HDLC_FLAG_TXC_DPLL
+ HDLC_FLAG_RXC_DPLL
))
4255 // program DPLL mode
4256 switch(info
->params
.encoding
)
4258 case HDLC_ENCODING_BIPHASE_MARK
:
4259 case HDLC_ENCODING_BIPHASE_SPACE
:
4261 case HDLC_ENCODING_BIPHASE_LEVEL
:
4262 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
:
4263 val
= BIT7
+ BIT6
; break;
4264 default: val
= BIT6
; // NRZ encodings
4266 wr_reg16(info
, RCR
, (unsigned short)(rd_reg16(info
, RCR
) | val
));
4268 // DPLL requires a 16X reference clock from BRG
4269 set_rate(info
, info
->params
.clock_speed
* 16);
4272 set_rate(info
, info
->params
.clock_speed
);
4278 /* SCR (serial control)
4280 * 15 1=tx req on FIFO half empty
4281 * 14 1=rx req on FIFO half full
4282 * 13 tx data IRQ enable
4283 * 12 tx idle IRQ enable
4284 * 11 underrun IRQ enable
4285 * 10 rx data IRQ enable
4286 * 09 rx idle IRQ enable
4287 * 08 overrun IRQ enable
4292 * 03 reserved, must be zero
4293 * 02 1=txd->rxd internal loopback enable
4294 * 01 reserved, must be zero
4295 * 00 1=master IRQ enable
4297 wr_reg16(info
, SCR
, BIT15
+ BIT14
+ BIT0
);
4299 if (info
->params
.loopback
)
4300 enable_loopback(info
);
4304 * set transmit idle mode
4306 static void tx_set_idle(struct slgt_info
*info
)
4311 /* if preamble enabled (tcr[6] == 1) then tx idle size = 8 bits
4312 * else tcr[5:4] = tx idle size: 00 = 8 bits, 01 = 16 bits
4314 tcr
= rd_reg16(info
, TCR
);
4315 if (info
->idle_mode
& HDLC_TXIDLE_CUSTOM_16
) {
4316 /* disable preamble, set idle size to 16 bits */
4317 tcr
= (tcr
& ~(BIT6
+ BIT5
)) | BIT4
;
4318 /* MSB of 16 bit idle specified in tx preamble register (TPR) */
4319 wr_reg8(info
, TPR
, (unsigned char)((info
->idle_mode
>> 8) & 0xff));
4320 } else if (!(tcr
& BIT6
)) {
4321 /* preamble is disabled, set idle size to 8 bits */
4322 tcr
&= ~(BIT5
+ BIT4
);
4324 wr_reg16(info
, TCR
, tcr
);
4326 if (info
->idle_mode
& (HDLC_TXIDLE_CUSTOM_8
| HDLC_TXIDLE_CUSTOM_16
)) {
4327 /* LSB of custom tx idle specified in tx idle register */
4328 val
= (unsigned char)(info
->idle_mode
& 0xff);
4330 /* standard 8 bit idle patterns */
4331 switch(info
->idle_mode
)
4333 case HDLC_TXIDLE_FLAGS
: val
= 0x7e; break;
4334 case HDLC_TXIDLE_ALT_ZEROS_ONES
:
4335 case HDLC_TXIDLE_ALT_MARK_SPACE
: val
= 0xaa; break;
4336 case HDLC_TXIDLE_ZEROS
:
4337 case HDLC_TXIDLE_SPACE
: val
= 0x00; break;
4338 default: val
= 0xff;
4342 wr_reg8(info
, TIR
, val
);
4346 * get state of V24 status (input) signals
4348 static void get_signals(struct slgt_info
*info
)
4350 unsigned short status
= rd_reg16(info
, SSR
);
4352 /* clear all serial signals except DTR and RTS */
4353 info
->signals
&= SerialSignal_DTR
+ SerialSignal_RTS
;
4356 info
->signals
|= SerialSignal_DSR
;
4358 info
->signals
|= SerialSignal_CTS
;
4360 info
->signals
|= SerialSignal_DCD
;
4362 info
->signals
|= SerialSignal_RI
;
4366 * set V.24 Control Register based on current configuration
4368 static void msc_set_vcr(struct slgt_info
*info
)
4370 unsigned char val
= 0;
4372 /* VCR (V.24 control)
4374 * 07..04 serial IF select
4381 switch(info
->if_mode
& MGSL_INTERFACE_MASK
)
4383 case MGSL_INTERFACE_RS232
:
4384 val
|= BIT5
; /* 0010 */
4386 case MGSL_INTERFACE_V35
:
4387 val
|= BIT7
+ BIT6
+ BIT5
; /* 1110 */
4389 case MGSL_INTERFACE_RS422
:
4390 val
|= BIT6
; /* 0100 */
4394 if (info
->signals
& SerialSignal_DTR
)
4396 if (info
->signals
& SerialSignal_RTS
)
4398 if (info
->if_mode
& MGSL_INTERFACE_LL
)
4400 if (info
->if_mode
& MGSL_INTERFACE_RL
)
4402 wr_reg8(info
, VCR
, val
);
4406 * set state of V24 control (output) signals
4408 static void set_signals(struct slgt_info
*info
)
4410 unsigned char val
= rd_reg8(info
, VCR
);
4411 if (info
->signals
& SerialSignal_DTR
)
4415 if (info
->signals
& SerialSignal_RTS
)
4419 wr_reg8(info
, VCR
, val
);
4423 * free range of receive DMA buffers (i to last)
4425 static void free_rbufs(struct slgt_info
*info
, unsigned int i
, unsigned int last
)
4430 /* reset current buffer for reuse */
4431 info
->rbufs
[i
].status
= 0;
4432 switch(info
->params
.mode
) {
4434 case MGSL_MODE_MONOSYNC
:
4435 case MGSL_MODE_BISYNC
:
4436 set_desc_count(info
->rbufs
[i
], info
->raw_rx_size
);
4439 set_desc_count(info
->rbufs
[i
], DMABUFSIZE
);
4444 if (++i
== info
->rbuf_count
)
4447 info
->rbuf_current
= i
;
4451 * mark all receive DMA buffers as free
4453 static void reset_rbufs(struct slgt_info
*info
)
4455 free_rbufs(info
, 0, info
->rbuf_count
- 1);
4459 * pass receive HDLC frame to upper layer
4461 * return 1 if frame available, otherwise 0
4463 static int rx_get_frame(struct slgt_info
*info
)
4465 unsigned int start
, end
;
4466 unsigned short status
;
4467 unsigned int framesize
= 0;
4469 unsigned long flags
;
4470 struct tty_struct
*tty
= info
->tty
;
4471 unsigned char addr_field
= 0xff;
4472 unsigned int crc_size
= 0;
4474 switch (info
->params
.crc_type
& HDLC_CRC_MASK
) {
4475 case HDLC_CRC_16_CCITT
: crc_size
= 2; break;
4476 case HDLC_CRC_32_CCITT
: crc_size
= 4; break;
4483 start
= end
= info
->rbuf_current
;
4486 if (!desc_complete(info
->rbufs
[end
]))
4489 if (framesize
== 0 && info
->params
.addr_filter
!= 0xff)
4490 addr_field
= info
->rbufs
[end
].buf
[0];
4492 framesize
+= desc_count(info
->rbufs
[end
]);
4494 if (desc_eof(info
->rbufs
[end
]))
4497 if (++end
== info
->rbuf_count
)
4500 if (end
== info
->rbuf_current
) {
4501 if (info
->rx_enabled
){
4502 spin_lock_irqsave(&info
->lock
,flags
);
4504 spin_unlock_irqrestore(&info
->lock
,flags
);
4512 * 15 buffer complete
4515 * 02 eof (end of frame)
4519 status
= desc_status(info
->rbufs
[end
]);
4521 /* ignore CRC bit if not using CRC (bit is undefined) */
4522 if ((info
->params
.crc_type
& HDLC_CRC_MASK
) == HDLC_CRC_NONE
)
4525 if (framesize
== 0 ||
4526 (addr_field
!= 0xff && addr_field
!= info
->params
.addr_filter
)) {
4527 free_rbufs(info
, start
, end
);
4531 if (framesize
< (2 + crc_size
) || status
& BIT0
) {
4532 info
->icount
.rxshort
++;
4534 } else if (status
& BIT1
) {
4535 info
->icount
.rxcrc
++;
4536 if (!(info
->params
.crc_type
& HDLC_CRC_RETURN_EX
))
4540 #if SYNCLINK_GENERIC_HDLC
4541 if (framesize
== 0) {
4542 struct net_device_stats
*stats
= hdlc_stats(info
->netdev
);
4544 stats
->rx_frame_errors
++;
4548 DBGBH(("%s rx frame status=%04X size=%d\n",
4549 info
->device_name
, status
, framesize
));
4550 DBGDATA(info
, info
->rbufs
[start
].buf
, min_t(int, framesize
, DMABUFSIZE
), "rx");
4553 if (!(info
->params
.crc_type
& HDLC_CRC_RETURN_EX
)) {
4554 framesize
-= crc_size
;
4558 if (framesize
> info
->max_frame_size
+ crc_size
)
4559 info
->icount
.rxlong
++;
4561 /* copy dma buffer(s) to contiguous temp buffer */
4562 int copy_count
= framesize
;
4564 unsigned char *p
= info
->tmp_rbuf
;
4565 info
->tmp_rbuf_count
= framesize
;
4567 info
->icount
.rxok
++;
4570 int partial_count
= min(copy_count
, DMABUFSIZE
);
4571 memcpy(p
, info
->rbufs
[i
].buf
, partial_count
);
4573 copy_count
-= partial_count
;
4574 if (++i
== info
->rbuf_count
)
4578 if (info
->params
.crc_type
& HDLC_CRC_RETURN_EX
) {
4579 *p
= (status
& BIT1
) ? RX_CRC_ERROR
: RX_OK
;
4583 #if SYNCLINK_GENERIC_HDLC
4585 hdlcdev_rx(info
,info
->tmp_rbuf
, framesize
);
4588 ldisc_receive_buf(tty
, info
->tmp_rbuf
, info
->flag_buf
, framesize
);
4591 free_rbufs(info
, start
, end
);
4599 * pass receive buffer (RAW synchronous mode) to tty layer
4600 * return 1 if buffer available, otherwise 0
4602 static int rx_get_buf(struct slgt_info
*info
)
4604 unsigned int i
= info
->rbuf_current
;
4607 if (!desc_complete(info
->rbufs
[i
]))
4609 count
= desc_count(info
->rbufs
[i
]);
4610 switch(info
->params
.mode
) {
4611 case MGSL_MODE_MONOSYNC
:
4612 case MGSL_MODE_BISYNC
:
4613 /* ignore residue in byte synchronous modes */
4614 if (desc_residue(info
->rbufs
[i
]))
4618 DBGDATA(info
, info
->rbufs
[i
].buf
, count
, "rx");
4619 DBGINFO(("rx_get_buf size=%d\n", count
));
4621 ldisc_receive_buf(info
->tty
, info
->rbufs
[i
].buf
,
4622 info
->flag_buf
, count
);
4623 free_rbufs(info
, i
, i
);
4627 static void reset_tbufs(struct slgt_info
*info
)
4630 info
->tbuf_current
= 0;
4631 for (i
=0 ; i
< info
->tbuf_count
; i
++) {
4632 info
->tbufs
[i
].status
= 0;
4633 info
->tbufs
[i
].count
= 0;
4638 * return number of free transmit DMA buffers
4640 static unsigned int free_tbuf_count(struct slgt_info
*info
)
4642 unsigned int count
= 0;
4643 unsigned int i
= info
->tbuf_current
;
4647 if (desc_count(info
->tbufs
[i
]))
4648 break; /* buffer in use */
4650 if (++i
== info
->tbuf_count
)
4652 } while (i
!= info
->tbuf_current
);
4654 /* last buffer with zero count may be in use, assume it is */
4662 * load transmit DMA buffer(s) with data
4664 static void tx_load(struct slgt_info
*info
, const char *buf
, unsigned int size
)
4666 unsigned short count
;
4668 struct slgt_desc
*d
;
4673 DBGDATA(info
, buf
, size
, "tx");
4675 info
->tbuf_start
= i
= info
->tbuf_current
;
4678 d
= &info
->tbufs
[i
];
4679 if (++i
== info
->tbuf_count
)
4682 count
= (unsigned short)((size
> DMABUFSIZE
) ? DMABUFSIZE
: size
);
4683 memcpy(d
->buf
, buf
, count
);
4689 * set EOF bit for last buffer of HDLC frame or
4690 * for every buffer in raw mode
4692 if ((!size
&& info
->params
.mode
== MGSL_MODE_HDLC
) ||
4693 info
->params
.mode
== MGSL_MODE_RAW
)
4694 set_desc_eof(*d
, 1);
4696 set_desc_eof(*d
, 0);
4698 set_desc_count(*d
, count
);
4701 info
->tbuf_current
= i
;
4704 static int register_test(struct slgt_info
*info
)
4706 static unsigned short patterns
[] =
4707 {0x0000, 0xffff, 0xaaaa, 0x5555, 0x6969, 0x9696};
4708 static unsigned int count
= sizeof(patterns
)/sizeof(patterns
[0]);
4712 for (i
=0 ; i
< count
; i
++) {
4713 wr_reg16(info
, TIR
, patterns
[i
]);
4714 wr_reg16(info
, BDR
, patterns
[(i
+1)%count
]);
4715 if ((rd_reg16(info
, TIR
) != patterns
[i
]) ||
4716 (rd_reg16(info
, BDR
) != patterns
[(i
+1)%count
])) {
4721 info
->gpio_present
= (rd_reg32(info
, JCR
) & BIT5
) ? 1 : 0;
4722 info
->init_error
= rc
? 0 : DiagStatus_AddressFailure
;
4726 static int irq_test(struct slgt_info
*info
)
4728 unsigned long timeout
;
4729 unsigned long flags
;
4730 struct tty_struct
*oldtty
= info
->tty
;
4731 u32 speed
= info
->params
.data_rate
;
4733 info
->params
.data_rate
= 921600;
4736 spin_lock_irqsave(&info
->lock
, flags
);
4738 slgt_irq_on(info
, IRQ_TXIDLE
);
4740 /* enable transmitter */
4742 (unsigned short)(rd_reg16(info
, TCR
) | BIT1
));
4744 /* write one byte and wait for tx idle */
4745 wr_reg16(info
, TDR
, 0);
4747 /* assume failure */
4748 info
->init_error
= DiagStatus_IrqFailure
;
4749 info
->irq_occurred
= FALSE
;
4751 spin_unlock_irqrestore(&info
->lock
, flags
);
4754 while(timeout
-- && !info
->irq_occurred
)
4755 msleep_interruptible(10);
4757 spin_lock_irqsave(&info
->lock
,flags
);
4759 spin_unlock_irqrestore(&info
->lock
,flags
);
4761 info
->params
.data_rate
= speed
;
4764 info
->init_error
= info
->irq_occurred
? 0 : DiagStatus_IrqFailure
;
4765 return info
->irq_occurred
? 0 : -ENODEV
;
4768 static int loopback_test_rx(struct slgt_info
*info
)
4770 unsigned char *src
, *dest
;
4773 if (desc_complete(info
->rbufs
[0])) {
4774 count
= desc_count(info
->rbufs
[0]);
4775 src
= info
->rbufs
[0].buf
;
4776 dest
= info
->tmp_rbuf
;
4778 for( ; count
; count
-=2, src
+=2) {
4779 /* src=data byte (src+1)=status byte */
4780 if (!(*(src
+1) & (BIT9
+ BIT8
))) {
4783 info
->tmp_rbuf_count
++;
4786 DBGDATA(info
, info
->tmp_rbuf
, info
->tmp_rbuf_count
, "rx");
4792 static int loopback_test(struct slgt_info
*info
)
4794 #define TESTFRAMESIZE 20
4796 unsigned long timeout
;
4797 u16 count
= TESTFRAMESIZE
;
4798 unsigned char buf
[TESTFRAMESIZE
];
4800 unsigned long flags
;
4802 struct tty_struct
*oldtty
= info
->tty
;
4805 memcpy(¶ms
, &info
->params
, sizeof(params
));
4807 info
->params
.mode
= MGSL_MODE_ASYNC
;
4808 info
->params
.data_rate
= 921600;
4809 info
->params
.loopback
= 1;
4812 /* build and send transmit frame */
4813 for (count
= 0; count
< TESTFRAMESIZE
; ++count
)
4814 buf
[count
] = (unsigned char)count
;
4816 info
->tmp_rbuf_count
= 0;
4817 memset(info
->tmp_rbuf
, 0, TESTFRAMESIZE
);
4819 /* program hardware for HDLC and enabled receiver */
4820 spin_lock_irqsave(&info
->lock
,flags
);
4823 info
->tx_count
= count
;
4824 tx_load(info
, buf
, count
);
4826 spin_unlock_irqrestore(&info
->lock
, flags
);
4828 /* wait for receive complete */
4829 for (timeout
= 100; timeout
; --timeout
) {
4830 msleep_interruptible(10);
4831 if (loopback_test_rx(info
)) {
4837 /* verify received frame length and contents */
4838 if (!rc
&& (info
->tmp_rbuf_count
!= count
||
4839 memcmp(buf
, info
->tmp_rbuf
, count
))) {
4843 spin_lock_irqsave(&info
->lock
,flags
);
4844 reset_adapter(info
);
4845 spin_unlock_irqrestore(&info
->lock
,flags
);
4847 memcpy(&info
->params
, ¶ms
, sizeof(info
->params
));
4850 info
->init_error
= rc
? DiagStatus_DmaFailure
: 0;
4854 static int adapter_test(struct slgt_info
*info
)
4856 DBGINFO(("testing %s\n", info
->device_name
));
4857 if (register_test(info
) < 0) {
4858 printk("register test failure %s addr=%08X\n",
4859 info
->device_name
, info
->phys_reg_addr
);
4860 } else if (irq_test(info
) < 0) {
4861 printk("IRQ test failure %s IRQ=%d\n",
4862 info
->device_name
, info
->irq_level
);
4863 } else if (loopback_test(info
) < 0) {
4864 printk("loopback test failure %s\n", info
->device_name
);
4866 return info
->init_error
;
4870 * transmit timeout handler
4872 static void tx_timeout(unsigned long context
)
4874 struct slgt_info
*info
= (struct slgt_info
*)context
;
4875 unsigned long flags
;
4877 DBGINFO(("%s tx_timeout\n", info
->device_name
));
4878 if(info
->tx_active
&& info
->params
.mode
== MGSL_MODE_HDLC
) {
4879 info
->icount
.txtimeout
++;
4881 spin_lock_irqsave(&info
->lock
,flags
);
4882 info
->tx_active
= 0;
4884 spin_unlock_irqrestore(&info
->lock
,flags
);
4886 #if SYNCLINK_GENERIC_HDLC
4888 hdlcdev_tx_done(info
);
4895 * receive buffer polling timer
4897 static void rx_timeout(unsigned long context
)
4899 struct slgt_info
*info
= (struct slgt_info
*)context
;
4900 unsigned long flags
;
4902 DBGINFO(("%s rx_timeout\n", info
->device_name
));
4903 spin_lock_irqsave(&info
->lock
, flags
);
4904 info
->pending_bh
|= BH_RECEIVE
;
4905 spin_unlock_irqrestore(&info
->lock
, flags
);
4906 bh_handler(&info
->task
);