synclink_cs.c 109.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * linux/drivers/char/pcmcia/synclink_cs.c
 *
4
 * $Id: synclink_cs.c,v 4.34 2005/09/08 13:20:54 paulkf Exp $
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
 *
 * Device driver for Microgate SyncLink PC Card
 * multiprotocol serial adapter.
 *
 * written by Paul Fulghum for Microgate Corporation
 * paulkf@microgate.com
 *
 * Microgate and SyncLink are trademarks of Microgate Corporation
 *
 * This code is released under the GNU General Public License (GPL)
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#define VERSION(ver,rel,seq) (((ver)<<16) | ((rel)<<8) | (seq))
#if defined(__i386__)
#  define BREAKPOINT() asm("   int $3");
#else
#  define BREAKPOINT() { }
#endif

#define MAX_DEVICE_COUNT 4

#include <linux/module.h>
#include <linux/errno.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/timer.h>
#include <linux/time.h>
#include <linux/interrupt.h>
#include <linux/tty.h>
#include <linux/tty_flip.h>
#include <linux/serial.h>
#include <linux/major.h>
#include <linux/string.h>
#include <linux/fcntl.h>
#include <linux/ptrace.h>
#include <linux/ioport.h>
#include <linux/mm.h>
54
#include <linux/seq_file.h>
L
Linus Torvalds 已提交
55 56 57 58 59 60
#include <linux/slab.h>
#include <linux/netdevice.h>
#include <linux/vmalloc.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/ioctl.h>
61
#include <linux/synclink.h>
L
Linus Torvalds 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75

#include <asm/io.h>
#include <asm/irq.h>
#include <asm/dma.h>
#include <linux/bitops.h>
#include <asm/types.h>
#include <linux/termios.h>
#include <linux/workqueue.h>
#include <linux/hdlc.h>

#include <pcmcia/cistpl.h>
#include <pcmcia/cisreg.h>
#include <pcmcia/ds.h>

76 77 78 79
#if defined(CONFIG_HDLC) || (defined(CONFIG_HDLC_MODULE) && defined(CONFIG_SYNCLINK_CS_MODULE))
#define SYNCLINK_GENERIC_HDLC 1
#else
#define SYNCLINK_GENERIC_HDLC 0
L
Linus Torvalds 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
#endif

#define GET_USER(error,value,addr) error = get_user(value,addr)
#define COPY_FROM_USER(error,dest,src,size) error = copy_from_user(dest,src,size) ? -EFAULT : 0
#define PUT_USER(error,value,addr) error = put_user(value,addr)
#define COPY_TO_USER(error,dest,src,size) error = copy_to_user(dest,src,size) ? -EFAULT : 0

#include <asm/uaccess.h>

static MGSL_PARAMS default_params = {
	MGSL_MODE_HDLC,			/* unsigned long mode */
	0,				/* unsigned char loopback; */
	HDLC_FLAG_UNDERRUN_ABORT15,	/* unsigned short flags; */
	HDLC_ENCODING_NRZI_SPACE,	/* unsigned char encoding; */
	0,				/* unsigned long clock_speed; */
	0xff,				/* unsigned char addr_filter; */
	HDLC_CRC_16_CCITT,		/* unsigned short crc_type; */
	HDLC_PREAMBLE_LENGTH_8BITS,	/* unsigned char preamble_length; */
	HDLC_PREAMBLE_PATTERN_NONE,	/* unsigned char preamble; */
	9600,				/* unsigned long data_rate; */
	8,				/* unsigned char data_bits; */
	1,				/* unsigned char stop_bits; */
	ASYNC_PARITY_NONE		/* unsigned char parity; */
};

typedef struct
{
	int count;
	unsigned char status;
	char data[1];
} RXBUF;

/* The queue of BH actions to be performed */

#define BH_RECEIVE  1
#define BH_TRANSMIT 2
#define BH_STATUS   4

#define IO_PIN_SHUTDOWN_LIMIT 100

#define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))

struct _input_signal_events {
123
	int	ri_up;
L
Linus Torvalds 已提交
124 125 126 127 128 129 130 131 132 133 134 135 136
	int	ri_down;
	int	dsr_up;
	int	dsr_down;
	int	dcd_up;
	int	dcd_down;
	int	cts_up;
	int	cts_down;
};


/*
 * Device instance data structure
 */
137

L
Linus Torvalds 已提交
138
typedef struct _mgslpc_info {
A
Alan Cox 已提交
139
	struct tty_port		port;
L
Linus Torvalds 已提交
140 141 142
	void *if_ptr;	/* General purpose pointer (used by SPPP) */
	int			magic;
	int			line;
143

L
Linus Torvalds 已提交
144
	struct mgsl_icount	icount;
145

L
Linus Torvalds 已提交
146 147 148
	int			timeout;
	int			x_char;		/* xon/xoff character */
	unsigned char		read_status_mask;
149
	unsigned char		ignore_status_mask;
L
Linus Torvalds 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164

	unsigned char *tx_buf;
	int            tx_put;
	int            tx_get;
	int            tx_count;

	/* circular list of fixed length rx buffers */

	unsigned char  *rx_buf;        /* memory allocated for all rx buffers */
	int            rx_buf_total_size; /* size of memory allocated for rx buffers */
	int            rx_put;         /* index of next empty rx buffer */
	int            rx_get;         /* index of next full rx buffer */
	int            rx_buf_size;    /* size in bytes of single rx buffer */
	int            rx_buf_count;   /* total number of rx buffers */
	int            rx_frame_count; /* number of full rx buffers */
165

L
Linus Torvalds 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
	wait_queue_head_t	status_event_wait_q;
	wait_queue_head_t	event_wait_q;
	struct timer_list	tx_timer;	/* HDLC transmit timeout timer */
	struct _mgslpc_info	*next_device;	/* device list link */

	unsigned short imra_value;
	unsigned short imrb_value;
	unsigned char  pim_value;

	spinlock_t lock;
	struct work_struct task;		/* task structure for scheduling bh */

	u32 max_frame_size;

	u32 pending_bh;

J
Joe Perches 已提交
182 183
	bool bh_running;
	bool bh_requested;
184

L
Linus Torvalds 已提交
185 186 187 188 189
	int dcd_chkcount; /* check counts to prevent */
	int cts_chkcount; /* too many IRQs if a signal */
	int dsr_chkcount; /* is floating */
	int ri_chkcount;

J
Joe Perches 已提交
190 191
	bool rx_enabled;
	bool rx_overflow;
L
Linus Torvalds 已提交
192

J
Joe Perches 已提交
193 194 195
	bool tx_enabled;
	bool tx_active;
	bool tx_aborting;
L
Linus Torvalds 已提交
196 197 198 199 200 201 202 203
	u32 idle_mode;

	int if_mode; /* serial interface selection (RS-232, v.35 etc) */

	char device_name[25];		/* device instance name */

	unsigned int io_base;	/* base I/O address of adapter */
	unsigned int irq_level;
204

L
Linus Torvalds 已提交
205 206 207 208
	MGSL_PARAMS params;		/* communications parameters */

	unsigned char serial_signals;	/* current serial signal states */

J
Joe Perches 已提交
209
	bool irq_occurred;		/* for diagnostics use */
L
Linus Torvalds 已提交
210 211 212
	char testing_irq;
	unsigned int init_error;	/* startup error (DIAGS)	*/

213
	char *flag_buf;
J
Joe Perches 已提交
214
	bool drop_rts_on_tx_done;
L
Linus Torvalds 已提交
215 216 217 218

	struct	_input_signal_events	input_signal_events;

	/* PCMCIA support */
219
	struct pcmcia_device	*p_dev;
L
Linus Torvalds 已提交
220 221 222 223 224 225
	int		      stop;

	/* SPPP/Cisco HDLC device parts */
	int netcount;
	spinlock_t netlock;

226
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
227 228 229 230 231 232 233 234 235 236 237 238
	struct net_device *netdev;
#endif

} MGSLPC_INFO;

#define MGSLPC_MAGIC 0x5402

/*
 * The size of the serial xmit buffer is 1 page, or 4096 bytes
 */
#define TXBUFSIZE 4096

239

L
Linus Torvalds 已提交
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
#define CHA     0x00   /* channel A offset */
#define CHB     0x40   /* channel B offset */

/*
 *  FIXME: PPC has PVR defined in asm/reg.h.  For now we just undef it.
 */
#undef PVR

#define RXFIFO  0
#define TXFIFO  0
#define STAR    0x20
#define CMDR    0x20
#define RSTA    0x21
#define PRE     0x21
#define MODE    0x22
#define TIMR    0x23
#define XAD1    0x24
#define XAD2    0x25
#define RAH1    0x26
#define RAH2    0x27
#define DAFO    0x27
#define RAL1    0x28
#define RFC     0x28
#define RHCR    0x29
#define RAL2    0x29
#define RBCL    0x2a
#define XBCL    0x2a
#define RBCH    0x2b
#define XBCH    0x2b
#define CCR0    0x2c
#define CCR1    0x2d
#define CCR2    0x2e
#define CCR3    0x2f
#define VSTR    0x34
#define BGR     0x34
#define RLCR    0x35
#define AML     0x36
#define AMH     0x37
#define GIS     0x38
#define IVA     0x38
#define IPC     0x39
#define ISR     0x3a
#define IMR     0x3a
#define PVR     0x3c
#define PIS     0x3d
#define PIM     0x3d
#define PCR     0x3e
#define CCR4    0x3f
288

L
Linus Torvalds 已提交
289
// IMR/ISR
290

L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304
#define IRQ_BREAK_ON    BIT15   // rx break detected
#define IRQ_DATAOVERRUN BIT14	// receive data overflow
#define IRQ_ALLSENT     BIT13	// all sent
#define IRQ_UNDERRUN    BIT12	// transmit data underrun
#define IRQ_TIMER       BIT11	// timer interrupt
#define IRQ_CTS         BIT10	// CTS status change
#define IRQ_TXREPEAT    BIT9	// tx message repeat
#define IRQ_TXFIFO      BIT8	// transmit pool ready
#define IRQ_RXEOM       BIT7	// receive message end
#define IRQ_EXITHUNT    BIT6	// receive frame start
#define IRQ_RXTIME      BIT6    // rx char timeout
#define IRQ_DCD         BIT2	// carrier detect status change
#define IRQ_OVERRUN     BIT1	// receive frame overflow
#define IRQ_RXFIFO      BIT0	// receive pool full
305

L
Linus Torvalds 已提交
306
// STAR
307

L
Linus Torvalds 已提交
308 309 310
#define XFW   BIT6		// transmit FIFO write enable
#define CEC   BIT2		// command executing
#define CTS   BIT1		// CTS state
311

L
Linus Torvalds 已提交
312 313 314 315 316 317 318
#define PVR_DTR      BIT0
#define PVR_DSR      BIT1
#define PVR_RI       BIT2
#define PVR_AUTOCTS  BIT3
#define PVR_RS232    0x20   /* 0010b */
#define PVR_V35      0xe0   /* 1110b */
#define PVR_RS422    0x40   /* 0100b */
319 320 321

/* Register access functions */

L
Linus Torvalds 已提交
322 323 324
#define write_reg(info, reg, val) outb((val),(info)->io_base + (reg))
#define read_reg(info, reg) inb((info)->io_base + (reg))

325
#define read_reg16(info, reg) inw((info)->io_base + (reg))
L
Linus Torvalds 已提交
326
#define write_reg16(info, reg, val) outw((val), (info)->io_base + (reg))
327

L
Linus Torvalds 已提交
328 329
#define set_reg_bits(info, reg, mask) \
    write_reg(info, (reg), \
330
		 (unsigned char) (read_reg(info, (reg)) | (mask)))
L
Linus Torvalds 已提交
331 332
#define clear_reg_bits(info, reg, mask) \
    write_reg(info, (reg), \
333
		 (unsigned char) (read_reg(info, (reg)) & ~(mask)))
L
Linus Torvalds 已提交
334 335
/*
 * interrupt enable/disable routines
336 337
 */
static void irq_disable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
L
Linus Torvalds 已提交
338 339 340 341 342 343 344 345 346
{
	if (channel == CHA) {
		info->imra_value |= mask;
		write_reg16(info, CHA + IMR, info->imra_value);
	} else {
		info->imrb_value |= mask;
		write_reg16(info, CHB + IMR, info->imrb_value);
	}
}
347
static void irq_enable(MGSLPC_INFO *info, unsigned char channel, unsigned short mask)
L
Linus Torvalds 已提交
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
{
	if (channel == CHA) {
		info->imra_value &= ~mask;
		write_reg16(info, CHA + IMR, info->imra_value);
	} else {
		info->imrb_value &= ~mask;
		write_reg16(info, CHB + IMR, info->imrb_value);
	}
}

#define port_irq_disable(info, mask) \
  { info->pim_value |= (mask); write_reg(info, PIM, info->pim_value); }

#define port_irq_enable(info, mask) \
  { info->pim_value &= ~(mask); write_reg(info, PIM, info->pim_value); }

static void rx_start(MGSLPC_INFO *info);
static void rx_stop(MGSLPC_INFO *info);

A
Alan Cox 已提交
367
static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty);
L
Linus Torvalds 已提交
368 369 370 371 372 373 374 375 376 377 378 379 380
static void tx_stop(MGSLPC_INFO *info);
static void tx_set_idle(MGSLPC_INFO *info);

static void get_signals(MGSLPC_INFO *info);
static void set_signals(MGSLPC_INFO *info);

static void reset_device(MGSLPC_INFO *info);

static void hdlc_mode(MGSLPC_INFO *info);
static void async_mode(MGSLPC_INFO *info);

static void tx_timeout(unsigned long context);

A
Alan Cox 已提交
381
static int carrier_raised(struct tty_port *port);
382
static void dtr_rts(struct tty_port *port, int onoff);
L
Linus Torvalds 已提交
383

384
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
385 386 387 388 389 390 391 392 393
#define dev_to_port(D) (dev_to_hdlc(D)->priv)
static void hdlcdev_tx_done(MGSLPC_INFO *info);
static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size);
static int  hdlcdev_init(MGSLPC_INFO *info);
static void hdlcdev_exit(MGSLPC_INFO *info);
#endif

static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit);

J
Joe Perches 已提交
394 395
static bool register_test(MGSLPC_INFO *info);
static bool irq_test(MGSLPC_INFO *info);
L
Linus Torvalds 已提交
396 397 398 399 400 401 402
static int adapter_test(MGSLPC_INFO *info);

static int claim_resources(MGSLPC_INFO *info);
static void release_resources(MGSLPC_INFO *info);
static void mgslpc_add_device(MGSLPC_INFO *info);
static void mgslpc_remove_device(MGSLPC_INFO *info);

A
Alan Cox 已提交
403
static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty);
L
Linus Torvalds 已提交
404 405 406 407
static void rx_reset_buffers(MGSLPC_INFO *info);
static int  rx_alloc_buffers(MGSLPC_INFO *info);
static void rx_free_buffers(MGSLPC_INFO *info);

408
static irqreturn_t mgslpc_isr(int irq, void *dev_id);
L
Linus Torvalds 已提交
409 410 411 412

/*
 * Bottom half interrupt handlers
 */
D
David Howells 已提交
413
static void bh_handler(struct work_struct *work);
A
Alan Cox 已提交
414
static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty);
L
Linus Torvalds 已提交
415 416 417 418 419
static void bh_status(MGSLPC_INFO *info);

/*
 * ioctl handlers
 */
420
static int tiocmget(struct tty_struct *tty);
421 422
static int tiocmset(struct tty_struct *tty,
					unsigned int set, unsigned int clear);
L
Linus Torvalds 已提交
423 424
static int get_stats(MGSLPC_INFO *info, struct mgsl_icount __user *user_icount);
static int get_params(MGSLPC_INFO *info, MGSL_PARAMS __user *user_params);
A
Alan Cox 已提交
425
static int set_params(MGSLPC_INFO *info, MGSL_PARAMS __user *new_params, struct tty_struct *tty);
L
Linus Torvalds 已提交
426 427
static int get_txidle(MGSLPC_INFO *info, int __user *idle_mode);
static int set_txidle(MGSLPC_INFO *info, int idle_mode);
A
Alan Cox 已提交
428
static int set_txenable(MGSLPC_INFO *info, int enable, struct tty_struct *tty);
L
Linus Torvalds 已提交
429 430 431 432 433 434 435 436 437 438 439 440
static int tx_abort(MGSLPC_INFO *info);
static int set_rxenable(MGSLPC_INFO *info, int enable);
static int wait_events(MGSLPC_INFO *info, int __user *mask);

static MGSLPC_INFO *mgslpc_device_list = NULL;
static int mgslpc_device_count = 0;

/*
 * Set this param to non-zero to load eax with the
 * .text section address and breakpoint on module load.
 * This is useful for use with gdb and add-symbol-file command.
 */
441
static bool break_on_load=0;
L
Linus Torvalds 已提交
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459

/*
 * Driver major number, defaults to zero to get auto
 * assigned major number. May be forced as module parameter.
 */
static int ttymajor=0;

static int debug_level = 0;
static int maxframe[MAX_DEVICE_COUNT] = {0,};

module_param(break_on_load, bool, 0);
module_param(ttymajor, int, 0);
module_param(debug_level, int, 0);
module_param_array(maxframe, int, NULL, 0);

MODULE_LICENSE("GPL");

static char *driver_name = "SyncLink PC Card driver";
460
static char *driver_version = "$Revision: 4.34 $";
L
Linus Torvalds 已提交
461 462 463 464 465 466

static struct tty_driver *serial_driver;

/* number of characters left in xmit buffer before we ask for more */
#define WAKEUP_CHARS 256

A
Alan Cox 已提交
467
static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty);
L
Linus Torvalds 已提交
468 469 470 471
static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout);

/* PCMCIA prototypes */

472
static int mgslpc_config(struct pcmcia_device *link);
L
Linus Torvalds 已提交
473
static void mgslpc_release(u_long arg);
474
static void mgslpc_detach(struct pcmcia_device *p_dev);
L
Linus Torvalds 已提交
475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503

/*
 * 1st function defined in .text section. Calling this function in
 * init_module() followed by a breakpoint allows a remote debugger
 * (gdb) to get the .text address for the add-symbol-file command.
 * This allows remote debugging of dynamically loadable modules.
 */
static void* mgslpc_get_text_ptr(void)
{
	return mgslpc_get_text_ptr;
}

/**
 * line discipline callback wrappers
 *
 * The wrappers maintain line discipline references
 * while calling into the line discipline.
 *
 * ldisc_receive_buf  - pass receive data to line discipline
 */

static void ldisc_receive_buf(struct tty_struct *tty,
			      const __u8 *data, char *flags, int count)
{
	struct tty_ldisc *ld;
	if (!tty)
		return;
	ld = tty_ldisc_ref(tty);
	if (ld) {
A
Alan Cox 已提交
504 505
		if (ld->ops->receive_buf)
			ld->ops->receive_buf(tty, data, flags, count);
L
Linus Torvalds 已提交
506 507 508 509
		tty_ldisc_deref(ld);
	}
}

A
Alan Cox 已提交
510 511
static const struct tty_port_operations mgslpc_port_ops = {
	.carrier_raised = carrier_raised,
512
	.dtr_rts = dtr_rts
A
Alan Cox 已提交
513 514
};

515
static int mgslpc_probe(struct pcmcia_device *link)
L
Linus Torvalds 已提交
516 517
{
    MGSLPC_INFO *info;
518
    int ret;
519

L
Linus Torvalds 已提交
520 521
    if (debug_level >= DEBUG_LEVEL_INFO)
	    printk("mgslpc_attach\n");
522

523
    info = kzalloc(sizeof(MGSLPC_INFO), GFP_KERNEL);
L
Linus Torvalds 已提交
524 525
    if (!info) {
	    printk("Error can't allocate device instance data\n");
526
	    return -ENOMEM;
L
Linus Torvalds 已提交
527 528 529
    }

    info->magic = MGSLPC_MAGIC;
A
Alan Cox 已提交
530 531
    tty_port_init(&info->port);
    info->port.ops = &mgslpc_port_ops;
D
David Howells 已提交
532
    INIT_WORK(&info->task, bh_handler);
L
Linus Torvalds 已提交
533
    info->max_frame_size = 4096;
A
Alan Cox 已提交
534 535
    info->port.close_delay = 5*HZ/10;
    info->port.closing_wait = 30*HZ;
L
Linus Torvalds 已提交
536 537 538 539 540
    init_waitqueue_head(&info->status_event_wait_q);
    init_waitqueue_head(&info->event_wait_q);
    spin_lock_init(&info->lock);
    spin_lock_init(&info->netlock);
    memcpy(&info->params,&default_params,sizeof(MGSL_PARAMS));
541
    info->idle_mode = HDLC_TXIDLE_FLAGS;
L
Linus Torvalds 已提交
542 543 544 545
    info->imra_value = 0xffff;
    info->imrb_value = 0xffff;
    info->pim_value = 0xff;

546
    info->p_dev = link;
L
Linus Torvalds 已提交
547
    link->priv = info;
548

549
    /* Initialize the struct pcmcia_device structure */
L
Linus Torvalds 已提交
550

551
    ret = mgslpc_config(link);
552 553
    if (ret) {
	    tty_port_destroy(&info->port);
554
	    return ret;
555
    }
L
Linus Torvalds 已提交
556 557 558

    mgslpc_add_device(info);

559
    return 0;
L
Linus Torvalds 已提交
560 561 562 563 564
}

/* Card has been inserted.
 */

565
static int mgslpc_ioprobe(struct pcmcia_device *p_dev, void *priv_data)
566
{
567
	return pcmcia_request_io(p_dev);
568 569
}

