2 * Device driver for Microgate SyncLink GT serial adapters.
4 * written by Paul Fulghum for Microgate Corporation
7 * Microgate and SyncLink are trademarks of Microgate Corporation
9 * This code is released under the GNU General Public License (GPL)
11 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
12 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
13 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
14 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
15 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
16 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
17 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
18 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
19 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
20 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
21 * OF THE POSSIBILITY OF SUCH DAMAGE.
25 * DEBUG OUTPUT DEFINITIONS
27 * uncomment lines below to enable specific types of debug output
29 * DBGINFO information - most verbose output
30 * DBGERR serious errors
31 * DBGBH bottom half service routine debugging
32 * DBGISR interrupt service routine debugging
33 * DBGDATA output receive and transmit data
34 * DBGTBUF output transmit DMA buffers and registers
35 * DBGRBUF output receive DMA buffers and registers
38 #define DBGINFO(fmt) if (debug_level >= DEBUG_LEVEL_INFO) printk fmt
39 #define DBGERR(fmt) if (debug_level >= DEBUG_LEVEL_ERROR) printk fmt
40 #define DBGBH(fmt) if (debug_level >= DEBUG_LEVEL_BH) printk fmt
41 #define DBGISR(fmt) if (debug_level >= DEBUG_LEVEL_ISR) printk fmt
42 #define DBGDATA(info, buf, size, label) if (debug_level >= DEBUG_LEVEL_DATA) trace_block((info), (buf), (size), (label))
43 //#define DBGTBUF(info) dump_tbufs(info)
44 //#define DBGRBUF(info) dump_rbufs(info)
47 #include <linux/module.h>
48 #include <linux/errno.h>
49 #include <linux/signal.h>
50 #include <linux/sched.h>
51 #include <linux/timer.h>
52 #include <linux/interrupt.h>
53 #include <linux/pci.h>
54 #include <linux/tty.h>
55 #include <linux/tty_flip.h>
56 #include <linux/serial.h>
57 #include <linux/major.h>
58 #include <linux/string.h>
59 #include <linux/fcntl.h>
60 #include <linux/ptrace.h>
61 #include <linux/ioport.h>
63 #include <linux/seq_file.h>
64 #include <linux/slab.h>
65 #include <linux/netdevice.h>
66 #include <linux/vmalloc.h>
67 #include <linux/init.h>
68 #include <linux/delay.h>
69 #include <linux/ioctl.h>
70 #include <linux/termios.h>
71 #include <linux/bitops.h>
72 #include <linux/workqueue.h>
73 #include <linux/hdlc.h>
74 #include <linux/synclink.h>
76 #include <asm/system.h>
80 #include <asm/types.h>
81 #include <asm/uaccess.h>
83 #if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_GT_MODULE))
84 #define SYNCLINK_GENERIC_HDLC 1
86 #define SYNCLINK_GENERIC_HDLC 0
90 * module identification
92 static char *driver_name
= "SyncLink GT";
93 static char *tty_driver_name
= "synclink_gt";
94 static char *tty_dev_prefix
= "ttySLG";
95 MODULE_LICENSE("GPL");
96 #define MGSL_MAGIC 0x5401
97 #define MAX_DEVICES 32
99 static struct pci_device_id pci_table
[] = {
100 {PCI_VENDOR_ID_MICROGATE
, SYNCLINK_GT_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
101 {PCI_VENDOR_ID_MICROGATE
, SYNCLINK_GT2_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
102 {PCI_VENDOR_ID_MICROGATE
, SYNCLINK_GT4_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
103 {PCI_VENDOR_ID_MICROGATE
, SYNCLINK_AC_DEVICE_ID
, PCI_ANY_ID
, PCI_ANY_ID
,},
104 {0,}, /* terminate list */
106 MODULE_DEVICE_TABLE(pci
, pci_table
);
108 static int init_one(struct pci_dev
*dev
,const struct pci_device_id
*ent
);
109 static void remove_one(struct pci_dev
*dev
);
110 static struct pci_driver pci_driver
= {
111 .name
= "synclink_gt",
112 .id_table
= pci_table
,
114 .remove
= __devexit_p(remove_one
),
117 static bool pci_registered
;
120 * module configuration and status
122 static struct slgt_info
*slgt_device_list
;
123 static int slgt_device_count
;
126 static int debug_level
;
127 static int maxframe
[MAX_DEVICES
];
129 module_param(ttymajor
, int, 0);
130 module_param(debug_level
, int, 0);
131 module_param_array(maxframe
, int, NULL
, 0);
133 MODULE_PARM_DESC(ttymajor
, "TTY major device number override: 0=auto assigned");
134 MODULE_PARM_DESC(debug_level
, "Debug syslog output: 0=disabled, 1 to 5=increasing detail");
135 MODULE_PARM_DESC(maxframe
, "Maximum frame size used by device (4096 to 65535)");
138 * tty support and callbacks
140 static struct tty_driver
*serial_driver
;
142 static int open(struct tty_struct
*tty
, struct file
* filp
);
143 static void close(struct tty_struct
*tty
, struct file
* filp
);
144 static void hangup(struct tty_struct
*tty
);
145 static void set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
);
147 static int write(struct tty_struct
*tty
, const unsigned char *buf
, int count
);
148 static int put_char(struct tty_struct
*tty
, unsigned char ch
);
149 static void send_xchar(struct tty_struct
*tty
, char ch
);
150 static void wait_until_sent(struct tty_struct
*tty
, int timeout
);
151 static int write_room(struct tty_struct
*tty
);
152 static void flush_chars(struct tty_struct
*tty
);
153 static void flush_buffer(struct tty_struct
*tty
);
154 static void tx_hold(struct tty_struct
*tty
);
155 static void tx_release(struct tty_struct
*tty
);
157 static int ioctl(struct tty_struct
*tty
, struct file
*file
, unsigned int cmd
, unsigned long arg
);
158 static int chars_in_buffer(struct tty_struct
*tty
);
159 static void throttle(struct tty_struct
* tty
);
160 static void unthrottle(struct tty_struct
* tty
);
161 static int set_break(struct tty_struct
*tty
, int break_state
);
164 * generic HDLC support and callbacks
166 #if SYNCLINK_GENERIC_HDLC
167 #define dev_to_port(D) (dev_to_hdlc(D)->priv)
168 static void hdlcdev_tx_done(struct slgt_info
*info
);
169 static void hdlcdev_rx(struct slgt_info
*info
, char *buf
, int size
);
170 static int hdlcdev_init(struct slgt_info
*info
);
171 static void hdlcdev_exit(struct slgt_info
*info
);
176 * device specific structures, macros and functions
179 #define SLGT_MAX_PORTS 4
180 #define SLGT_REG_SIZE 256
183 * conditional wait facility
186 struct cond_wait
*next
;
191 static void init_cond_wait(struct cond_wait
*w
, unsigned int data
);
192 static void add_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
);
193 static void remove_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
);
194 static void flush_cond_wait(struct cond_wait
**head
);
197 * DMA buffer descriptor and access macros
203 __le32 pbuf
; /* physical address of data buffer */
204 __le32 next
; /* physical address of next descriptor */
206 /* driver book keeping */
207 char *buf
; /* virtual address of data buffer */
208 unsigned int pdesc
; /* physical address of this descriptor */
209 dma_addr_t buf_dma_addr
;
210 unsigned short buf_count
;
213 #define set_desc_buffer(a,b) (a).pbuf = cpu_to_le32((unsigned int)(b))
214 #define set_desc_next(a,b) (a).next = cpu_to_le32((unsigned int)(b))
215 #define set_desc_count(a,b)(a).count = cpu_to_le16((unsigned short)(b))
216 #define set_desc_eof(a,b) (a).status = cpu_to_le16((b) ? (le16_to_cpu((a).status) | BIT0) : (le16_to_cpu((a).status) & ~BIT0))
217 #define desc_count(a) (le16_to_cpu((a).count))
218 #define desc_status(a) (le16_to_cpu((a).status))
219 #define desc_complete(a) (le16_to_cpu((a).status) & BIT15)
220 #define desc_eof(a) (le16_to_cpu((a).status) & BIT2)
221 #define desc_crc_error(a) (le16_to_cpu((a).status) & BIT1)
222 #define desc_abort(a) (le16_to_cpu((a).status) & BIT0)
223 #define desc_residue(a) ((le16_to_cpu((a).status) & 0x38) >> 3)
225 struct _input_signal_events
{
237 * device instance data structure
240 void *if_ptr
; /* General purpose pointer (used by SPPP) */
241 struct tty_port port
;
243 struct slgt_info
*next_device
; /* device list link */
247 char device_name
[25];
248 struct pci_dev
*pdev
;
250 int port_count
; /* count of ports on adapter */
251 int adapter_num
; /* adapter instance number */
252 int port_num
; /* port instance number */
254 /* array of pointers to port contexts on this adapter */
255 struct slgt_info
*port_array
[SLGT_MAX_PORTS
];
257 int line
; /* tty line instance number */
259 struct mgsl_icount icount
;
262 int x_char
; /* xon/xoff character */
263 unsigned int read_status_mask
;
264 unsigned int ignore_status_mask
;
266 wait_queue_head_t status_event_wait_q
;
267 wait_queue_head_t event_wait_q
;
268 struct timer_list tx_timer
;
269 struct timer_list rx_timer
;
271 unsigned int gpio_present
;
272 struct cond_wait
*gpio_wait_q
;
274 spinlock_t lock
; /* spinlock for synchronizing with ISR */
276 struct work_struct task
;
282 bool irq_requested
; /* true if IRQ requested */
283 bool irq_occurred
; /* for diagnostics use */
285 /* device configuration */
287 unsigned int bus_type
;
288 unsigned int irq_level
;
289 unsigned long irq_flags
;
291 unsigned char __iomem
* reg_addr
; /* memory mapped registers address */
293 bool reg_addr_requested
;
295 MGSL_PARAMS params
; /* communications parameters */
297 u32 max_frame_size
; /* as set by device config */
299 unsigned int rbuf_fill_level
;
300 unsigned int if_mode
;
301 unsigned int base_clock
;
311 unsigned char signals
; /* serial signal states */
312 int init_error
; /* initialization error */
314 unsigned char *tx_buf
;
317 char flag_buf
[MAX_ASYNC_BUFFER_SIZE
];
318 char char_buf
[MAX_ASYNC_BUFFER_SIZE
];
319 bool drop_rts_on_tx_done
;
320 struct _input_signal_events input_signal_events
;
322 int dcd_chkcount
; /* check counts to prevent */
323 int cts_chkcount
; /* too many IRQs if a signal */
324 int dsr_chkcount
; /* is floating */
327 char *bufs
; /* virtual address of DMA buffer lists */
328 dma_addr_t bufs_dma_addr
; /* physical address of buffer descriptors */
330 unsigned int rbuf_count
;
331 struct slgt_desc
*rbufs
;
332 unsigned int rbuf_current
;
333 unsigned int rbuf_index
;
335 unsigned int tbuf_count
;
336 struct slgt_desc
*tbufs
;
337 unsigned int tbuf_current
;
338 unsigned int tbuf_start
;
340 unsigned char *tmp_rbuf
;
341 unsigned int tmp_rbuf_count
;
343 /* SPPP/Cisco HDLC device parts */
347 #if SYNCLINK_GENERIC_HDLC
348 struct net_device
*netdev
;
353 static MGSL_PARAMS default_params
= {
354 .mode
= MGSL_MODE_HDLC
,
356 .flags
= HDLC_FLAG_UNDERRUN_ABORT15
,
357 .encoding
= HDLC_ENCODING_NRZI_SPACE
,
360 .crc_type
= HDLC_CRC_16_CCITT
,
361 .preamble_length
= HDLC_PREAMBLE_LENGTH_8BITS
,
362 .preamble
= HDLC_PREAMBLE_PATTERN_NONE
,
366 .parity
= ASYNC_PARITY_NONE
371 #define BH_TRANSMIT 2
373 #define IO_PIN_SHUTDOWN_LIMIT 100
375 #define DMABUFSIZE 256
376 #define DESC_LIST_SIZE 4096
378 #define MASK_PARITY BIT1
379 #define MASK_FRAMING BIT0
380 #define MASK_BREAK BIT14
381 #define MASK_OVERRUN BIT4
383 #define GSR 0x00 /* global status */
384 #define JCR 0x04 /* JTAG control */
385 #define IODR 0x08 /* GPIO direction */
386 #define IOER 0x0c /* GPIO interrupt enable */
387 #define IOVR 0x10 /* GPIO value */
388 #define IOSR 0x14 /* GPIO interrupt status */
389 #define TDR 0x80 /* tx data */
390 #define RDR 0x80 /* rx data */
391 #define TCR 0x82 /* tx control */
392 #define TIR 0x84 /* tx idle */
393 #define TPR 0x85 /* tx preamble */
394 #define RCR 0x86 /* rx control */
395 #define VCR 0x88 /* V.24 control */
396 #define CCR 0x89 /* clock control */
397 #define BDR 0x8a /* baud divisor */
398 #define SCR 0x8c /* serial control */
399 #define SSR 0x8e /* serial status */
400 #define RDCSR 0x90 /* rx DMA control/status */
401 #define TDCSR 0x94 /* tx DMA control/status */
402 #define RDDAR 0x98 /* rx DMA descriptor address */
403 #define TDDAR 0x9c /* tx DMA descriptor address */
406 #define RXBREAK BIT14
407 #define IRQ_TXDATA BIT13
408 #define IRQ_TXIDLE BIT12
409 #define IRQ_TXUNDER BIT11 /* HDLC */
410 #define IRQ_RXDATA BIT10
411 #define IRQ_RXIDLE BIT9 /* HDLC */
412 #define IRQ_RXBREAK BIT9 /* async */
413 #define IRQ_RXOVER BIT8
418 #define IRQ_ALL 0x3ff0
419 #define IRQ_MASTER BIT0
421 #define slgt_irq_on(info, mask) \
422 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) | (mask)))
423 #define slgt_irq_off(info, mask) \
424 wr_reg16((info), SCR, (unsigned short)(rd_reg16((info), SCR) & ~(mask)))
426 static __u8
rd_reg8(struct slgt_info
*info
, unsigned int addr
);
427 static void wr_reg8(struct slgt_info
*info
, unsigned int addr
, __u8 value
);
428 static __u16
rd_reg16(struct slgt_info
*info
, unsigned int addr
);
429 static void wr_reg16(struct slgt_info
*info
, unsigned int addr
, __u16 value
);
430 static __u32
rd_reg32(struct slgt_info
*info
, unsigned int addr
);
431 static void wr_reg32(struct slgt_info
*info
, unsigned int addr
, __u32 value
);
433 static void msc_set_vcr(struct slgt_info
*info
);
435 static int startup(struct slgt_info
*info
);
436 static int block_til_ready(struct tty_struct
*tty
, struct file
* filp
,struct slgt_info
*info
);
437 static void shutdown(struct slgt_info
*info
);
438 static void program_hw(struct slgt_info
*info
);
439 static void change_params(struct slgt_info
*info
);
441 static int register_test(struct slgt_info
*info
);
442 static int irq_test(struct slgt_info
*info
);
443 static int loopback_test(struct slgt_info
*info
);
444 static int adapter_test(struct slgt_info
*info
);
446 static void reset_adapter(struct slgt_info
*info
);
447 static void reset_port(struct slgt_info
*info
);
448 static void async_mode(struct slgt_info
*info
);
449 static void sync_mode(struct slgt_info
*info
);
451 static void rx_stop(struct slgt_info
*info
);
452 static void rx_start(struct slgt_info
*info
);
453 static void reset_rbufs(struct slgt_info
*info
);
454 static void free_rbufs(struct slgt_info
*info
, unsigned int first
, unsigned int last
);
455 static void rdma_reset(struct slgt_info
*info
);
456 static bool rx_get_frame(struct slgt_info
*info
);
457 static bool rx_get_buf(struct slgt_info
*info
);
459 static void tx_start(struct slgt_info
*info
);
460 static void tx_stop(struct slgt_info
*info
);
461 static void tx_set_idle(struct slgt_info
*info
);
462 static unsigned int free_tbuf_count(struct slgt_info
*info
);
463 static unsigned int tbuf_bytes(struct slgt_info
*info
);
464 static void reset_tbufs(struct slgt_info
*info
);
465 static void tdma_reset(struct slgt_info
*info
);
466 static void tdma_start(struct slgt_info
*info
);
467 static void tx_load(struct slgt_info
*info
, const char *buf
, unsigned int count
);
469 static void get_signals(struct slgt_info
*info
);
470 static void set_signals(struct slgt_info
*info
);
471 static void enable_loopback(struct slgt_info
*info
);
472 static void set_rate(struct slgt_info
*info
, u32 data_rate
);
474 static int bh_action(struct slgt_info
*info
);
475 static void bh_handler(struct work_struct
*work
);
476 static void bh_transmit(struct slgt_info
*info
);
477 static void isr_serial(struct slgt_info
*info
);
478 static void isr_rdma(struct slgt_info
*info
);
479 static void isr_txeom(struct slgt_info
*info
, unsigned short status
);
480 static void isr_tdma(struct slgt_info
*info
);
482 static int alloc_dma_bufs(struct slgt_info
*info
);
483 static void free_dma_bufs(struct slgt_info
*info
);
484 static int alloc_desc(struct slgt_info
*info
);
485 static void free_desc(struct slgt_info
*info
);
486 static int alloc_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
);
487 static void free_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
);
489 static int alloc_tmp_rbuf(struct slgt_info
*info
);
490 static void free_tmp_rbuf(struct slgt_info
*info
);
492 static void tx_timeout(unsigned long context
);
493 static void rx_timeout(unsigned long context
);
498 static int get_stats(struct slgt_info
*info
, struct mgsl_icount __user
*user_icount
);
499 static int get_params(struct slgt_info
*info
, MGSL_PARAMS __user
*params
);
500 static int set_params(struct slgt_info
*info
, MGSL_PARAMS __user
*params
);
501 static int get_txidle(struct slgt_info
*info
, int __user
*idle_mode
);
502 static int set_txidle(struct slgt_info
*info
, int idle_mode
);
503 static int tx_enable(struct slgt_info
*info
, int enable
);
504 static int tx_abort(struct slgt_info
*info
);
505 static int rx_enable(struct slgt_info
*info
, int enable
);
506 static int modem_input_wait(struct slgt_info
*info
,int arg
);
507 static int wait_mgsl_event(struct slgt_info
*info
, int __user
*mask_ptr
);
508 static int tiocmget(struct tty_struct
*tty
, struct file
*file
);
509 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
510 unsigned int set
, unsigned int clear
);
511 static int set_break(struct tty_struct
*tty
, int break_state
);
512 static int get_interface(struct slgt_info
*info
, int __user
*if_mode
);
513 static int set_interface(struct slgt_info
*info
, int if_mode
);
514 static int set_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
515 static int get_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
516 static int wait_gpio(struct slgt_info
*info
, struct gpio_desc __user
*gpio
);
521 static void add_device(struct slgt_info
*info
);
522 static void device_init(int adapter_num
, struct pci_dev
*pdev
);
523 static int claim_resources(struct slgt_info
*info
);
524 static void release_resources(struct slgt_info
*info
);
543 static void trace_block(struct slgt_info
*info
, const char *data
, int count
, const char *label
)
547 printk("%s %s data:\n",info
->device_name
, label
);
549 linecount
= (count
> 16) ? 16 : count
;
550 for(i
=0; i
< linecount
; i
++)
551 printk("%02X ",(unsigned char)data
[i
]);
554 for(i
=0;i
<linecount
;i
++) {
555 if (data
[i
]>=040 && data
[i
]<=0176)
556 printk("%c",data
[i
]);
566 #define DBGDATA(info, buf, size, label)
570 static void dump_tbufs(struct slgt_info
*info
)
573 printk("tbuf_current=%d\n", info
->tbuf_current
);
574 for (i
=0 ; i
< info
->tbuf_count
; i
++) {
575 printk("%d: count=%04X status=%04X\n",
576 i
, le16_to_cpu(info
->tbufs
[i
].count
), le16_to_cpu(info
->tbufs
[i
].status
));
580 #define DBGTBUF(info)
584 static void dump_rbufs(struct slgt_info
*info
)
587 printk("rbuf_current=%d\n", info
->rbuf_current
);
588 for (i
=0 ; i
< info
->rbuf_count
; i
++) {
589 printk("%d: count=%04X status=%04X\n",
590 i
, le16_to_cpu(info
->rbufs
[i
].count
), le16_to_cpu(info
->rbufs
[i
].status
));
594 #define DBGRBUF(info)
597 static inline int sanity_check(struct slgt_info
*info
, char *devname
, const char *name
)
601 printk("null struct slgt_info for (%s) in %s\n", devname
, name
);
604 if (info
->magic
!= MGSL_MAGIC
) {
605 printk("bad magic number struct slgt_info (%s) in %s\n", devname
, name
);
616 * line discipline callback wrappers
618 * The wrappers maintain line discipline references
619 * while calling into the line discipline.
621 * ldisc_receive_buf - pass receive data to line discipline
623 static void ldisc_receive_buf(struct tty_struct
*tty
,
624 const __u8
*data
, char *flags
, int count
)
626 struct tty_ldisc
*ld
;
629 ld
= tty_ldisc_ref(tty
);
631 if (ld
->ops
->receive_buf
)
632 ld
->ops
->receive_buf(tty
, data
, flags
, count
);
639 static int open(struct tty_struct
*tty
, struct file
*filp
)
641 struct slgt_info
*info
;
646 if ((line
< 0) || (line
>= slgt_device_count
)) {
647 DBGERR(("%s: open with invalid line #%d.\n", driver_name
, line
));
651 info
= slgt_device_list
;
652 while(info
&& info
->line
!= line
)
653 info
= info
->next_device
;
654 if (sanity_check(info
, tty
->name
, "open"))
656 if (info
->init_error
) {
657 DBGERR(("%s init error=%d\n", info
->device_name
, info
->init_error
));
661 tty
->driver_data
= info
;
662 info
->port
.tty
= tty
;
664 DBGINFO(("%s open, old ref count = %d\n", info
->device_name
, info
->port
.count
));
666 /* If port is closing, signal caller to try again */
667 if (tty_hung_up_p(filp
) || info
->port
.flags
& ASYNC_CLOSING
){
668 if (info
->port
.flags
& ASYNC_CLOSING
)
669 interruptible_sleep_on(&info
->port
.close_wait
);
670 retval
= ((info
->port
.flags
& ASYNC_HUP_NOTIFY
) ?
671 -EAGAIN
: -ERESTARTSYS
);
675 info
->port
.tty
->low_latency
= (info
->port
.flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
677 spin_lock_irqsave(&info
->netlock
, flags
);
678 if (info
->netcount
) {
680 spin_unlock_irqrestore(&info
->netlock
, flags
);
684 spin_unlock_irqrestore(&info
->netlock
, flags
);
686 if (info
->port
.count
== 1) {
687 /* 1st open on this device, init hardware */
688 retval
= startup(info
);
693 retval
= block_til_ready(tty
, filp
, info
);
695 DBGINFO(("%s block_til_ready rc=%d\n", info
->device_name
, retval
));
704 info
->port
.tty
= NULL
; /* tty layer will release tty struct */
709 DBGINFO(("%s open rc=%d\n", info
->device_name
, retval
));
713 static void close(struct tty_struct
*tty
, struct file
*filp
)
715 struct slgt_info
*info
= tty
->driver_data
;
717 if (sanity_check(info
, tty
->name
, "close"))
719 DBGINFO(("%s close entry, count=%d\n", info
->device_name
, info
->port
.count
));
721 if (tty_port_close_start(&info
->port
, tty
, filp
) == 0)
724 if (info
->port
.flags
& ASYNC_INITIALIZED
)
725 wait_until_sent(tty
, info
->timeout
);
727 tty_ldisc_flush(tty
);
731 tty_port_close_end(&info
->port
, tty
);
732 info
->port
.tty
= NULL
;
734 DBGINFO(("%s close exit, count=%d\n", tty
->driver
->name
, info
->port
.count
));
737 static void hangup(struct tty_struct
*tty
)
739 struct slgt_info
*info
= tty
->driver_data
;
741 if (sanity_check(info
, tty
->name
, "hangup"))
743 DBGINFO(("%s hangup\n", info
->device_name
));
748 info
->port
.count
= 0;
749 info
->port
.flags
&= ~ASYNC_NORMAL_ACTIVE
;
750 info
->port
.tty
= NULL
;
752 wake_up_interruptible(&info
->port
.open_wait
);
755 static void set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
757 struct slgt_info
*info
= tty
->driver_data
;
760 DBGINFO(("%s set_termios\n", tty
->driver
->name
));
764 /* Handle transition to B0 status */
765 if (old_termios
->c_cflag
& CBAUD
&&
766 !(tty
->termios
->c_cflag
& CBAUD
)) {
767 info
->signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
768 spin_lock_irqsave(&info
->lock
,flags
);
770 spin_unlock_irqrestore(&info
->lock
,flags
);
773 /* Handle transition away from B0 status */
774 if (!(old_termios
->c_cflag
& CBAUD
) &&
775 tty
->termios
->c_cflag
& CBAUD
) {
776 info
->signals
|= SerialSignal_DTR
;
777 if (!(tty
->termios
->c_cflag
& CRTSCTS
) ||
778 !test_bit(TTY_THROTTLED
, &tty
->flags
)) {
779 info
->signals
|= SerialSignal_RTS
;
781 spin_lock_irqsave(&info
->lock
,flags
);
783 spin_unlock_irqrestore(&info
->lock
,flags
);
786 /* Handle turning off CRTSCTS */
787 if (old_termios
->c_cflag
& CRTSCTS
&&
788 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
794 static int write(struct tty_struct
*tty
,
795 const unsigned char *buf
, int count
)
798 struct slgt_info
*info
= tty
->driver_data
;
800 unsigned int bufs_needed
;
802 if (sanity_check(info
, tty
->name
, "write"))
804 DBGINFO(("%s write count=%d\n", info
->device_name
, count
));
809 if (count
> info
->max_frame_size
) {
817 if (!info
->tx_active
&& info
->tx_count
) {
818 /* send accumulated data from send_char() */
819 tx_load(info
, info
->tx_buf
, info
->tx_count
);
822 bufs_needed
= (count
/DMABUFSIZE
);
823 if (count
% DMABUFSIZE
)
825 if (bufs_needed
> free_tbuf_count(info
))
828 ret
= info
->tx_count
= count
;
829 tx_load(info
, buf
, count
);
833 if (info
->tx_count
&& !tty
->stopped
&& !tty
->hw_stopped
) {
834 spin_lock_irqsave(&info
->lock
,flags
);
835 if (!info
->tx_active
)
839 spin_unlock_irqrestore(&info
->lock
,flags
);
843 DBGINFO(("%s write rc=%d\n", info
->device_name
, ret
));
847 static int put_char(struct tty_struct
*tty
, unsigned char ch
)
849 struct slgt_info
*info
= tty
->driver_data
;
853 if (sanity_check(info
, tty
->name
, "put_char"))
855 DBGINFO(("%s put_char(%d)\n", info
->device_name
, ch
));
858 spin_lock_irqsave(&info
->lock
,flags
);
859 if (!info
->tx_active
&& (info
->tx_count
< info
->max_frame_size
)) {
860 info
->tx_buf
[info
->tx_count
++] = ch
;
863 spin_unlock_irqrestore(&info
->lock
,flags
);
867 static void send_xchar(struct tty_struct
*tty
, char ch
)
869 struct slgt_info
*info
= tty
->driver_data
;
872 if (sanity_check(info
, tty
->name
, "send_xchar"))
874 DBGINFO(("%s send_xchar(%d)\n", info
->device_name
, ch
));
877 spin_lock_irqsave(&info
->lock
,flags
);
878 if (!info
->tx_enabled
)
880 spin_unlock_irqrestore(&info
->lock
,flags
);
884 static void wait_until_sent(struct tty_struct
*tty
, int timeout
)
886 struct slgt_info
*info
= tty
->driver_data
;
887 unsigned long orig_jiffies
, char_time
;
891 if (sanity_check(info
, tty
->name
, "wait_until_sent"))
893 DBGINFO(("%s wait_until_sent entry\n", info
->device_name
));
894 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
897 orig_jiffies
= jiffies
;
899 /* Set check interval to 1/5 of estimated time to
900 * send a character, and make it at least 1. The check
901 * interval should also be less than the timeout.
902 * Note: use tight timings here to satisfy the NIST-PCTS.
907 if (info
->params
.data_rate
) {
908 char_time
= info
->timeout
/(32 * 5);
915 char_time
= min_t(unsigned long, char_time
, timeout
);
917 while (info
->tx_active
) {
918 msleep_interruptible(jiffies_to_msecs(char_time
));
919 if (signal_pending(current
))
921 if (timeout
&& time_after(jiffies
, orig_jiffies
+ timeout
))
927 DBGINFO(("%s wait_until_sent exit\n", info
->device_name
));
930 static int write_room(struct tty_struct
*tty
)
932 struct slgt_info
*info
= tty
->driver_data
;
935 if (sanity_check(info
, tty
->name
, "write_room"))
937 ret
= (info
->tx_active
) ? 0 : HDLC_MAX_FRAME_SIZE
;
938 DBGINFO(("%s write_room=%d\n", info
->device_name
, ret
));
942 static void flush_chars(struct tty_struct
*tty
)
944 struct slgt_info
*info
= tty
->driver_data
;
947 if (sanity_check(info
, tty
->name
, "flush_chars"))
949 DBGINFO(("%s flush_chars entry tx_count=%d\n", info
->device_name
, info
->tx_count
));
951 if (info
->tx_count
<= 0 || tty
->stopped
||
952 tty
->hw_stopped
|| !info
->tx_buf
)
955 DBGINFO(("%s flush_chars start transmit\n", info
->device_name
));
957 spin_lock_irqsave(&info
->lock
,flags
);
958 if (!info
->tx_active
&& info
->tx_count
) {
959 tx_load(info
, info
->tx_buf
,info
->tx_count
);
962 spin_unlock_irqrestore(&info
->lock
,flags
);
965 static void flush_buffer(struct tty_struct
*tty
)
967 struct slgt_info
*info
= tty
->driver_data
;
970 if (sanity_check(info
, tty
->name
, "flush_buffer"))
972 DBGINFO(("%s flush_buffer\n", info
->device_name
));
974 spin_lock_irqsave(&info
->lock
,flags
);
975 if (!info
->tx_active
)
977 spin_unlock_irqrestore(&info
->lock
,flags
);
983 * throttle (stop) transmitter
985 static void tx_hold(struct tty_struct
*tty
)
987 struct slgt_info
*info
= tty
->driver_data
;
990 if (sanity_check(info
, tty
->name
, "tx_hold"))
992 DBGINFO(("%s tx_hold\n", info
->device_name
));
993 spin_lock_irqsave(&info
->lock
,flags
);
994 if (info
->tx_enabled
&& info
->params
.mode
== MGSL_MODE_ASYNC
)
996 spin_unlock_irqrestore(&info
->lock
,flags
);
1000 * release (start) transmitter
1002 static void tx_release(struct tty_struct
*tty
)
1004 struct slgt_info
*info
= tty
->driver_data
;
1005 unsigned long flags
;
1007 if (sanity_check(info
, tty
->name
, "tx_release"))
1009 DBGINFO(("%s tx_release\n", info
->device_name
));
1010 spin_lock_irqsave(&info
->lock
,flags
);
1011 if (!info
->tx_active
&& info
->tx_count
) {
1012 tx_load(info
, info
->tx_buf
, info
->tx_count
);
1015 spin_unlock_irqrestore(&info
->lock
,flags
);
1019 * Service an IOCTL request
1023 * tty pointer to tty instance data
1024 * file pointer to associated file object for device
1025 * cmd IOCTL command code
1026 * arg command argument/context
1028 * Return 0 if success, otherwise error code
1030 static int ioctl(struct tty_struct
*tty
, struct file
*file
,
1031 unsigned int cmd
, unsigned long arg
)
1033 struct slgt_info
*info
= tty
->driver_data
;
1034 struct mgsl_icount cnow
; /* kernel counter temps */
1035 struct serial_icounter_struct __user
*p_cuser
; /* user space */
1036 unsigned long flags
;
1037 void __user
*argp
= (void __user
*)arg
;
1040 if (sanity_check(info
, tty
->name
, "ioctl"))
1042 DBGINFO(("%s ioctl() cmd=%08X\n", info
->device_name
, cmd
));
1044 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
1045 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
1046 if (tty
->flags
& (1 << TTY_IO_ERROR
))
1053 case MGSL_IOCGPARAMS
:
1054 ret
= get_params(info
, argp
);
1056 case MGSL_IOCSPARAMS
:
1057 ret
= set_params(info
, argp
);
1059 case MGSL_IOCGTXIDLE
:
1060 ret
= get_txidle(info
, argp
);
1062 case MGSL_IOCSTXIDLE
:
1063 ret
= set_txidle(info
, (int)arg
);
1065 case MGSL_IOCTXENABLE
:
1066 ret
= tx_enable(info
, (int)arg
);
1068 case MGSL_IOCRXENABLE
:
1069 ret
= rx_enable(info
, (int)arg
);
1071 case MGSL_IOCTXABORT
:
1072 ret
= tx_abort(info
);
1074 case MGSL_IOCGSTATS
:
1075 ret
= get_stats(info
, argp
);
1077 case MGSL_IOCWAITEVENT
:
1078 ret
= wait_mgsl_event(info
, argp
);
1081 ret
= modem_input_wait(info
,(int)arg
);
1084 ret
= get_interface(info
, argp
);
1087 ret
= set_interface(info
,(int)arg
);
1090 ret
= set_gpio(info
, argp
);
1093 ret
= get_gpio(info
, argp
);
1095 case MGSL_IOCWAITGPIO
:
1096 ret
= wait_gpio(info
, argp
);
1099 spin_lock_irqsave(&info
->lock
,flags
);
1100 cnow
= info
->icount
;
1101 spin_unlock_irqrestore(&info
->lock
,flags
);
1103 if (put_user(cnow
.cts
, &p_cuser
->cts
) ||
1104 put_user(cnow
.dsr
, &p_cuser
->dsr
) ||
1105 put_user(cnow
.rng
, &p_cuser
->rng
) ||
1106 put_user(cnow
.dcd
, &p_cuser
->dcd
) ||
1107 put_user(cnow
.rx
, &p_cuser
->rx
) ||
1108 put_user(cnow
.tx
, &p_cuser
->tx
) ||
1109 put_user(cnow
.frame
, &p_cuser
->frame
) ||
1110 put_user(cnow
.overrun
, &p_cuser
->overrun
) ||
1111 put_user(cnow
.parity
, &p_cuser
->parity
) ||
1112 put_user(cnow
.brk
, &p_cuser
->brk
) ||
1113 put_user(cnow
.buf_overrun
, &p_cuser
->buf_overrun
))
1125 * support for 32 bit ioctl calls on 64 bit systems
1127 #ifdef CONFIG_COMPAT
1128 static long get_params32(struct slgt_info
*info
, struct MGSL_PARAMS32 __user
*user_params
)
1130 struct MGSL_PARAMS32 tmp_params
;
1132 DBGINFO(("%s get_params32\n", info
->device_name
));
1133 tmp_params
.mode
= (compat_ulong_t
)info
->params
.mode
;
1134 tmp_params
.loopback
= info
->params
.loopback
;
1135 tmp_params
.flags
= info
->params
.flags
;
1136 tmp_params
.encoding
= info
->params
.encoding
;
1137 tmp_params
.clock_speed
= (compat_ulong_t
)info
->params
.clock_speed
;
1138 tmp_params
.addr_filter
= info
->params
.addr_filter
;
1139 tmp_params
.crc_type
= info
->params
.crc_type
;
1140 tmp_params
.preamble_length
= info
->params
.preamble_length
;
1141 tmp_params
.preamble
= info
->params
.preamble
;
1142 tmp_params
.data_rate
= (compat_ulong_t
)info
->params
.data_rate
;
1143 tmp_params
.data_bits
= info
->params
.data_bits
;
1144 tmp_params
.stop_bits
= info
->params
.stop_bits
;
1145 tmp_params
.parity
= info
->params
.parity
;
1146 if (copy_to_user(user_params
, &tmp_params
, sizeof(struct MGSL_PARAMS32
)))
1151 static long set_params32(struct slgt_info
*info
, struct MGSL_PARAMS32 __user
*new_params
)
1153 struct MGSL_PARAMS32 tmp_params
;
1155 DBGINFO(("%s set_params32\n", info
->device_name
));
1156 if (copy_from_user(&tmp_params
, new_params
, sizeof(struct MGSL_PARAMS32
)))
1159 spin_lock(&info
->lock
);
1160 if (tmp_params
.mode
== MGSL_MODE_BASE_CLOCK
) {
1161 info
->base_clock
= tmp_params
.clock_speed
;
1163 info
->params
.mode
= tmp_params
.mode
;
1164 info
->params
.loopback
= tmp_params
.loopback
;
1165 info
->params
.flags
= tmp_params
.flags
;
1166 info
->params
.encoding
= tmp_params
.encoding
;
1167 info
->params
.clock_speed
= tmp_params
.clock_speed
;
1168 info
->params
.addr_filter
= tmp_params
.addr_filter
;
1169 info
->params
.crc_type
= tmp_params
.crc_type
;
1170 info
->params
.preamble_length
= tmp_params
.preamble_length
;
1171 info
->params
.preamble
= tmp_params
.preamble
;
1172 info
->params
.data_rate
= tmp_params
.data_rate
;
1173 info
->params
.data_bits
= tmp_params
.data_bits
;
1174 info
->params
.stop_bits
= tmp_params
.stop_bits
;
1175 info
->params
.parity
= tmp_params
.parity
;
1177 spin_unlock(&info
->lock
);
1184 static long slgt_compat_ioctl(struct tty_struct
*tty
, struct file
*file
,
1185 unsigned int cmd
, unsigned long arg
)
1187 struct slgt_info
*info
= tty
->driver_data
;
1188 int rc
= -ENOIOCTLCMD
;
1190 if (sanity_check(info
, tty
->name
, "compat_ioctl"))
1192 DBGINFO(("%s compat_ioctl() cmd=%08X\n", info
->device_name
, cmd
));
1196 case MGSL_IOCSPARAMS32
:
1197 rc
= set_params32(info
, compat_ptr(arg
));
1200 case MGSL_IOCGPARAMS32
:
1201 rc
= get_params32(info
, compat_ptr(arg
));
1204 case MGSL_IOCGPARAMS
:
1205 case MGSL_IOCSPARAMS
:
1206 case MGSL_IOCGTXIDLE
:
1207 case MGSL_IOCGSTATS
:
1208 case MGSL_IOCWAITEVENT
:
1212 case MGSL_IOCWAITGPIO
:
1214 rc
= ioctl(tty
, file
, cmd
, (unsigned long)(compat_ptr(arg
)));
1217 case MGSL_IOCSTXIDLE
:
1218 case MGSL_IOCTXENABLE
:
1219 case MGSL_IOCRXENABLE
:
1220 case MGSL_IOCTXABORT
:
1223 rc
= ioctl(tty
, file
, cmd
, arg
);
1227 DBGINFO(("%s compat_ioctl() cmd=%08X rc=%d\n", info
->device_name
, cmd
, rc
));
1231 #define slgt_compat_ioctl NULL
1232 #endif /* ifdef CONFIG_COMPAT */
1237 static inline void line_info(struct seq_file
*m
, struct slgt_info
*info
)
1240 unsigned long flags
;
1242 seq_printf(m
, "%s: IO=%08X IRQ=%d MaxFrameSize=%u\n",
1243 info
->device_name
, info
->phys_reg_addr
,
1244 info
->irq_level
, info
->max_frame_size
);
1246 /* output current serial signal states */
1247 spin_lock_irqsave(&info
->lock
,flags
);
1249 spin_unlock_irqrestore(&info
->lock
,flags
);
1253 if (info
->signals
& SerialSignal_RTS
)
1254 strcat(stat_buf
, "|RTS");
1255 if (info
->signals
& SerialSignal_CTS
)
1256 strcat(stat_buf
, "|CTS");
1257 if (info
->signals
& SerialSignal_DTR
)
1258 strcat(stat_buf
, "|DTR");
1259 if (info
->signals
& SerialSignal_DSR
)
1260 strcat(stat_buf
, "|DSR");
1261 if (info
->signals
& SerialSignal_DCD
)
1262 strcat(stat_buf
, "|CD");
1263 if (info
->signals
& SerialSignal_RI
)
1264 strcat(stat_buf
, "|RI");
1266 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
1267 seq_printf(m
, "\tHDLC txok:%d rxok:%d",
1268 info
->icount
.txok
, info
->icount
.rxok
);
1269 if (info
->icount
.txunder
)
1270 seq_printf(m
, " txunder:%d", info
->icount
.txunder
);
1271 if (info
->icount
.txabort
)
1272 seq_printf(m
, " txabort:%d", info
->icount
.txabort
);
1273 if (info
->icount
.rxshort
)
1274 seq_printf(m
, " rxshort:%d", info
->icount
.rxshort
);
1275 if (info
->icount
.rxlong
)
1276 seq_printf(m
, " rxlong:%d", info
->icount
.rxlong
);
1277 if (info
->icount
.rxover
)
1278 seq_printf(m
, " rxover:%d", info
->icount
.rxover
);
1279 if (info
->icount
.rxcrc
)
1280 seq_printf(m
, " rxcrc:%d", info
->icount
.rxcrc
);
1282 seq_printf(m
, "\tASYNC tx:%d rx:%d",
1283 info
->icount
.tx
, info
->icount
.rx
);
1284 if (info
->icount
.frame
)
1285 seq_printf(m
, " fe:%d", info
->icount
.frame
);
1286 if (info
->icount
.parity
)
1287 seq_printf(m
, " pe:%d", info
->icount
.parity
);
1288 if (info
->icount
.brk
)
1289 seq_printf(m
, " brk:%d", info
->icount
.brk
);
1290 if (info
->icount
.overrun
)
1291 seq_printf(m
, " oe:%d", info
->icount
.overrun
);
1294 /* Append serial signal status to end */
1295 seq_printf(m
, " %s\n", stat_buf
+1);
1297 seq_printf(m
, "\ttxactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
1298 info
->tx_active
,info
->bh_requested
,info
->bh_running
,
1302 /* Called to print information about devices
1304 static int synclink_gt_proc_show(struct seq_file
*m
, void *v
)
1306 struct slgt_info
*info
;
1308 seq_puts(m
, "synclink_gt driver\n");
1310 info
= slgt_device_list
;
1313 info
= info
->next_device
;
1318 static int synclink_gt_proc_open(struct inode
*inode
, struct file
*file
)
1320 return single_open(file
, synclink_gt_proc_show
, NULL
);
1323 static const struct file_operations synclink_gt_proc_fops
= {
1324 .owner
= THIS_MODULE
,
1325 .open
= synclink_gt_proc_open
,
1327 .llseek
= seq_lseek
,
1328 .release
= single_release
,
1332 * return count of bytes in transmit buffer
1334 static int chars_in_buffer(struct tty_struct
*tty
)
1336 struct slgt_info
*info
= tty
->driver_data
;
1338 if (sanity_check(info
, tty
->name
, "chars_in_buffer"))
1340 count
= tbuf_bytes(info
);
1341 DBGINFO(("%s chars_in_buffer()=%d\n", info
->device_name
, count
));
1346 * signal remote device to throttle send data (our receive data)
1348 static void throttle(struct tty_struct
* tty
)
1350 struct slgt_info
*info
= tty
->driver_data
;
1351 unsigned long flags
;
1353 if (sanity_check(info
, tty
->name
, "throttle"))
1355 DBGINFO(("%s throttle\n", info
->device_name
));
1357 send_xchar(tty
, STOP_CHAR(tty
));
1358 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1359 spin_lock_irqsave(&info
->lock
,flags
);
1360 info
->signals
&= ~SerialSignal_RTS
;
1362 spin_unlock_irqrestore(&info
->lock
,flags
);
1367 * signal remote device to stop throttling send data (our receive data)
1369 static void unthrottle(struct tty_struct
* tty
)
1371 struct slgt_info
*info
= tty
->driver_data
;
1372 unsigned long flags
;
1374 if (sanity_check(info
, tty
->name
, "unthrottle"))
1376 DBGINFO(("%s unthrottle\n", info
->device_name
));
1381 send_xchar(tty
, START_CHAR(tty
));
1383 if (tty
->termios
->c_cflag
& CRTSCTS
) {
1384 spin_lock_irqsave(&info
->lock
,flags
);
1385 info
->signals
|= SerialSignal_RTS
;
1387 spin_unlock_irqrestore(&info
->lock
,flags
);
1392 * set or clear transmit break condition
1393 * break_state -1=set break condition, 0=clear
1395 static int set_break(struct tty_struct
*tty
, int break_state
)
1397 struct slgt_info
*info
= tty
->driver_data
;
1398 unsigned short value
;
1399 unsigned long flags
;
1401 if (sanity_check(info
, tty
->name
, "set_break"))
1403 DBGINFO(("%s set_break(%d)\n", info
->device_name
, break_state
));
1405 spin_lock_irqsave(&info
->lock
,flags
);
1406 value
= rd_reg16(info
, TCR
);
1407 if (break_state
== -1)
1411 wr_reg16(info
, TCR
, value
);
1412 spin_unlock_irqrestore(&info
->lock
,flags
);
1416 #if SYNCLINK_GENERIC_HDLC
1419 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
1420 * set encoding and frame check sequence (FCS) options
1422 * dev pointer to network device structure
1423 * encoding serial encoding setting
1424 * parity FCS setting
1426 * returns 0 if success, otherwise error code
1428 static int hdlcdev_attach(struct net_device
*dev
, unsigned short encoding
,
1429 unsigned short parity
)
1431 struct slgt_info
*info
= dev_to_port(dev
);
1432 unsigned char new_encoding
;
1433 unsigned short new_crctype
;
1435 /* return error if TTY interface open */
1436 if (info
->port
.count
)
1439 DBGINFO(("%s hdlcdev_attach\n", info
->device_name
));
1443 case ENCODING_NRZ
: new_encoding
= HDLC_ENCODING_NRZ
; break;
1444 case ENCODING_NRZI
: new_encoding
= HDLC_ENCODING_NRZI_SPACE
; break;
1445 case ENCODING_FM_MARK
: new_encoding
= HDLC_ENCODING_BIPHASE_MARK
; break;
1446 case ENCODING_FM_SPACE
: new_encoding
= HDLC_ENCODING_BIPHASE_SPACE
; break;
1447 case ENCODING_MANCHESTER
: new_encoding
= HDLC_ENCODING_BIPHASE_LEVEL
; break;
1448 default: return -EINVAL
;
1453 case PARITY_NONE
: new_crctype
= HDLC_CRC_NONE
; break;
1454 case PARITY_CRC16_PR1_CCITT
: new_crctype
= HDLC_CRC_16_CCITT
; break;
1455 case PARITY_CRC32_PR1_CCITT
: new_crctype
= HDLC_CRC_32_CCITT
; break;
1456 default: return -EINVAL
;
1459 info
->params
.encoding
= new_encoding
;
1460 info
->params
.crc_type
= new_crctype
;
1462 /* if network interface up, reprogram hardware */
1470 * called by generic HDLC layer to send frame
1472 * skb socket buffer containing HDLC frame
1473 * dev pointer to network device structure
1475 * returns 0 if success, otherwise error code
1477 static int hdlcdev_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1479 struct slgt_info
*info
= dev_to_port(dev
);
1480 unsigned long flags
;
1482 DBGINFO(("%s hdlc_xmit\n", dev
->name
));
1484 /* stop sending until this frame completes */
1485 netif_stop_queue(dev
);
1487 /* copy data to device buffers */
1488 info
->tx_count
= skb
->len
;
1489 tx_load(info
, skb
->data
, skb
->len
);
1491 /* update network statistics */
1492 dev
->stats
.tx_packets
++;
1493 dev
->stats
.tx_bytes
+= skb
->len
;
1495 /* done with socket buffer, so free it */
1498 /* save start time for transmit timeout detection */
1499 dev
->trans_start
= jiffies
;
1501 /* start hardware transmitter if necessary */
1502 spin_lock_irqsave(&info
->lock
,flags
);
1503 if (!info
->tx_active
)
1505 spin_unlock_irqrestore(&info
->lock
,flags
);
1511 * called by network layer when interface enabled
1512 * claim resources and initialize hardware
1514 * dev pointer to network device structure
1516 * returns 0 if success, otherwise error code
1518 static int hdlcdev_open(struct net_device
*dev
)
1520 struct slgt_info
*info
= dev_to_port(dev
);
1522 unsigned long flags
;
1524 if (!try_module_get(THIS_MODULE
))
1527 DBGINFO(("%s hdlcdev_open\n", dev
->name
));
1529 /* generic HDLC layer open processing */
1530 if ((rc
= hdlc_open(dev
)))
1533 /* arbitrate between network and tty opens */
1534 spin_lock_irqsave(&info
->netlock
, flags
);
1535 if (info
->port
.count
!= 0 || info
->netcount
!= 0) {
1536 DBGINFO(("%s hdlc_open busy\n", dev
->name
));
1537 spin_unlock_irqrestore(&info
->netlock
, flags
);
1541 spin_unlock_irqrestore(&info
->netlock
, flags
);
1543 /* claim resources and init adapter */
1544 if ((rc
= startup(info
)) != 0) {
1545 spin_lock_irqsave(&info
->netlock
, flags
);
1547 spin_unlock_irqrestore(&info
->netlock
, flags
);
1551 /* assert DTR and RTS, apply hardware settings */
1552 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
1555 /* enable network layer transmit */
1556 dev
->trans_start
= jiffies
;
1557 netif_start_queue(dev
);
1559 /* inform generic HDLC layer of current DCD status */
1560 spin_lock_irqsave(&info
->lock
, flags
);
1562 spin_unlock_irqrestore(&info
->lock
, flags
);
1563 if (info
->signals
& SerialSignal_DCD
)
1564 netif_carrier_on(dev
);
1566 netif_carrier_off(dev
);
1571 * called by network layer when interface is disabled
1572 * shutdown hardware and release resources
1574 * dev pointer to network device structure
1576 * returns 0 if success, otherwise error code
1578 static int hdlcdev_close(struct net_device
*dev
)
1580 struct slgt_info
*info
= dev_to_port(dev
);
1581 unsigned long flags
;
1583 DBGINFO(("%s hdlcdev_close\n", dev
->name
));
1585 netif_stop_queue(dev
);
1587 /* shutdown adapter and release resources */
1592 spin_lock_irqsave(&info
->netlock
, flags
);
1594 spin_unlock_irqrestore(&info
->netlock
, flags
);
1596 module_put(THIS_MODULE
);
1601 * called by network layer to process IOCTL call to network device
1603 * dev pointer to network device structure
1604 * ifr pointer to network interface request structure
1605 * cmd IOCTL command code
1607 * returns 0 if success, otherwise error code
1609 static int hdlcdev_ioctl(struct net_device
*dev
, struct ifreq
*ifr
, int cmd
)
1611 const size_t size
= sizeof(sync_serial_settings
);
1612 sync_serial_settings new_line
;
1613 sync_serial_settings __user
*line
= ifr
->ifr_settings
.ifs_ifsu
.sync
;
1614 struct slgt_info
*info
= dev_to_port(dev
);
1617 DBGINFO(("%s hdlcdev_ioctl\n", dev
->name
));
1619 /* return error if TTY interface open */
1620 if (info
->port
.count
)
1623 if (cmd
!= SIOCWANDEV
)
1624 return hdlc_ioctl(dev
, ifr
, cmd
);
1626 switch(ifr
->ifr_settings
.type
) {
1627 case IF_GET_IFACE
: /* return current sync_serial_settings */
1629 ifr
->ifr_settings
.type
= IF_IFACE_SYNC_SERIAL
;
1630 if (ifr
->ifr_settings
.size
< size
) {
1631 ifr
->ifr_settings
.size
= size
; /* data size wanted */
1635 flags
= info
->params
.flags
& (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1636 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1637 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1638 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
1641 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
): new_line
.clock_type
= CLOCK_EXT
; break;
1642 case (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_INT
; break;
1643 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
): new_line
.clock_type
= CLOCK_TXINT
; break;
1644 case (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
): new_line
.clock_type
= CLOCK_TXFROMRX
; break;
1645 default: new_line
.clock_type
= CLOCK_DEFAULT
;
1648 new_line
.clock_rate
= info
->params
.clock_speed
;
1649 new_line
.loopback
= info
->params
.loopback
? 1:0;
1651 if (copy_to_user(line
, &new_line
, size
))
1655 case IF_IFACE_SYNC_SERIAL
: /* set sync_serial_settings */
1657 if(!capable(CAP_NET_ADMIN
))
1659 if (copy_from_user(&new_line
, line
, size
))
1662 switch (new_line
.clock_type
)
1664 case CLOCK_EXT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_TXCPIN
; break;
1665 case CLOCK_TXFROMRX
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_RXCPIN
; break;
1666 case CLOCK_INT
: flags
= HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
; break;
1667 case CLOCK_TXINT
: flags
= HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_TXC_BRG
; break;
1668 case CLOCK_DEFAULT
: flags
= info
->params
.flags
&
1669 (HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1670 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1671 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1672 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
); break;
1673 default: return -EINVAL
;
1676 if (new_line
.loopback
!= 0 && new_line
.loopback
!= 1)
1679 info
->params
.flags
&= ~(HDLC_FLAG_RXC_RXCPIN
| HDLC_FLAG_RXC_DPLL
|
1680 HDLC_FLAG_RXC_BRG
| HDLC_FLAG_RXC_TXCPIN
|
1681 HDLC_FLAG_TXC_TXCPIN
| HDLC_FLAG_TXC_DPLL
|
1682 HDLC_FLAG_TXC_BRG
| HDLC_FLAG_TXC_RXCPIN
);
1683 info
->params
.flags
|= flags
;
1685 info
->params
.loopback
= new_line
.loopback
;
1687 if (flags
& (HDLC_FLAG_RXC_BRG
| HDLC_FLAG_TXC_BRG
))
1688 info
->params
.clock_speed
= new_line
.clock_rate
;
1690 info
->params
.clock_speed
= 0;
1692 /* if network interface up, reprogram hardware */
1698 return hdlc_ioctl(dev
, ifr
, cmd
);
1703 * called by network layer when transmit timeout is detected
1705 * dev pointer to network device structure
1707 static void hdlcdev_tx_timeout(struct net_device
*dev
)
1709 struct slgt_info
*info
= dev_to_port(dev
);
1710 unsigned long flags
;
1712 DBGINFO(("%s hdlcdev_tx_timeout\n", dev
->name
));
1714 dev
->stats
.tx_errors
++;
1715 dev
->stats
.tx_aborted_errors
++;
1717 spin_lock_irqsave(&info
->lock
,flags
);
1719 spin_unlock_irqrestore(&info
->lock
,flags
);
1721 netif_wake_queue(dev
);
1725 * called by device driver when transmit completes
1726 * reenable network layer transmit if stopped
1728 * info pointer to device instance information
1730 static void hdlcdev_tx_done(struct slgt_info
*info
)
1732 if (netif_queue_stopped(info
->netdev
))
1733 netif_wake_queue(info
->netdev
);
1737 * called by device driver when frame received
1738 * pass frame to network layer
1740 * info pointer to device instance information
1741 * buf pointer to buffer contianing frame data
1742 * size count of data bytes in buf
1744 static void hdlcdev_rx(struct slgt_info
*info
, char *buf
, int size
)
1746 struct sk_buff
*skb
= dev_alloc_skb(size
);
1747 struct net_device
*dev
= info
->netdev
;
1749 DBGINFO(("%s hdlcdev_rx\n", dev
->name
));
1752 DBGERR(("%s: can't alloc skb, drop packet\n", dev
->name
));
1753 dev
->stats
.rx_dropped
++;
1757 memcpy(skb_put(skb
, size
), buf
, size
);
1759 skb
->protocol
= hdlc_type_trans(skb
, dev
);
1761 dev
->stats
.rx_packets
++;
1762 dev
->stats
.rx_bytes
+= size
;
1767 static const struct net_device_ops hdlcdev_ops
= {
1768 .ndo_open
= hdlcdev_open
,
1769 .ndo_stop
= hdlcdev_close
,
1770 .ndo_change_mtu
= hdlc_change_mtu
,
1771 .ndo_start_xmit
= hdlc_start_xmit
,
1772 .ndo_do_ioctl
= hdlcdev_ioctl
,
1773 .ndo_tx_timeout
= hdlcdev_tx_timeout
,
1777 * called by device driver when adding device instance
1778 * do generic HDLC initialization
1780 * info pointer to device instance information
1782 * returns 0 if success, otherwise error code
1784 static int hdlcdev_init(struct slgt_info
*info
)
1787 struct net_device
*dev
;
1790 /* allocate and initialize network and HDLC layer objects */
1792 if (!(dev
= alloc_hdlcdev(info
))) {
1793 printk(KERN_ERR
"%s hdlc device alloc failure\n", info
->device_name
);
1797 /* for network layer reporting purposes only */
1798 dev
->mem_start
= info
->phys_reg_addr
;
1799 dev
->mem_end
= info
->phys_reg_addr
+ SLGT_REG_SIZE
- 1;
1800 dev
->irq
= info
->irq_level
;
1802 /* network layer callbacks and settings */
1803 dev
->netdev_ops
= &hdlcdev_ops
;
1804 dev
->watchdog_timeo
= 10 * HZ
;
1805 dev
->tx_queue_len
= 50;
1807 /* generic HDLC layer callbacks and settings */
1808 hdlc
= dev_to_hdlc(dev
);
1809 hdlc
->attach
= hdlcdev_attach
;
1810 hdlc
->xmit
= hdlcdev_xmit
;
1812 /* register objects with HDLC layer */
1813 if ((rc
= register_hdlc_device(dev
))) {
1814 printk(KERN_WARNING
"%s:unable to register hdlc device\n",__FILE__
);
1824 * called by device driver when removing device instance
1825 * do generic HDLC cleanup
1827 * info pointer to device instance information
1829 static void hdlcdev_exit(struct slgt_info
*info
)
1831 unregister_hdlc_device(info
->netdev
);
1832 free_netdev(info
->netdev
);
1833 info
->netdev
= NULL
;
1836 #endif /* ifdef CONFIG_HDLC */
1839 * get async data from rx DMA buffers
1841 static void rx_async(struct slgt_info
*info
)
1843 struct tty_struct
*tty
= info
->port
.tty
;
1844 struct mgsl_icount
*icount
= &info
->icount
;
1845 unsigned int start
, end
;
1847 unsigned char status
;
1848 struct slgt_desc
*bufs
= info
->rbufs
;
1854 start
= end
= info
->rbuf_current
;
1856 while(desc_complete(bufs
[end
])) {
1857 count
= desc_count(bufs
[end
]) - info
->rbuf_index
;
1858 p
= bufs
[end
].buf
+ info
->rbuf_index
;
1860 DBGISR(("%s rx_async count=%d\n", info
->device_name
, count
));
1861 DBGDATA(info
, p
, count
, "rx");
1863 for(i
=0 ; i
< count
; i
+=2, p
+=2) {
1869 if ((status
= *(p
+1) & (BIT1
+ BIT0
))) {
1872 else if (status
& BIT0
)
1874 /* discard char if tty control flags say so */
1875 if (status
& info
->ignore_status_mask
)
1879 else if (status
& BIT0
)
1883 tty_insert_flip_char(tty
, ch
, stat
);
1889 /* receive buffer not completed */
1890 info
->rbuf_index
+= i
;
1891 mod_timer(&info
->rx_timer
, jiffies
+ 1);
1895 info
->rbuf_index
= 0;
1896 free_rbufs(info
, end
, end
);
1898 if (++end
== info
->rbuf_count
)
1901 /* if entire list searched then no frame available */
1907 tty_flip_buffer_push(tty
);
1911 * return next bottom half action to perform
1913 static int bh_action(struct slgt_info
*info
)
1915 unsigned long flags
;
1918 spin_lock_irqsave(&info
->lock
,flags
);
1920 if (info
->pending_bh
& BH_RECEIVE
) {
1921 info
->pending_bh
&= ~BH_RECEIVE
;
1923 } else if (info
->pending_bh
& BH_TRANSMIT
) {
1924 info
->pending_bh
&= ~BH_TRANSMIT
;
1926 } else if (info
->pending_bh
& BH_STATUS
) {
1927 info
->pending_bh
&= ~BH_STATUS
;
1930 /* Mark BH routine as complete */
1931 info
->bh_running
= false;
1932 info
->bh_requested
= false;
1936 spin_unlock_irqrestore(&info
->lock
,flags
);
1942 * perform bottom half processing
1944 static void bh_handler(struct work_struct
*work
)
1946 struct slgt_info
*info
= container_of(work
, struct slgt_info
, task
);
1951 info
->bh_running
= true;
1953 while((action
= bh_action(info
))) {
1956 DBGBH(("%s bh receive\n", info
->device_name
));
1957 switch(info
->params
.mode
) {
1958 case MGSL_MODE_ASYNC
:
1961 case MGSL_MODE_HDLC
:
1962 while(rx_get_frame(info
));
1965 case MGSL_MODE_MONOSYNC
:
1966 case MGSL_MODE_BISYNC
:
1967 while(rx_get_buf(info
));
1970 /* restart receiver if rx DMA buffers exhausted */
1971 if (info
->rx_restart
)
1978 DBGBH(("%s bh status\n", info
->device_name
));
1979 info
->ri_chkcount
= 0;
1980 info
->dsr_chkcount
= 0;
1981 info
->dcd_chkcount
= 0;
1982 info
->cts_chkcount
= 0;
1985 DBGBH(("%s unknown action\n", info
->device_name
));
1989 DBGBH(("%s bh_handler exit\n", info
->device_name
));
1992 static void bh_transmit(struct slgt_info
*info
)
1994 struct tty_struct
*tty
= info
->port
.tty
;
1996 DBGBH(("%s bh_transmit\n", info
->device_name
));
2001 static void dsr_change(struct slgt_info
*info
, unsigned short status
)
2003 if (status
& BIT3
) {
2004 info
->signals
|= SerialSignal_DSR
;
2005 info
->input_signal_events
.dsr_up
++;
2007 info
->signals
&= ~SerialSignal_DSR
;
2008 info
->input_signal_events
.dsr_down
++;
2010 DBGISR(("dsr_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2011 if ((info
->dsr_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2012 slgt_irq_off(info
, IRQ_DSR
);
2016 wake_up_interruptible(&info
->status_event_wait_q
);
2017 wake_up_interruptible(&info
->event_wait_q
);
2018 info
->pending_bh
|= BH_STATUS
;
2021 static void cts_change(struct slgt_info
*info
, unsigned short status
)
2023 if (status
& BIT2
) {
2024 info
->signals
|= SerialSignal_CTS
;
2025 info
->input_signal_events
.cts_up
++;
2027 info
->signals
&= ~SerialSignal_CTS
;
2028 info
->input_signal_events
.cts_down
++;
2030 DBGISR(("cts_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2031 if ((info
->cts_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2032 slgt_irq_off(info
, IRQ_CTS
);
2036 wake_up_interruptible(&info
->status_event_wait_q
);
2037 wake_up_interruptible(&info
->event_wait_q
);
2038 info
->pending_bh
|= BH_STATUS
;
2040 if (info
->port
.flags
& ASYNC_CTS_FLOW
) {
2041 if (info
->port
.tty
) {
2042 if (info
->port
.tty
->hw_stopped
) {
2043 if (info
->signals
& SerialSignal_CTS
) {
2044 info
->port
.tty
->hw_stopped
= 0;
2045 info
->pending_bh
|= BH_TRANSMIT
;
2049 if (!(info
->signals
& SerialSignal_CTS
))
2050 info
->port
.tty
->hw_stopped
= 1;
2056 static void dcd_change(struct slgt_info
*info
, unsigned short status
)
2058 if (status
& BIT1
) {
2059 info
->signals
|= SerialSignal_DCD
;
2060 info
->input_signal_events
.dcd_up
++;
2062 info
->signals
&= ~SerialSignal_DCD
;
2063 info
->input_signal_events
.dcd_down
++;
2065 DBGISR(("dcd_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2066 if ((info
->dcd_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2067 slgt_irq_off(info
, IRQ_DCD
);
2071 #if SYNCLINK_GENERIC_HDLC
2072 if (info
->netcount
) {
2073 if (info
->signals
& SerialSignal_DCD
)
2074 netif_carrier_on(info
->netdev
);
2076 netif_carrier_off(info
->netdev
);
2079 wake_up_interruptible(&info
->status_event_wait_q
);
2080 wake_up_interruptible(&info
->event_wait_q
);
2081 info
->pending_bh
|= BH_STATUS
;
2083 if (info
->port
.flags
& ASYNC_CHECK_CD
) {
2084 if (info
->signals
& SerialSignal_DCD
)
2085 wake_up_interruptible(&info
->port
.open_wait
);
2088 tty_hangup(info
->port
.tty
);
2093 static void ri_change(struct slgt_info
*info
, unsigned short status
)
2095 if (status
& BIT0
) {
2096 info
->signals
|= SerialSignal_RI
;
2097 info
->input_signal_events
.ri_up
++;
2099 info
->signals
&= ~SerialSignal_RI
;
2100 info
->input_signal_events
.ri_down
++;
2102 DBGISR(("ri_change %s signals=%04X\n", info
->device_name
, info
->signals
));
2103 if ((info
->ri_chkcount
)++ == IO_PIN_SHUTDOWN_LIMIT
) {
2104 slgt_irq_off(info
, IRQ_RI
);
2108 wake_up_interruptible(&info
->status_event_wait_q
);
2109 wake_up_interruptible(&info
->event_wait_q
);
2110 info
->pending_bh
|= BH_STATUS
;
2113 static void isr_serial(struct slgt_info
*info
)
2115 unsigned short status
= rd_reg16(info
, SSR
);
2117 DBGISR(("%s isr_serial status=%04X\n", info
->device_name
, status
));
2119 wr_reg16(info
, SSR
, status
); /* clear pending */
2121 info
->irq_occurred
= true;
2123 if (info
->params
.mode
== MGSL_MODE_ASYNC
) {
2124 if (status
& IRQ_TXIDLE
) {
2126 isr_txeom(info
, status
);
2128 if ((status
& IRQ_RXBREAK
) && (status
& RXBREAK
)) {
2130 /* process break detection if tty control allows */
2131 if (info
->port
.tty
) {
2132 if (!(status
& info
->ignore_status_mask
)) {
2133 if (info
->read_status_mask
& MASK_BREAK
) {
2134 tty_insert_flip_char(info
->port
.tty
, 0, TTY_BREAK
);
2135 if (info
->port
.flags
& ASYNC_SAK
)
2136 do_SAK(info
->port
.tty
);
2142 if (status
& (IRQ_TXIDLE
+ IRQ_TXUNDER
))
2143 isr_txeom(info
, status
);
2145 if (status
& IRQ_RXIDLE
) {
2146 if (status
& RXIDLE
)
2147 info
->icount
.rxidle
++;
2149 info
->icount
.exithunt
++;
2150 wake_up_interruptible(&info
->event_wait_q
);
2153 if (status
& IRQ_RXOVER
)
2157 if (status
& IRQ_DSR
)
2158 dsr_change(info
, status
);
2159 if (status
& IRQ_CTS
)
2160 cts_change(info
, status
);
2161 if (status
& IRQ_DCD
)
2162 dcd_change(info
, status
);
2163 if (status
& IRQ_RI
)
2164 ri_change(info
, status
);
2167 static void isr_rdma(struct slgt_info
*info
)
2169 unsigned int status
= rd_reg32(info
, RDCSR
);
2171 DBGISR(("%s isr_rdma status=%08x\n", info
->device_name
, status
));
2173 /* RDCSR (rx DMA control/status)
2176 * 06 save status byte to DMA buffer
2178 * 04 eol (end of list)
2179 * 03 eob (end of buffer)
2184 wr_reg32(info
, RDCSR
, status
); /* clear pending */
2186 if (status
& (BIT5
+ BIT4
)) {
2187 DBGISR(("%s isr_rdma rx_restart=1\n", info
->device_name
));
2188 info
->rx_restart
= true;
2190 info
->pending_bh
|= BH_RECEIVE
;
2193 static void isr_tdma(struct slgt_info
*info
)
2195 unsigned int status
= rd_reg32(info
, TDCSR
);
2197 DBGISR(("%s isr_tdma status=%08x\n", info
->device_name
, status
));
2199 /* TDCSR (tx DMA control/status)
2203 * 04 eol (end of list)
2204 * 03 eob (end of buffer)
2209 wr_reg32(info
, TDCSR
, status
); /* clear pending */
2211 if (status
& (BIT5
+ BIT4
+ BIT3
)) {
2212 // another transmit buffer has completed
2213 // run bottom half to get more send data from user
2214 info
->pending_bh
|= BH_TRANSMIT
;
2218 static void isr_txeom(struct slgt_info
*info
, unsigned short status
)
2220 DBGISR(("%s txeom status=%04x\n", info
->device_name
, status
));
2222 slgt_irq_off(info
, IRQ_TXDATA
+ IRQ_TXIDLE
+ IRQ_TXUNDER
);
2225 if (status
& IRQ_TXUNDER
) {
2226 unsigned short val
= rd_reg16(info
, TCR
);
2227 wr_reg16(info
, TCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
2228 wr_reg16(info
, TCR
, val
); /* clear reset bit */
2231 if (info
->tx_active
) {
2232 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
2233 if (status
& IRQ_TXUNDER
)
2234 info
->icount
.txunder
++;
2235 else if (status
& IRQ_TXIDLE
)
2236 info
->icount
.txok
++;
2239 info
->tx_active
= false;
2242 del_timer(&info
->tx_timer
);
2244 if (info
->params
.mode
!= MGSL_MODE_ASYNC
&& info
->drop_rts_on_tx_done
) {
2245 info
->signals
&= ~SerialSignal_RTS
;
2246 info
->drop_rts_on_tx_done
= false;
2250 #if SYNCLINK_GENERIC_HDLC
2252 hdlcdev_tx_done(info
);
2256 if (info
->port
.tty
&& (info
->port
.tty
->stopped
|| info
->port
.tty
->hw_stopped
)) {
2260 info
->pending_bh
|= BH_TRANSMIT
;
2265 static void isr_gpio(struct slgt_info
*info
, unsigned int changed
, unsigned int state
)
2267 struct cond_wait
*w
, *prev
;
2269 /* wake processes waiting for specific transitions */
2270 for (w
= info
->gpio_wait_q
, prev
= NULL
; w
!= NULL
; w
= w
->next
) {
2271 if (w
->data
& changed
) {
2273 wake_up_interruptible(&w
->q
);
2275 prev
->next
= w
->next
;
2277 info
->gpio_wait_q
= w
->next
;
2283 /* interrupt service routine
2285 * irq interrupt number
2286 * dev_id device ID supplied during interrupt registration
2288 static irqreturn_t
slgt_interrupt(int dummy
, void *dev_id
)
2290 struct slgt_info
*info
= dev_id
;
2294 DBGISR(("slgt_interrupt irq=%d entry\n", info
->irq_level
));
2296 spin_lock(&info
->lock
);
2298 while((gsr
= rd_reg32(info
, GSR
) & 0xffffff00)) {
2299 DBGISR(("%s gsr=%08x\n", info
->device_name
, gsr
));
2300 info
->irq_occurred
= true;
2301 for(i
=0; i
< info
->port_count
; i
++) {
2302 if (info
->port_array
[i
] == NULL
)
2304 if (gsr
& (BIT8
<< i
))
2305 isr_serial(info
->port_array
[i
]);
2306 if (gsr
& (BIT16
<< (i
*2)))
2307 isr_rdma(info
->port_array
[i
]);
2308 if (gsr
& (BIT17
<< (i
*2)))
2309 isr_tdma(info
->port_array
[i
]);
2313 if (info
->gpio_present
) {
2315 unsigned int changed
;
2316 while ((changed
= rd_reg32(info
, IOSR
)) != 0) {
2317 DBGISR(("%s iosr=%08x\n", info
->device_name
, changed
));
2318 /* read latched state of GPIO signals */
2319 state
= rd_reg32(info
, IOVR
);
2320 /* clear pending GPIO interrupt bits */
2321 wr_reg32(info
, IOSR
, changed
);
2322 for (i
=0 ; i
< info
->port_count
; i
++) {
2323 if (info
->port_array
[i
] != NULL
)
2324 isr_gpio(info
->port_array
[i
], changed
, state
);
2329 for(i
=0; i
< info
->port_count
; i
++) {
2330 struct slgt_info
*port
= info
->port_array
[i
];
2332 if (port
&& (port
->port
.count
|| port
->netcount
) &&
2333 port
->pending_bh
&& !port
->bh_running
&&
2334 !port
->bh_requested
) {
2335 DBGISR(("%s bh queued\n", port
->device_name
));
2336 schedule_work(&port
->task
);
2337 port
->bh_requested
= true;
2341 spin_unlock(&info
->lock
);
2343 DBGISR(("slgt_interrupt irq=%d exit\n", info
->irq_level
));
2347 static int startup(struct slgt_info
*info
)
2349 DBGINFO(("%s startup\n", info
->device_name
));
2351 if (info
->port
.flags
& ASYNC_INITIALIZED
)
2354 if (!info
->tx_buf
) {
2355 info
->tx_buf
= kmalloc(info
->max_frame_size
, GFP_KERNEL
);
2356 if (!info
->tx_buf
) {
2357 DBGERR(("%s can't allocate tx buffer\n", info
->device_name
));
2362 info
->pending_bh
= 0;
2364 memset(&info
->icount
, 0, sizeof(info
->icount
));
2366 /* program hardware for current parameters */
2367 change_params(info
);
2370 clear_bit(TTY_IO_ERROR
, &info
->port
.tty
->flags
);
2372 info
->port
.flags
|= ASYNC_INITIALIZED
;
2378 * called by close() and hangup() to shutdown hardware
2380 static void shutdown(struct slgt_info
*info
)
2382 unsigned long flags
;
2384 if (!(info
->port
.flags
& ASYNC_INITIALIZED
))
2387 DBGINFO(("%s shutdown\n", info
->device_name
));
2389 /* clear status wait queue because status changes */
2390 /* can't happen after shutting down the hardware */
2391 wake_up_interruptible(&info
->status_event_wait_q
);
2392 wake_up_interruptible(&info
->event_wait_q
);
2394 del_timer_sync(&info
->tx_timer
);
2395 del_timer_sync(&info
->rx_timer
);
2397 kfree(info
->tx_buf
);
2398 info
->tx_buf
= NULL
;
2400 spin_lock_irqsave(&info
->lock
,flags
);
2405 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
2407 if (!info
->port
.tty
|| info
->port
.tty
->termios
->c_cflag
& HUPCL
) {
2408 info
->signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
2412 flush_cond_wait(&info
->gpio_wait_q
);
2414 spin_unlock_irqrestore(&info
->lock
,flags
);
2417 set_bit(TTY_IO_ERROR
, &info
->port
.tty
->flags
);
2419 info
->port
.flags
&= ~ASYNC_INITIALIZED
;
2422 static void program_hw(struct slgt_info
*info
)
2424 unsigned long flags
;
2426 spin_lock_irqsave(&info
->lock
,flags
);
2431 if (info
->params
.mode
!= MGSL_MODE_ASYNC
||
2439 info
->dcd_chkcount
= 0;
2440 info
->cts_chkcount
= 0;
2441 info
->ri_chkcount
= 0;
2442 info
->dsr_chkcount
= 0;
2444 slgt_irq_on(info
, IRQ_DCD
| IRQ_CTS
| IRQ_DSR
| IRQ_RI
);
2447 if (info
->netcount
||
2448 (info
->port
.tty
&& info
->port
.tty
->termios
->c_cflag
& CREAD
))
2451 spin_unlock_irqrestore(&info
->lock
,flags
);
2455 * reconfigure adapter based on new parameters
2457 static void change_params(struct slgt_info
*info
)
2462 if (!info
->port
.tty
|| !info
->port
.tty
->termios
)
2464 DBGINFO(("%s change_params\n", info
->device_name
));
2466 cflag
= info
->port
.tty
->termios
->c_cflag
;
2468 /* if B0 rate (hangup) specified then negate DTR and RTS */
2469 /* otherwise assert DTR and RTS */
2471 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
2473 info
->signals
&= ~(SerialSignal_RTS
+ SerialSignal_DTR
);
2475 /* byte size and parity */
2477 switch (cflag
& CSIZE
) {
2478 case CS5
: info
->params
.data_bits
= 5; break;
2479 case CS6
: info
->params
.data_bits
= 6; break;
2480 case CS7
: info
->params
.data_bits
= 7; break;
2481 case CS8
: info
->params
.data_bits
= 8; break;
2482 default: info
->params
.data_bits
= 7; break;
2485 info
->params
.stop_bits
= (cflag
& CSTOPB
) ? 2 : 1;
2488 info
->params
.parity
= (cflag
& PARODD
) ? ASYNC_PARITY_ODD
: ASYNC_PARITY_EVEN
;
2490 info
->params
.parity
= ASYNC_PARITY_NONE
;
2492 /* calculate number of jiffies to transmit a full
2493 * FIFO (32 bytes) at specified data rate
2495 bits_per_char
= info
->params
.data_bits
+
2496 info
->params
.stop_bits
+ 1;
2498 info
->params
.data_rate
= tty_get_baud_rate(info
->port
.tty
);
2500 if (info
->params
.data_rate
) {
2501 info
->timeout
= (32*HZ
*bits_per_char
) /
2502 info
->params
.data_rate
;
2504 info
->timeout
+= HZ
/50; /* Add .02 seconds of slop */
2506 if (cflag
& CRTSCTS
)
2507 info
->port
.flags
|= ASYNC_CTS_FLOW
;
2509 info
->port
.flags
&= ~ASYNC_CTS_FLOW
;
2512 info
->port
.flags
&= ~ASYNC_CHECK_CD
;
2514 info
->port
.flags
|= ASYNC_CHECK_CD
;
2516 /* process tty input control flags */
2518 info
->read_status_mask
= IRQ_RXOVER
;
2519 if (I_INPCK(info
->port
.tty
))
2520 info
->read_status_mask
|= MASK_PARITY
| MASK_FRAMING
;
2521 if (I_BRKINT(info
->port
.tty
) || I_PARMRK(info
->port
.tty
))
2522 info
->read_status_mask
|= MASK_BREAK
;
2523 if (I_IGNPAR(info
->port
.tty
))
2524 info
->ignore_status_mask
|= MASK_PARITY
| MASK_FRAMING
;
2525 if (I_IGNBRK(info
->port
.tty
)) {
2526 info
->ignore_status_mask
|= MASK_BREAK
;
2527 /* If ignoring parity and break indicators, ignore
2528 * overruns too. (For real raw support).
2530 if (I_IGNPAR(info
->port
.tty
))
2531 info
->ignore_status_mask
|= MASK_OVERRUN
;
2537 static int get_stats(struct slgt_info
*info
, struct mgsl_icount __user
*user_icount
)
2539 DBGINFO(("%s get_stats\n", info
->device_name
));
2541 memset(&info
->icount
, 0, sizeof(info
->icount
));
2543 if (copy_to_user(user_icount
, &info
->icount
, sizeof(struct mgsl_icount
)))
2549 static int get_params(struct slgt_info
*info
, MGSL_PARAMS __user
*user_params
)
2551 DBGINFO(("%s get_params\n", info
->device_name
));
2552 if (copy_to_user(user_params
, &info
->params
, sizeof(MGSL_PARAMS
)))
2557 static int set_params(struct slgt_info
*info
, MGSL_PARAMS __user
*new_params
)
2559 unsigned long flags
;
2560 MGSL_PARAMS tmp_params
;
2562 DBGINFO(("%s set_params\n", info
->device_name
));
2563 if (copy_from_user(&tmp_params
, new_params
, sizeof(MGSL_PARAMS
)))
2566 spin_lock_irqsave(&info
->lock
, flags
);
2567 if (tmp_params
.mode
== MGSL_MODE_BASE_CLOCK
)
2568 info
->base_clock
= tmp_params
.clock_speed
;
2570 memcpy(&info
->params
, &tmp_params
, sizeof(MGSL_PARAMS
));
2571 spin_unlock_irqrestore(&info
->lock
, flags
);
2578 static int get_txidle(struct slgt_info
*info
, int __user
*idle_mode
)
2580 DBGINFO(("%s get_txidle=%d\n", info
->device_name
, info
->idle_mode
));
2581 if (put_user(info
->idle_mode
, idle_mode
))
2586 static int set_txidle(struct slgt_info
*info
, int idle_mode
)
2588 unsigned long flags
;
2589 DBGINFO(("%s set_txidle(%d)\n", info
->device_name
, idle_mode
));
2590 spin_lock_irqsave(&info
->lock
,flags
);
2591 info
->idle_mode
= idle_mode
;
2592 if (info
->params
.mode
!= MGSL_MODE_ASYNC
)
2594 spin_unlock_irqrestore(&info
->lock
,flags
);
2598 static int tx_enable(struct slgt_info
*info
, int enable
)
2600 unsigned long flags
;
2601 DBGINFO(("%s tx_enable(%d)\n", info
->device_name
, enable
));
2602 spin_lock_irqsave(&info
->lock
,flags
);
2604 if (!info
->tx_enabled
)
2607 if (info
->tx_enabled
)
2610 spin_unlock_irqrestore(&info
->lock
,flags
);
2615 * abort transmit HDLC frame
2617 static int tx_abort(struct slgt_info
*info
)
2619 unsigned long flags
;
2620 DBGINFO(("%s tx_abort\n", info
->device_name
));
2621 spin_lock_irqsave(&info
->lock
,flags
);
2623 spin_unlock_irqrestore(&info
->lock
,flags
);
2627 static int rx_enable(struct slgt_info
*info
, int enable
)
2629 unsigned long flags
;
2630 unsigned int rbuf_fill_level
;
2631 DBGINFO(("%s rx_enable(%08x)\n", info
->device_name
, enable
));
2632 spin_lock_irqsave(&info
->lock
,flags
);
2634 * enable[31..16] = receive DMA buffer fill level
2635 * 0 = noop (leave fill level unchanged)
2636 * fill level must be multiple of 4 and <= buffer size
2638 rbuf_fill_level
= ((unsigned int)enable
) >> 16;
2639 if (rbuf_fill_level
) {
2640 if ((rbuf_fill_level
> DMABUFSIZE
) || (rbuf_fill_level
% 4)) {
2641 spin_unlock_irqrestore(&info
->lock
, flags
);
2644 info
->rbuf_fill_level
= rbuf_fill_level
;
2645 rx_stop(info
); /* restart receiver to use new fill level */
2649 * enable[1..0] = receiver enable command
2652 * 2 = enable or force hunt mode if already enabled
2656 if (!info
->rx_enabled
)
2658 else if (enable
== 2) {
2659 /* force hunt mode (write 1 to RCR[3]) */
2660 wr_reg16(info
, RCR
, rd_reg16(info
, RCR
) | BIT3
);
2663 if (info
->rx_enabled
)
2666 spin_unlock_irqrestore(&info
->lock
,flags
);
2671 * wait for specified event to occur
2673 static int wait_mgsl_event(struct slgt_info
*info
, int __user
*mask_ptr
)
2675 unsigned long flags
;
2678 struct mgsl_icount cprev
, cnow
;
2681 struct _input_signal_events oldsigs
, newsigs
;
2682 DECLARE_WAITQUEUE(wait
, current
);
2684 if (get_user(mask
, mask_ptr
))
2687 DBGINFO(("%s wait_mgsl_event(%d)\n", info
->device_name
, mask
));
2689 spin_lock_irqsave(&info
->lock
,flags
);
2691 /* return immediately if state matches requested events */
2696 ( ((s
& SerialSignal_DSR
) ? MgslEvent_DsrActive
:MgslEvent_DsrInactive
) +
2697 ((s
& SerialSignal_DCD
) ? MgslEvent_DcdActive
:MgslEvent_DcdInactive
) +
2698 ((s
& SerialSignal_CTS
) ? MgslEvent_CtsActive
:MgslEvent_CtsInactive
) +
2699 ((s
& SerialSignal_RI
) ? MgslEvent_RiActive
:MgslEvent_RiInactive
) );
2701 spin_unlock_irqrestore(&info
->lock
,flags
);
2705 /* save current irq counts */
2706 cprev
= info
->icount
;
2707 oldsigs
= info
->input_signal_events
;
2709 /* enable hunt and idle irqs if needed */
2710 if (mask
& (MgslEvent_ExitHuntMode
+MgslEvent_IdleReceived
)) {
2711 unsigned short val
= rd_reg16(info
, SCR
);
2712 if (!(val
& IRQ_RXIDLE
))
2713 wr_reg16(info
, SCR
, (unsigned short)(val
| IRQ_RXIDLE
));
2716 set_current_state(TASK_INTERRUPTIBLE
);
2717 add_wait_queue(&info
->event_wait_q
, &wait
);
2719 spin_unlock_irqrestore(&info
->lock
,flags
);
2723 if (signal_pending(current
)) {
2728 /* get current irq counts */
2729 spin_lock_irqsave(&info
->lock
,flags
);
2730 cnow
= info
->icount
;
2731 newsigs
= info
->input_signal_events
;
2732 set_current_state(TASK_INTERRUPTIBLE
);
2733 spin_unlock_irqrestore(&info
->lock
,flags
);
2735 /* if no change, wait aborted for some reason */
2736 if (newsigs
.dsr_up
== oldsigs
.dsr_up
&&
2737 newsigs
.dsr_down
== oldsigs
.dsr_down
&&
2738 newsigs
.dcd_up
== oldsigs
.dcd_up
&&
2739 newsigs
.dcd_down
== oldsigs
.dcd_down
&&
2740 newsigs
.cts_up
== oldsigs
.cts_up
&&
2741 newsigs
.cts_down
== oldsigs
.cts_down
&&
2742 newsigs
.ri_up
== oldsigs
.ri_up
&&
2743 newsigs
.ri_down
== oldsigs
.ri_down
&&
2744 cnow
.exithunt
== cprev
.exithunt
&&
2745 cnow
.rxidle
== cprev
.rxidle
) {
2751 ( (newsigs
.dsr_up
!= oldsigs
.dsr_up
? MgslEvent_DsrActive
:0) +
2752 (newsigs
.dsr_down
!= oldsigs
.dsr_down
? MgslEvent_DsrInactive
:0) +
2753 (newsigs
.dcd_up
!= oldsigs
.dcd_up
? MgslEvent_DcdActive
:0) +
2754 (newsigs
.dcd_down
!= oldsigs
.dcd_down
? MgslEvent_DcdInactive
:0) +
2755 (newsigs
.cts_up
!= oldsigs
.cts_up
? MgslEvent_CtsActive
:0) +
2756 (newsigs
.cts_down
!= oldsigs
.cts_down
? MgslEvent_CtsInactive
:0) +
2757 (newsigs
.ri_up
!= oldsigs
.ri_up
? MgslEvent_RiActive
:0) +
2758 (newsigs
.ri_down
!= oldsigs
.ri_down
? MgslEvent_RiInactive
:0) +
2759 (cnow
.exithunt
!= cprev
.exithunt
? MgslEvent_ExitHuntMode
:0) +
2760 (cnow
.rxidle
!= cprev
.rxidle
? MgslEvent_IdleReceived
:0) );
2768 remove_wait_queue(&info
->event_wait_q
, &wait
);
2769 set_current_state(TASK_RUNNING
);
2772 if (mask
& (MgslEvent_ExitHuntMode
+ MgslEvent_IdleReceived
)) {
2773 spin_lock_irqsave(&info
->lock
,flags
);
2774 if (!waitqueue_active(&info
->event_wait_q
)) {
2775 /* disable enable exit hunt mode/idle rcvd IRQs */
2777 (unsigned short)(rd_reg16(info
, SCR
) & ~IRQ_RXIDLE
));
2779 spin_unlock_irqrestore(&info
->lock
,flags
);
2783 rc
= put_user(events
, mask_ptr
);
2787 static int get_interface(struct slgt_info
*info
, int __user
*if_mode
)
2789 DBGINFO(("%s get_interface=%x\n", info
->device_name
, info
->if_mode
));
2790 if (put_user(info
->if_mode
, if_mode
))
2795 static int set_interface(struct slgt_info
*info
, int if_mode
)
2797 unsigned long flags
;
2800 DBGINFO(("%s set_interface=%x)\n", info
->device_name
, if_mode
));
2801 spin_lock_irqsave(&info
->lock
,flags
);
2802 info
->if_mode
= if_mode
;
2806 /* TCR (tx control) 07 1=RTS driver control */
2807 val
= rd_reg16(info
, TCR
);
2808 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
2812 wr_reg16(info
, TCR
, val
);
2814 spin_unlock_irqrestore(&info
->lock
,flags
);
2819 * set general purpose IO pin state and direction
2822 * state each bit indicates a pin state
2823 * smask set bit indicates pin state to set
2824 * dir each bit indicates a pin direction (0=input, 1=output)
2825 * dmask set bit indicates pin direction to set
2827 static int set_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2829 unsigned long flags
;
2830 struct gpio_desc gpio
;
2833 if (!info
->gpio_present
)
2835 if (copy_from_user(&gpio
, user_gpio
, sizeof(gpio
)))
2837 DBGINFO(("%s set_gpio state=%08x smask=%08x dir=%08x dmask=%08x\n",
2838 info
->device_name
, gpio
.state
, gpio
.smask
,
2839 gpio
.dir
, gpio
.dmask
));
2841 spin_lock_irqsave(&info
->lock
,flags
);
2843 data
= rd_reg32(info
, IODR
);
2844 data
|= gpio
.dmask
& gpio
.dir
;
2845 data
&= ~(gpio
.dmask
& ~gpio
.dir
);
2846 wr_reg32(info
, IODR
, data
);
2849 data
= rd_reg32(info
, IOVR
);
2850 data
|= gpio
.smask
& gpio
.state
;
2851 data
&= ~(gpio
.smask
& ~gpio
.state
);
2852 wr_reg32(info
, IOVR
, data
);
2854 spin_unlock_irqrestore(&info
->lock
,flags
);
2860 * get general purpose IO pin state and direction
2862 static int get_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2864 struct gpio_desc gpio
;
2865 if (!info
->gpio_present
)
2867 gpio
.state
= rd_reg32(info
, IOVR
);
2868 gpio
.smask
= 0xffffffff;
2869 gpio
.dir
= rd_reg32(info
, IODR
);
2870 gpio
.dmask
= 0xffffffff;
2871 if (copy_to_user(user_gpio
, &gpio
, sizeof(gpio
)))
2873 DBGINFO(("%s get_gpio state=%08x dir=%08x\n",
2874 info
->device_name
, gpio
.state
, gpio
.dir
));
2879 * conditional wait facility
2881 static void init_cond_wait(struct cond_wait
*w
, unsigned int data
)
2883 init_waitqueue_head(&w
->q
);
2884 init_waitqueue_entry(&w
->wait
, current
);
2888 static void add_cond_wait(struct cond_wait
**head
, struct cond_wait
*w
)
2890 set_current_state(TASK_INTERRUPTIBLE
);
2891 add_wait_queue(&w
->q
, &w
->wait
);
2896 static void remove_cond_wait(struct cond_wait
**head
, struct cond_wait
*cw
)
2898 struct cond_wait
*w
, *prev
;
2899 remove_wait_queue(&cw
->q
, &cw
->wait
);
2900 set_current_state(TASK_RUNNING
);
2901 for (w
= *head
, prev
= NULL
; w
!= NULL
; prev
= w
, w
= w
->next
) {
2904 prev
->next
= w
->next
;
2912 static void flush_cond_wait(struct cond_wait
**head
)
2914 while (*head
!= NULL
) {
2915 wake_up_interruptible(&(*head
)->q
);
2916 *head
= (*head
)->next
;
2921 * wait for general purpose I/O pin(s) to enter specified state
2924 * state - bit indicates target pin state
2925 * smask - set bit indicates watched pin
2927 * The wait ends when at least one watched pin enters the specified
2928 * state. When 0 (no error) is returned, user_gpio->state is set to the
2929 * state of all GPIO pins when the wait ends.
2931 * Note: Each pin may be a dedicated input, dedicated output, or
2932 * configurable input/output. The number and configuration of pins
2933 * varies with the specific adapter model. Only input pins (dedicated
2934 * or configured) can be monitored with this function.
2936 static int wait_gpio(struct slgt_info
*info
, struct gpio_desc __user
*user_gpio
)
2938 unsigned long flags
;
2940 struct gpio_desc gpio
;
2941 struct cond_wait wait
;
2944 if (!info
->gpio_present
)
2946 if (copy_from_user(&gpio
, user_gpio
, sizeof(gpio
)))
2948 DBGINFO(("%s wait_gpio() state=%08x smask=%08x\n",
2949 info
->device_name
, gpio
.state
, gpio
.smask
));
2950 /* ignore output pins identified by set IODR bit */
2951 if ((gpio
.smask
&= ~rd_reg32(info
, IODR
)) == 0)
2953 init_cond_wait(&wait
, gpio
.smask
);
2955 spin_lock_irqsave(&info
->lock
, flags
);
2956 /* enable interrupts for watched pins */
2957 wr_reg32(info
, IOER
, rd_reg32(info
, IOER
) | gpio
.smask
);
2958 /* get current pin states */
2959 state
= rd_reg32(info
, IOVR
);
2961 if (gpio
.smask
& ~(state
^ gpio
.state
)) {
2962 /* already in target state */
2965 /* wait for target state */
2966 add_cond_wait(&info
->gpio_wait_q
, &wait
);
2967 spin_unlock_irqrestore(&info
->lock
, flags
);
2969 if (signal_pending(current
))
2972 gpio
.state
= wait
.data
;
2973 spin_lock_irqsave(&info
->lock
, flags
);
2974 remove_cond_wait(&info
->gpio_wait_q
, &wait
);
2977 /* disable all GPIO interrupts if no waiting processes */
2978 if (info
->gpio_wait_q
== NULL
)
2979 wr_reg32(info
, IOER
, 0);
2980 spin_unlock_irqrestore(&info
->lock
,flags
);
2982 if ((rc
== 0) && copy_to_user(user_gpio
, &gpio
, sizeof(gpio
)))
2987 static int modem_input_wait(struct slgt_info
*info
,int arg
)
2989 unsigned long flags
;
2991 struct mgsl_icount cprev
, cnow
;
2992 DECLARE_WAITQUEUE(wait
, current
);
2994 /* save current irq counts */
2995 spin_lock_irqsave(&info
->lock
,flags
);
2996 cprev
= info
->icount
;
2997 add_wait_queue(&info
->status_event_wait_q
, &wait
);
2998 set_current_state(TASK_INTERRUPTIBLE
);
2999 spin_unlock_irqrestore(&info
->lock
,flags
);
3003 if (signal_pending(current
)) {
3008 /* get new irq counts */
3009 spin_lock_irqsave(&info
->lock
,flags
);
3010 cnow
= info
->icount
;
3011 set_current_state(TASK_INTERRUPTIBLE
);
3012 spin_unlock_irqrestore(&info
->lock
,flags
);
3014 /* if no change, wait aborted for some reason */
3015 if (cnow
.rng
== cprev
.rng
&& cnow
.dsr
== cprev
.dsr
&&
3016 cnow
.dcd
== cprev
.dcd
&& cnow
.cts
== cprev
.cts
) {
3021 /* check for change in caller specified modem input */
3022 if ((arg
& TIOCM_RNG
&& cnow
.rng
!= cprev
.rng
) ||
3023 (arg
& TIOCM_DSR
&& cnow
.dsr
!= cprev
.dsr
) ||
3024 (arg
& TIOCM_CD
&& cnow
.dcd
!= cprev
.dcd
) ||
3025 (arg
& TIOCM_CTS
&& cnow
.cts
!= cprev
.cts
)) {
3032 remove_wait_queue(&info
->status_event_wait_q
, &wait
);
3033 set_current_state(TASK_RUNNING
);
3038 * return state of serial control and status signals
3040 static int tiocmget(struct tty_struct
*tty
, struct file
*file
)
3042 struct slgt_info
*info
= tty
->driver_data
;
3043 unsigned int result
;
3044 unsigned long flags
;
3046 spin_lock_irqsave(&info
->lock
,flags
);
3048 spin_unlock_irqrestore(&info
->lock
,flags
);
3050 result
= ((info
->signals
& SerialSignal_RTS
) ? TIOCM_RTS
:0) +
3051 ((info
->signals
& SerialSignal_DTR
) ? TIOCM_DTR
:0) +
3052 ((info
->signals
& SerialSignal_DCD
) ? TIOCM_CAR
:0) +
3053 ((info
->signals
& SerialSignal_RI
) ? TIOCM_RNG
:0) +
3054 ((info
->signals
& SerialSignal_DSR
) ? TIOCM_DSR
:0) +
3055 ((info
->signals
& SerialSignal_CTS
) ? TIOCM_CTS
:0);
3057 DBGINFO(("%s tiocmget value=%08X\n", info
->device_name
, result
));
3062 * set modem control signals (DTR/RTS)
3064 * cmd signal command: TIOCMBIS = set bit TIOCMBIC = clear bit
3065 * TIOCMSET = set/clear signal values
3066 * value bit mask for command
3068 static int tiocmset(struct tty_struct
*tty
, struct file
*file
,
3069 unsigned int set
, unsigned int clear
)
3071 struct slgt_info
*info
= tty
->driver_data
;
3072 unsigned long flags
;
3074 DBGINFO(("%s tiocmset(%x,%x)\n", info
->device_name
, set
, clear
));
3076 if (set
& TIOCM_RTS
)
3077 info
->signals
|= SerialSignal_RTS
;
3078 if (set
& TIOCM_DTR
)
3079 info
->signals
|= SerialSignal_DTR
;
3080 if (clear
& TIOCM_RTS
)
3081 info
->signals
&= ~SerialSignal_RTS
;
3082 if (clear
& TIOCM_DTR
)
3083 info
->signals
&= ~SerialSignal_DTR
;
3085 spin_lock_irqsave(&info
->lock
,flags
);
3087 spin_unlock_irqrestore(&info
->lock
,flags
);
3091 static int carrier_raised(struct tty_port
*port
)
3093 unsigned long flags
;
3094 struct slgt_info
*info
= container_of(port
, struct slgt_info
, port
);
3096 spin_lock_irqsave(&info
->lock
,flags
);
3098 spin_unlock_irqrestore(&info
->lock
,flags
);
3099 return (info
->signals
& SerialSignal_DCD
) ? 1 : 0;
3102 static void raise_dtr_rts(struct tty_port
*port
)
3104 unsigned long flags
;
3105 struct slgt_info
*info
= container_of(port
, struct slgt_info
, port
);
3107 spin_lock_irqsave(&info
->lock
,flags
);
3108 info
->signals
|= SerialSignal_RTS
+ SerialSignal_DTR
;
3110 spin_unlock_irqrestore(&info
->lock
,flags
);
3115 * block current process until the device is ready to open
3117 static int block_til_ready(struct tty_struct
*tty
, struct file
*filp
,
3118 struct slgt_info
*info
)
3120 DECLARE_WAITQUEUE(wait
, current
);
3122 bool do_clocal
= false;
3123 bool extra_count
= false;
3124 unsigned long flags
;
3126 struct tty_port
*port
= &info
->port
;
3128 DBGINFO(("%s block_til_ready\n", tty
->driver
->name
));
3130 if (filp
->f_flags
& O_NONBLOCK
|| tty
->flags
& (1 << TTY_IO_ERROR
)){
3131 /* nonblock mode is set or port is not enabled */
3132 port
->flags
|= ASYNC_NORMAL_ACTIVE
;
3136 if (tty
->termios
->c_cflag
& CLOCAL
)
3139 /* Wait for carrier detect and the line to become
3140 * free (i.e., not in use by the callout). While we are in
3141 * this loop, port->count is dropped by one, so that
3142 * close() knows when to free things. We restore it upon
3143 * exit, either normal or abnormal.
3147 add_wait_queue(&port
->open_wait
, &wait
);
3149 spin_lock_irqsave(&info
->lock
, flags
);
3150 if (!tty_hung_up_p(filp
)) {
3154 spin_unlock_irqrestore(&info
->lock
, flags
);
3155 port
->blocked_open
++;
3158 if ((tty
->termios
->c_cflag
& CBAUD
))
3159 tty_port_raise_dtr_rts(port
);
3161 set_current_state(TASK_INTERRUPTIBLE
);
3163 if (tty_hung_up_p(filp
) || !(port
->flags
& ASYNC_INITIALIZED
)){
3164 retval
= (port
->flags
& ASYNC_HUP_NOTIFY
) ?
3165 -EAGAIN
: -ERESTARTSYS
;
3169 cd
= tty_port_carrier_raised(port
);
3171 if (!(port
->flags
& ASYNC_CLOSING
) && (do_clocal
|| cd
))
3174 if (signal_pending(current
)) {
3175 retval
= -ERESTARTSYS
;
3179 DBGINFO(("%s block_til_ready wait\n", tty
->driver
->name
));
3183 set_current_state(TASK_RUNNING
);
3184 remove_wait_queue(&port
->open_wait
, &wait
);
3188 port
->blocked_open
--;
3191 port
->flags
|= ASYNC_NORMAL_ACTIVE
;
3193 DBGINFO(("%s block_til_ready ready, rc=%d\n", tty
->driver
->name
, retval
));
3197 static int alloc_tmp_rbuf(struct slgt_info
*info
)
3199 info
->tmp_rbuf
= kmalloc(info
->max_frame_size
+ 5, GFP_KERNEL
);
3200 if (info
->tmp_rbuf
== NULL
)
3205 static void free_tmp_rbuf(struct slgt_info
*info
)
3207 kfree(info
->tmp_rbuf
);
3208 info
->tmp_rbuf
= NULL
;
3212 * allocate DMA descriptor lists.
3214 static int alloc_desc(struct slgt_info
*info
)
3219 /* allocate memory to hold descriptor lists */
3220 info
->bufs
= pci_alloc_consistent(info
->pdev
, DESC_LIST_SIZE
, &info
->bufs_dma_addr
);
3221 if (info
->bufs
== NULL
)
3224 memset(info
->bufs
, 0, DESC_LIST_SIZE
);
3226 info
->rbufs
= (struct slgt_desc
*)info
->bufs
;
3227 info
->tbufs
= ((struct slgt_desc
*)info
->bufs
) + info
->rbuf_count
;
3229 pbufs
= (unsigned int)info
->bufs_dma_addr
;
3232 * Build circular lists of descriptors
3235 for (i
=0; i
< info
->rbuf_count
; i
++) {
3236 /* physical address of this descriptor */
3237 info
->rbufs
[i
].pdesc
= pbufs
+ (i
* sizeof(struct slgt_desc
));
3239 /* physical address of next descriptor */
3240 if (i
== info
->rbuf_count
- 1)
3241 info
->rbufs
[i
].next
= cpu_to_le32(pbufs
);
3243 info
->rbufs
[i
].next
= cpu_to_le32(pbufs
+ ((i
+1) * sizeof(struct slgt_desc
)));
3244 set_desc_count(info
->rbufs
[i
], DMABUFSIZE
);
3247 for (i
=0; i
< info
->tbuf_count
; i
++) {
3248 /* physical address of this descriptor */
3249 info
->tbufs
[i
].pdesc
= pbufs
+ ((info
->rbuf_count
+ i
) * sizeof(struct slgt_desc
));
3251 /* physical address of next descriptor */
3252 if (i
== info
->tbuf_count
- 1)
3253 info
->tbufs
[i
].next
= cpu_to_le32(pbufs
+ info
->rbuf_count
* sizeof(struct slgt_desc
));
3255 info
->tbufs
[i
].next
= cpu_to_le32(pbufs
+ ((info
->rbuf_count
+ i
+ 1) * sizeof(struct slgt_desc
)));
3261 static void free_desc(struct slgt_info
*info
)
3263 if (info
->bufs
!= NULL
) {
3264 pci_free_consistent(info
->pdev
, DESC_LIST_SIZE
, info
->bufs
, info
->bufs_dma_addr
);
3271 static int alloc_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
)
3274 for (i
=0; i
< count
; i
++) {
3275 if ((bufs
[i
].buf
= pci_alloc_consistent(info
->pdev
, DMABUFSIZE
, &bufs
[i
].buf_dma_addr
)) == NULL
)
3277 bufs
[i
].pbuf
= cpu_to_le32((unsigned int)bufs
[i
].buf_dma_addr
);
3282 static void free_bufs(struct slgt_info
*info
, struct slgt_desc
*bufs
, int count
)
3285 for (i
=0; i
< count
; i
++) {
3286 if (bufs
[i
].buf
== NULL
)
3288 pci_free_consistent(info
->pdev
, DMABUFSIZE
, bufs
[i
].buf
, bufs
[i
].buf_dma_addr
);
3293 static int alloc_dma_bufs(struct slgt_info
*info
)
3295 info
->rbuf_count
= 32;
3296 info
->tbuf_count
= 32;
3298 if (alloc_desc(info
) < 0 ||
3299 alloc_bufs(info
, info
->rbufs
, info
->rbuf_count
) < 0 ||
3300 alloc_bufs(info
, info
->tbufs
, info
->tbuf_count
) < 0 ||
3301 alloc_tmp_rbuf(info
) < 0) {
3302 DBGERR(("%s DMA buffer alloc fail\n", info
->device_name
));
3309 static void free_dma_bufs(struct slgt_info
*info
)
3312 free_bufs(info
, info
->rbufs
, info
->rbuf_count
);
3313 free_bufs(info
, info
->tbufs
, info
->tbuf_count
);
3316 free_tmp_rbuf(info
);
3319 static int claim_resources(struct slgt_info
*info
)
3321 if (request_mem_region(info
->phys_reg_addr
, SLGT_REG_SIZE
, "synclink_gt") == NULL
) {
3322 DBGERR(("%s reg addr conflict, addr=%08X\n",
3323 info
->device_name
, info
->phys_reg_addr
));
3324 info
->init_error
= DiagStatus_AddressConflict
;
3328 info
->reg_addr_requested
= true;
3330 info
->reg_addr
= ioremap_nocache(info
->phys_reg_addr
, SLGT_REG_SIZE
);
3331 if (!info
->reg_addr
) {
3332 DBGERR(("%s cant map device registers, addr=%08X\n",
3333 info
->device_name
, info
->phys_reg_addr
));
3334 info
->init_error
= DiagStatus_CantAssignPciResources
;
3340 release_resources(info
);
3344 static void release_resources(struct slgt_info
*info
)
3346 if (info
->irq_requested
) {
3347 free_irq(info
->irq_level
, info
);
3348 info
->irq_requested
= false;
3351 if (info
->reg_addr_requested
) {
3352 release_mem_region(info
->phys_reg_addr
, SLGT_REG_SIZE
);
3353 info
->reg_addr_requested
= false;
3356 if (info
->reg_addr
) {
3357 iounmap(info
->reg_addr
);
3358 info
->reg_addr
= NULL
;
3362 /* Add the specified device instance data structure to the
3363 * global linked list of devices and increment the device count.
3365 static void add_device(struct slgt_info
*info
)
3369 info
->next_device
= NULL
;
3370 info
->line
= slgt_device_count
;
3371 sprintf(info
->device_name
, "%s%d", tty_dev_prefix
, info
->line
);
3373 if (info
->line
< MAX_DEVICES
) {
3374 if (maxframe
[info
->line
])
3375 info
->max_frame_size
= maxframe
[info
->line
];
3378 slgt_device_count
++;
3380 if (!slgt_device_list
)
3381 slgt_device_list
= info
;
3383 struct slgt_info
*current_dev
= slgt_device_list
;
3384 while(current_dev
->next_device
)
3385 current_dev
= current_dev
->next_device
;
3386 current_dev
->next_device
= info
;
3389 if (info
->max_frame_size
< 4096)
3390 info
->max_frame_size
= 4096;
3391 else if (info
->max_frame_size
> 65535)
3392 info
->max_frame_size
= 65535;
3394 switch(info
->pdev
->device
) {
3395 case SYNCLINK_GT_DEVICE_ID
:
3398 case SYNCLINK_GT2_DEVICE_ID
:
3401 case SYNCLINK_GT4_DEVICE_ID
:
3404 case SYNCLINK_AC_DEVICE_ID
:
3406 info
->params
.mode
= MGSL_MODE_ASYNC
;
3409 devstr
= "(unknown model)";
3411 printk("SyncLink %s %s IO=%08x IRQ=%d MaxFrameSize=%u\n",
3412 devstr
, info
->device_name
, info
->phys_reg_addr
,
3413 info
->irq_level
, info
->max_frame_size
);
3415 #if SYNCLINK_GENERIC_HDLC
3420 static const struct tty_port_operations slgt_port_ops
= {
3421 .carrier_raised
= carrier_raised
,
3422 .raise_dtr_rts
= raise_dtr_rts
,
3426 * allocate device instance structure, return NULL on failure
3428 static struct slgt_info
*alloc_dev(int adapter_num
, int port_num
, struct pci_dev
*pdev
)
3430 struct slgt_info
*info
;
3432 info
= kzalloc(sizeof(struct slgt_info
), GFP_KERNEL
);
3435 DBGERR(("%s device alloc failed adapter=%d port=%d\n",
3436 driver_name
, adapter_num
, port_num
));
3438 tty_port_init(&info
->port
);
3439 info
->port
.ops
= &slgt_port_ops
;
3440 info
->magic
= MGSL_MAGIC
;
3441 INIT_WORK(&info
->task
, bh_handler
);
3442 info
->max_frame_size
= 4096;
3443 info
->base_clock
= 14745600;
3444 info
->rbuf_fill_level
= DMABUFSIZE
;
3445 info
->port
.close_delay
= 5*HZ
/10;
3446 info
->port
.closing_wait
= 30*HZ
;
3447 init_waitqueue_head(&info
->status_event_wait_q
);
3448 init_waitqueue_head(&info
->event_wait_q
);
3449 spin_lock_init(&info
->netlock
);
3450 memcpy(&info
->params
,&default_params
,sizeof(MGSL_PARAMS
));
3451 info
->idle_mode
= HDLC_TXIDLE_FLAGS
;
3452 info
->adapter_num
= adapter_num
;
3453 info
->port_num
= port_num
;
3455 setup_timer(&info
->tx_timer
, tx_timeout
, (unsigned long)info
);
3456 setup_timer(&info
->rx_timer
, rx_timeout
, (unsigned long)info
);
3458 /* Copy configuration info to device instance data */
3460 info
->irq_level
= pdev
->irq
;
3461 info
->phys_reg_addr
= pci_resource_start(pdev
,0);
3463 info
->bus_type
= MGSL_BUS_TYPE_PCI
;
3464 info
->irq_flags
= IRQF_SHARED
;
3466 info
->init_error
= -1; /* assume error, set to 0 on successful init */
3472 static void device_init(int adapter_num
, struct pci_dev
*pdev
)
3474 struct slgt_info
*port_array
[SLGT_MAX_PORTS
];
3478 if (pdev
->device
== SYNCLINK_GT2_DEVICE_ID
)
3480 else if (pdev
->device
== SYNCLINK_GT4_DEVICE_ID
)
3483 /* allocate device instances for all ports */
3484 for (i
=0; i
< port_count
; ++i
) {
3485 port_array
[i
] = alloc_dev(adapter_num
, i
, pdev
);
3486 if (port_array
[i
] == NULL
) {
3487 for (--i
; i
>= 0; --i
)
3488 kfree(port_array
[i
]);
3493 /* give copy of port_array to all ports and add to device list */
3494 for (i
=0; i
< port_count
; ++i
) {
3495 memcpy(port_array
[i
]->port_array
, port_array
, sizeof(port_array
));
3496 add_device(port_array
[i
]);
3497 port_array
[i
]->port_count
= port_count
;
3498 spin_lock_init(&port_array
[i
]->lock
);
3501 /* Allocate and claim adapter resources */
3502 if (!claim_resources(port_array
[0])) {
3504 alloc_dma_bufs(port_array
[0]);
3506 /* copy resource information from first port to others */
3507 for (i
= 1; i
< port_count
; ++i
) {
3508 port_array
[i
]->lock
= port_array
[0]->lock
;
3509 port_array
[i
]->irq_level
= port_array
[0]->irq_level
;
3510 port_array
[i
]->reg_addr
= port_array
[0]->reg_addr
;
3511 alloc_dma_bufs(port_array
[i
]);
3514 if (request_irq(port_array
[0]->irq_level
,
3516 port_array
[0]->irq_flags
,
3517 port_array
[0]->device_name
,
3518 port_array
[0]) < 0) {
3519 DBGERR(("%s request_irq failed IRQ=%d\n",
3520 port_array
[0]->device_name
,
3521 port_array
[0]->irq_level
));
3523 port_array
[0]->irq_requested
= true;
3524 adapter_test(port_array
[0]);
3525 for (i
=1 ; i
< port_count
; i
++) {
3526 port_array
[i
]->init_error
= port_array
[0]->init_error
;
3527 port_array
[i
]->gpio_present
= port_array
[0]->gpio_present
;
3532 for (i
=0; i
< port_count
; ++i
)
3533 tty_register_device(serial_driver
, port_array
[i
]->line
, &(port_array
[i
]->pdev
->dev
));
3536 static int __devinit
init_one(struct pci_dev
*dev
,
3537 const struct pci_device_id
*ent
)
3539 if (pci_enable_device(dev
)) {
3540 printk("error enabling pci device %p\n", dev
);
3543 pci_set_master(dev
);
3544 device_init(slgt_device_count
, dev
);
3548 static void __devexit
remove_one(struct pci_dev
*dev
)
3552 static const struct tty_operations ops
= {
3556 .put_char
= put_char
,
3557 .flush_chars
= flush_chars
,
3558 .write_room
= write_room
,
3559 .chars_in_buffer
= chars_in_buffer
,
3560 .flush_buffer
= flush_buffer
,
3562 .compat_ioctl
= slgt_compat_ioctl
,
3563 .throttle
= throttle
,
3564 .unthrottle
= unthrottle
,
3565 .send_xchar
= send_xchar
,
3566 .break_ctl
= set_break
,
3567 .wait_until_sent
= wait_until_sent
,
3568 .set_termios
= set_termios
,
3570 .start
= tx_release
,
3572 .tiocmget
= tiocmget
,
3573 .tiocmset
= tiocmset
,
3574 .proc_fops
= &synclink_gt_proc_fops
,
3577 static void slgt_cleanup(void)
3580 struct slgt_info
*info
;
3581 struct slgt_info
*tmp
;
3583 printk(KERN_INFO
"unload %s\n", driver_name
);
3585 if (serial_driver
) {
3586 for (info
=slgt_device_list
; info
!= NULL
; info
=info
->next_device
)
3587 tty_unregister_device(serial_driver
, info
->line
);
3588 if ((rc
= tty_unregister_driver(serial_driver
)))
3589 DBGERR(("tty_unregister_driver error=%d\n", rc
));
3590 put_tty_driver(serial_driver
);
3594 info
= slgt_device_list
;
3597 info
= info
->next_device
;
3600 /* release devices */
3601 info
= slgt_device_list
;
3603 #if SYNCLINK_GENERIC_HDLC
3606 free_dma_bufs(info
);
3607 free_tmp_rbuf(info
);
3608 if (info
->port_num
== 0)
3609 release_resources(info
);
3611 info
= info
->next_device
;
3616 pci_unregister_driver(&pci_driver
);
3620 * Driver initialization entry point.
3622 static int __init
slgt_init(void)
3626 printk(KERN_INFO
"%s\n", driver_name
);
3628 serial_driver
= alloc_tty_driver(MAX_DEVICES
);
3629 if (!serial_driver
) {
3630 printk("%s can't allocate tty driver\n", driver_name
);
3634 /* Initialize the tty_driver structure */
3636 serial_driver
->owner
= THIS_MODULE
;
3637 serial_driver
->driver_name
= tty_driver_name
;
3638 serial_driver
->name
= tty_dev_prefix
;
3639 serial_driver
->major
= ttymajor
;
3640 serial_driver
->minor_start
= 64;
3641 serial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
3642 serial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
3643 serial_driver
->init_termios
= tty_std_termios
;
3644 serial_driver
->init_termios
.c_cflag
=
3645 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
3646 serial_driver
->init_termios
.c_ispeed
= 9600;
3647 serial_driver
->init_termios
.c_ospeed
= 9600;
3648 serial_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
3649 tty_set_operations(serial_driver
, &ops
);
3650 if ((rc
= tty_register_driver(serial_driver
)) < 0) {
3651 DBGERR(("%s can't register serial driver\n", driver_name
));
3652 put_tty_driver(serial_driver
);
3653 serial_driver
= NULL
;
3657 printk(KERN_INFO
"%s, tty major#%d\n",
3658 driver_name
, serial_driver
->major
);
3660 slgt_device_count
= 0;
3661 if ((rc
= pci_register_driver(&pci_driver
)) < 0) {
3662 printk("%s pci_register_driver error=%d\n", driver_name
, rc
);
3665 pci_registered
= true;
3667 if (!slgt_device_list
)
3668 printk("%s no devices found\n",driver_name
);
3677 static void __exit
slgt_exit(void)
3682 module_init(slgt_init
);
3683 module_exit(slgt_exit
);
3686 * register access routines
3689 #define CALC_REGADDR() \
3690 unsigned long reg_addr = ((unsigned long)info->reg_addr) + addr; \
3692 reg_addr += (info->port_num) * 32;
3694 static __u8
rd_reg8(struct slgt_info
*info
, unsigned int addr
)
3697 return readb((void __iomem
*)reg_addr
);
3700 static void wr_reg8(struct slgt_info
*info
, unsigned int addr
, __u8 value
)
3703 writeb(value
, (void __iomem
*)reg_addr
);
3706 static __u16
rd_reg16(struct slgt_info
*info
, unsigned int addr
)
3709 return readw((void __iomem
*)reg_addr
);
3712 static void wr_reg16(struct slgt_info
*info
, unsigned int addr
, __u16 value
)
3715 writew(value
, (void __iomem
*)reg_addr
);
3718 static __u32
rd_reg32(struct slgt_info
*info
, unsigned int addr
)
3721 return readl((void __iomem
*)reg_addr
);
3724 static void wr_reg32(struct slgt_info
*info
, unsigned int addr
, __u32 value
)
3727 writel(value
, (void __iomem
*)reg_addr
);
3730 static void rdma_reset(struct slgt_info
*info
)
3735 wr_reg32(info
, RDCSR
, BIT1
);
3737 /* wait for enable bit cleared */
3738 for(i
=0 ; i
< 1000 ; i
++)
3739 if (!(rd_reg32(info
, RDCSR
) & BIT0
))
3743 static void tdma_reset(struct slgt_info
*info
)
3748 wr_reg32(info
, TDCSR
, BIT1
);
3750 /* wait for enable bit cleared */
3751 for(i
=0 ; i
< 1000 ; i
++)
3752 if (!(rd_reg32(info
, TDCSR
) & BIT0
))
3757 * enable internal loopback
3758 * TxCLK and RxCLK are generated from BRG
3759 * and TxD is looped back to RxD internally.
3761 static void enable_loopback(struct slgt_info
*info
)
3763 /* SCR (serial control) BIT2=looopback enable */
3764 wr_reg16(info
, SCR
, (unsigned short)(rd_reg16(info
, SCR
) | BIT2
));
3766 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3767 /* CCR (clock control)
3768 * 07..05 tx clock source (010 = BRG)
3769 * 04..02 rx clock source (010 = BRG)
3770 * 01 auxclk enable (0 = disable)
3771 * 00 BRG enable (1 = enable)
3775 wr_reg8(info
, CCR
, 0x49);
3777 /* set speed if available, otherwise use default */
3778 if (info
->params
.clock_speed
)
3779 set_rate(info
, info
->params
.clock_speed
);
3781 set_rate(info
, 3686400);
3786 * set baud rate generator to specified rate
3788 static void set_rate(struct slgt_info
*info
, u32 rate
)
3791 unsigned int osc
= info
->base_clock
;
3793 /* div = osc/rate - 1
3795 * Round div up if osc/rate is not integer to
3796 * force to next slowest rate.
3801 if (!(osc
% rate
) && div
)
3803 wr_reg16(info
, BDR
, (unsigned short)div
);
3807 static void rx_stop(struct slgt_info
*info
)
3811 /* disable and reset receiver */
3812 val
= rd_reg16(info
, RCR
) & ~BIT1
; /* clear enable bit */
3813 wr_reg16(info
, RCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3814 wr_reg16(info
, RCR
, val
); /* clear reset bit */
3816 slgt_irq_off(info
, IRQ_RXOVER
+ IRQ_RXDATA
+ IRQ_RXIDLE
);
3818 /* clear pending rx interrupts */
3819 wr_reg16(info
, SSR
, IRQ_RXIDLE
+ IRQ_RXOVER
);
3823 info
->rx_enabled
= false;
3824 info
->rx_restart
= false;
3827 static void rx_start(struct slgt_info
*info
)
3831 slgt_irq_off(info
, IRQ_RXOVER
+ IRQ_RXDATA
);
3833 /* clear pending rx overrun IRQ */
3834 wr_reg16(info
, SSR
, IRQ_RXOVER
);
3836 /* reset and disable receiver */
3837 val
= rd_reg16(info
, RCR
) & ~BIT1
; /* clear enable bit */
3838 wr_reg16(info
, RCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3839 wr_reg16(info
, RCR
, val
); /* clear reset bit */
3844 /* set 1st descriptor address */
3845 wr_reg32(info
, RDDAR
, info
->rbufs
[0].pdesc
);
3847 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3848 /* enable rx DMA and DMA interrupt */
3849 wr_reg32(info
, RDCSR
, (BIT2
+ BIT0
));
3851 /* enable saving of rx status, rx DMA and DMA interrupt */
3852 wr_reg32(info
, RDCSR
, (BIT6
+ BIT2
+ BIT0
));
3855 slgt_irq_on(info
, IRQ_RXOVER
);
3857 /* enable receiver */
3858 wr_reg16(info
, RCR
, (unsigned short)(rd_reg16(info
, RCR
) | BIT1
));
3860 info
->rx_restart
= false;
3861 info
->rx_enabled
= true;
3864 static void tx_start(struct slgt_info
*info
)
3866 if (!info
->tx_enabled
) {
3868 (unsigned short)((rd_reg16(info
, TCR
) | BIT1
) & ~BIT2
));
3869 info
->tx_enabled
= true;
3872 if (info
->tx_count
) {
3873 info
->drop_rts_on_tx_done
= false;
3875 if (info
->params
.mode
!= MGSL_MODE_ASYNC
) {
3876 if (info
->params
.flags
& HDLC_FLAG_AUTO_RTS
) {
3878 if (!(info
->signals
& SerialSignal_RTS
)) {
3879 info
->signals
|= SerialSignal_RTS
;
3881 info
->drop_rts_on_tx_done
= true;
3885 slgt_irq_off(info
, IRQ_TXDATA
);
3886 slgt_irq_on(info
, IRQ_TXUNDER
+ IRQ_TXIDLE
);
3887 /* clear tx idle and underrun status bits */
3888 wr_reg16(info
, SSR
, (unsigned short)(IRQ_TXIDLE
+ IRQ_TXUNDER
));
3889 if (info
->params
.mode
== MGSL_MODE_HDLC
)
3890 mod_timer(&info
->tx_timer
, jiffies
+
3891 msecs_to_jiffies(5000));
3893 slgt_irq_off(info
, IRQ_TXDATA
);
3894 slgt_irq_on(info
, IRQ_TXIDLE
);
3895 /* clear tx idle status bit */
3896 wr_reg16(info
, SSR
, IRQ_TXIDLE
);
3899 info
->tx_active
= true;
3904 * start transmit DMA if inactive and there are unsent buffers
3906 static void tdma_start(struct slgt_info
*info
)
3910 if (rd_reg32(info
, TDCSR
) & BIT0
)
3913 /* transmit DMA inactive, check for unsent buffers */
3914 i
= info
->tbuf_start
;
3915 while (!desc_count(info
->tbufs
[i
])) {
3916 if (++i
== info
->tbuf_count
)
3918 if (i
== info
->tbuf_current
)
3921 info
->tbuf_start
= i
;
3923 /* there are unsent buffers, start transmit DMA */
3925 /* reset needed if previous error condition */
3928 /* set 1st descriptor address */
3929 wr_reg32(info
, TDDAR
, info
->tbufs
[info
->tbuf_start
].pdesc
);
3930 wr_reg32(info
, TDCSR
, BIT2
+ BIT0
); /* IRQ + DMA enable */
3933 static void tx_stop(struct slgt_info
*info
)
3937 del_timer(&info
->tx_timer
);
3941 /* reset and disable transmitter */
3942 val
= rd_reg16(info
, TCR
) & ~BIT1
; /* clear enable bit */
3943 wr_reg16(info
, TCR
, (unsigned short)(val
| BIT2
)); /* set reset bit */
3945 slgt_irq_off(info
, IRQ_TXDATA
+ IRQ_TXIDLE
+ IRQ_TXUNDER
);
3947 /* clear tx idle and underrun status bit */
3948 wr_reg16(info
, SSR
, (unsigned short)(IRQ_TXIDLE
+ IRQ_TXUNDER
));
3952 info
->tx_enabled
= false;
3953 info
->tx_active
= false;
3956 static void reset_port(struct slgt_info
*info
)
3958 if (!info
->reg_addr
)
3964 info
->signals
&= ~(SerialSignal_DTR
+ SerialSignal_RTS
);
3967 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
3970 static void reset_adapter(struct slgt_info
*info
)
3973 for (i
=0; i
< info
->port_count
; ++i
) {
3974 if (info
->port_array
[i
])
3975 reset_port(info
->port_array
[i
]);
3979 static void async_mode(struct slgt_info
*info
)
3983 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
3989 * 15..13 mode, 010=async
3990 * 12..10 encoding, 000=NRZ
3992 * 08 1=odd parity, 0=even parity
3993 * 07 1=RTS driver control
3995 * 05..04 character length
4000 * 03 0=1 stop bit, 1=2 stop bits
4003 * 00 auto-CTS enable
4007 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
4010 if (info
->params
.parity
!= ASYNC_PARITY_NONE
) {
4012 if (info
->params
.parity
== ASYNC_PARITY_ODD
)
4016 switch (info
->params
.data_bits
)
4018 case 6: val
|= BIT4
; break;
4019 case 7: val
|= BIT5
; break;
4020 case 8: val
|= BIT5
+ BIT4
; break;
4023 if (info
->params
.stop_bits
!= 1)
4026 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
4029 wr_reg16(info
, TCR
, val
);
4033 * 15..13 mode, 010=async
4034 * 12..10 encoding, 000=NRZ
4036 * 08 1=odd parity, 0=even parity
4037 * 07..06 reserved, must be 0
4038 * 05..04 character length
4043 * 03 reserved, must be zero
4046 * 00 auto-DCD enable
4050 if (info
->params
.parity
!= ASYNC_PARITY_NONE
) {
4052 if (info
->params
.parity
== ASYNC_PARITY_ODD
)
4056 switch (info
->params
.data_bits
)
4058 case 6: val
|= BIT4
; break;
4059 case 7: val
|= BIT5
; break;
4060 case 8: val
|= BIT5
+ BIT4
; break;
4063 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
4066 wr_reg16(info
, RCR
, val
);
4068 /* CCR (clock control)
4070 * 07..05 011 = tx clock source is BRG/16
4071 * 04..02 010 = rx clock source is BRG
4072 * 01 0 = auxclk disabled
4073 * 00 1 = BRG enabled
4077 wr_reg8(info
, CCR
, 0x69);
4081 /* SCR (serial control)
4083 * 15 1=tx req on FIFO half empty
4084 * 14 1=rx req on FIFO half full
4085 * 13 tx data IRQ enable
4086 * 12 tx idle IRQ enable
4087 * 11 rx break on IRQ enable
4088 * 10 rx data IRQ enable
4089 * 09 rx break off IRQ enable
4090 * 08 overrun IRQ enable
4095 * 03 0=16x sampling, 1=8x sampling
4096 * 02 1=txd->rxd internal loopback enable
4097 * 01 reserved, must be zero
4098 * 00 1=master IRQ enable
4100 val
= BIT15
+ BIT14
+ BIT0
;
4101 /* JCR[8] : 1 = x8 async mode feature available */
4102 if ((rd_reg32(info
, JCR
) & BIT8
) && info
->params
.data_rate
&&
4103 ((info
->base_clock
< (info
->params
.data_rate
* 16)) ||
4104 (info
->base_clock
% (info
->params
.data_rate
* 16)))) {
4105 /* use 8x sampling */
4107 set_rate(info
, info
->params
.data_rate
* 8);
4109 /* use 16x sampling */
4110 set_rate(info
, info
->params
.data_rate
* 16);
4112 wr_reg16(info
, SCR
, val
);
4114 slgt_irq_on(info
, IRQ_RXBREAK
| IRQ_RXOVER
);
4116 if (info
->params
.loopback
)
4117 enable_loopback(info
);
4120 static void sync_mode(struct slgt_info
*info
)
4124 slgt_irq_off(info
, IRQ_ALL
| IRQ_MASTER
);
4130 * 15..13 mode, 000=HDLC 001=raw 010=async 011=monosync 100=bisync
4134 * 07 1=RTS driver control
4135 * 06 preamble enable
4136 * 05..04 preamble length
4137 * 03 share open/close flag
4140 * 00 auto-CTS enable
4144 switch(info
->params
.mode
) {
4145 case MGSL_MODE_MONOSYNC
: val
|= BIT14
+ BIT13
; break;
4146 case MGSL_MODE_BISYNC
: val
|= BIT15
; break;
4147 case MGSL_MODE_RAW
: val
|= BIT13
; break;
4149 if (info
->if_mode
& MGSL_INTERFACE_RTS_EN
)
4152 switch(info
->params
.encoding
)
4154 case HDLC_ENCODING_NRZB
: val
|= BIT10
; break;
4155 case HDLC_ENCODING_NRZI_MARK
: val
|= BIT11
; break;
4156 case HDLC_ENCODING_NRZI
: val
|= BIT11
+ BIT10
; break;
4157 case HDLC_ENCODING_BIPHASE_MARK
: val
|= BIT12
; break;
4158 case HDLC_ENCODING_BIPHASE_SPACE
: val
|= BIT12
+ BIT10
; break;
4159 case HDLC_ENCODING_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
; break;
4160 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
+ BIT10
; break;
4163 switch (info
->params
.crc_type
& HDLC_CRC_MASK
)
4165 case HDLC_CRC_16_CCITT
: val
|= BIT9
; break;
4166 case HDLC_CRC_32_CCITT
: val
|= BIT9
+ BIT8
; break;
4169 if (info
->params
.preamble
!= HDLC_PREAMBLE_PATTERN_NONE
)
4172 switch (info
->params
.preamble_length
)
4174 case HDLC_PREAMBLE_LENGTH_16BITS
: val
|= BIT5
; break;
4175 case HDLC_PREAMBLE_LENGTH_32BITS
: val
|= BIT4
; break;
4176 case HDLC_PREAMBLE_LENGTH_64BITS
: val
|= BIT5
+ BIT4
; break;
4179 if (info
->params
.flags
& HDLC_FLAG_AUTO_CTS
)
4182 wr_reg16(info
, TCR
, val
);
4184 /* TPR (transmit preamble) */
4186 switch (info
->params
.preamble
)
4188 case HDLC_PREAMBLE_PATTERN_FLAGS
: val
= 0x7e; break;
4189 case HDLC_PREAMBLE_PATTERN_ONES
: val
= 0xff; break;
4190 case HDLC_PREAMBLE_PATTERN_ZEROS
: val
= 0x00; break;
4191 case HDLC_PREAMBLE_PATTERN_10
: val
= 0x55; break;
4192 case HDLC_PREAMBLE_PATTERN_01
: val
= 0xaa; break;
4193 default: val
= 0x7e; break;
4195 wr_reg8(info
, TPR
, (unsigned char)val
);
4199 * 15..13 mode, 000=HDLC 001=raw 010=async 011=monosync 100=bisync
4203 * 07..03 reserved, must be 0
4206 * 00 auto-DCD enable
4210 switch(info
->params
.mode
) {
4211 case MGSL_MODE_MONOSYNC
: val
|= BIT14
+ BIT13
; break;
4212 case MGSL_MODE_BISYNC
: val
|= BIT15
; break;
4213 case MGSL_MODE_RAW
: val
|= BIT13
; break;
4216 switch(info
->params
.encoding
)
4218 case HDLC_ENCODING_NRZB
: val
|= BIT10
; break;
4219 case HDLC_ENCODING_NRZI_MARK
: val
|= BIT11
; break;
4220 case HDLC_ENCODING_NRZI
: val
|= BIT11
+ BIT10
; break;
4221 case HDLC_ENCODING_BIPHASE_MARK
: val
|= BIT12
; break;
4222 case HDLC_ENCODING_BIPHASE_SPACE
: val
|= BIT12
+ BIT10
; break;
4223 case HDLC_ENCODING_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
; break;
4224 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
: val
|= BIT12
+ BIT11
+ BIT10
; break;
4227 switch (info
->params
.crc_type
& HDLC_CRC_MASK
)
4229 case HDLC_CRC_16_CCITT
: val
|= BIT9
; break;
4230 case HDLC_CRC_32_CCITT
: val
|= BIT9
+ BIT8
; break;
4233 if (info
->params
.flags
& HDLC_FLAG_AUTO_DCD
)
4236 wr_reg16(info
, RCR
, val
);
4238 /* CCR (clock control)
4240 * 07..05 tx clock source
4241 * 04..02 rx clock source
4247 if (info
->params
.flags
& HDLC_FLAG_TXC_BRG
)
4249 // when RxC source is DPLL, BRG generates 16X DPLL
4250 // reference clock, so take TxC from BRG/16 to get
4251 // transmit clock at actual data rate
4252 if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
4253 val
|= BIT6
+ BIT5
; /* 011, txclk = BRG/16 */
4255 val
|= BIT6
; /* 010, txclk = BRG */
4257 else if (info
->params
.flags
& HDLC_FLAG_TXC_DPLL
)
4258 val
|= BIT7
; /* 100, txclk = DPLL Input */
4259 else if (info
->params
.flags
& HDLC_FLAG_TXC_RXCPIN
)
4260 val
|= BIT5
; /* 001, txclk = RXC Input */
4262 if (info
->params
.flags
& HDLC_FLAG_RXC_BRG
)
4263 val
|= BIT3
; /* 010, rxclk = BRG */
4264 else if (info
->params
.flags
& HDLC_FLAG_RXC_DPLL
)
4265 val
|= BIT4
; /* 100, rxclk = DPLL */
4266 else if (info
->params
.flags
& HDLC_FLAG_RXC_TXCPIN
)
4267 val
|= BIT2
; /* 001, rxclk = TXC Input */
4269 if (info
->params
.clock_speed
)
4272 wr_reg8(info
, CCR
, (unsigned char)val
);
4274 if (info
->params
.flags
& (HDLC_FLAG_TXC_DPLL
+ HDLC_FLAG_RXC_DPLL
))
4276 // program DPLL mode
4277 switch(info
->params
.encoding
)
4279 case HDLC_ENCODING_BIPHASE_MARK
:
4280 case HDLC_ENCODING_BIPHASE_SPACE
:
4282 case HDLC_ENCODING_BIPHASE_LEVEL
:
4283 case HDLC_ENCODING_DIFF_BIPHASE_LEVEL
:
4284 val
= BIT7
+ BIT6
; break;
4285 default: val
= BIT6
; // NRZ encodings
4287 wr_reg16(info
, RCR
, (unsigned short)(rd_reg16(info
, RCR
) | val
));
4289 // DPLL requires a 16X reference clock from BRG
4290 set_rate(info
, info
->params
.clock_speed
* 16);
4293 set_rate(info
, info
->params
.clock_speed
);
4299 /* SCR (serial control)
4301 * 15 1=tx req on FIFO half empty
4302 * 14 1=rx req on FIFO half full
4303 * 13 tx data IRQ enable
4304 * 12 tx idle IRQ enable
4305 * 11 underrun IRQ enable
4306 * 10 rx data IRQ enable
4307 * 09 rx idle IRQ enable
4308 * 08 overrun IRQ enable
4313 * 03 reserved, must be zero
4314 * 02 1=txd->rxd internal loopback enable
4315 * 01 reserved, must be zero
4316 * 00 1=master IRQ enable
4318 wr_reg16(info
, SCR
, BIT15
+ BIT14
+ BIT0
);
4320 if (info
->params
.loopback
)
4321 enable_loopback(info
);
4325 * set transmit idle mode
4327 static void tx_set_idle(struct slgt_info
*info
)
4332 /* if preamble enabled (tcr[6] == 1) then tx idle size = 8 bits
4333 * else tcr[5:4] = tx idle size: 00 = 8 bits, 01 = 16 bits
4335 tcr
= rd_reg16(info
, TCR
);
4336 if (info
->idle_mode
& HDLC_TXIDLE_CUSTOM_16
) {
4337 /* disable preamble, set idle size to 16 bits */
4338 tcr
= (tcr
& ~(BIT6
+ BIT5
)) | BIT4
;
4339 /* MSB of 16 bit idle specified in tx preamble register (TPR) */
4340 wr_reg8(info
, TPR
, (unsigned char)((info
->idle_mode
>> 8) & 0xff));
4341 } else if (!(tcr
& BIT6
)) {
4342 /* preamble is disabled, set idle size to 8 bits */
4343 tcr
&= ~(BIT5
+ BIT4
);
4345 wr_reg16(info
, TCR
, tcr
);
4347 if (info
->idle_mode
& (HDLC_TXIDLE_CUSTOM_8
| HDLC_TXIDLE_CUSTOM_16
)) {
4348 /* LSB of custom tx idle specified in tx idle register */
4349 val
= (unsigned char)(info
->idle_mode
& 0xff);
4351 /* standard 8 bit idle patterns */
4352 switch(info
->idle_mode
)
4354 case HDLC_TXIDLE_FLAGS
: val
= 0x7e; break;
4355 case HDLC_TXIDLE_ALT_ZEROS_ONES
:
4356 case HDLC_TXIDLE_ALT_MARK_SPACE
: val
= 0xaa; break;
4357 case HDLC_TXIDLE_ZEROS
:
4358 case HDLC_TXIDLE_SPACE
: val
= 0x00; break;
4359 default: val
= 0xff;
4363 wr_reg8(info
, TIR
, val
);
4367 * get state of V24 status (input) signals
4369 static void get_signals(struct slgt_info
*info
)
4371 unsigned short status
= rd_reg16(info
, SSR
);
4373 /* clear all serial signals except DTR and RTS */
4374 info
->signals
&= SerialSignal_DTR
+ SerialSignal_RTS
;
4377 info
->signals
|= SerialSignal_DSR
;
4379 info
->signals
|= SerialSignal_CTS
;
4381 info
->signals
|= SerialSignal_DCD
;
4383 info
->signals
|= SerialSignal_RI
;
4387 * set V.24 Control Register based on current configuration
4389 static void msc_set_vcr(struct slgt_info
*info
)
4391 unsigned char val
= 0;
4393 /* VCR (V.24 control)
4395 * 07..04 serial IF select
4402 switch(info
->if_mode
& MGSL_INTERFACE_MASK
)
4404 case MGSL_INTERFACE_RS232
:
4405 val
|= BIT5
; /* 0010 */
4407 case MGSL_INTERFACE_V35
:
4408 val
|= BIT7
+ BIT6
+ BIT5
; /* 1110 */
4410 case MGSL_INTERFACE_RS422
:
4411 val
|= BIT6
; /* 0100 */
4415 if (info
->if_mode
& MGSL_INTERFACE_MSB_FIRST
)
4417 if (info
->signals
& SerialSignal_DTR
)
4419 if (info
->signals
& SerialSignal_RTS
)
4421 if (info
->if_mode
& MGSL_INTERFACE_LL
)
4423 if (info
->if_mode
& MGSL_INTERFACE_RL
)
4425 wr_reg8(info
, VCR
, val
);
4429 * set state of V24 control (output) signals
4431 static void set_signals(struct slgt_info
*info
)
4433 unsigned char val
= rd_reg8(info
, VCR
);
4434 if (info
->signals
& SerialSignal_DTR
)
4438 if (info
->signals
& SerialSignal_RTS
)
4442 wr_reg8(info
, VCR
, val
);
4446 * free range of receive DMA buffers (i to last)
4448 static void free_rbufs(struct slgt_info
*info
, unsigned int i
, unsigned int last
)
4453 /* reset current buffer for reuse */
4454 info
->rbufs
[i
].status
= 0;
4455 set_desc_count(info
->rbufs
[i
], info
->rbuf_fill_level
);
4458 if (++i
== info
->rbuf_count
)
4461 info
->rbuf_current
= i
;
4465 * mark all receive DMA buffers as free
4467 static void reset_rbufs(struct slgt_info
*info
)
4469 free_rbufs(info
, 0, info
->rbuf_count
- 1);
4473 * pass receive HDLC frame to upper layer
4475 * return true if frame available, otherwise false
4477 static bool rx_get_frame(struct slgt_info
*info
)
4479 unsigned int start
, end
;
4480 unsigned short status
;
4481 unsigned int framesize
= 0;
4482 unsigned long flags
;
4483 struct tty_struct
*tty
= info
->port
.tty
;
4484 unsigned char addr_field
= 0xff;
4485 unsigned int crc_size
= 0;
4487 switch (info
->params
.crc_type
& HDLC_CRC_MASK
) {
4488 case HDLC_CRC_16_CCITT
: crc_size
= 2; break;
4489 case HDLC_CRC_32_CCITT
: crc_size
= 4; break;
4496 start
= end
= info
->rbuf_current
;
4499 if (!desc_complete(info
->rbufs
[end
]))
4502 if (framesize
== 0 && info
->params
.addr_filter
!= 0xff)
4503 addr_field
= info
->rbufs
[end
].buf
[0];
4505 framesize
+= desc_count(info
->rbufs
[end
]);
4507 if (desc_eof(info
->rbufs
[end
]))
4510 if (++end
== info
->rbuf_count
)
4513 if (end
== info
->rbuf_current
) {
4514 if (info
->rx_enabled
){
4515 spin_lock_irqsave(&info
->lock
,flags
);
4517 spin_unlock_irqrestore(&info
->lock
,flags
);
4525 * 15 buffer complete
4528 * 02 eof (end of frame)
4532 status
= desc_status(info
->rbufs
[end
]);
4534 /* ignore CRC bit if not using CRC (bit is undefined) */
4535 if ((info
->params
.crc_type
& HDLC_CRC_MASK
) == HDLC_CRC_NONE
)
4538 if (framesize
== 0 ||
4539 (addr_field
!= 0xff && addr_field
!= info
->params
.addr_filter
)) {
4540 free_rbufs(info
, start
, end
);
4544 if (framesize
< (2 + crc_size
) || status
& BIT0
) {
4545 info
->icount
.rxshort
++;
4547 } else if (status
& BIT1
) {
4548 info
->icount
.rxcrc
++;
4549 if (!(info
->params
.crc_type
& HDLC_CRC_RETURN_EX
))
4553 #if SYNCLINK_GENERIC_HDLC
4554 if (framesize
== 0) {
4555 info
->netdev
->stats
.rx_errors
++;
4556 info
->netdev
->stats
.rx_frame_errors
++;
4560 DBGBH(("%s rx frame status=%04X size=%d\n",
4561 info
->device_name
, status
, framesize
));
4562 DBGDATA(info
, info
->rbufs
[start
].buf
, min_t(int, framesize
, info
->rbuf_fill_level
), "rx");
4565 if (!(info
->params
.crc_type
& HDLC_CRC_RETURN_EX
)) {
4566 framesize
-= crc_size
;
4570 if (framesize
> info
->max_frame_size
+ crc_size
)
4571 info
->icount
.rxlong
++;
4573 /* copy dma buffer(s) to contiguous temp buffer */
4574 int copy_count
= framesize
;
4576 unsigned char *p
= info
->tmp_rbuf
;
4577 info
->tmp_rbuf_count
= framesize
;
4579 info
->icount
.rxok
++;
4582 int partial_count
= min_t(int, copy_count
, info
->rbuf_fill_level
);
4583 memcpy(p
, info
->rbufs
[i
].buf
, partial_count
);
4585 copy_count
-= partial_count
;
4586 if (++i
== info
->rbuf_count
)
4590 if (info
->params
.crc_type
& HDLC_CRC_RETURN_EX
) {
4591 *p
= (status
& BIT1
) ? RX_CRC_ERROR
: RX_OK
;
4595 #if SYNCLINK_GENERIC_HDLC
4597 hdlcdev_rx(info
,info
->tmp_rbuf
, framesize
);
4600 ldisc_receive_buf(tty
, info
->tmp_rbuf
, info
->flag_buf
, framesize
);
4603 free_rbufs(info
, start
, end
);
4611 * pass receive buffer (RAW synchronous mode) to tty layer
4612 * return true if buffer available, otherwise false
4614 static bool rx_get_buf(struct slgt_info
*info
)
4616 unsigned int i
= info
->rbuf_current
;
4619 if (!desc_complete(info
->rbufs
[i
]))
4621 count
= desc_count(info
->rbufs
[i
]);
4622 switch(info
->params
.mode
) {
4623 case MGSL_MODE_MONOSYNC
:
4624 case MGSL_MODE_BISYNC
:
4625 /* ignore residue in byte synchronous modes */
4626 if (desc_residue(info
->rbufs
[i
]))
4630 DBGDATA(info
, info
->rbufs
[i
].buf
, count
, "rx");
4631 DBGINFO(("rx_get_buf size=%d\n", count
));
4633 ldisc_receive_buf(info
->port
.tty
, info
->rbufs
[i
].buf
,
4634 info
->flag_buf
, count
);
4635 free_rbufs(info
, i
, i
);
4639 static void reset_tbufs(struct slgt_info
*info
)
4642 info
->tbuf_current
= 0;
4643 for (i
=0 ; i
< info
->tbuf_count
; i
++) {
4644 info
->tbufs
[i
].status
= 0;
4645 info
->tbufs
[i
].count
= 0;
4650 * return number of free transmit DMA buffers
4652 static unsigned int free_tbuf_count(struct slgt_info
*info
)
4654 unsigned int count
= 0;
4655 unsigned int i
= info
->tbuf_current
;
4659 if (desc_count(info
->tbufs
[i
]))
4660 break; /* buffer in use */
4662 if (++i
== info
->tbuf_count
)
4664 } while (i
!= info
->tbuf_current
);
4666 /* if tx DMA active, last zero count buffer is in use */
4667 if (count
&& (rd_reg32(info
, TDCSR
) & BIT0
))
4674 * return number of bytes in unsent transmit DMA buffers
4675 * and the serial controller tx FIFO
4677 static unsigned int tbuf_bytes(struct slgt_info
*info
)
4679 unsigned int total_count
= 0;
4680 unsigned int i
= info
->tbuf_current
;
4681 unsigned int reg_value
;
4683 unsigned int active_buf_count
= 0;
4686 * Add descriptor counts for all tx DMA buffers.
4687 * If count is zero (cleared by DMA controller after read),
4688 * the buffer is complete or is actively being read from.
4690 * Record buf_count of last buffer with zero count starting
4691 * from current ring position. buf_count is mirror
4692 * copy of count and is not cleared by serial controller.
4693 * If DMA controller is active, that buffer is actively
4694 * being read so add to total.
4697 count
= desc_count(info
->tbufs
[i
]);
4699 total_count
+= count
;
4700 else if (!total_count
)
4701 active_buf_count
= info
->tbufs
[i
].buf_count
;
4702 if (++i
== info
->tbuf_count
)
4704 } while (i
!= info
->tbuf_current
);
4706 /* read tx DMA status register */
4707 reg_value
= rd_reg32(info
, TDCSR
);
4709 /* if tx DMA active, last zero count buffer is in use */
4710 if (reg_value
& BIT0
)
4711 total_count
+= active_buf_count
;
4713 /* add tx FIFO count = reg_value[15..8] */
4714 total_count
+= (reg_value
>> 8) & 0xff;
4716 /* if transmitter active add one byte for shift register */
4717 if (info
->tx_active
)
4724 * load transmit DMA buffer(s) with data
4726 static void tx_load(struct slgt_info
*info
, const char *buf
, unsigned int size
)
4728 unsigned short count
;
4730 struct slgt_desc
*d
;
4735 DBGDATA(info
, buf
, size
, "tx");
4737 info
->tbuf_start
= i
= info
->tbuf_current
;
4740 d
= &info
->tbufs
[i
];
4741 if (++i
== info
->tbuf_count
)
4744 count
= (unsigned short)((size
> DMABUFSIZE
) ? DMABUFSIZE
: size
);
4745 memcpy(d
->buf
, buf
, count
);
4751 * set EOF bit for last buffer of HDLC frame or
4752 * for every buffer in raw mode
4754 if ((!size
&& info
->params
.mode
== MGSL_MODE_HDLC
) ||
4755 info
->params
.mode
== MGSL_MODE_RAW
)
4756 set_desc_eof(*d
, 1);
4758 set_desc_eof(*d
, 0);
4760 set_desc_count(*d
, count
);
4761 d
->buf_count
= count
;
4764 info
->tbuf_current
= i
;
4767 static int register_test(struct slgt_info
*info
)
4769 static unsigned short patterns
[] =
4770 {0x0000, 0xffff, 0xaaaa, 0x5555, 0x6969, 0x9696};
4771 static unsigned int count
= sizeof(patterns
)/sizeof(patterns
[0]);
4775 for (i
=0 ; i
< count
; i
++) {
4776 wr_reg16(info
, TIR
, patterns
[i
]);
4777 wr_reg16(info
, BDR
, patterns
[(i
+1)%count
]);
4778 if ((rd_reg16(info
, TIR
) != patterns
[i
]) ||
4779 (rd_reg16(info
, BDR
) != patterns
[(i
+1)%count
])) {
4784 info
->gpio_present
= (rd_reg32(info
, JCR
) & BIT5
) ? 1 : 0;
4785 info
->init_error
= rc
? 0 : DiagStatus_AddressFailure
;
4789 static int irq_test(struct slgt_info
*info
)
4791 unsigned long timeout
;
4792 unsigned long flags
;
4793 struct tty_struct
*oldtty
= info
->port
.tty
;
4794 u32 speed
= info
->params
.data_rate
;
4796 info
->params
.data_rate
= 921600;
4797 info
->port
.tty
= NULL
;
4799 spin_lock_irqsave(&info
->lock
, flags
);
4801 slgt_irq_on(info
, IRQ_TXIDLE
);
4803 /* enable transmitter */
4805 (unsigned short)(rd_reg16(info
, TCR
) | BIT1
));
4807 /* write one byte and wait for tx idle */
4808 wr_reg16(info
, TDR
, 0);
4810 /* assume failure */
4811 info
->init_error
= DiagStatus_IrqFailure
;
4812 info
->irq_occurred
= false;
4814 spin_unlock_irqrestore(&info
->lock
, flags
);
4817 while(timeout
-- && !info
->irq_occurred
)
4818 msleep_interruptible(10);
4820 spin_lock_irqsave(&info
->lock
,flags
);
4822 spin_unlock_irqrestore(&info
->lock
,flags
);
4824 info
->params
.data_rate
= speed
;
4825 info
->port
.tty
= oldtty
;
4827 info
->init_error
= info
->irq_occurred
? 0 : DiagStatus_IrqFailure
;
4828 return info
->irq_occurred
? 0 : -ENODEV
;
4831 static int loopback_test_rx(struct slgt_info
*info
)
4833 unsigned char *src
, *dest
;
4836 if (desc_complete(info
->rbufs
[0])) {
4837 count
= desc_count(info
->rbufs
[0]);
4838 src
= info
->rbufs
[0].buf
;
4839 dest
= info
->tmp_rbuf
;
4841 for( ; count
; count
-=2, src
+=2) {
4842 /* src=data byte (src+1)=status byte */
4843 if (!(*(src
+1) & (BIT9
+ BIT8
))) {
4846 info
->tmp_rbuf_count
++;
4849 DBGDATA(info
, info
->tmp_rbuf
, info
->tmp_rbuf_count
, "rx");
4855 static int loopback_test(struct slgt_info
*info
)
4857 #define TESTFRAMESIZE 20
4859 unsigned long timeout
;
4860 u16 count
= TESTFRAMESIZE
;
4861 unsigned char buf
[TESTFRAMESIZE
];
4863 unsigned long flags
;
4865 struct tty_struct
*oldtty
= info
->port
.tty
;
4868 memcpy(¶ms
, &info
->params
, sizeof(params
));
4870 info
->params
.mode
= MGSL_MODE_ASYNC
;
4871 info
->params
.data_rate
= 921600;
4872 info
->params
.loopback
= 1;
4873 info
->port
.tty
= NULL
;
4875 /* build and send transmit frame */
4876 for (count
= 0; count
< TESTFRAMESIZE
; ++count
)
4877 buf
[count
] = (unsigned char)count
;
4879 info
->tmp_rbuf_count
= 0;
4880 memset(info
->tmp_rbuf
, 0, TESTFRAMESIZE
);
4882 /* program hardware for HDLC and enabled receiver */
4883 spin_lock_irqsave(&info
->lock
,flags
);
4886 info
->tx_count
= count
;
4887 tx_load(info
, buf
, count
);
4889 spin_unlock_irqrestore(&info
->lock
, flags
);
4891 /* wait for receive complete */
4892 for (timeout
= 100; timeout
; --timeout
) {
4893 msleep_interruptible(10);
4894 if (loopback_test_rx(info
)) {
4900 /* verify received frame length and contents */
4901 if (!rc
&& (info
->tmp_rbuf_count
!= count
||
4902 memcmp(buf
, info
->tmp_rbuf
, count
))) {
4906 spin_lock_irqsave(&info
->lock
,flags
);
4907 reset_adapter(info
);
4908 spin_unlock_irqrestore(&info
->lock
,flags
);
4910 memcpy(&info
->params
, ¶ms
, sizeof(info
->params
));
4911 info
->port
.tty
= oldtty
;
4913 info
->init_error
= rc
? DiagStatus_DmaFailure
: 0;
4917 static int adapter_test(struct slgt_info
*info
)
4919 DBGINFO(("testing %s\n", info
->device_name
));
4920 if (register_test(info
) < 0) {
4921 printk("register test failure %s addr=%08X\n",
4922 info
->device_name
, info
->phys_reg_addr
);
4923 } else if (irq_test(info
) < 0) {
4924 printk("IRQ test failure %s IRQ=%d\n",
4925 info
->device_name
, info
->irq_level
);
4926 } else if (loopback_test(info
) < 0) {
4927 printk("loopback test failure %s\n", info
->device_name
);
4929 return info
->init_error
;
4933 * transmit timeout handler
4935 static void tx_timeout(unsigned long context
)
4937 struct slgt_info
*info
= (struct slgt_info
*)context
;
4938 unsigned long flags
;
4940 DBGINFO(("%s tx_timeout\n", info
->device_name
));
4941 if(info
->tx_active
&& info
->params
.mode
== MGSL_MODE_HDLC
) {
4942 info
->icount
.txtimeout
++;
4944 spin_lock_irqsave(&info
->lock
,flags
);
4945 info
->tx_active
= false;
4947 spin_unlock_irqrestore(&info
->lock
,flags
);
4949 #if SYNCLINK_GENERIC_HDLC
4951 hdlcdev_tx_done(info
);
4958 * receive buffer polling timer
4960 static void rx_timeout(unsigned long context
)
4962 struct slgt_info
*info
= (struct slgt_info
*)context
;
4963 unsigned long flags
;
4965 DBGINFO(("%s rx_timeout\n", info
->device_name
));
4966 spin_lock_irqsave(&info
->lock
, flags
);
4967 info
->pending_bh
|= BH_RECEIVE
;
4968 spin_unlock_irqrestore(&info
->lock
, flags
);
4969 bh_handler(&info
->task
);