570
static int mgslpc_config(struct pcmcia_device *link)
L
Linus Torvalds 已提交
571 572
{
    MGSLPC_INFO *info = link->priv;
573
    int ret;
574

L
Linus Torvalds 已提交
575 576 577
    if (debug_level >= DEBUG_LEVEL_INFO)
	    printk("mgslpc_config(0x%p)\n", link);

578 579
    link->config_flags |= CONF_ENABLE_IRQ | CONF_AUTO_SET_IO;

580 581 582
    ret = pcmcia_loop_config(link, mgslpc_ioprobe, NULL);
    if (ret != 0)
	    goto failed;
L
Linus Torvalds 已提交
583

584 585
    link->config_index = 8;
    link->config_regs = PRESENT_OPTION;
586

587
    ret = pcmcia_request_irq(link, mgslpc_isr);
588 589
    if (ret)
	    goto failed;
590
    ret = pcmcia_enable_device(link);
591 592
    if (ret)
	    goto failed;
L
Linus Torvalds 已提交
593

594
    info->io_base = link->resource[0]->start;
595
    info->irq_level = link->irq;
596
    return 0;
L
Linus Torvalds 已提交
597

598
failed:
L
Linus Torvalds 已提交
599
    mgslpc_release((u_long)link);
600
    return -ENODEV;
L
Linus Torvalds 已提交
601 602 603 604 605 606 607 608
}

/* Card has been removed.
 * Unregister device and release PCMCIA configuration.
 * If device is open, postpone until it is closed.
 */
static void mgslpc_release(u_long arg)
{
609
	struct pcmcia_device *link = (struct pcmcia_device *)arg;
L
Linus Torvalds 已提交
610

611 612
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("mgslpc_release(0x%p)\n", link);
L
Linus Torvalds 已提交
613

614
	pcmcia_disable_device(link);
L
Linus Torvalds 已提交
615 616
}

617
static void mgslpc_detach(struct pcmcia_device *link)
L
Linus Torvalds 已提交
618
{
619 620
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("mgslpc_detach(0x%p)\n", link);
621

622 623
	((MGSLPC_INFO *)link->priv)->stop = 1;
	mgslpc_release((u_long)link);
L
Linus Torvalds 已提交
624

625
	mgslpc_remove_device((MGSLPC_INFO *)link->priv);
L
Linus Torvalds 已提交
626 627
}

628
static int mgslpc_suspend(struct pcmcia_device *link)
629 630 631 632 633 634 635 636
{
	MGSLPC_INFO *info = link->priv;

	info->stop = 1;

	return 0;
}

637
static int mgslpc_resume(struct pcmcia_device *link)
638 639 640 641 642 643 644 645 646
{
	MGSLPC_INFO *info = link->priv;

	info->stop = 0;

	return 0;
}


J
Joe Perches 已提交
647
static inline bool mgslpc_paranoia_check(MGSLPC_INFO *info,
L
Linus Torvalds 已提交
648 649 650 651 652 653 654 655 656 657
					char *name, const char *routine)
{
#ifdef MGSLPC_PARANOIA_CHECK
	static const char *badmagic =
		"Warning: bad magic number for mgsl struct (%s) in %s\n";
	static const char *badinfo =
		"Warning: null mgslpc_info for (%s) in %s\n";

	if (!info) {
		printk(badinfo, name, routine);
J
Joe Perches 已提交
658
		return true;
L
Linus Torvalds 已提交
659 660 661
	}
	if (info->magic != MGSLPC_MAGIC) {
		printk(badmagic, name, routine);
J
Joe Perches 已提交
662
		return true;
L
Linus Torvalds 已提交
663 664 665
	}
#else
	if (!info)
J
Joe Perches 已提交
666
		return true;
L
Linus Torvalds 已提交
667
#endif
J
Joe Perches 已提交
668
	return false;
L
Linus Torvalds 已提交
669 670 671 672 673 674 675 676 677 678 679
}


#define CMD_RXFIFO      BIT7	// release current rx FIFO
#define CMD_RXRESET     BIT6	// receiver reset
#define CMD_RXFIFO_READ BIT5
#define CMD_START_TIMER BIT4
#define CMD_TXFIFO      BIT3	// release current tx FIFO
#define CMD_TXEOM       BIT1	// transmit end message
#define CMD_TXRESET     BIT0	// transmit reset

J
Joe Perches 已提交
680
static bool wait_command_complete(MGSLPC_INFO *info, unsigned char channel)
L
Linus Torvalds 已提交
681 682
{
	int i = 0;
683
	/* wait for command completion */
L
Linus Torvalds 已提交
684 685 686
	while (read_reg(info, (unsigned char)(channel+STAR)) & BIT2) {
		udelay(1);
		if (i++ == 1000)
J
Joe Perches 已提交
687
			return false;
L
Linus Torvalds 已提交
688
	}
J
Joe Perches 已提交
689
	return true;
L
Linus Torvalds 已提交
690 691
}

692
static void issue_command(MGSLPC_INFO *info, unsigned char channel, unsigned char cmd)
L
Linus Torvalds 已提交
693 694 695 696 697 698 699 700 701
{
	wait_command_complete(info, channel);
	write_reg(info, (unsigned char) (channel + CMDR), cmd);
}

static void tx_pause(struct tty_struct *tty)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
702

L
Linus Torvalds 已提交
703 704 705
	if (mgslpc_paranoia_check(info, tty->name, "tx_pause"))
		return;
	if (debug_level >= DEBUG_LEVEL_INFO)
706 707
		printk("tx_pause(%s)\n",info->device_name);

L
Linus Torvalds 已提交
708 709 710 711 712 713 714 715 716 717
	spin_lock_irqsave(&info->lock,flags);
	if (info->tx_enabled)
	 	tx_stop(info);
	spin_unlock_irqrestore(&info->lock,flags);
}

static void tx_release(struct tty_struct *tty)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
718

L
Linus Torvalds 已提交
719 720 721
	if (mgslpc_paranoia_check(info, tty->name, "tx_release"))
		return;
	if (debug_level >= DEBUG_LEVEL_INFO)
722 723
		printk("tx_release(%s)\n",info->device_name);

L
Linus Torvalds 已提交
724 725
	spin_lock_irqsave(&info->lock,flags);
	if (!info->tx_enabled)
A
Alan Cox 已提交
726
	 	tx_start(info, tty);
L
Linus Torvalds 已提交
727 728 729 730 731 732 733 734 735 736
	spin_unlock_irqrestore(&info->lock,flags);
}

/* Return next bottom half action to perform.
 * or 0 if nothing to do.
 */
static int bh_action(MGSLPC_INFO *info)
{
	unsigned long flags;
	int rc = 0;
737

L
Linus Torvalds 已提交
738 739 740 741 742 743 744 745 746 747 748 749 750 751 752
	spin_lock_irqsave(&info->lock,flags);

	if (info->pending_bh & BH_RECEIVE) {
		info->pending_bh &= ~BH_RECEIVE;
		rc = BH_RECEIVE;
	} else if (info->pending_bh & BH_TRANSMIT) {
		info->pending_bh &= ~BH_TRANSMIT;
		rc = BH_TRANSMIT;
	} else if (info->pending_bh & BH_STATUS) {
		info->pending_bh &= ~BH_STATUS;
		rc = BH_STATUS;
	}

	if (!rc) {
		/* Mark BH routine as complete */
J
Joe Perches 已提交
753 754
		info->bh_running = false;
		info->bh_requested = false;
L
Linus Torvalds 已提交
755
	}
756

L
Linus Torvalds 已提交
757
	spin_unlock_irqrestore(&info->lock,flags);
758

L
Linus Torvalds 已提交
759 760 761
	return rc;
}

D
David Howells 已提交
762
static void bh_handler(struct work_struct *work)
L
Linus Torvalds 已提交
763
{
D
David Howells 已提交
764
	MGSLPC_INFO *info = container_of(work, MGSLPC_INFO, task);
A
Alan Cox 已提交
765
	struct tty_struct *tty;
L
Linus Torvalds 已提交
766 767 768 769
	int action;

	if (!info)
		return;
770

L
Linus Torvalds 已提交
771 772 773
	if (debug_level >= DEBUG_LEVEL_BH)
		printk( "%s(%d):bh_handler(%s) entry\n",
			__FILE__,__LINE__,info->device_name);
774

J
Joe Perches 已提交
775
	info->bh_running = true;
A
Alan Cox 已提交
776
	tty = tty_port_tty_get(&info->port);
L
Linus Torvalds 已提交
777 778

	while((action = bh_action(info)) != 0) {
779

L
Linus Torvalds 已提交
780 781 782 783 784 785
		/* Process work item */
		if ( debug_level >= DEBUG_LEVEL_BH )
			printk( "%s(%d):bh_handler() work item action=%d\n",
				__FILE__,__LINE__,action);

		switch (action) {
786

L
Linus Torvalds 已提交
787
		case BH_RECEIVE:
A
Alan Cox 已提交
788
			while(rx_get_frame(info, tty));
L
Linus Torvalds 已提交
789 790
			break;
		case BH_TRANSMIT:
A
Alan Cox 已提交
791
			bh_transmit(info, tty);
L
Linus Torvalds 已提交
792 793 794 795 796 797 798 799 800 801 802
			break;
		case BH_STATUS:
			bh_status(info);
			break;
		default:
			/* unknown work item ID */
			printk("Unknown work item ID=%08X!\n", action);
			break;
		}
	}

A
Alan Cox 已提交
803
	tty_kref_put(tty);
L
Linus Torvalds 已提交
804 805 806 807 808
	if (debug_level >= DEBUG_LEVEL_BH)
		printk( "%s(%d):bh_handler(%s) exit\n",
			__FILE__,__LINE__,info->device_name);
}

A
Alan Cox 已提交
809
static void bh_transmit(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
810 811 812 813
{
	if (debug_level >= DEBUG_LEVEL_BH)
		printk("bh_transmit() entry on %s\n", info->device_name);

J
Jiri Slaby 已提交
814
	if (tty)
L
Linus Torvalds 已提交
815 816 817
		tty_wakeup(tty);
}

818
static void bh_status(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
819 820 821 822 823 824 825
{
	info->ri_chkcount = 0;
	info->dsr_chkcount = 0;
	info->dcd_chkcount = 0;
	info->cts_chkcount = 0;
}

826
/* eom: non-zero = end of frame */
L
Linus Torvalds 已提交
827 828 829 830 831 832 833 834
static void rx_ready_hdlc(MGSLPC_INFO *info, int eom)
{
	unsigned char data[2];
	unsigned char fifo_count, read_count, i;
	RXBUF *buf = (RXBUF*)(info->rx_buf + (info->rx_put * info->rx_buf_size));

	if (debug_level >= DEBUG_LEVEL_ISR)
		printk("%s(%d):rx_ready_hdlc(eom=%d)\n",__FILE__,__LINE__,eom);
835

L
Linus Torvalds 已提交
836 837 838 839 840 841 842
	if (!info->rx_enabled)
		return;

	if (info->rx_frame_count >= info->rx_buf_count) {
		/* no more free buffers */
		issue_command(info, CHA, CMD_RXRESET);
		info->pending_bh |= BH_RECEIVE;
J
Joe Perches 已提交
843
		info->rx_overflow = true;
L
Linus Torvalds 已提交
844 845 846 847 848
		info->icount.buf_overrun++;
		return;
	}

	if (eom) {
849
		/* end of frame, get FIFO count from RBCL register */
L
Linus Torvalds 已提交
850 851 852 853
		if (!(fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f)))
			fifo_count = 32;
	} else
		fifo_count = 32;
854

L
Linus Torvalds 已提交
855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
	do {
		if (fifo_count == 1) {
			read_count = 1;
			data[0] = read_reg(info, CHA + RXFIFO);
		} else {
			read_count = 2;
			*((unsigned short *) data) = read_reg16(info, CHA + RXFIFO);
		}
		fifo_count -= read_count;
		if (!fifo_count && eom)
			buf->status = data[--read_count];

		for (i = 0; i < read_count; i++) {
			if (buf->count >= info->max_frame_size) {
				/* frame too large, reset receiver and reset current buffer */
				issue_command(info, CHA, CMD_RXRESET);
				buf->count = 0;
				return;
			}
			*(buf->data + buf->count) = data[i];
			buf->count++;
		}
	} while (fifo_count);

	if (eom) {
		info->pending_bh |= BH_RECEIVE;
		info->rx_frame_count++;
		info->rx_put++;
		if (info->rx_put >= info->rx_buf_count)
			info->rx_put = 0;
	}
	issue_command(info, CHA, CMD_RXFIFO);
}

A
Alan Cox 已提交
889
static void rx_ready_async(MGSLPC_INFO *info, int tcd, struct tty_struct *tty)
L
Linus Torvalds 已提交
890
{
891
	struct tty_port *port = &info->port;
A
Alan Cox 已提交
892
	unsigned char data, status, flag;
L
Linus Torvalds 已提交
893
	int fifo_count;
A
Alan Cox 已提交
894
	int work = 0;
L
Linus Torvalds 已提交
895 896
 	struct mgsl_icount *icount = &info->icount;

897 898 899 900 901 902 903 904
	if (!tty) {
		/* tty is not available anymore */
		issue_command(info, CHA, CMD_RXRESET);
		if (debug_level >= DEBUG_LEVEL_ISR)
			printk("%s(%d):rx_ready_async(tty=NULL)\n",__FILE__,__LINE__);
		return;
	}

L
Linus Torvalds 已提交
905
	if (tcd) {
906
		/* early termination, get FIFO count from RBCL register */
L
Linus Torvalds 已提交
907 908 909 910 911 912 913 914 915
		fifo_count = (unsigned char)(read_reg(info, CHA+RBCL) & 0x1f);

		/* Zero fifo count could mean 0 or 32 bytes available.
		 * If BIT5 of STAR is set then at least 1 byte is available.
		 */
		if (!fifo_count && (read_reg(info,CHA+STAR) & BIT5))
			fifo_count = 32;
	} else
		fifo_count = 32;
A
Alan Cox 已提交
916

917
	tty_buffer_request_room(port, fifo_count);
918
	/* Flush received async data to receive data buffer. */
L
Linus Torvalds 已提交
919 920 921 922 923 924
	while (fifo_count) {
		data   = read_reg(info, CHA + RXFIFO);
		status = read_reg(info, CHA + RXFIFO);
		fifo_count -= 2;

		icount->rx++;
A
Alan Cox 已提交
925
		flag = TTY_NORMAL;
L
Linus Torvalds 已提交
926 927 928 929 930 931

		// if no frameing/crc error then save data
		// BIT7:parity error
		// BIT6:framing error

		if (status & (BIT7 + BIT6)) {
932
			if (status & BIT7)
L
Linus Torvalds 已提交
933 934 935 936 937 938 939
				icount->parity++;
			else
				icount->frame++;

			/* discard char if tty control flags say so */
			if (status & info->ignore_status_mask)
				continue;
940

L
Linus Torvalds 已提交
941 942 943
			status &= info->read_status_mask;

			if (status & BIT7)
A
Alan Cox 已提交
944
				flag = TTY_PARITY;
L
Linus Torvalds 已提交
945
			else if (status & BIT6)
A
Alan Cox 已提交
946
				flag = TTY_FRAME;
L
Linus Torvalds 已提交
947
		}
A
Alan Cox 已提交
948
		work += tty_insert_flip_char(tty, data, flag);
L
Linus Torvalds 已提交
949 950 951 952
	}
	issue_command(info, CHA, CMD_RXFIFO);

	if (debug_level >= DEBUG_LEVEL_ISR) {
A
Alan Cox 已提交
953 954
		printk("%s(%d):rx_ready_async",
			__FILE__,__LINE__);
L
Linus Torvalds 已提交
955 956 957 958
		printk("%s(%d):rx=%d brk=%d parity=%d frame=%d overrun=%d\n",
			__FILE__,__LINE__,icount->rx,icount->brk,
			icount->parity,icount->frame,icount->overrun);
	}
959

A
Alan Cox 已提交
960
	if (work)
L
Linus Torvalds 已提交
961 962 963 964
		tty_flip_buffer_push(tty);
}


A
Alan Cox 已提交
965
static void tx_done(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
966 967 968
{
	if (!info->tx_active)
		return;
969

J
Joe Perches 已提交
970 971
	info->tx_active = false;
	info->tx_aborting = false;
L
Linus Torvalds 已提交
972 973 974 975 976

	if (info->params.mode == MGSL_MODE_ASYNC)
		return;

	info->tx_count = info->tx_put = info->tx_get = 0;
977 978
	del_timer(&info->tx_timer);

L
Linus Torvalds 已提交
979 980 981 982 983 984
	if (info->drop_rts_on_tx_done) {
		get_signals(info);
		if (info->serial_signals & SerialSignal_RTS) {
			info->serial_signals &= ~SerialSignal_RTS;
			set_signals(info);
		}
J
Joe Perches 已提交
985
		info->drop_rts_on_tx_done = false;
L
Linus Torvalds 已提交
986 987
	}

988
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
989 990
	if (info->netcount)
		hdlcdev_tx_done(info);
991
	else
L
Linus Torvalds 已提交
992 993
#endif
	{
994
		if (tty && (tty->stopped || tty->hw_stopped)) {
L
Linus Torvalds 已提交
995 996 997 998 999 1000 1001
			tx_stop(info);
			return;
		}
		info->pending_bh |= BH_TRANSMIT;
	}
}

A
Alan Cox 已提交
1002
static void tx_ready(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
{
	unsigned char fifo_count = 32;
	int c;

	if (debug_level >= DEBUG_LEVEL_ISR)
		printk("%s(%d):tx_ready(%s)\n", __FILE__,__LINE__,info->device_name);

	if (info->params.mode == MGSL_MODE_HDLC) {
		if (!info->tx_active)
			return;
	} else {
1014
		if (tty && (tty->stopped || tty->hw_stopped)) {
L
Linus Torvalds 已提交
1015 1016 1017 1018
			tx_stop(info);
			return;
		}
		if (!info->tx_count)
J
Joe Perches 已提交
1019
			info->tx_active = false;
L
Linus Torvalds 已提交
1020 1021 1022 1023 1024 1025 1026
	}

	if (!info->tx_count)
		return;

	while (info->tx_count && fifo_count) {
		c = min(2, min_t(int, fifo_count, min(info->tx_count, TXBUFSIZE - info->tx_get)));
1027

L
Linus Torvalds 已提交
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
		if (c == 1) {
			write_reg(info, CHA + TXFIFO, *(info->tx_buf + info->tx_get));
		} else {
			write_reg16(info, CHA + TXFIFO,
					  *((unsigned short*)(info->tx_buf + info->tx_get)));
		}
		info->tx_count -= c;
		info->tx_get = (info->tx_get + c) & (TXBUFSIZE - 1);
		fifo_count -= c;
	}

	if (info->params.mode == MGSL_MODE_ASYNC) {
		if (info->tx_count < WAKEUP_CHARS)
			info->pending_bh |= BH_TRANSMIT;
		issue_command(info, CHA, CMD_TXFIFO);
	} else {
		if (info->tx_count)
			issue_command(info, CHA, CMD_TXFIFO);
		else
			issue_command(info, CHA, CMD_TXFIFO + CMD_TXEOM);
	}
}

A
Alan Cox 已提交
1051
static void cts_change(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
{
	get_signals(info);
	if ((info->cts_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
		irq_disable(info, CHB, IRQ_CTS);
	info->icount.cts++;
	if (info->serial_signals & SerialSignal_CTS)
		info->input_signal_events.cts_up++;
	else
		info->input_signal_events.cts_down++;
	wake_up_interruptible(&info->status_event_wait_q);
	wake_up_interruptible(&info->event_wait_q);

1064
	if (tty && tty_port_cts_enabled(&info->port)) {
A
Alan Cox 已提交
1065
		if (tty->hw_stopped) {
L
Linus Torvalds 已提交
1066 1067 1068
			if (info->serial_signals & SerialSignal_CTS) {
				if (debug_level >= DEBUG_LEVEL_ISR)
					printk("CTS tx start...");
1069
				tty->hw_stopped = 0;
A
Alan Cox 已提交
1070
				tx_start(info, tty);
L
Linus Torvalds 已提交
1071 1072 1073 1074 1075 1076 1077
				info->pending_bh |= BH_TRANSMIT;
				return;
			}
		} else {
			if (!(info->serial_signals & SerialSignal_CTS)) {
				if (debug_level >= DEBUG_LEVEL_ISR)
					printk("CTS tx stop...");
1078
				tty->hw_stopped = 1;
L
Linus Torvalds 已提交
1079 1080 1081 1082 1083 1084 1085
				tx_stop(info);
			}
		}
	}
	info->pending_bh |= BH_STATUS;
}

A
Alan Cox 已提交
1086
static void dcd_change(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
{
	get_signals(info);
	if ((info->dcd_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
		irq_disable(info, CHB, IRQ_DCD);
	info->icount.dcd++;
	if (info->serial_signals & SerialSignal_DCD) {
		info->input_signal_events.dcd_up++;
	}
	else
		info->input_signal_events.dcd_down++;
1097
#if SYNCLINK_GENERIC_HDLC
1098 1099 1100 1101 1102 1103
	if (info->netcount) {
		if (info->serial_signals & SerialSignal_DCD)
			netif_carrier_on(info->netdev);
		else
			netif_carrier_off(info->netdev);
	}
L
Linus Torvalds 已提交
1104 1105 1106 1107
#endif
	wake_up_interruptible(&info->status_event_wait_q);
	wake_up_interruptible(&info->event_wait_q);

A
Alan Cox 已提交
1108
	if (info->port.flags & ASYNC_CHECK_CD) {
L
Linus Torvalds 已提交
1109 1110 1111 1112
		if (debug_level >= DEBUG_LEVEL_ISR)
			printk("%s CD now %s...", info->device_name,
			       (info->serial_signals & SerialSignal_DCD) ? "on" : "off");
		if (info->serial_signals & SerialSignal_DCD)
A
Alan Cox 已提交
1113
			wake_up_interruptible(&info->port.open_wait);
L
Linus Torvalds 已提交
1114 1115 1116
		else {
			if (debug_level >= DEBUG_LEVEL_ISR)
				printk("doing serial hangup...");
A
Alan Cox 已提交
1117 1118
			if (tty)
				tty_hangup(tty);
L
Linus Torvalds 已提交
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
		}
	}
	info->pending_bh |= BH_STATUS;
}

static void dsr_change(MGSLPC_INFO *info)
{
	get_signals(info);
	if ((info->dsr_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
		port_irq_disable(info, PVR_DSR);
	info->icount.dsr++;
	if (info->serial_signals & SerialSignal_DSR)
		info->input_signal_events.dsr_up++;
	else
		info->input_signal_events.dsr_down++;
	wake_up_interruptible(&info->status_event_wait_q);
	wake_up_interruptible(&info->event_wait_q);
	info->pending_bh |= BH_STATUS;
}

static void ri_change(MGSLPC_INFO *info)
{
	get_signals(info);
	if ((info->ri_chkcount)++ >= IO_PIN_SHUTDOWN_LIMIT)
		port_irq_disable(info, PVR_RI);
	info->icount.rng++;
	if (info->serial_signals & SerialSignal_RI)
		info->input_signal_events.ri_up++;
	else
		info->input_signal_events.ri_down++;
	wake_up_interruptible(&info->status_event_wait_q);
	wake_up_interruptible(&info->event_wait_q);
	info->pending_bh |= BH_STATUS;
}

/* Interrupt service routine entry point.
1155
 *
L
Linus Torvalds 已提交
1156
 * Arguments:
1157
 *
L
Linus Torvalds 已提交
1158 1159 1160
 * irq     interrupt number that caused interrupt
 * dev_id  device ID supplied during interrupt registration
 */
1161
static irqreturn_t mgslpc_isr(int dummy, void *dev_id)
L
Linus Torvalds 已提交
1162
{
1163
	MGSLPC_INFO *info = dev_id;
A
Alan Cox 已提交
1164
	struct tty_struct *tty;
L
Linus Torvalds 已提交
1165 1166 1167 1168
	unsigned short isr;
	unsigned char gis, pis;
	int count=0;

1169
	if (debug_level >= DEBUG_LEVEL_ISR)
1170
		printk("mgslpc_isr(%d) entry.\n", info->irq_level);
1171

1172
	if (!(info->p_dev->_locked))
L
Linus Torvalds 已提交
1173 1174
		return IRQ_HANDLED;

A
Alan Cox 已提交
1175 1176
	tty = tty_port_tty_get(&info->port);

L
Linus Torvalds 已提交
1177 1178 1179
	spin_lock(&info->lock);

	while ((gis = read_reg(info, CHA + GIS))) {
1180
		if (debug_level >= DEBUG_LEVEL_ISR)
L
Linus Torvalds 已提交
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
			printk("mgslpc_isr %s gis=%04X\n", info->device_name,gis);

		if ((gis & 0x70) || count > 1000) {
			printk("synclink_cs:hardware failed or ejected\n");
			break;
		}
		count++;

		if (gis & (BIT1 + BIT0)) {
			isr = read_reg16(info, CHB + ISR);
			if (isr & IRQ_DCD)
A
Alan Cox 已提交
1192
				dcd_change(info, tty);
L
Linus Torvalds 已提交
1193
			if (isr & IRQ_CTS)
A
Alan Cox 已提交
1194
				cts_change(info, tty);
L
Linus Torvalds 已提交
1195 1196 1197 1198 1199
		}
		if (gis & (BIT3 + BIT2))
		{
			isr = read_reg16(info, CHA + ISR);
			if (isr & IRQ_TIMER) {
J
Joe Perches 已提交
1200
				info->irq_occurred = true;
L
Linus Torvalds 已提交
1201 1202 1203
				irq_disable(info, CHA, IRQ_TIMER);
			}

1204
			/* receive IRQs */
L
Linus Torvalds 已提交
1205 1206 1207 1208 1209 1210
			if (isr & IRQ_EXITHUNT) {
				info->icount.exithunt++;
				wake_up_interruptible(&info->event_wait_q);
			}
			if (isr & IRQ_BREAK_ON) {
				info->icount.brk++;
A
Alan Cox 已提交
1211 1212
				if (info->port.flags & ASYNC_SAK)
					do_SAK(tty);
L
Linus Torvalds 已提交
1213 1214 1215 1216 1217 1218
			}
			if (isr & IRQ_RXTIME) {
				issue_command(info, CHA, CMD_RXFIFO_READ);
			}
			if (isr & (IRQ_RXEOM + IRQ_RXFIFO)) {
				if (info->params.mode == MGSL_MODE_HDLC)
1219
					rx_ready_hdlc(info, isr & IRQ_RXEOM);
L
Linus Torvalds 已提交
1220
				else
A
Alan Cox 已提交
1221
					rx_ready_async(info, isr & IRQ_RXEOM, tty);
L
Linus Torvalds 已提交
1222 1223
			}

1224
			/* transmit IRQs */
L
Linus Torvalds 已提交
1225 1226 1227 1228 1229
			if (isr & IRQ_UNDERRUN) {
				if (info->tx_aborting)
					info->icount.txabort++;
				else
					info->icount.txunder++;
A
Alan Cox 已提交
1230
				tx_done(info, tty);
L
Linus Torvalds 已提交
1231 1232 1233
			}
			else if (isr & IRQ_ALLSENT) {
				info->icount.txok++;
A
Alan Cox 已提交
1234
				tx_done(info, tty);
L
Linus Torvalds 已提交
1235 1236
			}
			else if (isr & IRQ_TXFIFO)
A
Alan Cox 已提交
1237
				tx_ready(info, tty);
L
Linus Torvalds 已提交
1238 1239 1240 1241 1242 1243 1244 1245 1246
		}
		if (gis & BIT7) {
			pis = read_reg(info, CHA + PIS);
			if (pis & BIT1)
				dsr_change(info);
			if (pis & BIT2)
				ri_change(info);
		}
	}
1247 1248

	/* Request bottom half processing if there's something
L
Linus Torvalds 已提交
1249 1250 1251 1252
	 * for it to do and the bh is not already running
	 */

	if (info->pending_bh && !info->bh_running && !info->bh_requested) {
1253
		if ( debug_level >= DEBUG_LEVEL_ISR )
L
Linus Torvalds 已提交
1254 1255 1256
			printk("%s(%d):%s queueing bh task.\n",
				__FILE__,__LINE__,info->device_name);
		schedule_work(&info->task);
J
Joe Perches 已提交
1257
		info->bh_requested = true;
L
Linus Torvalds 已提交
1258 1259 1260
	}

	spin_unlock(&info->lock);
A
Alan Cox 已提交
1261
	tty_kref_put(tty);
1262 1263

	if (debug_level >= DEBUG_LEVEL_ISR)
L
Linus Torvalds 已提交
1264
		printk("%s(%d):mgslpc_isr(%d)exit.\n",
1265
		       __FILE__, __LINE__, info->irq_level);
L
Linus Torvalds 已提交
1266 1267 1268 1269 1270 1271

	return IRQ_HANDLED;
}

/* Initialize and start device.
 */
A
Alan Cox 已提交
1272
static int startup(MGSLPC_INFO * info, struct tty_struct *tty)
L
Linus Torvalds 已提交
1273 1274
{
	int retval = 0;
1275

L
Linus Torvalds 已提交
1276 1277
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):startup(%s)\n",__FILE__,__LINE__,info->device_name);
1278

A
Alan Cox 已提交
1279
	if (info->port.flags & ASYNC_INITIALIZED)
L
Linus Torvalds 已提交
1280
		return 0;
1281

L
Linus Torvalds 已提交
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292
	if (!info->tx_buf) {
		/* allocate a page of memory for a transmit buffer */
		info->tx_buf = (unsigned char *)get_zeroed_page(GFP_KERNEL);
		if (!info->tx_buf) {
			printk(KERN_ERR"%s(%d):%s can't allocate transmit buffer\n",
				__FILE__,__LINE__,info->device_name);
			return -ENOMEM;
		}
	}

	info->pending_bh = 0;
1293

1294 1295
	memset(&info->icount, 0, sizeof(info->icount));

J
Jiri Slaby 已提交
1296
	setup_timer(&info->tx_timer, tx_timeout, (unsigned long)info);
L
Linus Torvalds 已提交
1297 1298 1299

	/* Allocate and claim adapter resources */
	retval = claim_resources(info);
1300

L
Lucas De Marchi 已提交
1301
	/* perform existence check and diagnostics */
L
Linus Torvalds 已提交
1302 1303
	if ( !retval )
		retval = adapter_test(info);
1304

L
Linus Torvalds 已提交
1305
	if ( retval ) {
A
Alan Cox 已提交
1306 1307
  		if (capable(CAP_SYS_ADMIN) && tty)
			set_bit(TTY_IO_ERROR, &tty->flags);
L
Linus Torvalds 已提交
1308 1309 1310 1311 1312
		release_resources(info);
  		return retval;
  	}

	/* program hardware for current parameters */
A
Alan Cox 已提交
1313
	mgslpc_change_params(info, tty);
1314

A
Alan Cox 已提交
1315 1316
	if (tty)
		clear_bit(TTY_IO_ERROR, &tty->flags);
L
Linus Torvalds 已提交
1317

A
Alan Cox 已提交
1318
	info->port.flags |= ASYNC_INITIALIZED;
1319

L
Linus Torvalds 已提交
1320 1321 1322 1323 1324
	return 0;
}

/* Called by mgslpc_close() and mgslpc_hangup() to shutdown hardware
 */
A
Alan Cox 已提交
1325
static void shutdown(MGSLPC_INFO * info, struct tty_struct *tty)
L
Linus Torvalds 已提交
1326 1327
{
	unsigned long flags;
1328

A
Alan Cox 已提交
1329
	if (!(info->port.flags & ASYNC_INITIALIZED))
L
Linus Torvalds 已提交
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340
		return;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_shutdown(%s)\n",
			 __FILE__,__LINE__, info->device_name );

	/* clear status wait queue because status changes */
	/* can't happen after shutting down the hardware */
	wake_up_interruptible(&info->status_event_wait_q);
	wake_up_interruptible(&info->event_wait_q);

J
Jiri Slaby 已提交
1341
	del_timer_sync(&info->tx_timer);
L
Linus Torvalds 已提交
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354

	if (info->tx_buf) {
		free_page((unsigned long) info->tx_buf);
		info->tx_buf = NULL;
	}

	spin_lock_irqsave(&info->lock,flags);

	rx_stop(info);
	tx_stop(info);

	/* TODO:disable interrupts instead of reset to preserve signal states */
	reset_device(info);
1355

1356
 	if (!tty || tty->termios.c_cflag & HUPCL) {
L
Linus Torvalds 已提交
1357 1358 1359
 		info->serial_signals &= ~(SerialSignal_DTR + SerialSignal_RTS);
		set_signals(info);
	}
1360

L
Linus Torvalds 已提交
1361 1362
	spin_unlock_irqrestore(&info->lock,flags);

1363 1364
	release_resources(info);

A
Alan Cox 已提交
1365 1366
	if (tty)
		set_bit(TTY_IO_ERROR, &tty->flags);
L
Linus Torvalds 已提交
1367

A
Alan Cox 已提交
1368
	info->port.flags &= ~ASYNC_INITIALIZED;
L
Linus Torvalds 已提交
1369 1370
}

A
Alan Cox 已提交
1371
static void mgslpc_program_hw(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
1372 1373 1374 1375
{
	unsigned long flags;

	spin_lock_irqsave(&info->lock,flags);
1376

L
Linus Torvalds 已提交
1377 1378 1379
	rx_stop(info);
	tx_stop(info);
	info->tx_count = info->tx_put = info->tx_get = 0;
1380

L
Linus Torvalds 已提交
1381 1382 1383 1384
	if (info->params.mode == MGSL_MODE_HDLC || info->netcount)
		hdlc_mode(info);
	else
		async_mode(info);
1385

L
Linus Torvalds 已提交
1386
	set_signals(info);
1387

L
Linus Torvalds 已提交
1388 1389 1390 1391 1392 1393 1394 1395
	info->dcd_chkcount = 0;
	info->cts_chkcount = 0;
	info->ri_chkcount = 0;
	info->dsr_chkcount = 0;

	irq_enable(info, CHB, IRQ_DCD | IRQ_CTS);
	port_irq_enable(info, (unsigned char) PVR_DSR | PVR_RI);
	get_signals(info);
1396

1397
	if (info->netcount || (tty && (tty->termios.c_cflag & CREAD)))
L
Linus Torvalds 已提交
1398
		rx_start(info);
1399

L
Linus Torvalds 已提交
1400 1401 1402 1403 1404
	spin_unlock_irqrestore(&info->lock,flags);
}

/* Reconfigure adapter based on new parameters
 */
A
Alan Cox 已提交
1405
static void mgslpc_change_params(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
1406 1407 1408 1409
{
	unsigned cflag;
	int bits_per_char;

1410
	if (!tty)
L
Linus Torvalds 已提交
1411
		return;
1412

L
Linus Torvalds 已提交
1413 1414 1415
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_change_params(%s)\n",
			 __FILE__,__LINE__, info->device_name );
1416

1417
	cflag = tty->termios.c_cflag;
L
Linus Torvalds 已提交
1418 1419 1420 1421 1422 1423 1424

	/* if B0 rate (hangup) specified then negate DTR and RTS */
	/* otherwise assert DTR and RTS */
 	if (cflag & CBAUD)
		info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
	else
		info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
1425

L
Linus Torvalds 已提交
1426
	/* byte size and parity */
1427

L
Linus Torvalds 已提交
1428 1429 1430 1431 1432 1433 1434
	switch (cflag & CSIZE) {
	case CS5: info->params.data_bits = 5; break;
	case CS6: info->params.data_bits = 6; break;
	case CS7: info->params.data_bits = 7; break;
	case CS8: info->params.data_bits = 8; break;
	default:  info->params.data_bits = 7; break;
	}
1435

L
Linus Torvalds 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455
	if (cflag & CSTOPB)
		info->params.stop_bits = 2;
	else
		info->params.stop_bits = 1;

	info->params.parity = ASYNC_PARITY_NONE;
	if (cflag & PARENB) {
		if (cflag & PARODD)
			info->params.parity = ASYNC_PARITY_ODD;
		else
			info->params.parity = ASYNC_PARITY_EVEN;
#ifdef CMSPAR
		if (cflag & CMSPAR)
			info->params.parity = ASYNC_PARITY_SPACE;
#endif
	}

	/* calculate number of jiffies to transmit a full
	 * FIFO (32 bytes) at specified data rate
	 */
1456
	bits_per_char = info->params.data_bits +
L
Linus Torvalds 已提交
1457 1458 1459 1460 1461 1462 1463
			info->params.stop_bits + 1;

	/* if port data rate is set to 460800 or less then
	 * allow tty settings to override, otherwise keep the
	 * current data rate.
	 */
	if (info->params.data_rate <= 460800) {
A
Alan Cox 已提交
1464
		info->params.data_rate = tty_get_baud_rate(tty);
L
Linus Torvalds 已提交
1465
	}
1466

L
Linus Torvalds 已提交
1467
	if ( info->params.data_rate ) {
1468
		info->timeout = (32*HZ*bits_per_char) /
L
Linus Torvalds 已提交
1469 1470 1471 1472 1473
				info->params.data_rate;
	}
	info->timeout += HZ/50;		/* Add .02 seconds of slop */

	if (cflag & CRTSCTS)
A
Alan Cox 已提交
1474
		info->port.flags |= ASYNC_CTS_FLOW;
L
Linus Torvalds 已提交
1475
	else
A
Alan Cox 已提交
1476
		info->port.flags &= ~ASYNC_CTS_FLOW;
1477

L
Linus Torvalds 已提交
1478
	if (cflag & CLOCAL)
A
Alan Cox 已提交
1479
		info->port.flags &= ~ASYNC_CHECK_CD;
L
Linus Torvalds 已提交
1480
	else
A
Alan Cox 已提交
1481
		info->port.flags |= ASYNC_CHECK_CD;
L
Linus Torvalds 已提交
1482 1483

	/* process tty input control flags */
1484

L
Linus Torvalds 已提交
1485
	info->read_status_mask = 0;
A
Alan Cox 已提交
1486
	if (I_INPCK(tty))
L
Linus Torvalds 已提交
1487
		info->read_status_mask |= BIT7 | BIT6;
A
Alan Cox 已提交
1488
	if (I_IGNPAR(tty))
L
Linus Torvalds 已提交
1489 1490
		info->ignore_status_mask |= BIT7 | BIT6;

A
Alan Cox 已提交
1491
	mgslpc_program_hw(info, tty);
L
Linus Torvalds 已提交
1492 1493 1494 1495
}

/* Add a character to the transmit buffer
 */
A
Alan Cox 已提交
1496
static int mgslpc_put_char(struct tty_struct *tty, unsigned char ch)
L
Linus Torvalds 已提交
1497 1498 1499 1500 1501 1502 1503 1504 1505 1506
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;

	if (debug_level >= DEBUG_LEVEL_INFO) {
		printk( "%s(%d):mgslpc_put_char(%d) on %s\n",
			__FILE__,__LINE__,ch,info->device_name);
	}

	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_put_char"))
A
Alan Cox 已提交
1507
		return 0;
L
Linus Torvalds 已提交
1508

1509
	if (!info->tx_buf)
A
Alan Cox 已提交
1510
		return 0;
L
Linus Torvalds 已提交
1511 1512

	spin_lock_irqsave(&info->lock,flags);
1513

L
Linus Torvalds 已提交
1514 1515 1516 1517 1518 1519 1520
	if (info->params.mode == MGSL_MODE_ASYNC || !info->tx_active) {
		if (info->tx_count < TXBUFSIZE - 1) {
			info->tx_buf[info->tx_put++] = ch;
			info->tx_put &= TXBUFSIZE-1;
			info->tx_count++;
		}
	}
1521

L
Linus Torvalds 已提交
1522
	spin_unlock_irqrestore(&info->lock,flags);
A
Alan Cox 已提交
1523
	return 1;
L
Linus Torvalds 已提交
1524 1525 1526 1527 1528 1529 1530 1531 1532
}

/* Enable transmitter so remaining characters in the
 * transmit buffer are sent.
 */
static void mgslpc_flush_chars(struct tty_struct *tty)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
1533

L
Linus Torvalds 已提交
1534 1535 1536
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk( "%s(%d):mgslpc_flush_chars() entry on %s tx_count=%d\n",
			__FILE__,__LINE__,info->device_name,info->tx_count);
1537

L
Linus Torvalds 已提交
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_chars"))
		return;

	if (info->tx_count <= 0 || tty->stopped ||
	    tty->hw_stopped || !info->tx_buf)
		return;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk( "%s(%d):mgslpc_flush_chars() entry on %s starting transmitter\n",
			__FILE__,__LINE__,info->device_name);

	spin_lock_irqsave(&info->lock,flags);
	if (!info->tx_active)
A
Alan Cox 已提交
1551
	 	tx_start(info, tty);
L
Linus Torvalds 已提交
1552 1553 1554 1555
	spin_unlock_irqrestore(&info->lock,flags);
}

/* Send a block of data
1556
 *
L
Linus Torvalds 已提交
1557
 * Arguments:
1558
 *
L
Linus Torvalds 已提交
1559 1560 1561
 * tty        pointer to tty information structure
 * buf	      pointer to buffer containing send data
 * count      size of send data in bytes
1562
 *
L
Linus Torvalds 已提交
1563 1564 1565 1566 1567 1568 1569 1570
 * Returns: number of characters written
 */
static int mgslpc_write(struct tty_struct * tty,
			const unsigned char *buf, int count)
{
	int c, ret = 0;
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
1571

L
Linus Torvalds 已提交
1572 1573 1574
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk( "%s(%d):mgslpc_write(%s) count=%d\n",
			__FILE__,__LINE__,info->device_name,count);
1575

L
Linus Torvalds 已提交
1576
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write") ||
1577
		!info->tx_buf)
L
Linus Torvalds 已提交
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
		goto cleanup;

	if (info->params.mode == MGSL_MODE_HDLC) {
		if (count > TXBUFSIZE) {
			ret = -EIO;
			goto cleanup;
		}
		if (info->tx_active)
			goto cleanup;
		else if (info->tx_count)
			goto start;
	}

	for (;;) {
		c = min(count,
			min(TXBUFSIZE - info->tx_count - 1,
			    TXBUFSIZE - info->tx_put));
		if (c <= 0)
			break;
1597

L
Linus Torvalds 已提交
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
		memcpy(info->tx_buf + info->tx_put, buf, c);

		spin_lock_irqsave(&info->lock,flags);
		info->tx_put = (info->tx_put + c) & (TXBUFSIZE-1);
		info->tx_count += c;
		spin_unlock_irqrestore(&info->lock,flags);

		buf += c;
		count -= c;
		ret += c;
	}
start:
 	if (info->tx_count && !tty->stopped && !tty->hw_stopped) {
		spin_lock_irqsave(&info->lock,flags);
		if (!info->tx_active)
A
Alan Cox 已提交
1613
		 	tx_start(info, tty);
L
Linus Torvalds 已提交
1614 1615
		spin_unlock_irqrestore(&info->lock,flags);
 	}
1616
cleanup:
L
Linus Torvalds 已提交
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk( "%s(%d):mgslpc_write(%s) returning=%d\n",
			__FILE__,__LINE__,info->device_name,ret);
	return ret;
}

/* Return the count of free bytes in transmit buffer
 */
static int mgslpc_write_room(struct tty_struct *tty)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	int ret;
1629

L
Linus Torvalds 已提交
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_write_room"))
		return 0;

	if (info->params.mode == MGSL_MODE_HDLC) {
		/* HDLC (frame oriented) mode */
		if (info->tx_active)
			return 0;
		else
			return HDLC_MAX_FRAME_SIZE;
	} else {
		ret = TXBUFSIZE - info->tx_count - 1;
		if (ret < 0)
			ret = 0;
	}
1644

L
Linus Torvalds 已提交
1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_write_room(%s)=%d\n",
			 __FILE__,__LINE__, info->device_name, ret);
	return ret;
}

/* Return the count of bytes in transmit buffer
 */
static int mgslpc_chars_in_buffer(struct tty_struct *tty)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	int rc;
1657

L
Linus Torvalds 已提交
1658 1659 1660
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_chars_in_buffer(%s)\n",
			 __FILE__,__LINE__, info->device_name );
1661

L
Linus Torvalds 已提交
1662 1663
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_chars_in_buffer"))
		return 0;
1664

L
Linus Torvalds 已提交
1665 1666 1667 1668 1669 1670 1671 1672
	if (info->params.mode == MGSL_MODE_HDLC)
		rc = info->tx_active ? info->max_frame_size : 0;
	else
		rc = info->tx_count;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_chars_in_buffer(%s)=%d\n",
			 __FILE__,__LINE__, info->device_name, rc);
1673

L
Linus Torvalds 已提交
1674 1675 1676 1677 1678 1679 1680 1681 1682
	return rc;
}

/* Discard all data in the send buffer
 */
static void mgslpc_flush_buffer(struct tty_struct *tty)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
1683

L
Linus Torvalds 已提交
1684 1685 1686
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_flush_buffer(%s) entry\n",
			 __FILE__,__LINE__, info->device_name );
1687

L
Linus Torvalds 已提交
1688 1689
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_flush_buffer"))
		return;
1690 1691

	spin_lock_irqsave(&info->lock,flags);
L
Linus Torvalds 已提交
1692
	info->tx_count = info->tx_put = info->tx_get = 0;
1693
	del_timer(&info->tx_timer);
L
Linus Torvalds 已提交
1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
	spin_unlock_irqrestore(&info->lock,flags);

	wake_up_interruptible(&tty->write_wait);
	tty_wakeup(tty);
}

/* Send a high-priority XON/XOFF character
 */
static void mgslpc_send_xchar(struct tty_struct *tty, char ch)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_send_xchar(%s,%d)\n",
			 __FILE__,__LINE__, info->device_name, ch );
1710

L
Linus Torvalds 已提交
1711 1712 1713 1714 1715 1716 1717
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_send_xchar"))
		return;

	info->x_char = ch;
	if (ch) {
		spin_lock_irqsave(&info->lock,flags);
		if (!info->tx_enabled)
A
Alan Cox 已提交
1718
		 	tx_start(info, tty);
L
Linus Torvalds 已提交
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
		spin_unlock_irqrestore(&info->lock,flags);
	}
}

/* Signal remote device to throttle send data (our receive data)
 */
static void mgslpc_throttle(struct tty_struct * tty)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
1729

L
Linus Torvalds 已提交
1730 1731 1732 1733 1734 1735
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_throttle(%s) entry\n",
			 __FILE__,__LINE__, info->device_name );

	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_throttle"))
		return;
1736

L
Linus Torvalds 已提交
1737 1738
	if (I_IXOFF(tty))
		mgslpc_send_xchar(tty, STOP_CHAR(tty));
1739

1740
 	if (tty->termios.c_cflag & CRTSCTS) {
L
Linus Torvalds 已提交
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753
		spin_lock_irqsave(&info->lock,flags);
		info->serial_signals &= ~SerialSignal_RTS;
	 	set_signals(info);
		spin_unlock_irqrestore(&info->lock,flags);
	}
}

/* Signal remote device to stop throttling send data (our receive data)
 */
static void mgslpc_unthrottle(struct tty_struct * tty)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
1754

L
Linus Torvalds 已提交
1755 1756 1757 1758 1759 1760
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_unthrottle(%s) entry\n",
			 __FILE__,__LINE__, info->device_name );

	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_unthrottle"))
		return;
1761

L
Linus Torvalds 已提交
1762 1763 1764 1765 1766 1767
	if (I_IXOFF(tty)) {
		if (info->x_char)
			info->x_char = 0;
		else
			mgslpc_send_xchar(tty, START_CHAR(tty));
	}
1768

1769
 	if (tty->termios.c_cflag & CRTSCTS) {
L
Linus Torvalds 已提交
1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783
		spin_lock_irqsave(&info->lock,flags);
		info->serial_signals |= SerialSignal_RTS;
	 	set_signals(info);
		spin_unlock_irqrestore(&info->lock,flags);
	}
}

/* get the current serial statistics
 */
static int get_stats(MGSLPC_INFO * info, struct mgsl_icount __user *user_icount)
{
	int err;
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("get_params(%s)\n", info->device_name);
1784 1785 1786 1787 1788 1789 1790
	if (!user_icount) {
		memset(&info->icount, 0, sizeof(info->icount));
	} else {
		COPY_TO_USER(err, user_icount, &info->icount, sizeof(struct mgsl_icount));
		if (err)
			return -EFAULT;
	}
L
Linus Torvalds 已提交
1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
	return 0;
}

/* get the current serial parameters
 */
static int get_params(MGSLPC_INFO * info, MGSL_PARAMS __user *user_params)
{
	int err;
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("get_params(%s)\n", info->device_name);
	COPY_TO_USER(err,user_params, &info->params, sizeof(MGSL_PARAMS));
	if (err)
		return -EFAULT;
	return 0;
}

/* set the serial parameters
1808
 *
L
Linus Torvalds 已提交
1809
 * Arguments:
1810
 *
L
Linus Torvalds 已提交
1811 1812 1813 1814 1815
 * 	info		pointer to device instance data
 * 	new_params	user buffer containing new serial params
 *
 * Returns:	0 if success, otherwise error code
 */
A
Alan Cox 已提交
1816
static int set_params(MGSLPC_INFO * info, MGSL_PARAMS __user *new_params, struct tty_struct *tty)
L
Linus Torvalds 已提交
1817 1818 1819 1820
{
 	unsigned long flags;
	MGSL_PARAMS tmp_params;
	int err;
1821

L
Linus Torvalds 已提交
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):set_params %s\n", __FILE__,__LINE__,
			info->device_name );
	COPY_FROM_USER(err,&tmp_params, new_params, sizeof(MGSL_PARAMS));
	if (err) {
		if ( debug_level >= DEBUG_LEVEL_INFO )
			printk( "%s(%d):set_params(%s) user buffer copy failed\n",
				__FILE__,__LINE__,info->device_name);
		return -EFAULT;
	}
1832

L
Linus Torvalds 已提交
1833 1834 1835
	spin_lock_irqsave(&info->lock,flags);
	memcpy(&info->params,&tmp_params,sizeof(MGSL_PARAMS));
	spin_unlock_irqrestore(&info->lock,flags);
1836

A
Alan Cox 已提交
1837
 	mgslpc_change_params(info, tty);
1838

L
Linus Torvalds 已提交
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897
	return 0;
}

static int get_txidle(MGSLPC_INFO * info, int __user *idle_mode)
{
	int err;
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("get_txidle(%s)=%d\n", info->device_name, info->idle_mode);
	COPY_TO_USER(err,idle_mode, &info->idle_mode, sizeof(int));
	if (err)
		return -EFAULT;
	return 0;
}

static int set_txidle(MGSLPC_INFO * info, int idle_mode)
{
 	unsigned long flags;
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("set_txidle(%s,%d)\n", info->device_name, idle_mode);
	spin_lock_irqsave(&info->lock,flags);
	info->idle_mode = idle_mode;
	tx_set_idle(info);
	spin_unlock_irqrestore(&info->lock,flags);
	return 0;
}

static int get_interface(MGSLPC_INFO * info, int __user *if_mode)
{
	int err;
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("get_interface(%s)=%d\n", info->device_name, info->if_mode);
	COPY_TO_USER(err,if_mode, &info->if_mode, sizeof(int));
	if (err)
		return -EFAULT;
	return 0;
}

static int set_interface(MGSLPC_INFO * info, int if_mode)
{
 	unsigned long flags;
	unsigned char val;
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("set_interface(%s,%d)\n", info->device_name, if_mode);
	spin_lock_irqsave(&info->lock,flags);
	info->if_mode = if_mode;

	val = read_reg(info, PVR) & 0x0f;
	switch (info->if_mode)
	{
	case MGSL_INTERFACE_RS232: val |= PVR_RS232; break;
	case MGSL_INTERFACE_V35:   val |= PVR_V35;   break;
	case MGSL_INTERFACE_RS422: val |= PVR_RS422; break;
	}
	write_reg(info, PVR, val);

	spin_unlock_irqrestore(&info->lock,flags);
	return 0;
}

A
Alan Cox 已提交
1898
static int set_txenable(MGSLPC_INFO * info, int enable, struct tty_struct *tty)
L
Linus Torvalds 已提交
1899 1900
{
 	unsigned long flags;
1901

L
Linus Torvalds 已提交
1902 1903
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("set_txenable(%s,%d)\n", info->device_name, enable);
1904

L
Linus Torvalds 已提交
1905 1906 1907
	spin_lock_irqsave(&info->lock,flags);
	if (enable) {
		if (!info->tx_enabled)
A
Alan Cox 已提交
1908
			tx_start(info, tty);
L
Linus Torvalds 已提交
1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
	} else {
		if (info->tx_enabled)
			tx_stop(info);
	}
	spin_unlock_irqrestore(&info->lock,flags);
	return 0;
}

static int tx_abort(MGSLPC_INFO * info)
{
 	unsigned long flags;
1920

L
Linus Torvalds 已提交
1921 1922
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("tx_abort(%s)\n", info->device_name);
1923

L
Linus Torvalds 已提交
1924 1925 1926 1927 1928 1929 1930
	spin_lock_irqsave(&info->lock,flags);
	if (info->tx_active && info->tx_count &&
	    info->params.mode == MGSL_MODE_HDLC) {
		/* clear data count so FIFO is not filled on next IRQ.
		 * This results in underrun and abort transmission.
		 */
		info->tx_count = info->tx_put = info->tx_get = 0;
J
Joe Perches 已提交
1931
		info->tx_aborting = true;
L
Linus Torvalds 已提交
1932 1933 1934 1935 1936 1937 1938 1939
	}
	spin_unlock_irqrestore(&info->lock,flags);
	return 0;
}

static int set_rxenable(MGSLPC_INFO * info, int enable)
{
 	unsigned long flags;
1940

L
Linus Torvalds 已提交
1941 1942
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("set_rxenable(%s,%d)\n", info->device_name, enable);
1943

L
Linus Torvalds 已提交
1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956
	spin_lock_irqsave(&info->lock,flags);
	if (enable) {
		if (!info->rx_enabled)
			rx_start(info);
	} else {
		if (info->rx_enabled)
			rx_stop(info);
	}
	spin_unlock_irqrestore(&info->lock,flags);
	return 0;
}

/* wait for specified event to occur
1957
 *
L
Linus Torvalds 已提交
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977
 * Arguments:	 	info	pointer to device instance data
 * 			mask	pointer to bitmask of events to wait for
 * Return Value:	0 	if successful and bit mask updated with
 *				of events triggerred,
 * 			otherwise error code
 */
static int wait_events(MGSLPC_INFO * info, int __user *mask_ptr)
{
 	unsigned long flags;
	int s;
	int rc=0;
	struct mgsl_icount cprev, cnow;
	int events;
	int mask;
	struct	_input_signal_events oldsigs, newsigs;
	DECLARE_WAITQUEUE(wait, current);

	COPY_FROM_USER(rc,&mask, mask_ptr, sizeof(int));
	if (rc)
		return  -EFAULT;
1978

L
Linus Torvalds 已提交
1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("wait_events(%s,%d)\n", info->device_name, mask);

	spin_lock_irqsave(&info->lock,flags);

	/* return immediately if state matches requested events */
	get_signals(info);
	s = info->serial_signals;
	events = mask &
		( ((s & SerialSignal_DSR) ? MgslEvent_DsrActive:MgslEvent_DsrInactive) +
 		  ((s & SerialSignal_DCD) ? MgslEvent_DcdActive:MgslEvent_DcdInactive) +
		  ((s & SerialSignal_CTS) ? MgslEvent_CtsActive:MgslEvent_CtsInactive) +
		  ((s & SerialSignal_RI)  ? MgslEvent_RiActive :MgslEvent_RiInactive) );
	if (events) {
		spin_unlock_irqrestore(&info->lock,flags);
		goto exit;
	}

	/* save current irq counts */
	cprev = info->icount;
	oldsigs = info->input_signal_events;
2000

L
Linus Torvalds 已提交
2001 2002 2003
	if ((info->params.mode == MGSL_MODE_HDLC) &&
	    (mask & MgslEvent_ExitHuntMode))
		irq_enable(info, CHA, IRQ_EXITHUNT);
2004

L
Linus Torvalds 已提交
2005 2006
	set_current_state(TASK_INTERRUPTIBLE);
	add_wait_queue(&info->event_wait_q, &wait);
2007

L
Linus Torvalds 已提交
2008
	spin_unlock_irqrestore(&info->lock,flags);
2009 2010


L
Linus Torvalds 已提交
2011 2012 2013 2014 2015 2016
	for(;;) {
		schedule();
		if (signal_pending(current)) {
			rc = -ERESTARTSYS;
			break;
		}
2017

L
Linus Torvalds 已提交
2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052
		/* get current irq counts */
		spin_lock_irqsave(&info->lock,flags);
		cnow = info->icount;
		newsigs = info->input_signal_events;
		set_current_state(TASK_INTERRUPTIBLE);
		spin_unlock_irqrestore(&info->lock,flags);

		/* if no change, wait aborted for some reason */
		if (newsigs.dsr_up   == oldsigs.dsr_up   &&
		    newsigs.dsr_down == oldsigs.dsr_down &&
		    newsigs.dcd_up   == oldsigs.dcd_up   &&
		    newsigs.dcd_down == oldsigs.dcd_down &&
		    newsigs.cts_up   == oldsigs.cts_up   &&
		    newsigs.cts_down == oldsigs.cts_down &&
		    newsigs.ri_up    == oldsigs.ri_up    &&
		    newsigs.ri_down  == oldsigs.ri_down  &&
		    cnow.exithunt    == cprev.exithunt   &&
		    cnow.rxidle      == cprev.rxidle) {
			rc = -EIO;
			break;
		}

		events = mask &
			( (newsigs.dsr_up   != oldsigs.dsr_up   ? MgslEvent_DsrActive:0)   +
			  (newsigs.dsr_down != oldsigs.dsr_down ? MgslEvent_DsrInactive:0) +
			  (newsigs.dcd_up   != oldsigs.dcd_up   ? MgslEvent_DcdActive:0)   +
			  (newsigs.dcd_down != oldsigs.dcd_down ? MgslEvent_DcdInactive:0) +
			  (newsigs.cts_up   != oldsigs.cts_up   ? MgslEvent_CtsActive:0)   +
			  (newsigs.cts_down != oldsigs.cts_down ? MgslEvent_CtsInactive:0) +
			  (newsigs.ri_up    != oldsigs.ri_up    ? MgslEvent_RiActive:0)    +
			  (newsigs.ri_down  != oldsigs.ri_down  ? MgslEvent_RiInactive:0)  +
			  (cnow.exithunt    != cprev.exithunt   ? MgslEvent_ExitHuntMode:0) +
			  (cnow.rxidle      != cprev.rxidle     ? MgslEvent_IdleReceived:0) );
		if (events)
			break;
2053

L
Linus Torvalds 已提交
2054 2055 2056
		cprev = cnow;
		oldsigs = newsigs;
	}
2057

L
Linus Torvalds 已提交
2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124
	remove_wait_queue(&info->event_wait_q, &wait);
	set_current_state(TASK_RUNNING);

	if (mask & MgslEvent_ExitHuntMode) {
		spin_lock_irqsave(&info->lock,flags);
		if (!waitqueue_active(&info->event_wait_q))
			irq_disable(info, CHA, IRQ_EXITHUNT);
		spin_unlock_irqrestore(&info->lock,flags);
	}
exit:
	if (rc == 0)
		PUT_USER(rc, events, mask_ptr);
	return rc;
}

static int modem_input_wait(MGSLPC_INFO *info,int arg)
{
 	unsigned long flags;
	int rc;
	struct mgsl_icount cprev, cnow;
	DECLARE_WAITQUEUE(wait, current);

	/* save current irq counts */
	spin_lock_irqsave(&info->lock,flags);
	cprev = info->icount;
	add_wait_queue(&info->status_event_wait_q, &wait);
	set_current_state(TASK_INTERRUPTIBLE);
	spin_unlock_irqrestore(&info->lock,flags);

	for(;;) {
		schedule();
		if (signal_pending(current)) {
			rc = -ERESTARTSYS;
			break;
		}

		/* get new irq counts */
		spin_lock_irqsave(&info->lock,flags);
		cnow = info->icount;
		set_current_state(TASK_INTERRUPTIBLE);
		spin_unlock_irqrestore(&info->lock,flags);

		/* if no change, wait aborted for some reason */
		if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&
		    cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) {
			rc = -EIO;
			break;
		}

		/* check for change in caller specified modem input */
		if ((arg & TIOCM_RNG && cnow.rng != cprev.rng) ||
		    (arg & TIOCM_DSR && cnow.dsr != cprev.dsr) ||
		    (arg & TIOCM_CD  && cnow.dcd != cprev.dcd) ||
		    (arg & TIOCM_CTS && cnow.cts != cprev.cts)) {
			rc = 0;
			break;
		}

		cprev = cnow;
	}
	remove_wait_queue(&info->status_event_wait_q, &wait);
	set_current_state(TASK_RUNNING);
	return rc;
}

/* return the state of the serial control and status signals
 */
2125
static int tiocmget(struct tty_struct *tty)
L
Linus Torvalds 已提交
2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned int result;
 	unsigned long flags;

	spin_lock_irqsave(&info->lock,flags);
 	get_signals(info);
	spin_unlock_irqrestore(&info->lock,flags);

	result = ((info->serial_signals & SerialSignal_RTS) ? TIOCM_RTS:0) +
		((info->serial_signals & SerialSignal_DTR) ? TIOCM_DTR:0) +
		((info->serial_signals & SerialSignal_DCD) ? TIOCM_CAR:0) +
		((info->serial_signals & SerialSignal_RI)  ? TIOCM_RNG:0) +
		((info->serial_signals & SerialSignal_DSR) ? TIOCM_DSR:0) +
		((info->serial_signals & SerialSignal_CTS) ? TIOCM_CTS:0);

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):%s tiocmget() value=%08X\n",
			 __FILE__,__LINE__, info->device_name, result );
	return result;
}

/* set modem control signals (DTR/RTS)
 */
2150
static int tiocmset(struct tty_struct *tty,
L
Linus Torvalds 已提交
2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180
		    unsigned int set, unsigned int clear)
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
 	unsigned long flags;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):%s tiocmset(%x,%x)\n",
			__FILE__,__LINE__,info->device_name, set, clear);

	if (set & TIOCM_RTS)
		info->serial_signals |= SerialSignal_RTS;
	if (set & TIOCM_DTR)
		info->serial_signals |= SerialSignal_DTR;
	if (clear & TIOCM_RTS)
		info->serial_signals &= ~SerialSignal_RTS;
	if (clear & TIOCM_DTR)
		info->serial_signals &= ~SerialSignal_DTR;

	spin_lock_irqsave(&info->lock,flags);
 	set_signals(info);
	spin_unlock_irqrestore(&info->lock,flags);

	return 0;
}

/* Set or clear transmit break condition
 *
 * Arguments:		tty		pointer to tty instance data
 *			break_state	-1=set break condition, 0=clear
 */
A
Alan Cox 已提交
2181
static int mgslpc_break(struct tty_struct *tty, int break_state)
L
Linus Torvalds 已提交
2182 2183 2184
{
	MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
2185

L
Linus Torvalds 已提交
2186 2187 2188
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_break(%s,%d)\n",
			 __FILE__,__LINE__, info->device_name, break_state);
2189

L
Linus Torvalds 已提交
2190
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_break"))
A
Alan Cox 已提交
2191
		return -EINVAL;
L
Linus Torvalds 已提交
2192 2193 2194 2195

	spin_lock_irqsave(&info->lock,flags);
 	if (break_state == -1)
		set_reg_bits(info, CHA+DAFO, BIT6);
2196
	else
L
Linus Torvalds 已提交
2197 2198
		clear_reg_bits(info, CHA+DAFO, BIT6);
	spin_unlock_irqrestore(&info->lock,flags);
A
Alan Cox 已提交
2199
	return 0;
L
Linus Torvalds 已提交
2200 2201
}

2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
static int mgslpc_get_icount(struct tty_struct *tty,
				struct serial_icounter_struct *icount)
{
	MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
	struct mgsl_icount cnow;	/* kernel counter temps */
	unsigned long flags;

	spin_lock_irqsave(&info->lock,flags);
	cnow = info->icount;
	spin_unlock_irqrestore(&info->lock,flags);

	icount->cts = cnow.cts;
	icount->dsr = cnow.dsr;
	icount->rng = cnow.rng;
	icount->dcd = cnow.dcd;
	icount->rx = cnow.rx;
	icount->tx = cnow.tx;
	icount->frame = cnow.frame;
	icount->overrun = cnow.overrun;
	icount->parity = cnow.parity;
	icount->brk = cnow.brk;
	icount->buf_overrun = cnow.buf_overrun;

	return 0;
}

L
Linus Torvalds 已提交
2228
/* Service an IOCTL request
2229
 *
L
Linus Torvalds 已提交
2230
 * Arguments:
2231
 *
L
Linus Torvalds 已提交
2232 2233 2234
 * 	tty	pointer to tty instance data
 * 	cmd	IOCTL command code
 * 	arg	command argument/context
2235
 *
L
Linus Torvalds 已提交
2236 2237
 * Return Value:	0 if success, otherwise error code
 */
2238
static int mgslpc_ioctl(struct tty_struct *tty,
L
Linus Torvalds 已提交
2239 2240 2241
			unsigned int cmd, unsigned long arg)
{
	MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
A
Alan Cox 已提交
2242
	void __user *argp = (void __user *)arg;
2243

L
Linus Torvalds 已提交
2244 2245 2246
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_ioctl %s cmd=%08X\n", __FILE__,__LINE__,
			info->device_name, cmd );
2247

L
Linus Torvalds 已提交
2248 2249 2250 2251
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_ioctl"))
		return -ENODEV;

	if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
2252
	    (cmd != TIOCMIWAIT)) {
L
Linus Torvalds 已提交
2253 2254 2255 2256 2257 2258 2259 2260
		if (tty->flags & (1 << TTY_IO_ERROR))
		    return -EIO;
	}

	switch (cmd) {
	case MGSL_IOCGPARAMS:
		return get_params(info, argp);
	case MGSL_IOCSPARAMS:
A
Alan Cox 已提交
2261
		return set_params(info, argp, tty);
L
Linus Torvalds 已提交
2262 2263 2264 2265 2266 2267 2268 2269 2270
	case MGSL_IOCGTXIDLE:
		return get_txidle(info, argp);
	case MGSL_IOCSTXIDLE:
		return set_txidle(info, (int)arg);
	case MGSL_IOCGIF:
		return get_interface(info, argp);
	case MGSL_IOCSIF:
		return set_interface(info,(int)arg);
	case MGSL_IOCTXENABLE:
A
Alan Cox 已提交
2271
		return set_txenable(info,(int)arg, tty);
L
Linus Torvalds 已提交
2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288
	case MGSL_IOCRXENABLE:
		return set_rxenable(info,(int)arg);
	case MGSL_IOCTXABORT:
		return tx_abort(info);
	case MGSL_IOCGSTATS:
		return get_stats(info, argp);
	case MGSL_IOCWAITEVENT:
		return wait_events(info, argp);
	case TIOCMIWAIT:
		return modem_input_wait(info,(int)arg);
	default:
		return -ENOIOCTLCMD;
	}
	return 0;
}

/* Set new termios settings
2289
 *
L
Linus Torvalds 已提交
2290
 * Arguments:
2291
 *
L
Linus Torvalds 已提交
2292 2293 2294
 * 	tty		pointer to tty structure
 * 	termios		pointer to buffer to hold returned old termios
 */
A
Alan Cox 已提交
2295
static void mgslpc_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
L
Linus Torvalds 已提交
2296 2297 2298
{
	MGSLPC_INFO *info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long flags;
2299

L
Linus Torvalds 已提交
2300 2301 2302
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_set_termios %s\n", __FILE__,__LINE__,
			tty->driver->name );
2303

L
Linus Torvalds 已提交
2304
	/* just return if nothing has changed */
2305 2306
	if ((tty->termios.c_cflag == old_termios->c_cflag)
	    && (RELEVANT_IFLAG(tty->termios.c_iflag)
L
Linus Torvalds 已提交
2307 2308 2309
		== RELEVANT_IFLAG(old_termios->c_iflag)))
	  return;

A
Alan Cox 已提交
2310
	mgslpc_change_params(info, tty);
L
Linus Torvalds 已提交
2311 2312 2313

	/* Handle transition to B0 status */
	if (old_termios->c_cflag & CBAUD &&
2314
	    !(tty->termios.c_cflag & CBAUD)) {
L
Linus Torvalds 已提交
2315 2316 2317 2318 2319
		info->serial_signals &= ~(SerialSignal_RTS + SerialSignal_DTR);
		spin_lock_irqsave(&info->lock,flags);
	 	set_signals(info);
		spin_unlock_irqrestore(&info->lock,flags);
	}
2320

L
Linus Torvalds 已提交
2321 2322
	/* Handle transition away from B0 status */
	if (!(old_termios->c_cflag & CBAUD) &&
2323
	    tty->termios.c_cflag & CBAUD) {
L
Linus Torvalds 已提交
2324
		info->serial_signals |= SerialSignal_DTR;
2325
 		if (!(tty->termios.c_cflag & CRTSCTS) ||
L
Linus Torvalds 已提交
2326 2327 2328 2329 2330 2331 2332
 		    !test_bit(TTY_THROTTLED, &tty->flags)) {
			info->serial_signals |= SerialSignal_RTS;
 		}
		spin_lock_irqsave(&info->lock,flags);
	 	set_signals(info);
		spin_unlock_irqrestore(&info->lock,flags);
	}
2333

L
Linus Torvalds 已提交
2334 2335
	/* Handle turning off CRTSCTS */
	if (old_termios->c_cflag & CRTSCTS &&
2336
	    !(tty->termios.c_cflag & CRTSCTS)) {
L
Linus Torvalds 已提交
2337 2338 2339 2340 2341 2342 2343 2344
		tty->hw_stopped = 0;
		tx_release(tty);
	}
}

static void mgslpc_close(struct tty_struct *tty, struct file * filp)
{
	MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
A
Alan Cox 已提交
2345
	struct tty_port *port = &info->port;
L
Linus Torvalds 已提交
2346 2347 2348

	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_close"))
		return;
2349

L
Linus Torvalds 已提交
2350 2351
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_close(%s) entry, count=%d\n",
A
Alan Cox 已提交
2352
			 __FILE__,__LINE__, info->device_name, port->count);
L
Linus Torvalds 已提交
2353

A
Alan Cox 已提交
2354
	WARN_ON(!port->count);
2355

A
Alan Cox 已提交
2356
	if (tty_port_close_start(port, tty, filp) == 0)
L
Linus Torvalds 已提交
2357
		goto cleanup;
2358

A
Alan Cox 已提交
2359
 	if (port->flags & ASYNC_INITIALIZED)
L
Linus Torvalds 已提交
2360 2361
 		mgslpc_wait_until_sent(tty, info->timeout);

2362
	mgslpc_flush_buffer(tty);
L
Linus Torvalds 已提交
2363

2364
	tty_ldisc_flush(tty);
A
Alan Cox 已提交
2365 2366 2367 2368
	shutdown(info, tty);
	
	tty_port_close_end(port, tty);
	tty_port_tty_set(port, NULL);
2369
cleanup:
L
Linus Torvalds 已提交
2370 2371
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_close(%s) exit, count=%d\n", __FILE__,__LINE__,
A
Alan Cox 已提交
2372
			tty->driver->name, port->count);
L
Linus Torvalds 已提交
2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387
}

/* Wait until the transmitter is empty.
 */
static void mgslpc_wait_until_sent(struct tty_struct *tty, int timeout)
{
	MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
	unsigned long orig_jiffies, char_time;

	if (!info )
		return;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_wait_until_sent(%s) entry\n",
			 __FILE__,__LINE__, info->device_name );
2388

L
Linus Torvalds 已提交
2389 2390 2391
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_wait_until_sent"))
		return;

A
Alan Cox 已提交
2392
	if (!(info->port.flags & ASYNC_INITIALIZED))
L
Linus Torvalds 已提交
2393
		goto exit;
2394

L
Linus Torvalds 已提交
2395
	orig_jiffies = jiffies;
2396

L
Linus Torvalds 已提交
2397 2398 2399 2400
	/* Set check interval to 1/5 of estimated time to
	 * send a character, and make it at least 1. The check
	 * interval should also be less than the timeout.
	 * Note: use tight timings here to satisfy the NIST-PCTS.
2401 2402
	 */

L
Linus Torvalds 已提交
2403 2404 2405 2406 2407 2408
	if ( info->params.data_rate ) {
	       	char_time = info->timeout/(32 * 5);
		if (!char_time)
			char_time++;
	} else
		char_time = 1;
2409

L
Linus Torvalds 已提交
2410 2411
	if (timeout)
		char_time = min_t(unsigned long, char_time, timeout);
2412

L
Linus Torvalds 已提交
2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430
	if (info->params.mode == MGSL_MODE_HDLC) {
		while (info->tx_active) {
			msleep_interruptible(jiffies_to_msecs(char_time));
			if (signal_pending(current))
				break;
			if (timeout && time_after(jiffies, orig_jiffies + timeout))
				break;
		}
	} else {
		while ((info->tx_count || info->tx_active) &&
			info->tx_enabled) {
			msleep_interruptible(jiffies_to_msecs(char_time));
			if (signal_pending(current))
				break;
			if (timeout && time_after(jiffies, orig_jiffies + timeout))
				break;
		}
	}
2431

L
Linus Torvalds 已提交
2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443
exit:
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_wait_until_sent(%s) exit\n",
			 __FILE__,__LINE__, info->device_name );
}

/* Called by tty_hangup() when a hangup is signaled.
 * This is the same as closing all open files for the port.
 */
static void mgslpc_hangup(struct tty_struct *tty)
{
	MGSLPC_INFO * info = (MGSLPC_INFO *)tty->driver_data;
2444

L
Linus Torvalds 已提交
2445 2446 2447
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_hangup(%s)\n",
			 __FILE__,__LINE__, info->device_name );
2448

L
Linus Torvalds 已提交
2449 2450 2451 2452
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_hangup"))
		return;

	mgslpc_flush_buffer(tty);
A
Alan Cox 已提交
2453 2454
	shutdown(info, tty);
	tty_port_hangup(&info->port);
L
Linus Torvalds 已提交
2455 2456
}

A
Alan Cox 已提交
2457
static int carrier_raised(struct tty_port *port)
L
Linus Torvalds 已提交
2458
{
A
Alan Cox 已提交
2459 2460
	MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
	unsigned long flags;
2461

A
Alan Cox 已提交
2462 2463 2464
	spin_lock_irqsave(&info->lock,flags);
 	get_signals(info);
	spin_unlock_irqrestore(&info->lock,flags);
2465

A
Alan Cox 已提交
2466 2467 2468 2469
	if (info->serial_signals & SerialSignal_DCD)
		return 1;
	return 0;
}
2470

2471
static void dtr_rts(struct tty_port *port, int onoff)
A
Alan Cox 已提交
2472 2473 2474
{
	MGSLPC_INFO *info = container_of(port, MGSLPC_INFO, port);
	unsigned long flags;
2475

A
Alan Cox 已提交
2476
	spin_lock_irqsave(&info->lock,flags);
2477 2478 2479 2480
	if (onoff)
		info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
	else
		info->serial_signals &= ~SerialSignal_RTS + SerialSignal_DTR;
A
Alan Cox 已提交
2481 2482
	set_signals(info);
	spin_unlock_irqrestore(&info->lock,flags);
L
Linus Torvalds 已提交
2483 2484
}

A
Alan Cox 已提交
2485

L
Linus Torvalds 已提交
2486 2487 2488
static int mgslpc_open(struct tty_struct *tty, struct file * filp)
{
	MGSLPC_INFO	*info;
A
Alan Cox 已提交
2489
	struct tty_port *port;
L
Linus Torvalds 已提交
2490 2491 2492
	int 			retval, line;
	unsigned long flags;

2493
	/* verify range of specified line number */
L
Linus Torvalds 已提交
2494
	line = tty->index;
2495
	if (line >= mgslpc_device_count) {
L
Linus Torvalds 已提交
2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506
		printk("%s(%d):mgslpc_open with invalid line #%d.\n",
			__FILE__,__LINE__,line);
		return -ENODEV;
	}

	/* find the info structure for the specified line */
	info = mgslpc_device_list;
	while(info && info->line != line)
		info = info->next_device;
	if (mgslpc_paranoia_check(info, tty->name, "mgslpc_open"))
		return -ENODEV;
2507

A
Alan Cox 已提交
2508
	port = &info->port;
L
Linus Torvalds 已提交
2509
	tty->driver_data = info;
A
Alan Cox 已提交
2510
	tty_port_tty_set(port, tty);
2511

L
Linus Torvalds 已提交
2512 2513
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_open(%s), old ref count = %d\n",
A
Alan Cox 已提交
2514
			 __FILE__,__LINE__,tty->driver->name, port->count);
L
Linus Torvalds 已提交
2515 2516

	/* If port is closing, signal caller to try again */
A
Alan Cox 已提交
2517 2518 2519 2520
	if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING){
		if (port->flags & ASYNC_CLOSING)
			interruptible_sleep_on(&port->close_wait);
		retval = ((port->flags & ASYNC_HUP_NOTIFY) ?
L
Linus Torvalds 已提交
2521 2522 2523
			-EAGAIN : -ERESTARTSYS);
		goto cleanup;
	}
2524

A
Alan Cox 已提交
2525
	tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
L
Linus Torvalds 已提交
2526 2527 2528 2529 2530 2531 2532

	spin_lock_irqsave(&info->netlock, flags);
	if (info->netcount) {
		retval = -EBUSY;
		spin_unlock_irqrestore(&info->netlock, flags);
		goto cleanup;
	}
A
Alan Cox 已提交
2533 2534 2535
	spin_lock(&port->lock);
	port->count++;
	spin_unlock(&port->lock);
L
Linus Torvalds 已提交
2536 2537
	spin_unlock_irqrestore(&info->netlock, flags);

A
Alan Cox 已提交
2538
	if (port->count == 1) {
L
Linus Torvalds 已提交
2539
		/* 1st open on this device, init hardware */
A
Alan Cox 已提交
2540
		retval = startup(info, tty);
L
Linus Torvalds 已提交
2541 2542 2543 2544
		if (retval < 0)
			goto cleanup;
	}

A
Alan Cox 已提交
2545
	retval = tty_port_block_til_ready(&info->port, tty, filp);
L
Linus Torvalds 已提交
2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556
	if (retval) {
		if (debug_level >= DEBUG_LEVEL_INFO)
			printk("%s(%d):block_til_ready(%s) returned %d\n",
				 __FILE__,__LINE__, info->device_name, retval);
		goto cleanup;
	}

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):mgslpc_open(%s) success\n",
			 __FILE__,__LINE__, info->device_name);
	retval = 0;
2557 2558

cleanup:
L
Linus Torvalds 已提交
2559 2560 2561 2562 2563 2564 2565
	return retval;
}

/*
 * /proc fs routines....
 */

2566
static inline void line_info(struct seq_file *m, MGSLPC_INFO *info)
L
Linus Torvalds 已提交
2567 2568 2569 2570
{
	char	stat_buf[30];
	unsigned long flags;

2571
	seq_printf(m, "%s:io:%04X irq:%d",
L
Linus Torvalds 已提交
2572 2573 2574 2575 2576 2577
		      info->device_name, info->io_base, info->irq_level);

	/* output current serial signal states */
	spin_lock_irqsave(&info->lock,flags);
 	get_signals(info);
	spin_unlock_irqrestore(&info->lock,flags);
2578

L
Linus Torvalds 已提交
2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594
	stat_buf[0] = 0;
	stat_buf[1] = 0;
	if (info->serial_signals & SerialSignal_RTS)
		strcat(stat_buf, "|RTS");
	if (info->serial_signals & SerialSignal_CTS)
		strcat(stat_buf, "|CTS");
	if (info->serial_signals & SerialSignal_DTR)
		strcat(stat_buf, "|DTR");
	if (info->serial_signals & SerialSignal_DSR)
		strcat(stat_buf, "|DSR");
	if (info->serial_signals & SerialSignal_DCD)
		strcat(stat_buf, "|CD");
	if (info->serial_signals & SerialSignal_RI)
		strcat(stat_buf, "|RI");

	if (info->params.mode == MGSL_MODE_HDLC) {
2595
		seq_printf(m, " HDLC txok:%d rxok:%d",
L
Linus Torvalds 已提交
2596 2597
			      info->icount.txok, info->icount.rxok);
		if (info->icount.txunder)
2598
			seq_printf(m, " txunder:%d", info->icount.txunder);
L
Linus Torvalds 已提交
2599
		if (info->icount.txabort)
2600
			seq_printf(m, " txabort:%d", info->icount.txabort);
L
Linus Torvalds 已提交
2601
		if (info->icount.rxshort)
2602
			seq_printf(m, " rxshort:%d", info->icount.rxshort);
L
Linus Torvalds 已提交
2603
		if (info->icount.rxlong)
2604
			seq_printf(m, " rxlong:%d", info->icount.rxlong);
L
Linus Torvalds 已提交
2605
		if (info->icount.rxover)
2606
			seq_printf(m, " rxover:%d", info->icount.rxover);
L
Linus Torvalds 已提交
2607
		if (info->icount.rxcrc)
2608
			seq_printf(m, " rxcrc:%d", info->icount.rxcrc);
L
Linus Torvalds 已提交
2609
	} else {
2610
		seq_printf(m, " ASYNC tx:%d rx:%d",
L
Linus Torvalds 已提交
2611 2612
			      info->icount.tx, info->icount.rx);
		if (info->icount.frame)
2613
			seq_printf(m, " fe:%d", info->icount.frame);
L
Linus Torvalds 已提交
2614
		if (info->icount.parity)
2615
			seq_printf(m, " pe:%d", info->icount.parity);
L
Linus Torvalds 已提交
2616
		if (info->icount.brk)
2617
			seq_printf(m, " brk:%d", info->icount.brk);
L
Linus Torvalds 已提交
2618
		if (info->icount.overrun)
2619
			seq_printf(m, " oe:%d", info->icount.overrun);
L
Linus Torvalds 已提交
2620
	}
2621

L
Linus Torvalds 已提交
2622
	/* Append serial signal status to end */
2623
	seq_printf(m, " %s\n", stat_buf+1);
2624

2625
	seq_printf(m, "txactive=%d bh_req=%d bh_run=%d pending_bh=%x\n",
L
Linus Torvalds 已提交
2626 2627 2628 2629 2630 2631
		       info->tx_active,info->bh_requested,info->bh_running,
		       info->pending_bh);
}

/* Called to print information about devices
 */
2632
static int mgslpc_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
2633 2634
{
	MGSLPC_INFO *info;
2635

2636
	seq_printf(m, "synclink driver:%s\n", driver_version);
2637

L
Linus Torvalds 已提交
2638 2639
	info = mgslpc_device_list;
	while( info ) {
2640
		line_info(m, info);
L
Linus Torvalds 已提交
2641 2642
		info = info->next_device;
	}
2643 2644
	return 0;
}
L
Linus Torvalds 已提交
2645

2646 2647 2648
static int mgslpc_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, mgslpc_proc_show, NULL);
L
Linus Torvalds 已提交
2649 2650
}

2651 2652 2653 2654 2655 2656 2657 2658
static const struct file_operations mgslpc_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= mgslpc_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

2659
static int rx_alloc_buffers(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677
{
	/* each buffer has header and data */
	info->rx_buf_size = sizeof(RXBUF) + info->max_frame_size;

	/* calculate total allocation size for 8 buffers */
	info->rx_buf_total_size = info->rx_buf_size * 8;

	/* limit total allocated memory */
	if (info->rx_buf_total_size > 0x10000)
		info->rx_buf_total_size = 0x10000;

	/* calculate number of buffers */
	info->rx_buf_count = info->rx_buf_total_size / info->rx_buf_size;

	info->rx_buf = kmalloc(info->rx_buf_total_size, GFP_KERNEL);
	if (info->rx_buf == NULL)
		return -ENOMEM;

2678 2679 2680 2681 2682 2683 2684 2685
	/* unused flag buffer to satisfy receive_buf calling interface */
	info->flag_buf = kzalloc(info->max_frame_size, GFP_KERNEL);
	if (!info->flag_buf) {
		kfree(info->rx_buf);
		info->rx_buf = NULL;
		return -ENOMEM;
	}
	
L
Linus Torvalds 已提交
2686 2687 2688 2689
	rx_reset_buffers(info);
	return 0;
}

2690
static void rx_free_buffers(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
2691
{
J
Jesper Juhl 已提交
2692
	kfree(info->rx_buf);
L
Linus Torvalds 已提交
2693
	info->rx_buf = NULL;
2694 2695
	kfree(info->flag_buf);
	info->flag_buf = NULL;
L
Linus Torvalds 已提交
2696 2697
}

2698
static int claim_resources(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
2699 2700
{
	if (rx_alloc_buffers(info) < 0 ) {
L
Lucas De Marchi 已提交
2701
		printk( "Can't allocate rx buffer %s\n", info->device_name);
L
Linus Torvalds 已提交
2702 2703
		release_resources(info);
		return -ENODEV;
2704
	}
L
Linus Torvalds 已提交
2705 2706 2707
	return 0;
}

2708
static void release_resources(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
2709 2710 2711 2712 2713 2714 2715 2716
{
	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("release_resources(%s)\n", info->device_name);
	rx_free_buffers(info);
}

/* Add the specified device instance data structure to the
 * global linked list of devices and increment the device count.
2717
 *
L
Linus Torvalds 已提交
2718 2719
 * Arguments:		info	pointer to device instance data
 */
2720
static void mgslpc_add_device(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
2721 2722 2723 2724
{
	info->next_device = NULL;
	info->line = mgslpc_device_count;
	sprintf(info->device_name,"ttySLP%d",info->line);
2725

L
Linus Torvalds 已提交
2726 2727 2728 2729 2730 2731
	if (info->line < MAX_DEVICE_COUNT) {
		if (maxframe[info->line])
			info->max_frame_size = maxframe[info->line];
	}

	mgslpc_device_count++;
2732

L
Linus Torvalds 已提交
2733 2734
	if (!mgslpc_device_list)
		mgslpc_device_list = info;
2735
	else {
L
Linus Torvalds 已提交
2736 2737 2738 2739 2740
		MGSLPC_INFO *current_dev = mgslpc_device_list;
		while( current_dev->next_device )
			current_dev = current_dev->next_device;
		current_dev->next_device = info;
	}
2741

L
Linus Torvalds 已提交
2742 2743 2744 2745
	if (info->max_frame_size < 4096)
		info->max_frame_size = 4096;
	else if (info->max_frame_size > 65535)
		info->max_frame_size = 65535;
2746

L
Linus Torvalds 已提交
2747 2748 2749
	printk( "SyncLink PC Card %s:IO=%04X IRQ=%d\n",
		info->device_name, info->io_base, info->irq_level);

2750
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
2751 2752
	hdlcdev_init(info);
#endif
2753
	tty_port_register_device(&info->port, serial_driver, info->line,
J
Jiri Slaby 已提交
2754
			&info->p_dev->dev);
L
Linus Torvalds 已提交
2755 2756
}

2757
static void mgslpc_remove_device(MGSLPC_INFO *remove_info)
L
Linus Torvalds 已提交
2758 2759 2760 2761 2762 2763 2764 2765 2766 2767
{
	MGSLPC_INFO *info = mgslpc_device_list;
	MGSLPC_INFO *last = NULL;

	while(info) {
		if (info == remove_info) {
			if (last)
				last->next_device = info->next_device;
			else
				mgslpc_device_list = info->next_device;
2768
			tty_unregister_device(serial_driver, info->line);
2769
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
2770 2771 2772
			hdlcdev_exit(info);
#endif
			release_resources(info);
2773
			tty_port_destroy(&info->port);
L
Linus Torvalds 已提交
2774 2775 2776 2777 2778 2779 2780 2781 2782
			kfree(info);
			mgslpc_device_count--;
			return;
		}
		last = info;
		info = info->next_device;
	}
}

2783
static const struct pcmcia_device_id mgslpc_ids[] = {
2784 2785 2786 2787 2788
	PCMCIA_DEVICE_MANF_CARD(0x02c5, 0x0050),
	PCMCIA_DEVICE_NULL
};
MODULE_DEVICE_TABLE(pcmcia, mgslpc_ids);

L
Linus Torvalds 已提交
2789 2790
static struct pcmcia_driver mgslpc_driver = {
	.owner		= THIS_MODULE,
2791
	.name		= "synclink_cs",
2792
	.probe		= mgslpc_probe,
2793
	.remove		= mgslpc_detach,
2794
	.id_table	= mgslpc_ids,
2795 2796
	.suspend	= mgslpc_suspend,
	.resume		= mgslpc_resume,
L
Linus Torvalds 已提交
2797 2798
};

J
Jeff Dike 已提交
2799
static const struct tty_operations mgslpc_ops = {
L
Linus Torvalds 已提交
2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819
	.open = mgslpc_open,
	.close = mgslpc_close,
	.write = mgslpc_write,
	.put_char = mgslpc_put_char,
	.flush_chars = mgslpc_flush_chars,
	.write_room = mgslpc_write_room,
	.chars_in_buffer = mgslpc_chars_in_buffer,
	.flush_buffer = mgslpc_flush_buffer,
	.ioctl = mgslpc_ioctl,
	.throttle = mgslpc_throttle,
	.unthrottle = mgslpc_unthrottle,
	.send_xchar = mgslpc_send_xchar,
	.break_ctl = mgslpc_break,
	.wait_until_sent = mgslpc_wait_until_sent,
	.set_termios = mgslpc_set_termios,
	.stop = tx_pause,
	.start = tx_release,
	.hangup = mgslpc_hangup,
	.tiocmget = tiocmget,
	.tiocmset = tiocmset,
2820
	.get_icount = mgslpc_get_icount,
2821
	.proc_fops = &mgslpc_proc_fops,
L
Linus Torvalds 已提交
2822 2823 2824 2825 2826 2827
};

static int __init synclink_cs_init(void)
{
	int rc;

2828 2829 2830
	if (break_on_load) {
		mgslpc_get_text_ptr();
		BREAKPOINT();
L
Linus Torvalds 已提交
2831 2832
	}

2833 2834 2835
	serial_driver = tty_alloc_driver(MAX_DEVICE_COUNT,
			TTY_DRIVER_REAL_RAW |
			TTY_DRIVER_DYNAMIC_DEV);
2836 2837
	if (IS_ERR(serial_driver)) {
		rc = PTR_ERR(serial_driver);
2838 2839
		goto err;
	}
L
Linus Torvalds 已提交
2840

2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851
	/* Initialize the tty_driver structure */
	serial_driver->driver_name = "synclink_cs";
	serial_driver->name = "ttySLP";
	serial_driver->major = ttymajor;
	serial_driver->minor_start = 64;
	serial_driver->type = TTY_DRIVER_TYPE_SERIAL;
	serial_driver->subtype = SERIAL_TYPE_NORMAL;
	serial_driver->init_termios = tty_std_termios;
	serial_driver->init_termios.c_cflag =
	B9600 | CS8 | CREAD | HUPCL | CLOCAL;
	tty_set_operations(serial_driver, &mgslpc_ops);
L
Linus Torvalds 已提交
2852

2853 2854 2855 2856 2857 2858
	rc = tty_register_driver(serial_driver);
	if (rc < 0) {
		printk(KERN_ERR "%s(%d):Couldn't register serial driver\n",
				__FILE__, __LINE__);
		goto err_put_tty;
	}
L
Linus Torvalds 已提交
2859

2860 2861 2862
	rc = pcmcia_register_driver(&mgslpc_driver);
	if (rc < 0)
		goto err_unreg_tty;
2863

2864 2865
	printk(KERN_INFO "%s %s, tty major#%d\n", driver_name, driver_version,
			serial_driver->major);
2866

2867
	return 0;
2868 2869
err_unreg_tty:
	tty_unregister_driver(serial_driver);
2870 2871
err_put_tty:
	put_tty_driver(serial_driver);
2872
err:
2873
	return rc;
L
Linus Torvalds 已提交
2874 2875
}

2876
static void __exit synclink_cs_exit(void)
L
Linus Torvalds 已提交
2877
{
2878
	pcmcia_unregister_driver(&mgslpc_driver);
2879 2880
	tty_unregister_driver(serial_driver);
	put_tty_driver(serial_driver);
L
Linus Torvalds 已提交
2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
}

module_init(synclink_cs_init);
module_exit(synclink_cs_exit);

static void mgslpc_set_rate(MGSLPC_INFO *info, unsigned char channel, unsigned int rate)
{
	unsigned int M, N;
	unsigned char val;

2891 2892
	/* note:standard BRG mode is broken in V3.2 chip
	 * so enhanced mode is always used
L
Linus Torvalds 已提交
2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910
	 */

	if (rate) {
		N = 3686400 / rate;
		if (!N)
			N = 1;
		N >>= 1;
		for (M = 1; N > 64 && M < 16; M++)
			N >>= 1;
		N--;

		/* BGR[5..0] = N
		 * BGR[9..6] = M
		 * BGR[7..0] contained in BGR register
		 * BGR[9..8] contained in CCR2[7..6]
		 * divisor = (N+1)*2^M
		 *
		 * Note: M *must* not be zero (causes asymetric duty cycle)
2911
		 */
L
Linus Torvalds 已提交
2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924
		write_reg(info, (unsigned char) (channel + BGR),
				  (unsigned char) ((M << 6) + N));
		val = read_reg(info, (unsigned char) (channel + CCR2)) & 0x3f;
		val |= ((M << 4) & 0xc0);
		write_reg(info, (unsigned char) (channel + CCR2), val);
	}
}

/* Enabled the AUX clock output at the specified frequency.
 */
static void enable_auxclk(MGSLPC_INFO *info)
{
	unsigned char val;
2925

L
Linus Torvalds 已提交
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936
	/* MODE
	 *
	 * 07..06  MDS[1..0] 10 = transparent HDLC mode
	 * 05      ADM Address Mode, 0 = no addr recognition
	 * 04      TMD Timer Mode, 0 = external
	 * 03      RAC Receiver Active, 0 = inactive
	 * 02      RTS 0=RTS active during xmit, 1=RTS always active
	 * 01      TRS Timer Resolution, 1=512
	 * 00      TLP Test Loop, 0 = no loop
	 *
	 * 1000 0010
2937
	 */
L
Linus Torvalds 已提交
2938
	val = 0x82;
2939 2940

	/* channel B RTS is used to enable AUXCLK driver on SP505 */
L
Linus Torvalds 已提交
2941 2942 2943
	if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
		val |= BIT2;
	write_reg(info, CHB + MODE, val);
2944

L
Linus Torvalds 已提交
2945 2946 2947 2948 2949 2950 2951 2952 2953
	/* CCR0
	 *
	 * 07      PU Power Up, 1=active, 0=power down
	 * 06      MCE Master Clock Enable, 1=enabled
	 * 05      Reserved, 0
	 * 04..02  SC[2..0] Encoding
	 * 01..00  SM[1..0] Serial Mode, 00=HDLC
	 *
	 * 11000000
2954
	 */
L
Linus Torvalds 已提交
2955
	write_reg(info, CHB + CCR0, 0xc0);
2956

L
Linus Torvalds 已提交
2957 2958 2959 2960 2961 2962 2963 2964 2965 2966
	/* CCR1
	 *
	 * 07      SFLG Shared Flag, 0 = disable shared flags
	 * 06      GALP Go Active On Loop, 0 = not used
	 * 05      GLP Go On Loop, 0 = not used
	 * 04      ODS Output Driver Select, 1=TxD is push-pull output
	 * 03      ITF Interframe Time Fill, 0=mark, 1=flag
	 * 02..00  CM[2..0] Clock Mode
	 *
	 * 0001 0111
2967
	 */
L
Linus Torvalds 已提交
2968
	write_reg(info, CHB + CCR1, 0x17);
2969

L
Linus Torvalds 已提交
2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980
	/* CCR2 (Channel B)
	 *
	 * 07..06  BGR[9..8] Baud rate bits 9..8
	 * 05      BDF Baud rate divisor factor, 0=1, 1=BGR value
	 * 04      SSEL Clock source select, 1=submode b
	 * 03      TOE 0=TxCLK is input, 1=TxCLK is output
	 * 02      RWX Read/Write Exchange 0=disabled
	 * 01      C32, CRC select, 0=CRC-16, 1=CRC-32
	 * 00      DIV, data inversion 0=disabled, 1=enabled
	 *
	 * 0011 1000
2981
	 */
L
Linus Torvalds 已提交
2982 2983 2984 2985
	if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
		write_reg(info, CHB + CCR2, 0x38);
	else
		write_reg(info, CHB + CCR2, 0x30);
2986

L
Linus Torvalds 已提交
2987 2988 2989 2990 2991 2992 2993 2994 2995 2996
	/* CCR4
	 *
	 * 07      MCK4 Master Clock Divide by 4, 1=enabled
	 * 06      EBRG Enhanced Baud Rate Generator Mode, 1=enabled
	 * 05      TST1 Test Pin, 0=normal operation
	 * 04      ICD Ivert Carrier Detect, 1=enabled (active low)
	 * 03..02  Reserved, must be 0
	 * 01..00  RFT[1..0] RxFIFO Threshold 00=32 bytes
	 *
	 * 0101 0000
2997
	 */
L
Linus Torvalds 已提交
2998
	write_reg(info, CHB + CCR4, 0x50);
2999

L
Linus Torvalds 已提交
3000 3001
	/* if auxclk not enabled, set internal BRG so
	 * CTS transitions can be detected (requires TxC)
3002
	 */
L
Linus Torvalds 已提交
3003 3004 3005 3006 3007 3008
	if (info->params.mode == MGSL_MODE_HDLC && info->params.clock_speed)
		mgslpc_set_rate(info, CHB, info->params.clock_speed);
	else
		mgslpc_set_rate(info, CHB, 921600);
}

3009
static void loopback_enable(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3010 3011
{
	unsigned char val;
3012 3013

	/* CCR1:02..00  CM[2..0] Clock Mode = 111 (clock mode 7) */
L
Linus Torvalds 已提交
3014 3015
	val = read_reg(info, CHA + CCR1) | (BIT2 + BIT1 + BIT0);
	write_reg(info, CHA + CCR1, val);
3016 3017

	/* CCR2:04 SSEL Clock source select, 1=submode b */
L
Linus Torvalds 已提交
3018 3019
	val = read_reg(info, CHA + CCR2) | (BIT4 + BIT5);
	write_reg(info, CHA + CCR2, val);
3020 3021

	/* set LinkSpeed if available, otherwise default to 2Mbps */
L
Linus Torvalds 已提交
3022 3023 3024 3025
	if (info->params.clock_speed)
		mgslpc_set_rate(info, CHA, info->params.clock_speed);
	else
		mgslpc_set_rate(info, CHA, 1843200);
3026 3027

	/* MODE:00 TLP Test Loop, 1=loopback enabled */
L
Linus Torvalds 已提交
3028 3029 3030 3031
	val = read_reg(info, CHA + MODE) | BIT0;
	write_reg(info, CHA + MODE, val);
}

3032
static void hdlc_mode(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3033 3034 3035 3036
{
	unsigned char val;
	unsigned char clkmode, clksubmode;

3037
	/* disable all interrupts */
L
Linus Torvalds 已提交
3038 3039 3040
	irq_disable(info, CHA, 0xffff);
	irq_disable(info, CHB, 0xffff);
	port_irq_disable(info, 0xff);
3041 3042

	/* assume clock mode 0a, rcv=RxC xmt=TxC */
L
Linus Torvalds 已提交
3043 3044 3045
	clkmode = clksubmode = 0;
	if (info->params.flags & HDLC_FLAG_RXC_DPLL
	    && info->params.flags & HDLC_FLAG_TXC_DPLL) {
3046
		/* clock mode 7a, rcv = DPLL, xmt = DPLL */
L
Linus Torvalds 已提交
3047 3048 3049
		clkmode = 7;
	} else if (info->params.flags & HDLC_FLAG_RXC_BRG
		 && info->params.flags & HDLC_FLAG_TXC_BRG) {
3050
		/* clock mode 7b, rcv = BRG, xmt = BRG */
L
Linus Torvalds 已提交
3051 3052 3053 3054
		clkmode = 7;
		clksubmode = 1;
	} else if (info->params.flags & HDLC_FLAG_RXC_DPLL) {
		if (info->params.flags & HDLC_FLAG_TXC_BRG) {
3055
			/* clock mode 6b, rcv = DPLL, xmt = BRG/16 */
L
Linus Torvalds 已提交
3056 3057 3058
			clkmode = 6;
			clksubmode = 1;
		} else {
3059
			/* clock mode 6a, rcv = DPLL, xmt = TxC */
L
Linus Torvalds 已提交
3060 3061 3062
			clkmode = 6;
		}
	} else if (info->params.flags & HDLC_FLAG_TXC_BRG) {
3063
		/* clock mode 0b, rcv = RxC, xmt = BRG */
L
Linus Torvalds 已提交
3064 3065
		clksubmode = 1;
	}
3066

L
Linus Torvalds 已提交
3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077
	/* MODE
	 *
	 * 07..06  MDS[1..0] 10 = transparent HDLC mode
	 * 05      ADM Address Mode, 0 = no addr recognition
	 * 04      TMD Timer Mode, 0 = external
	 * 03      RAC Receiver Active, 0 = inactive
	 * 02      RTS 0=RTS active during xmit, 1=RTS always active
	 * 01      TRS Timer Resolution, 1=512
	 * 00      TLP Test Loop, 0 = no loop
	 *
	 * 1000 0010
3078
	 */
L
Linus Torvalds 已提交
3079 3080 3081
	val = 0x82;
	if (info->params.loopback)
		val |= BIT0;
3082 3083

	/* preserve RTS state */
L
Linus Torvalds 已提交
3084 3085 3086
	if (info->serial_signals & SerialSignal_RTS)
		val |= BIT2;
	write_reg(info, CHA + MODE, val);
3087

L
Linus Torvalds 已提交
3088 3089 3090 3091 3092 3093 3094 3095 3096
	/* CCR0
	 *
	 * 07      PU Power Up, 1=active, 0=power down
	 * 06      MCE Master Clock Enable, 1=enabled
	 * 05      Reserved, 0
	 * 04..02  SC[2..0] Encoding
	 * 01..00  SM[1..0] Serial Mode, 00=HDLC
	 *
	 * 11000000
3097
	 */
L
Linus Torvalds 已提交
3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114
	val = 0xc0;
	switch (info->params.encoding)
	{
	case HDLC_ENCODING_NRZI:
		val |= BIT3;
		break;
	case HDLC_ENCODING_BIPHASE_SPACE:
		val |= BIT4;
		break;		// FM0
	case HDLC_ENCODING_BIPHASE_MARK:
		val |= BIT4 + BIT2;
		break;		// FM1
	case HDLC_ENCODING_BIPHASE_LEVEL:
		val |= BIT4 + BIT3;
		break;		// Manchester
	}
	write_reg(info, CHA + CCR0, val);
3115

L
Linus Torvalds 已提交
3116 3117 3118 3119 3120 3121 3122 3123 3124 3125
	/* CCR1
	 *
	 * 07      SFLG Shared Flag, 0 = disable shared flags
	 * 06      GALP Go Active On Loop, 0 = not used
	 * 05      GLP Go On Loop, 0 = not used
	 * 04      ODS Output Driver Select, 1=TxD is push-pull output
	 * 03      ITF Interframe Time Fill, 0=mark, 1=flag
	 * 02..00  CM[2..0] Clock Mode
	 *
	 * 0001 0000
3126
	 */
L
Linus Torvalds 已提交
3127 3128
	val = 0x10 + clkmode;
	write_reg(info, CHA + CCR1, val);
3129

L
Linus Torvalds 已提交
3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140
	/* CCR2
	 *
	 * 07..06  BGR[9..8] Baud rate bits 9..8
	 * 05      BDF Baud rate divisor factor, 0=1, 1=BGR value
	 * 04      SSEL Clock source select, 1=submode b
	 * 03      TOE 0=TxCLK is input, 0=TxCLK is input
	 * 02      RWX Read/Write Exchange 0=disabled
	 * 01      C32, CRC select, 0=CRC-16, 1=CRC-32
	 * 00      DIV, data inversion 0=disabled, 1=enabled
	 *
	 * 0000 0000
3141
	 */
L
Linus Torvalds 已提交
3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152
	val = 0x00;
	if (clkmode == 2 || clkmode == 3 || clkmode == 6
	    || clkmode == 7 || (clkmode == 0 && clksubmode == 1))
		val |= BIT5;
	if (clksubmode)
		val |= BIT4;
	if (info->params.crc_type == HDLC_CRC_32_CCITT)
		val |= BIT1;
	if (info->params.encoding == HDLC_ENCODING_NRZB)
		val |= BIT0;
	write_reg(info, CHA + CCR2, val);
3153

L
Linus Torvalds 已提交
3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164
	/* CCR3
	 *
	 * 07..06  PRE[1..0] Preamble count 00=1, 01=2, 10=4, 11=8
	 * 05      EPT Enable preamble transmission, 1=enabled
	 * 04      RADD Receive address pushed to FIFO, 0=disabled
	 * 03      CRL CRC Reset Level, 0=FFFF
	 * 02      RCRC Rx CRC 0=On 1=Off
	 * 01      TCRC Tx CRC 0=On 1=Off
	 * 00      PSD DPLL Phase Shift Disable
	 *
	 * 0000 0000
3165
	 */
L
Linus Torvalds 已提交
3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183
	val = 0x00;
	if (info->params.crc_type == HDLC_CRC_NONE)
		val |= BIT2 + BIT1;
	if (info->params.preamble != HDLC_PREAMBLE_PATTERN_NONE)
		val |= BIT5;
	switch (info->params.preamble_length)
	{
	case HDLC_PREAMBLE_LENGTH_16BITS:
		val |= BIT6;
		break;
	case HDLC_PREAMBLE_LENGTH_32BITS:
		val |= BIT6;
		break;
	case HDLC_PREAMBLE_LENGTH_64BITS:
		val |= BIT7 + BIT6;
		break;
	}
	write_reg(info, CHA + CCR3, val);
3184 3185

	/* PRE - Preamble pattern */
L
Linus Torvalds 已提交
3186 3187 3188 3189 3190 3191 3192 3193 3194
	val = 0;
	switch (info->params.preamble)
	{
	case HDLC_PREAMBLE_PATTERN_FLAGS: val = 0x7e; break;
	case HDLC_PREAMBLE_PATTERN_10:    val = 0xaa; break;
	case HDLC_PREAMBLE_PATTERN_01:    val = 0x55; break;
	case HDLC_PREAMBLE_PATTERN_ONES:  val = 0xff; break;
	}
	write_reg(info, CHA + PRE, val);
3195

L
Linus Torvalds 已提交
3196 3197 3198 3199 3200 3201 3202 3203 3204 3205
	/* CCR4
	 *
	 * 07      MCK4 Master Clock Divide by 4, 1=enabled
	 * 06      EBRG Enhanced Baud Rate Generator Mode, 1=enabled
	 * 05      TST1 Test Pin, 0=normal operation
	 * 04      ICD Ivert Carrier Detect, 1=enabled (active low)
	 * 03..02  Reserved, must be 0
	 * 01..00  RFT[1..0] RxFIFO Threshold 00=32 bytes
	 *
	 * 0101 0000
3206
	 */
L
Linus Torvalds 已提交
3207 3208 3209 3210 3211 3212
	val = 0x50;
	write_reg(info, CHA + CCR4, val);
	if (info->params.flags & HDLC_FLAG_RXC_DPLL)
		mgslpc_set_rate(info, CHA, info->params.clock_speed * 16);
	else
		mgslpc_set_rate(info, CHA, info->params.clock_speed);
3213

L
Linus Torvalds 已提交
3214 3215 3216 3217
	/* RLCR Receive length check register
	 *
	 * 7     1=enable receive length check
	 * 6..0  Max frame length = (RL + 1) * 32
3218
	 */
L
Linus Torvalds 已提交
3219
	write_reg(info, CHA + RLCR, 0);
3220

L
Linus Torvalds 已提交
3221 3222 3223 3224 3225 3226 3227 3228 3229
	/* XBCH Transmit Byte Count High
	 *
	 * 07      DMA mode, 0 = interrupt driven
	 * 06      NRM, 0=ABM (ignored)
	 * 05      CAS Carrier Auto Start
	 * 04      XC Transmit Continuously (ignored)
	 * 03..00  XBC[10..8] Transmit byte count bits 10..8
	 *
	 * 0000 0000
3230
	 */
L
Linus Torvalds 已提交
3231 3232 3233 3234 3235 3236 3237 3238 3239 3240
	val = 0x00;
	if (info->params.flags & HDLC_FLAG_AUTO_DCD)
		val |= BIT5;
	write_reg(info, CHA + XBCH, val);
	enable_auxclk(info);
	if (info->params.loopback || info->testing_irq)
		loopback_enable(info);
	if (info->params.flags & HDLC_FLAG_AUTO_CTS)
	{
		irq_enable(info, CHB, IRQ_CTS);
3241
		/* PVR[3] 1=AUTO CTS active */
L
Linus Torvalds 已提交
3242 3243 3244 3245 3246 3247 3248 3249 3250 3251
		set_reg_bits(info, CHA + PVR, BIT3);
	} else
		clear_reg_bits(info, CHA + PVR, BIT3);

	irq_enable(info, CHA,
			 IRQ_RXEOM + IRQ_RXFIFO + IRQ_ALLSENT +
			 IRQ_UNDERRUN + IRQ_TXFIFO);
	issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
	wait_command_complete(info, CHA);
	read_reg16(info, CHA + ISR);	/* clear pending IRQs */
3252

L
Linus Torvalds 已提交
3253 3254 3255 3256 3257 3258 3259 3260 3261
	/* Master clock mode enabled above to allow reset commands
	 * to complete even if no data clocks are present.
	 *
	 * Disable master clock mode for normal communications because
	 * V3.2 of the ESCC2 has a bug that prevents the transmit all sent
	 * IRQ when in master clock mode.
	 *
	 * Leave master clock mode enabled for IRQ test because the
	 * timer IRQ used by the test can only happen in master clock mode.
3262
	 */
L
Linus Torvalds 已提交
3263 3264 3265 3266 3267 3268 3269 3270 3271
	if (!info->testing_irq)
		clear_reg_bits(info, CHA + CCR0, BIT6);

	tx_set_idle(info);

	tx_stop(info);
	rx_stop(info);
}

3272
static void rx_stop(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3273 3274 3275 3276
{
	if (debug_level >= DEBUG_LEVEL_ISR)
		printk("%s(%d):rx_stop(%s)\n",
			 __FILE__,__LINE__, info->device_name );
3277 3278

	/* MODE:03 RAC Receiver Active, 0=inactive */
L
Linus Torvalds 已提交
3279 3280
	clear_reg_bits(info, CHA + MODE, BIT3);

J
Joe Perches 已提交
3281 3282
	info->rx_enabled = false;
	info->rx_overflow = false;
L
Linus Torvalds 已提交
3283 3284
}

3285
static void rx_start(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3286 3287 3288 3289 3290 3291
{
	if (debug_level >= DEBUG_LEVEL_ISR)
		printk("%s(%d):rx_start(%s)\n",
			 __FILE__,__LINE__, info->device_name );

	rx_reset_buffers(info);
J
Joe Perches 已提交
3292 3293
	info->rx_enabled = false;
	info->rx_overflow = false;
L
Linus Torvalds 已提交
3294

3295
	/* MODE:03 RAC Receiver Active, 1=active */
L
Linus Torvalds 已提交
3296 3297
	set_reg_bits(info, CHA + MODE, BIT3);

J
Joe Perches 已提交
3298
	info->rx_enabled = true;
L
Linus Torvalds 已提交
3299 3300
}

A
Alan Cox 已提交
3301
static void tx_start(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
3302 3303 3304 3305
{
	if (debug_level >= DEBUG_LEVEL_ISR)
		printk("%s(%d):tx_start(%s)\n",
			 __FILE__,__LINE__, info->device_name );
3306

L
Linus Torvalds 已提交
3307 3308 3309 3310
	if (info->tx_count) {
		/* If auto RTS enabled and RTS is inactive, then assert */
		/* RTS and set a flag indicating that the driver should */
		/* negate RTS when the transmission completes. */
J
Joe Perches 已提交
3311
		info->drop_rts_on_tx_done = false;
L
Linus Torvalds 已提交
3312 3313 3314 3315 3316 3317

		if (info->params.flags & HDLC_FLAG_AUTO_RTS) {
			get_signals(info);
			if (!(info->serial_signals & SerialSignal_RTS)) {
				info->serial_signals |= SerialSignal_RTS;
				set_signals(info);
J
Joe Perches 已提交
3318
				info->drop_rts_on_tx_done = true;
L
Linus Torvalds 已提交
3319 3320 3321 3322 3323
			}
		}

		if (info->params.mode == MGSL_MODE_ASYNC) {
			if (!info->tx_active) {
J
Joe Perches 已提交
3324
				info->tx_active = true;
A
Alan Cox 已提交
3325
				tx_ready(info, tty);
L
Linus Torvalds 已提交
3326 3327
			}
		} else {
J
Joe Perches 已提交
3328
			info->tx_active = true;
A
Alan Cox 已提交
3329
			tx_ready(info, tty);
J
Jiri Slaby 已提交
3330 3331
			mod_timer(&info->tx_timer, jiffies +
					msecs_to_jiffies(5000));
L
Linus Torvalds 已提交
3332 3333 3334 3335
		}
	}

	if (!info->tx_enabled)
J
Joe Perches 已提交
3336
		info->tx_enabled = true;
L
Linus Torvalds 已提交
3337 3338
}

3339
static void tx_stop(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3340 3341 3342 3343
{
	if (debug_level >= DEBUG_LEVEL_ISR)
		printk("%s(%d):tx_stop(%s)\n",
			 __FILE__,__LINE__, info->device_name );
3344 3345

	del_timer(&info->tx_timer);
L
Linus Torvalds 已提交
3346

J
Joe Perches 已提交
3347 3348
	info->tx_enabled = false;
	info->tx_active = false;
L
Linus Torvalds 已提交
3349 3350 3351 3352
}

/* Reset the adapter to a known state and prepare it for further use.
 */
3353
static void reset_device(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3354
{
3355
	/* power up both channels (set BIT7) */
L
Linus Torvalds 已提交
3356 3357 3358 3359
	write_reg(info, CHA + CCR0, 0x80);
	write_reg(info, CHB + CCR0, 0x80);
	write_reg(info, CHA + MODE, 0);
	write_reg(info, CHB + MODE, 0);
3360 3361

	/* disable all interrupts */
L
Linus Torvalds 已提交
3362 3363 3364
	irq_disable(info, CHA, 0xffff);
	irq_disable(info, CHB, 0xffff);
	port_irq_disable(info, 0xff);
3365

L
Linus Torvalds 已提交
3366 3367 3368 3369 3370 3371 3372 3373 3374
	/* PCR Port Configuration Register
	 *
	 * 07..04  DEC[3..0] Serial I/F select outputs
	 * 03      output, 1=AUTO CTS control enabled
	 * 02      RI Ring Indicator input 0=active
	 * 01      DSR input 0=active
	 * 00      DTR output 0=active
	 *
	 * 0000 0110
3375
	 */
L
Linus Torvalds 已提交
3376
	write_reg(info, PCR, 0x06);
3377

L
Linus Torvalds 已提交
3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388
	/* PVR Port Value Register
	 *
	 * 07..04  DEC[3..0] Serial I/F select (0000=disabled)
	 * 03      AUTO CTS output 1=enabled
	 * 02      RI Ring Indicator input
	 * 01      DSR input
	 * 00      DTR output (1=inactive)
	 *
	 * 0000 0001
	 */
//	write_reg(info, PVR, PVR_DTR);
3389

L
Linus Torvalds 已提交
3390 3391 3392 3393 3394 3395 3396 3397 3398
	/* IPC Interrupt Port Configuration
	 *
	 * 07      VIS 1=Masked interrupts visible
	 * 06..05  Reserved, 0
	 * 04..03  SLA Slave address, 00 ignored
	 * 02      CASM Cascading Mode, 1=daisy chain
	 * 01..00  IC[1..0] Interrupt Config, 01=push-pull output, active low
	 *
	 * 0000 0101
3399
	 */
L
Linus Torvalds 已提交
3400 3401 3402
	write_reg(info, IPC, 0x05);
}

3403
static void async_mode(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3404 3405 3406
{
	unsigned char val;

3407
	/* disable all interrupts */
L
Linus Torvalds 已提交
3408 3409 3410
	irq_disable(info, CHA, 0xffff);
	irq_disable(info, CHB, 0xffff);
	port_irq_disable(info, 0xff);
3411

L
Linus Torvalds 已提交
3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423
	/* MODE
	 *
	 * 07      Reserved, 0
	 * 06      FRTS RTS State, 0=active
	 * 05      FCTS Flow Control on CTS
	 * 04      FLON Flow Control Enable
	 * 03      RAC Receiver Active, 0 = inactive
	 * 02      RTS 0=Auto RTS, 1=manual RTS
	 * 01      TRS Timer Resolution, 1=512
	 * 00      TLP Test Loop, 0 = no loop
	 *
	 * 0000 0110
3424
	 */
L
Linus Torvalds 已提交
3425 3426 3427
	val = 0x06;
	if (info->params.loopback)
		val |= BIT0;
3428 3429

	/* preserve RTS state */
L
Linus Torvalds 已提交
3430 3431 3432
	if (!(info->serial_signals & SerialSignal_RTS))
		val |= BIT6;
	write_reg(info, CHA + MODE, val);
3433

L
Linus Torvalds 已提交
3434 3435 3436 3437 3438 3439 3440 3441 3442
	/* CCR0
	 *
	 * 07      PU Power Up, 1=active, 0=power down
	 * 06      MCE Master Clock Enable, 1=enabled
	 * 05      Reserved, 0
	 * 04..02  SC[2..0] Encoding, 000=NRZ
	 * 01..00  SM[1..0] Serial Mode, 11=Async
	 *
	 * 1000 0011
3443
	 */
L
Linus Torvalds 已提交
3444
	write_reg(info, CHA + CCR0, 0x83);
3445

L
Linus Torvalds 已提交
3446 3447 3448 3449 3450 3451 3452 3453
	/* CCR1
	 *
	 * 07..05  Reserved, 0
	 * 04      ODS Output Driver Select, 1=TxD is push-pull output
	 * 03      BCR Bit Clock Rate, 1=16x
	 * 02..00  CM[2..0] Clock Mode, 111=BRG
	 *
	 * 0001 1111
3454
	 */
L
Linus Torvalds 已提交
3455
	write_reg(info, CHA + CCR1, 0x1f);
3456

L
Linus Torvalds 已提交
3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467
	/* CCR2 (channel A)
	 *
	 * 07..06  BGR[9..8] Baud rate bits 9..8
	 * 05      BDF Baud rate divisor factor, 0=1, 1=BGR value
	 * 04      SSEL Clock source select, 1=submode b
	 * 03      TOE 0=TxCLK is input, 0=TxCLK is input
	 * 02      RWX Read/Write Exchange 0=disabled
	 * 01      Reserved, 0
	 * 00      DIV, data inversion 0=disabled, 1=enabled
	 *
	 * 0001 0000
3468
	 */
L
Linus Torvalds 已提交
3469
	write_reg(info, CHA + CCR2, 0x10);
3470

L
Linus Torvalds 已提交
3471 3472 3473 3474 3475 3476
	/* CCR3
	 *
	 * 07..01  Reserved, 0
	 * 00      PSD DPLL Phase Shift Disable
	 *
	 * 0000 0000
3477
	 */
L
Linus Torvalds 已提交
3478
	write_reg(info, CHA + CCR3, 0);
3479

L
Linus Torvalds 已提交
3480 3481 3482 3483 3484 3485 3486 3487 3488
	/* CCR4
	 *
	 * 07      MCK4 Master Clock Divide by 4, 1=enabled
	 * 06      EBRG Enhanced Baud Rate Generator Mode, 1=enabled
	 * 05      TST1 Test Pin, 0=normal operation
	 * 04      ICD Ivert Carrier Detect, 1=enabled (active low)
	 * 03..00  Reserved, must be 0
	 *
	 * 0101 0000
3489
	 */
L
Linus Torvalds 已提交
3490 3491
	write_reg(info, CHA + CCR4, 0x50);
	mgslpc_set_rate(info, CHA, info->params.data_rate * 16);
3492

L
Linus Torvalds 已提交
3493 3494 3495 3496 3497 3498 3499 3500 3501
	/* DAFO Data Format
	 *
	 * 07      Reserved, 0
	 * 06      XBRK transmit break, 0=normal operation
	 * 05      Stop bits (0=1, 1=2)
	 * 04..03  PAR[1..0] Parity (01=odd, 10=even)
	 * 02      PAREN Parity Enable
	 * 01..00  CHL[1..0] Character Length (00=8, 01=7)
	 *
3502
	 */
L
Linus Torvalds 已提交
3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516
	val = 0x00;
	if (info->params.data_bits != 8)
		val |= BIT0;	/* 7 bits */
	if (info->params.stop_bits != 1)
		val |= BIT5;
	if (info->params.parity != ASYNC_PARITY_NONE)
	{
		val |= BIT2;	/* Parity enable */
		if (info->params.parity == ASYNC_PARITY_ODD)
			val |= BIT3;
		else
			val |= BIT4;
	}
	write_reg(info, CHA + DAFO, val);
3517

L
Linus Torvalds 已提交
3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528
	/* RFC Rx FIFO Control
	 *
	 * 07      Reserved, 0
	 * 06      DPS, 1=parity bit not stored in data byte
	 * 05      DXS, 0=all data stored in FIFO (including XON/XOFF)
	 * 04      RFDF Rx FIFO Data Format, 1=status byte stored in FIFO
	 * 03..02  RFTH[1..0], rx threshold, 11=16 status + 16 data byte
	 * 01      Reserved, 0
	 * 00      TCDE Terminate Char Detect Enable, 0=disabled
	 *
	 * 0101 1100
3529
	 */
L
Linus Torvalds 已提交
3530
	write_reg(info, CHA + RFC, 0x5c);
3531

L
Linus Torvalds 已提交
3532 3533 3534
	/* RLCR Receive length check register
	 *
	 * Max frame length = (RL + 1) * 32
3535
	 */
L
Linus Torvalds 已提交
3536
	write_reg(info, CHA + RLCR, 0);
3537

L
Linus Torvalds 已提交
3538 3539 3540 3541 3542 3543 3544 3545 3546
	/* XBCH Transmit Byte Count High
	 *
	 * 07      DMA mode, 0 = interrupt driven
	 * 06      NRM, 0=ABM (ignored)
	 * 05      CAS Carrier Auto Start
	 * 04      XC Transmit Continuously (ignored)
	 * 03..00  XBC[10..8] Transmit byte count bits 10..8
	 *
	 * 0000 0000
3547
	 */
L
Linus Torvalds 已提交
3548 3549 3550 3551 3552 3553
	val = 0x00;
	if (info->params.flags & HDLC_FLAG_AUTO_DCD)
		val |= BIT5;
	write_reg(info, CHA + XBCH, val);
	if (info->params.flags & HDLC_FLAG_AUTO_CTS)
		irq_enable(info, CHA, IRQ_CTS);
3554 3555

	/* MODE:03 RAC Receiver Active, 1=active */
L
Linus Torvalds 已提交
3556 3557 3558 3559
	set_reg_bits(info, CHA + MODE, BIT3);
	enable_auxclk(info);
	if (info->params.flags & HDLC_FLAG_AUTO_CTS) {
		irq_enable(info, CHB, IRQ_CTS);
3560
		/* PVR[3] 1=AUTO CTS active */
L
Linus Torvalds 已提交
3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573
		set_reg_bits(info, CHA + PVR, BIT3);
	} else
		clear_reg_bits(info, CHA + PVR, BIT3);
	irq_enable(info, CHA,
			  IRQ_RXEOM + IRQ_RXFIFO + IRQ_BREAK_ON + IRQ_RXTIME +
			  IRQ_ALLSENT + IRQ_TXFIFO);
	issue_command(info, CHA, CMD_TXRESET + CMD_RXRESET);
	wait_command_complete(info, CHA);
	read_reg16(info, CHA + ISR);	/* clear pending IRQs */
}

/* Set the HDLC idle mode for the transmitter.
 */
3574
static void tx_set_idle(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3575
{
3576
	/* Note: ESCC2 only supports flags and one idle modes */
L
Linus Torvalds 已提交
3577 3578 3579 3580 3581 3582 3583 3584
	if (info->idle_mode == HDLC_TXIDLE_FLAGS)
		set_reg_bits(info, CHA + CCR1, BIT3);
	else
		clear_reg_bits(info, CHA + CCR1, BIT3);
}

/* get state of the V24 status (input) signals.
 */
3585
static void get_signals(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3586 3587
{
	unsigned char status = 0;
3588 3589

	/* preserve DTR and RTS */
L
Linus Torvalds 已提交
3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606
	info->serial_signals &= SerialSignal_DTR + SerialSignal_RTS;

	if (read_reg(info, CHB + VSTR) & BIT7)
		info->serial_signals |= SerialSignal_DCD;
	if (read_reg(info, CHB + STAR) & BIT1)
		info->serial_signals |= SerialSignal_CTS;

	status = read_reg(info, CHA + PVR);
	if (!(status & PVR_RI))
		info->serial_signals |= SerialSignal_RI;
	if (!(status & PVR_DSR))
		info->serial_signals |= SerialSignal_DSR;
}

/* Set the state of DTR and RTS based on contents of
 * serial_signals member of device extension.
 */
3607
static void set_signals(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630
{
	unsigned char val;

	val = read_reg(info, CHA + MODE);
	if (info->params.mode == MGSL_MODE_ASYNC) {
		if (info->serial_signals & SerialSignal_RTS)
			val &= ~BIT6;
		else
			val |= BIT6;
	} else {
		if (info->serial_signals & SerialSignal_RTS)
			val |= BIT2;
		else
			val &= ~BIT2;
	}
	write_reg(info, CHA + MODE, val);

	if (info->serial_signals & SerialSignal_DTR)
		clear_reg_bits(info, CHA + PVR, PVR_DTR);
	else
		set_reg_bits(info, CHA + PVR, PVR_DTR);
}

3631
static void rx_reset_buffers(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647
{
	RXBUF *buf;
	int i;

	info->rx_put = 0;
	info->rx_get = 0;
	info->rx_frame_count = 0;
	for (i=0 ; i < info->rx_buf_count ; i++) {
		buf = (RXBUF*)(info->rx_buf + (i * info->rx_buf_size));
		buf->status = buf->count = 0;
	}
}

/* Attempt to return a received HDLC frame
 * Only frames received without errors are returned.
 *
J
Joe Perches 已提交
3648
 * Returns true if frame returned, otherwise false
L
Linus Torvalds 已提交
3649
 */
A
Alan Cox 已提交
3650
static bool rx_get_frame(MGSLPC_INFO *info, struct tty_struct *tty)
L
Linus Torvalds 已提交
3651 3652 3653 3654 3655
{
	unsigned short status;
	RXBUF *buf;
	unsigned int framesize = 0;
	unsigned long flags;
J
Joe Perches 已提交
3656
	bool return_frame = false;
3657

L
Linus Torvalds 已提交
3658
	if (info->rx_frame_count == 0)
J
Joe Perches 已提交
3659
		return false;
L
Linus Torvalds 已提交
3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677

	buf = (RXBUF*)(info->rx_buf + (info->rx_get * info->rx_buf_size));

	status = buf->status;

	/* 07  VFR  1=valid frame
	 * 06  RDO  1=data overrun
	 * 05  CRC  1=OK, 0=error
	 * 04  RAB  1=frame aborted
	 */
	if ((status & 0xf0) != 0xA0) {
		if (!(status & BIT7) || (status & BIT4))
			info->icount.rxabort++;
		else if (status & BIT6)
			info->icount.rxover++;
		else if (!(status & BIT5)) {
			info->icount.rxcrc++;
			if (info->params.crc_type & HDLC_CRC_RETURN_EX)
J
Joe Perches 已提交
3678
				return_frame = true;
L
Linus Torvalds 已提交
3679 3680
		}
		framesize = 0;
3681
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
3682
		{
3683 3684
			info->netdev->stats.rx_errors++;
			info->netdev->stats.rx_frame_errors++;
L
Linus Torvalds 已提交
3685 3686 3687
		}
#endif
	} else
J
Joe Perches 已提交
3688
		return_frame = true;
L
Linus Torvalds 已提交
3689 3690 3691 3692 3693 3694 3695

	if (return_frame)
		framesize = buf->count;

	if (debug_level >= DEBUG_LEVEL_BH)
		printk("%s(%d):rx_get_frame(%s) status=%04X size=%d\n",
			__FILE__,__LINE__,info->device_name,status,framesize);
3696

L
Linus Torvalds 已提交
3697
	if (debug_level >= DEBUG_LEVEL_DATA)
3698 3699
		trace_block(info, buf->data, framesize, 0);

L
Linus Torvalds 已提交
3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713
	if (framesize) {
		if ((info->params.crc_type & HDLC_CRC_RETURN_EX &&
		      framesize+1 > info->max_frame_size) ||
		    framesize > info->max_frame_size)
			info->icount.rxlong++;
		else {
			if (status & BIT5)
				info->icount.rxok++;

			if (info->params.crc_type & HDLC_CRC_RETURN_EX) {
				*(buf->data + framesize) = status & BIT5 ? RX_OK:RX_CRC_ERROR;
				++framesize;
			}

3714
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730
			if (info->netcount)
				hdlcdev_rx(info, buf->data, framesize);
			else
#endif
				ldisc_receive_buf(tty, buf->data, info->flag_buf, framesize);
		}
	}

	spin_lock_irqsave(&info->lock,flags);
	buf->status = buf->count = 0;
	info->rx_frame_count--;
	info->rx_get++;
	if (info->rx_get >= info->rx_buf_count)
		info->rx_get = 0;
	spin_unlock_irqrestore(&info->lock,flags);

J
Joe Perches 已提交
3731
	return true;
L
Linus Torvalds 已提交
3732 3733
}

J
Joe Perches 已提交
3734
static bool register_test(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3735
{
3736
	static unsigned char patterns[] =
L
Linus Torvalds 已提交
3737
	    { 0x00, 0xff, 0xaa, 0x55, 0x69, 0x96, 0x0f };
3738
	static unsigned int count = ARRAY_SIZE(patterns);
L
Linus Torvalds 已提交
3739
	unsigned int i;
J
Joe Perches 已提交
3740
	bool rc = true;
L
Linus Torvalds 已提交
3741 3742 3743 3744 3745 3746 3747 3748
	unsigned long flags;

	spin_lock_irqsave(&info->lock,flags);
	reset_device(info);

	for (i = 0; i < count; i++) {
		write_reg(info, XAD1, patterns[i]);
		write_reg(info, XAD2, patterns[(i + 1) % count]);
3749
		if ((read_reg(info, XAD1) != patterns[i]) ||
L
Linus Torvalds 已提交
3750
		    (read_reg(info, XAD2) != patterns[(i + 1) % count])) {
J
Joe Perches 已提交
3751
			rc = false;
L
Linus Torvalds 已提交
3752 3753 3754 3755 3756 3757 3758 3759
			break;
		}
	}

	spin_unlock_irqrestore(&info->lock,flags);
	return rc;
}

J
Joe Perches 已提交
3760
static bool irq_test(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3761 3762 3763 3764 3765 3766 3767
{
	unsigned long end_time;
	unsigned long flags;

	spin_lock_irqsave(&info->lock,flags);
	reset_device(info);

J
Joe Perches 已提交
3768
	info->testing_irq = true;
L
Linus Torvalds 已提交
3769 3770
	hdlc_mode(info);

J
Joe Perches 已提交
3771
	info->irq_occurred = false;
L
Linus Torvalds 已提交
3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784

	/* init hdlc mode */

	irq_enable(info, CHA, IRQ_TIMER);
	write_reg(info, CHA + TIMR, 0);	/* 512 cycles */
	issue_command(info, CHA, CMD_START_TIMER);

	spin_unlock_irqrestore(&info->lock,flags);

	end_time=100;
	while(end_time-- && !info->irq_occurred) {
		msleep_interruptible(10);
	}
3785

J
Joe Perches 已提交
3786
	info->testing_irq = false;
L
Linus Torvalds 已提交
3787 3788 3789 3790

	spin_lock_irqsave(&info->lock,flags);
	reset_device(info);
	spin_unlock_irqrestore(&info->lock,flags);
3791

J
Joe Perches 已提交
3792
	return info->irq_occurred;
L
Linus Torvalds 已提交
3793 3794
}

3795
static int adapter_test(MGSLPC_INFO *info)
L
Linus Torvalds 已提交
3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816
{
	if (!register_test(info)) {
		info->init_error = DiagStatus_AddressFailure;
		printk( "%s(%d):Register test failure for device %s Addr=%04X\n",
			__FILE__,__LINE__,info->device_name, (unsigned short)(info->io_base) );
		return -ENODEV;
	}

	if (!irq_test(info)) {
		info->init_error = DiagStatus_IrqFailure;
		printk( "%s(%d):Interrupt test failure for device %s IRQ=%d\n",
			__FILE__,__LINE__,info->device_name, (unsigned short)(info->irq_level) );
		return -ENODEV;
	}

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s(%d):device %s passed diagnostics\n",
			__FILE__,__LINE__,info->device_name);
	return 0;
}

3817
static void trace_block(MGSLPC_INFO *info,const char* data, int count, int xmit)
L
Linus Torvalds 已提交
3818 3819 3820 3821 3822 3823 3824
{
	int i;
	int linecount;
	if (xmit)
		printk("%s tx data:\n",info->device_name);
	else
		printk("%s rx data:\n",info->device_name);
3825

L
Linus Torvalds 已提交
3826 3827 3828 3829 3830
	while(count) {
		if (count > 16)
			linecount = 16;
		else
			linecount = count;
3831

L
Linus Torvalds 已提交
3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842
		for(i=0;i<linecount;i++)
			printk("%02X ",(unsigned char)data[i]);
		for(;i<17;i++)
			printk("   ");
		for(i=0;i<linecount;i++) {
			if (data[i]>=040 && data[i]<=0176)
				printk("%c",data[i]);
			else
				printk(".");
		}
		printk("\n");
3843

L
Linus Torvalds 已提交
3844 3845 3846 3847 3848 3849 3850 3851
		data  += linecount;
		count -= linecount;
	}
}

/* HDLC frame time out
 * update stats and do tx completion processing
 */
3852
static void tx_timeout(unsigned long context)
L
Linus Torvalds 已提交
3853 3854 3855
{
	MGSLPC_INFO *info = (MGSLPC_INFO*)context;
	unsigned long flags;
3856

L
Linus Torvalds 已提交
3857 3858 3859 3860 3861 3862 3863 3864
	if ( debug_level >= DEBUG_LEVEL_INFO )
		printk( "%s(%d):tx_timeout(%s)\n",
			__FILE__,__LINE__,info->device_name);
	if(info->tx_active &&
	   info->params.mode == MGSL_MODE_HDLC) {
		info->icount.txtimeout++;
	}
	spin_lock_irqsave(&info->lock,flags);
J
Joe Perches 已提交
3865
	info->tx_active = false;
L
Linus Torvalds 已提交
3866 3867 3868
	info->tx_count = info->tx_put = info->tx_get = 0;

	spin_unlock_irqrestore(&info->lock,flags);
3869

3870
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
3871 3872 3873 3874
	if (info->netcount)
		hdlcdev_tx_done(info);
	else
#endif
A
Alan Cox 已提交
3875 3876 3877 3878 3879
	{
		struct tty_struct *tty = tty_port_tty_get(&info->port);
		bh_transmit(info, tty);
		tty_kref_put(tty);
	}
L
Linus Torvalds 已提交
3880 3881
}

3882
#if SYNCLINK_GENERIC_HDLC
L
Linus Torvalds 已提交
3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897

/**
 * called by generic HDLC layer when protocol selected (PPP, frame relay, etc.)
 * set encoding and frame check sequence (FCS) options
 *
 * dev       pointer to network device structure
 * encoding  serial encoding setting
 * parity    FCS setting
 *
 * returns 0 if success, otherwise error code
 */
static int hdlcdev_attach(struct net_device *dev, unsigned short encoding,
			  unsigned short parity)
{
	MGSLPC_INFO *info = dev_to_port(dev);
A
Alan Cox 已提交
3898
	struct tty_struct *tty;
L
Linus Torvalds 已提交
3899 3900 3901 3902
	unsigned char  new_encoding;
	unsigned short new_crctype;

	/* return error if TTY interface open */
A
Alan Cox 已提交
3903
	if (info->port.count)
L
Linus Torvalds 已提交
3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924
		return -EBUSY;

	switch (encoding)
	{
	case ENCODING_NRZ:        new_encoding = HDLC_ENCODING_NRZ; break;
	case ENCODING_NRZI:       new_encoding = HDLC_ENCODING_NRZI_SPACE; break;
	case ENCODING_FM_MARK:    new_encoding = HDLC_ENCODING_BIPHASE_MARK; break;
	case ENCODING_FM_SPACE:   new_encoding = HDLC_ENCODING_BIPHASE_SPACE; break;
	case ENCODING_MANCHESTER: new_encoding = HDLC_ENCODING_BIPHASE_LEVEL; break;
	default: return -EINVAL;
	}

	switch (parity)
	{
	case PARITY_NONE:            new_crctype = HDLC_CRC_NONE; break;
	case PARITY_CRC16_PR1_CCITT: new_crctype = HDLC_CRC_16_CCITT; break;
	case PARITY_CRC32_PR1_CCITT: new_crctype = HDLC_CRC_32_CCITT; break;
	default: return -EINVAL;
	}

	info->params.encoding = new_encoding;
A
Alexey Dobriyan 已提交
3925
	info->params.crc_type = new_crctype;
L
Linus Torvalds 已提交
3926 3927

	/* if network interface up, reprogram hardware */
A
Alan Cox 已提交
3928 3929 3930 3931 3932
	if (info->netcount) {
		tty = tty_port_tty_get(&info->port);
		mgslpc_program_hw(info, tty);
		tty_kref_put(tty);
	}
L
Linus Torvalds 已提交
3933 3934 3935 3936 3937 3938 3939 3940 3941 3942

	return 0;
}

/**
 * called by generic HDLC layer to send frame
 *
 * skb  socket buffer containing HDLC frame
 * dev  pointer to network device structure
 */
S
Stephen Hemminger 已提交
3943 3944
static netdev_tx_t hdlcdev_xmit(struct sk_buff *skb,
				      struct net_device *dev)
L
Linus Torvalds 已提交
3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955
{
	MGSLPC_INFO *info = dev_to_port(dev);
	unsigned long flags;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk(KERN_INFO "%s:hdlc_xmit(%s)\n",__FILE__,dev->name);

	/* stop sending until this frame completes */
	netif_stop_queue(dev);

	/* copy data to device buffers */
3956
	skb_copy_from_linear_data(skb, info->tx_buf, skb->len);
L
Linus Torvalds 已提交
3957 3958 3959 3960
	info->tx_get = 0;
	info->tx_put = info->tx_count = skb->len;

	/* update network statistics */
3961 3962
	dev->stats.tx_packets++;
	dev->stats.tx_bytes += skb->len;
L
Linus Torvalds 已提交
3963 3964 3965 3966 3967 3968 3969 3970 3971

	/* done with socket buffer, so free it */
	dev_kfree_skb(skb);

	/* save start time for transmit timeout detection */
	dev->trans_start = jiffies;

	/* start hardware transmitter if necessary */
	spin_lock_irqsave(&info->lock,flags);
A
Alan Cox 已提交
3972 3973 3974 3975 3976
	if (!info->tx_active) {
		struct tty_struct *tty = tty_port_tty_get(&info->port);
	 	tx_start(info, tty);
	 	tty_kref_put(tty);
	}
L
Linus Torvalds 已提交
3977 3978
	spin_unlock_irqrestore(&info->lock,flags);

S
Stephen Hemminger 已提交
3979
	return NETDEV_TX_OK;
L
Linus Torvalds 已提交
3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992
}

/**
 * called by network layer when interface enabled
 * claim resources and initialize hardware
 *
 * dev  pointer to network device structure
 *
 * returns 0 if success, otherwise error code
 */
static int hdlcdev_open(struct net_device *dev)
{
	MGSLPC_INFO *info = dev_to_port(dev);
A
Alan Cox 已提交
3993
	struct tty_struct *tty;
L
Linus Torvalds 已提交
3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005
	int rc;
	unsigned long flags;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s:hdlcdev_open(%s)\n",__FILE__,dev->name);

	/* generic HDLC layer open processing */
	if ((rc = hdlc_open(dev)))
		return rc;

	/* arbitrate between network and tty opens */
	spin_lock_irqsave(&info->netlock, flags);
A
Alan Cox 已提交
4006
	if (info->port.count != 0 || info->netcount != 0) {
L
Linus Torvalds 已提交
4007 4008 4009 4010 4011 4012 4013
		printk(KERN_WARNING "%s: hdlc_open returning busy\n", dev->name);
		spin_unlock_irqrestore(&info->netlock, flags);
		return -EBUSY;
	}
	info->netcount=1;
	spin_unlock_irqrestore(&info->netlock, flags);

A
Alan Cox 已提交
4014
	tty = tty_port_tty_get(&info->port);
L
Linus Torvalds 已提交
4015
	/* claim resources and init adapter */
A
Alan Cox 已提交
4016 4017
	if ((rc = startup(info, tty)) != 0) {
		tty_kref_put(tty);
L
Linus Torvalds 已提交
4018 4019 4020 4021 4022 4023 4024
		spin_lock_irqsave(&info->netlock, flags);
		info->netcount=0;
		spin_unlock_irqrestore(&info->netlock, flags);
		return rc;
	}
	/* assert DTR and RTS, apply hardware settings */
	info->serial_signals |= SerialSignal_RTS + SerialSignal_DTR;
A
Alan Cox 已提交
4025 4026
	mgslpc_program_hw(info, tty);
	tty_kref_put(tty);
L
Linus Torvalds 已提交
4027 4028 4029 4030 4031 4032 4033 4034 4035

	/* enable network layer transmit */
	dev->trans_start = jiffies;
	netif_start_queue(dev);

	/* inform generic HDLC layer of current DCD status */
	spin_lock_irqsave(&info->lock, flags);
	get_signals(info);
	spin_unlock_irqrestore(&info->lock, flags);
4036 4037 4038 4039
	if (info->serial_signals & SerialSignal_DCD)
		netif_carrier_on(dev);
	else
		netif_carrier_off(dev);
L
Linus Torvalds 已提交
4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053
	return 0;
}

/**
 * called by network layer when interface is disabled
 * shutdown hardware and release resources
 *
 * dev  pointer to network device structure
 *
 * returns 0 if success, otherwise error code
 */
static int hdlcdev_close(struct net_device *dev)
{
	MGSLPC_INFO *info = dev_to_port(dev);
A
Alan Cox 已提交
4054
	struct tty_struct *tty = tty_port_tty_get(&info->port);
L
Linus Torvalds 已提交
4055 4056 4057 4058 4059 4060 4061 4062
	unsigned long flags;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s:hdlcdev_close(%s)\n",__FILE__,dev->name);

	netif_stop_queue(dev);

	/* shutdown adapter and release resources */
A
Alan Cox 已提交
4063 4064
	shutdown(info, tty);
	tty_kref_put(tty);
L
Linus Torvalds 已提交
4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094
	hdlc_close(dev);

	spin_lock_irqsave(&info->netlock, flags);
	info->netcount=0;
	spin_unlock_irqrestore(&info->netlock, flags);

	return 0;
}

/**
 * called by network layer to process IOCTL call to network device
 *
 * dev  pointer to network device structure
 * ifr  pointer to network interface request structure
 * cmd  IOCTL command code
 *
 * returns 0 if success, otherwise error code
 */
static int hdlcdev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
{
	const size_t size = sizeof(sync_serial_settings);
	sync_serial_settings new_line;
	sync_serial_settings __user *line = ifr->ifr_settings.ifs_ifsu.sync;
	MGSLPC_INFO *info = dev_to_port(dev);
	unsigned int flags;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("%s:hdlcdev_ioctl(%s)\n",__FILE__,dev->name);

	/* return error if TTY interface open */
A
Alan Cox 已提交
4095
	if (info->port.count)
L
Linus Torvalds 已提交
4096 4097 4098 4099 4100
		return -EBUSY;

	if (cmd != SIOCWANDEV)
		return hdlc_ioctl(dev, ifr, cmd);

4101 4102
	memset(&new_line, 0, size);

L
Linus Torvalds 已提交
4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169
	switch(ifr->ifr_settings.type) {
	case IF_GET_IFACE: /* return current sync_serial_settings */

		ifr->ifr_settings.type = IF_IFACE_SYNC_SERIAL;
		if (ifr->ifr_settings.size < size) {
			ifr->ifr_settings.size = size; /* data size wanted */
			return -ENOBUFS;
		}

		flags = info->params.flags & (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
					      HDLC_FLAG_RXC_BRG    | HDLC_FLAG_RXC_TXCPIN |
					      HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
					      HDLC_FLAG_TXC_BRG    | HDLC_FLAG_TXC_RXCPIN);

		switch (flags){
		case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN): new_line.clock_type = CLOCK_EXT; break;
		case (HDLC_FLAG_RXC_BRG    | HDLC_FLAG_TXC_BRG):    new_line.clock_type = CLOCK_INT; break;
		case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG):    new_line.clock_type = CLOCK_TXINT; break;
		case (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN): new_line.clock_type = CLOCK_TXFROMRX; break;
		default: new_line.clock_type = CLOCK_DEFAULT;
		}

		new_line.clock_rate = info->params.clock_speed;
		new_line.loopback   = info->params.loopback ? 1:0;

		if (copy_to_user(line, &new_line, size))
			return -EFAULT;
		return 0;

	case IF_IFACE_SYNC_SERIAL: /* set sync_serial_settings */

		if(!capable(CAP_NET_ADMIN))
			return -EPERM;
		if (copy_from_user(&new_line, line, size))
			return -EFAULT;

		switch (new_line.clock_type)
		{
		case CLOCK_EXT:      flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_TXCPIN; break;
		case CLOCK_TXFROMRX: flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_RXCPIN; break;
		case CLOCK_INT:      flags = HDLC_FLAG_RXC_BRG    | HDLC_FLAG_TXC_BRG;    break;
		case CLOCK_TXINT:    flags = HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_TXC_BRG;    break;
		case CLOCK_DEFAULT:  flags = info->params.flags &
					     (HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
					      HDLC_FLAG_RXC_BRG    | HDLC_FLAG_RXC_TXCPIN |
					      HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
					      HDLC_FLAG_TXC_BRG    | HDLC_FLAG_TXC_RXCPIN); break;
		default: return -EINVAL;
		}

		if (new_line.loopback != 0 && new_line.loopback != 1)
			return -EINVAL;

		info->params.flags &= ~(HDLC_FLAG_RXC_RXCPIN | HDLC_FLAG_RXC_DPLL |
					HDLC_FLAG_RXC_BRG    | HDLC_FLAG_RXC_TXCPIN |
					HDLC_FLAG_TXC_TXCPIN | HDLC_FLAG_TXC_DPLL |
					HDLC_FLAG_TXC_BRG    | HDLC_FLAG_TXC_RXCPIN);
		info->params.flags |= flags;

		info->params.loopback = new_line.loopback;

		if (flags & (HDLC_FLAG_RXC_BRG | HDLC_FLAG_TXC_BRG))
			info->params.clock_speed = new_line.clock_rate;
		else
			info->params.clock_speed = 0;

		/* if network interface up, reprogram hardware */
A
Alan Cox 已提交
4170 4171 4172 4173 4174
		if (info->netcount) {
			struct tty_struct *tty = tty_port_tty_get(&info->port);
			mgslpc_program_hw(info, tty);
			tty_kref_put(tty);
		}
L
Linus Torvalds 已提交
4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194
		return 0;

	default:
		return hdlc_ioctl(dev, ifr, cmd);
	}
}

/**
 * called by network layer when transmit timeout is detected
 *
 * dev  pointer to network device structure
 */
static void hdlcdev_tx_timeout(struct net_device *dev)
{
	MGSLPC_INFO *info = dev_to_port(dev);
	unsigned long flags;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("hdlcdev_tx_timeout(%s)\n",dev->name);

4195 4196
	dev->stats.tx_errors++;
	dev->stats.tx_aborted_errors++;
L
Linus Torvalds 已提交
4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234

	spin_lock_irqsave(&info->lock,flags);
	tx_stop(info);
	spin_unlock_irqrestore(&info->lock,flags);

	netif_wake_queue(dev);
}

/**
 * called by device driver when transmit completes
 * reenable network layer transmit if stopped
 *
 * info  pointer to device instance information
 */
static void hdlcdev_tx_done(MGSLPC_INFO *info)
{
	if (netif_queue_stopped(info->netdev))
		netif_wake_queue(info->netdev);
}

/**
 * called by device driver when frame received
 * pass frame to network layer
 *
 * info  pointer to device instance information
 * buf   pointer to buffer contianing frame data
 * size  count of data bytes in buf
 */
static void hdlcdev_rx(MGSLPC_INFO *info, char *buf, int size)
{
	struct sk_buff *skb = dev_alloc_skb(size);
	struct net_device *dev = info->netdev;

	if (debug_level >= DEBUG_LEVEL_INFO)
		printk("hdlcdev_rx(%s)\n",dev->name);

	if (skb == NULL) {
		printk(KERN_NOTICE "%s: can't alloc skb, dropping packet\n", dev->name);
4235
		dev->stats.rx_dropped++;
L
Linus Torvalds 已提交
4236 4237 4238
		return;
	}

4239
	memcpy(skb_put(skb, size), buf, size);
L
Linus Torvalds 已提交
4240

4241
	skb->protocol = hdlc_type_trans(skb, dev);
L
Linus Torvalds 已提交
4242

4243 4244
	dev->stats.rx_packets++;
	dev->stats.rx_bytes += size;
L
Linus Torvalds 已提交
4245 4246 4247 4248

	netif_rx(skb);
}

4249 4250 4251 4252 4253 4254 4255 4256 4257
static const struct net_device_ops hdlcdev_ops = {
	.ndo_open       = hdlcdev_open,
	.ndo_stop       = hdlcdev_close,
	.ndo_change_mtu = hdlc_change_mtu,
	.ndo_start_xmit = hdlc_start_xmit,
	.ndo_do_ioctl   = hdlcdev_ioctl,
	.ndo_tx_timeout = hdlcdev_tx_timeout,
};

L
Linus Torvalds 已提交
4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283
/**
 * called by device driver when adding device instance
 * do generic HDLC initialization
 *
 * info  pointer to device instance information
 *
 * returns 0 if success, otherwise error code
 */
static int hdlcdev_init(MGSLPC_INFO *info)
{
	int rc;
	struct net_device *dev;
	hdlc_device *hdlc;

	/* allocate and initialize network and HDLC layer objects */

	if (!(dev = alloc_hdlcdev(info))) {
		printk(KERN_ERR "%s:hdlc device allocation failure\n",__FILE__);
		return -ENOMEM;
	}

	/* for network layer reporting purposes only */
	dev->base_addr = info->io_base;
	dev->irq       = info->irq_level;

	/* network layer callbacks and settings */
4284 4285
	dev->netdev_ops	    = &hdlcdev_ops;
	dev->watchdog_timeo = 10 * HZ;
L
Linus Torvalds 已提交
4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318
	dev->tx_queue_len   = 50;

	/* generic HDLC layer callbacks and settings */
	hdlc         = dev_to_hdlc(dev);
	hdlc->attach = hdlcdev_attach;
	hdlc->xmit   = hdlcdev_xmit;

	/* register objects with HDLC layer */
	if ((rc = register_hdlc_device(dev))) {
		printk(KERN_WARNING "%s:unable to register hdlc device\n",__FILE__);
		free_netdev(dev);
		return rc;
	}

	info->netdev = dev;
	return 0;
}

/**
 * called by device driver when removing device instance
 * do generic HDLC cleanup
 *
 * info  pointer to device instance information
 */
static void hdlcdev_exit(MGSLPC_INFO *info)
{
	unregister_hdlc_device(info->netdev);
	free_netdev(info->netdev);
	info->netdev = NULL;
}

#endif /* CONFIG_HDLC */