simserial.c 19.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Simulated Serial Driver (fake serial)
 *
 * This driver is mostly used for bringup purposes and will go away.
 * It has a strong dependency on the system console. All outputs
 * are rerouted to the same facility as the one used by printk which, in our
 * case means sys_sim.c console (goes via the simulator). The code hereafter
 * is completely leveraged from the serial.c driver.
 *
 * Copyright (C) 1999-2000, 2002-2003 Hewlett-Packard Co
 *	Stephane Eranian <eranian@hpl.hp.com>
 *	David Mosberger-Tang <davidm@hpl.hp.com>
 *
 * 02/04/00 D. Mosberger	Merged in serial.c bug fixes in rs_close().
 * 02/25/00 D. Mosberger	Synced up with 2.3.99pre-5 version of serial.c.
 * 07/30/02 D. Mosberger	Replace sti()/cli() with explicit spinlocks & local irq masking
 */

#include <linux/init.h>
#include <linux/errno.h>
#include <linux/sched.h>
#include <linux/tty.h>
#include <linux/tty_flip.h>
#include <linux/major.h>
#include <linux/fcntl.h>
#include <linux/mm.h>
27
#include <linux/seq_file.h>
L
Linus Torvalds 已提交
28
#include <linux/slab.h>
29
#include <linux/capability.h>
30
#include <linux/circ_buf.h>
L
Linus Torvalds 已提交
31 32 33
#include <linux/console.h>
#include <linux/module.h>
#include <linux/serial.h>
34
#include <linux/sysrq.h>
L
Linus Torvalds 已提交
35 36

#include <asm/irq.h>
J
Jiri Slaby 已提交
37
#include <asm/hpsim.h>
L
Linus Torvalds 已提交
38 39 40
#include <asm/hw_irq.h>
#include <asm/uaccess.h>

J
Jiri Slaby 已提交
41 42
#include "hpsim_ssc.h"

L
Linus Torvalds 已提交
43 44 45 46 47 48
#undef SIMSERIAL_DEBUG	/* define this to get some debug information */

#define KEYBOARD_INTR	3	/* must match with simulator! */

#define NR_PORTS	1	/* only one port for now */

49
struct serial_state {
50
	struct tty_port port;
51 52 53 54 55
	struct circ_buf xmit;
	int irq;
	int x_char;
};

L
Linus Torvalds 已提交
56 57 58
static char *serial_name = "SimSerial driver";
static char *serial_version = "0.6";

59
static struct serial_state rs_table[NR_PORTS];
L
Linus Torvalds 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85

struct tty_driver *hp_simserial_driver;

static struct console *console;

extern struct console *console_drivers; /* from kernel/printk.c */

/*
 * ------------------------------------------------------------
 * rs_stop() and rs_start()
 *
 * This routines are called before setting or resetting tty->stopped.
 * They enable or disable transmitter interrupts, as necessary.
 * ------------------------------------------------------------
 */
static void rs_stop(struct tty_struct *tty)
{
#ifdef SIMSERIAL_DEBUG
	printk("rs_stop: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n",
		tty->stopped, tty->hw_stopped, tty->flow_stopped);
#endif

}

static void rs_start(struct tty_struct *tty)
{
86
#ifdef SIMSERIAL_DEBUG
L
Linus Torvalds 已提交
87 88 89 90 91
	printk("rs_start: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n",
		tty->stopped, tty->hw_stopped, tty->flow_stopped);
#endif
}

A
Al Viro 已提交
92
static  void receive_chars(struct tty_struct *tty)
L
Linus Torvalds 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105
{
	unsigned char ch;
	static unsigned char seen_esc = 0;

	while ( (ch = ia64_ssc(0, 0, 0, 0, SSC_GETCHAR)) ) {
		if ( ch == 27 && seen_esc == 0 ) {
			seen_esc = 1;
			continue;
		} else {
			if ( seen_esc==1 && ch == 'O' ) {
				seen_esc = 2;
				continue;
			} else if ( seen_esc == 2 ) {
106 107 108 109 110 111 112 113
				if ( ch == 'P' ) /* F1 */
					show_state();
#ifdef CONFIG_MAGIC_SYSRQ
				if ( ch == 'S' ) { /* F4 */
					do
						ch = ia64_ssc(0, 0, 0, 0,
							      SSC_GETCHAR);
					while (!ch);
114
					handle_sysrq(ch);
115
				}
L
Linus Torvalds 已提交
116 117 118 119 120 121 122
#endif
				seen_esc = 0;
				continue;
			}
		}
		seen_esc = 0;

123 124
		if (tty_insert_flip_char(tty, ch, TTY_NORMAL) == 0)
			break;
L
Linus Torvalds 已提交
125 126 127 128 129 130 131
	}
	tty_flip_buffer_push(tty);
}

/*
 * This is the serial driver's interrupt routine for a single port
 */
A
Al Viro 已提交
132
static irqreturn_t rs_interrupt_single(int irq, void *dev_id)
L
Linus Torvalds 已提交
133
{
134
	struct serial_state *info = dev_id;
135
	struct tty_struct *tty = info->port.tty;
L
Linus Torvalds 已提交
136

137
	if (!tty) {
L
Linus Torvalds 已提交
138 139 140 141 142 143 144
		printk(KERN_INFO "simrs_interrupt_single: info|tty=0 info=%p problem\n", info);
		return IRQ_NONE;
	}
	/*
	 * pretty simple in our case, because we only get interrupts
	 * on inbound traffic
	 */
145
	receive_chars(tty);
L
Linus Torvalds 已提交
146 147 148 149 150 151 152 153 154
	return IRQ_HANDLED;
}

/*
 * -------------------------------------------------------------------
 * Here ends the serial interrupt routines.
 * -------------------------------------------------------------------
 */

A
Alan Cox 已提交
155
static int rs_put_char(struct tty_struct *tty, unsigned char ch)
L
Linus Torvalds 已提交
156
{
157
	struct serial_state *info = tty->driver_data;
L
Linus Torvalds 已提交
158 159
	unsigned long flags;

A
Alan Cox 已提交
160 161
	if (!tty || !info->xmit.buf)
		return 0;
L
Linus Torvalds 已提交
162 163 164 165

	local_irq_save(flags);
	if (CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE) == 0) {
		local_irq_restore(flags);
A
Alan Cox 已提交
166
		return 0;
L
Linus Torvalds 已提交
167 168 169 170
	}
	info->xmit.buf[info->xmit.head] = ch;
	info->xmit.head = (info->xmit.head + 1) & (SERIAL_XMIT_SIZE-1);
	local_irq_restore(flags);
A
Alan Cox 已提交
171
	return 1;
L
Linus Torvalds 已提交
172 173
}

174 175
static void transmit_chars(struct tty_struct *tty, struct serial_state *info,
		int *intr_done)
L
Linus Torvalds 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
{
	int count;
	unsigned long flags;

	local_irq_save(flags);

	if (info->x_char) {
		char c = info->x_char;

		console->write(console, &c, 1);

		info->x_char = 0;

		goto out;
	}

192 193
	if (info->xmit.head == info->xmit.tail || tty->stopped ||
			tty->hw_stopped) {
L
Linus Torvalds 已提交
194 195
#ifdef SIMSERIAL_DEBUG
		printk("transmit_chars: head=%d, tail=%d, stopped=%d\n",
196
		       info->xmit.head, info->xmit.tail, tty->stopped);
L
Linus Torvalds 已提交
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
#endif
		goto out;
	}
	/*
	 * We removed the loop and try to do it in to chunks. We need
	 * 2 operations maximum because it's a ring buffer.
	 *
	 * First from current to tail if possible.
	 * Then from the beginning of the buffer until necessary
	 */

	count = min(CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE),
		    SERIAL_XMIT_SIZE - info->xmit.tail);
	console->write(console, info->xmit.buf+info->xmit.tail, count);

	info->xmit.tail = (info->xmit.tail+count) & (SERIAL_XMIT_SIZE-1);

	/*
	 * We have more at the beginning of the buffer
	 */
	count = CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
	if (count) {
		console->write(console, info->xmit.buf, count);
		info->xmit.tail += count;
	}
out:
	local_irq_restore(flags);
}

static void rs_flush_chars(struct tty_struct *tty)
{
228
	struct serial_state *info = tty->driver_data;
L
Linus Torvalds 已提交
229 230 231 232 233

	if (info->xmit.head == info->xmit.tail || tty->stopped || tty->hw_stopped ||
	    !info->xmit.buf)
		return;

234
	transmit_chars(tty, info, NULL);
L
Linus Torvalds 已提交
235 236 237 238 239 240
}


static int rs_write(struct tty_struct * tty,
		    const unsigned char *buf, int count)
{
241
	struct serial_state *info = tty->driver_data;
L
Linus Torvalds 已提交
242 243 244
	int	c, ret = 0;
	unsigned long flags;

J
Jiri Slaby 已提交
245 246
	if (!tty || !info->xmit.buf)
		return 0;
L
Linus Torvalds 已提交
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268

	local_irq_save(flags);
	while (1) {
		c = CIRC_SPACE_TO_END(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
		if (count < c)
			c = count;
		if (c <= 0) {
			break;
		}
		memcpy(info->xmit.buf + info->xmit.head, buf, c);
		info->xmit.head = ((info->xmit.head + c) &
				   (SERIAL_XMIT_SIZE-1));
		buf += c;
		count -= c;
		ret += c;
	}
	local_irq_restore(flags);
	/*
	 * Hey, we transmit directly from here in our case
	 */
	if (CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE)
	    && !tty->stopped && !tty->hw_stopped) {
269
		transmit_chars(tty, info, NULL);
L
Linus Torvalds 已提交
270 271 272 273 274 275
	}
	return ret;
}

static int rs_write_room(struct tty_struct *tty)
{
276
	struct serial_state *info = tty->driver_data;
L
Linus Torvalds 已提交
277 278 279 280 281 282

	return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
}

static int rs_chars_in_buffer(struct tty_struct *tty)
{
283
	struct serial_state *info = tty->driver_data;
L
Linus Torvalds 已提交
284 285 286 287 288 289

	return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
}

static void rs_flush_buffer(struct tty_struct *tty)
{
290
	struct serial_state *info = tty->driver_data;
L
Linus Torvalds 已提交
291 292 293 294 295 296
	unsigned long flags;

	local_irq_save(flags);
	info->xmit.head = info->xmit.tail = 0;
	local_irq_restore(flags);

A
Alan Cox 已提交
297
	tty_wakeup(tty);
L
Linus Torvalds 已提交
298 299 300 301 302 303 304 305
}

/*
 * This function is used to send a high-priority XON/XOFF character to
 * the device
 */
static void rs_send_xchar(struct tty_struct *tty, char ch)
{
306
	struct serial_state *info = tty->driver_data;
L
Linus Torvalds 已提交
307 308 309 310 311 312 313

	info->x_char = ch;
	if (ch) {
		/*
		 * I guess we could call console->write() directly but
		 * let's do that for now.
		 */
314
		transmit_chars(tty, info, NULL);
L
Linus Torvalds 已提交
315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334
	}
}

/*
 * ------------------------------------------------------------
 * rs_throttle()
 *
 * This routine is called by the upper-layer tty layer to signal that
 * incoming characters should be throttled.
 * ------------------------------------------------------------
 */
static void rs_throttle(struct tty_struct * tty)
{
	if (I_IXOFF(tty)) rs_send_xchar(tty, STOP_CHAR(tty));

	printk(KERN_INFO "simrs_throttle called\n");
}

static void rs_unthrottle(struct tty_struct * tty)
{
335
	struct serial_state *info = tty->driver_data;
L
Linus Torvalds 已提交
336 337 338 339 340 341 342 343 344 345 346

	if (I_IXOFF(tty)) {
		if (info->x_char)
			info->x_char = 0;
		else
			rs_send_xchar(tty, START_CHAR(tty));
	}
	printk(KERN_INFO "simrs_unthrottle called\n");
}


347
static int rs_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg)
L
Linus Torvalds 已提交
348 349 350
{
	if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
	    (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
351
	    (cmd != TIOCMIWAIT)) {
L
Linus Torvalds 已提交
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
		if (tty->flags & (1 << TTY_IO_ERROR))
		    return -EIO;
	}

	switch (cmd) {
		case TIOCGSERIAL:
			printk(KERN_INFO "simrs_ioctl TIOCGSERIAL called\n");
			return 0;
		case TIOCSSERIAL:
			printk(KERN_INFO "simrs_ioctl TIOCSSERIAL called\n");
			return 0;
		case TIOCSERCONFIG:
			printk(KERN_INFO "rs_ioctl: TIOCSERCONFIG called\n");
			return -EINVAL;

		case TIOCSERGETLSR: /* Get line status register */
			printk(KERN_INFO "rs_ioctl: TIOCSERGETLSR called\n");
			return  -EINVAL;

		case TIOCSERGSTRUCT:
			printk(KERN_INFO "rs_ioctl: TIOCSERGSTRUCT called\n");
#if 0
			if (copy_to_user((struct async_struct *) arg,
					 info, sizeof(struct async_struct)))
				return -EFAULT;
#endif
			return 0;

		/*
		 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
		 * - mask passed in arg for lines of interest
		 *   (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
		 * Caller should use TIOCGICOUNT to see which one it was
		 */
		case TIOCMIWAIT:
			printk(KERN_INFO "rs_ioctl: TIOCMIWAIT: called\n");
			return 0;
		case TIOCSERGWILD:
		case TIOCSERSWILD:
			/* "setserial -W" is called in Debian boot */
			printk (KERN_INFO "TIOCSER?WILD ioctl obsolete, ignored.\n");
			return 0;

		default:
			return -ENOIOCTLCMD;
		}
	return 0;
}

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

403
static void rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
L
Linus Torvalds 已提交
404 405 406 407 408 409 410 411 412 413 414 415
{
	/* Handle turning off CRTSCTS */
	if ((old_termios->c_cflag & CRTSCTS) &&
	    !(tty->termios->c_cflag & CRTSCTS)) {
		tty->hw_stopped = 0;
		rs_start(tty);
	}
}
/*
 * This routine will shutdown a serial port; interrupts are disabled, and
 * DTR is dropped if the hangup on close termio flag is on.
 */
416
static void shutdown(struct tty_struct *tty, struct serial_state *info)
L
Linus Torvalds 已提交
417 418 419
{
	unsigned long	flags;

420
	if (!(info->port.flags & ASYNC_INITIALIZED))
421
		return;
L
Linus Torvalds 已提交
422 423

#ifdef SIMSERIAL_DEBUG
424 425
	printk("Shutting down serial port %d (irq %d)...\n", info->line,
	       info->irq);
L
Linus Torvalds 已提交
426 427 428 429
#endif

	local_irq_save(flags);
	{
430 431
		if (info->irq)
			free_irq(info->irq, info);
L
Linus Torvalds 已提交
432 433 434

		if (info->xmit.buf) {
			free_page((unsigned long) info->xmit.buf);
A
Al Viro 已提交
435
			info->xmit.buf = NULL;
L
Linus Torvalds 已提交
436 437
		}

438
		set_bit(TTY_IO_ERROR, &tty->flags);
L
Linus Torvalds 已提交
439

440
		info->port.flags &= ~ASYNC_INITIALIZED;
L
Linus Torvalds 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
	}
	local_irq_restore(flags);
}

/*
 * ------------------------------------------------------------
 * rs_close()
 *
 * This routine is called when the serial port gets closed.  First, we
 * wait for the last remaining data to be sent.  Then, we unlink its
 * async structure from the interrupt chain if necessary, and we free
 * that IRQ if nothing is left in the chain.
 * ------------------------------------------------------------
 */
static void rs_close(struct tty_struct *tty, struct file * filp)
{
457
	struct serial_state *info = tty->driver_data;
458
	struct tty_port *port = &info->port;
L
Linus Torvalds 已提交
459 460
	unsigned long flags;

461 462
	if (!info)
		return;
L
Linus Torvalds 已提交
463 464 465 466 467 468 469 470 471 472

	local_irq_save(flags);
	if (tty_hung_up_p(filp)) {
#ifdef SIMSERIAL_DEBUG
		printk("rs_close: hung_up\n");
#endif
		local_irq_restore(flags);
		return;
	}
#ifdef SIMSERIAL_DEBUG
473
	printk("rs_close ttys%d, count = %d\n", info->line, port->count);
L
Linus Torvalds 已提交
474
#endif
475
	if ((tty->count == 1) && (port->count != 1)) {
L
Linus Torvalds 已提交
476 477
		/*
		 * Uh, oh.  tty->count is 1, which means that the tty
478
		 * structure will be freed.  port->count should always
L
Linus Torvalds 已提交
479 480 481 482 483
		 * be one in these conditions.  If it's greater than
		 * one, we've got real problems, since it means the
		 * serial port won't be shutdown.
		 */
		printk(KERN_ERR "rs_close: bad serial port count; tty->count is 1, "
484 485
		       "port->count is %d\n", port->count);
		port->count = 1;
L
Linus Torvalds 已提交
486
	}
487
	if (--port->count < 0) {
L
Linus Torvalds 已提交
488
		printk(KERN_ERR "rs_close: bad serial port count for ttys%d: %d\n",
489 490
		       tty->index, port->count);
		port->count = 0;
L
Linus Torvalds 已提交
491
	}
492
	if (port->count) {
L
Linus Torvalds 已提交
493 494 495
		local_irq_restore(flags);
		return;
	}
496
	port->flags |= ASYNC_CLOSING;
L
Linus Torvalds 已提交
497 498 499 500 501 502
	local_irq_restore(flags);

	/*
	 * Now we wait for the transmit buffer to clear; and we notify
	 * the line discipline to only process XON/XOFF characters.
	 */
503
	shutdown(tty, info);
A
Alan Cox 已提交
504 505
	rs_flush_buffer(tty);
	tty_ldisc_flush(tty);
506 507 508 509 510
	port->tty = NULL;
	if (port->blocked_open) {
		if (port->close_delay)
			schedule_timeout_interruptible(port->close_delay);
		wake_up_interruptible(&port->open_wait);
L
Linus Torvalds 已提交
511
	}
512 513
	port->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
	wake_up_interruptible(&port->close_wait);
L
Linus Torvalds 已提交
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
}

/*
 * rs_wait_until_sent() --- wait until the transmitter is empty
 */
static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
{
}


/*
 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
 */
static void rs_hangup(struct tty_struct *tty)
{
529
	struct serial_state *info = tty->driver_data;
530
	struct tty_port *port = &info->port;
L
Linus Torvalds 已提交
531 532 533 534 535 536

#ifdef SIMSERIAL_DEBUG
	printk("rs_hangup: called\n");
#endif

	rs_flush_buffer(tty);
537
	if (port->flags & ASYNC_CLOSING)
L
Linus Torvalds 已提交
538
		return;
539
	shutdown(tty, info);
L
Linus Torvalds 已提交
540

541 542 543 544
	port->count = 0;
	port->flags &= ~ASYNC_NORMAL_ACTIVE;
	port->tty = NULL;
	wake_up_interruptible(&port->open_wait);
L
Linus Torvalds 已提交
545 546 547
}


548
static int startup(struct tty_struct *tty, struct serial_state *state)
L
Linus Torvalds 已提交
549
{
550
	struct tty_port *port = &state->port;
L
Linus Torvalds 已提交
551 552 553 554 555 556 557 558 559 560
	unsigned long flags;
	int	retval=0;
	unsigned long page;

	page = get_zeroed_page(GFP_KERNEL);
	if (!page)
		return -ENOMEM;

	local_irq_save(flags);

561
	if (port->flags & ASYNC_INITIALIZED) {
L
Linus Torvalds 已提交
562 563 564 565
		free_page(page);
		goto errout;
	}

566
	if (state->xmit.buf)
L
Linus Torvalds 已提交
567 568
		free_page(page);
	else
569
		state->xmit.buf = (unsigned char *) page;
L
Linus Torvalds 已提交
570 571

#ifdef SIMSERIAL_DEBUG
572
	printk("startup: ttys%d (irq %d)...", state->line, state->irq);
L
Linus Torvalds 已提交
573 574 575 576 577
#endif

	/*
	 * Allocate the IRQ if necessary
	 */
578
	if (state->irq) {
J
Jiri Slaby 已提交
579
		retval = request_irq(state->irq, rs_interrupt_single, 0,
580
				"simserial", state);
581
		if (retval)
L
Linus Torvalds 已提交
582 583 584
			goto errout;
	}

585
	clear_bit(TTY_IO_ERROR, &tty->flags);
L
Linus Torvalds 已提交
586

587
	state->xmit.head = state->xmit.tail = 0;
L
Linus Torvalds 已提交
588 589 590 591 592 593 594 595 596 597 598 599

#if 0
	/*
	 * Set up serial timers...
	 */
	timer_table[RS_TIMER].expires = jiffies + 2*HZ/100;
	timer_active |= 1 << RS_TIMER;
#endif

	/*
	 * Set up the tty->alt_speed kludge
	 */
600
	if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
601
		tty->alt_speed = 57600;
602
	if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
603
		tty->alt_speed = 115200;
604
	if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
605
		tty->alt_speed = 230400;
606
	if ((port->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
607
		tty->alt_speed = 460800;
L
Linus Torvalds 已提交
608

609
	port->flags |= ASYNC_INITIALIZED;
L
Linus Torvalds 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
	local_irq_restore(flags);
	return 0;

errout:
	local_irq_restore(flags);
	return retval;
}


/*
 * This routine is called whenever a serial port is opened.  It
 * enables interrupts for a serial port, linking in its async structure into
 * the IRQ chain.   It also performs the serial-specific
 * initialization for the tty structure.
 */
static int rs_open(struct tty_struct *tty, struct file * filp)
{
627
	struct serial_state *info = rs_table + tty->index;
628 629
	struct tty_port *port = &info->port;
	int retval;
L
Linus Torvalds 已提交
630

631 632
	port->count++;
	port->tty = tty;
633
	tty->driver_data = info;
634
	tty->port = port;
L
Linus Torvalds 已提交
635 636

#ifdef SIMSERIAL_DEBUG
637
	printk("rs_open %s, count = %d\n", tty->name, port->count);
L
Linus Torvalds 已提交
638
#endif
639
	tty->low_latency = (port->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
L
Linus Torvalds 已提交
640 641 642 643

	/*
	 * If the port is the middle of closing, bail out now
	 */
644 645 646
	if (tty_hung_up_p(filp) || (port->flags & ASYNC_CLOSING)) {
		if (port->flags & ASYNC_CLOSING)
			interruptible_sleep_on(&port->close_wait);
L
Linus Torvalds 已提交
647
#ifdef SERIAL_DO_RESTART
648
		return ((port->flags & ASYNC_HUP_NOTIFY) ?
L
Linus Torvalds 已提交
649 650 651 652 653 654 655 656 657
			-EAGAIN : -ERESTARTSYS);
#else
		return -EAGAIN;
#endif
	}

	/*
	 * Start up serial port
	 */
658
	retval = startup(tty, info);
L
Linus Torvalds 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
	if (retval) {
		return retval;
	}

	/*
	 * figure out which console to use (should be one already)
	 */
	console = console_drivers;
	while (console) {
		if ((console->flags & CON_ENABLED) && console->write) break;
		console = console->next;
	}

#ifdef SIMSERIAL_DEBUG
	printk("rs_open ttys%d successful\n", info->line);
#endif
	return 0;
}

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

682
static int rs_proc_show(struct seq_file *m, void *v)
L
Linus Torvalds 已提交
683
{
684 685 686 687
	int i;

	seq_printf(m, "simserinfo:1.0 driver:%s\n", serial_version);
	for (i = 0; i < NR_PORTS; i++)
688 689
		seq_printf(m, "%d: uart:16550 port:3F8 irq:%d\n",
		       i, rs_table[i].irq);
690
	return 0;
L
Linus Torvalds 已提交
691 692
}

693 694 695 696 697 698 699 700 701 702 703 704 705
static int rs_proc_open(struct inode *inode, struct file *file)
{
	return single_open(file, rs_proc_show, NULL);
}

static const struct file_operations rs_proc_fops = {
	.owner		= THIS_MODULE,
	.open		= rs_proc_open,
	.read		= seq_read,
	.llseek		= seq_lseek,
	.release	= single_release,
};

L
Linus Torvalds 已提交
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
/*
 * ---------------------------------------------------------------------
 * rs_init() and friends
 *
 * rs_init() is called at boot-time to initialize the serial driver.
 * ---------------------------------------------------------------------
 */

/*
 * This routine prints out the appropriate serial driver version
 * number, and identifies which options were configured into this
 * driver.
 */
static inline void show_serial_version(void)
{
	printk(KERN_INFO "%s version %s with", serial_name, serial_version);
	printk(KERN_INFO " no serial options enabled\n");
}

J
Jeff Dike 已提交
725
static const struct tty_operations hp_ops = {
L
Linus Torvalds 已提交
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
	.open = rs_open,
	.close = rs_close,
	.write = rs_write,
	.put_char = rs_put_char,
	.flush_chars = rs_flush_chars,
	.write_room = rs_write_room,
	.chars_in_buffer = rs_chars_in_buffer,
	.flush_buffer = rs_flush_buffer,
	.ioctl = rs_ioctl,
	.throttle = rs_throttle,
	.unthrottle = rs_unthrottle,
	.send_xchar = rs_send_xchar,
	.set_termios = rs_set_termios,
	.stop = rs_stop,
	.start = rs_start,
	.hangup = rs_hangup,
	.wait_until_sent = rs_wait_until_sent,
743
	.proc_fops = &rs_proc_fops,
L
Linus Torvalds 已提交
744 745 746 747 748
};

/*
 * The serial driver boot-time initialization code!
 */
749
static int __init simrs_init(void)
L
Linus Torvalds 已提交
750
{
751 752
	struct serial_state *state;
	int retval;
L
Linus Torvalds 已提交
753 754 755 756

	if (!ia64_platform_is("hpsim"))
		return -ENODEV;

757
	hp_simserial_driver = alloc_tty_driver(NR_PORTS);
L
Linus Torvalds 已提交
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
	if (!hp_simserial_driver)
		return -ENOMEM;

	show_serial_version();

	/* Initialize the tty_driver structure */

	hp_simserial_driver->driver_name = "simserial";
	hp_simserial_driver->name = "ttyS";
	hp_simserial_driver->major = TTY_MAJOR;
	hp_simserial_driver->minor_start = 64;
	hp_simserial_driver->type = TTY_DRIVER_TYPE_SERIAL;
	hp_simserial_driver->subtype = SERIAL_TYPE_NORMAL;
	hp_simserial_driver->init_termios = tty_std_termios;
	hp_simserial_driver->init_termios.c_cflag =
		B9600 | CS8 | CREAD | HUPCL | CLOCAL;
	hp_simserial_driver->flags = TTY_DRIVER_REAL_RAW;
	tty_set_operations(hp_simserial_driver, &hp_ops);

	/*
	 * Let's have a little bit of fun !
	 */
780
	state = rs_table;
781 782
	tty_port_init(&state->port);
	state->port.close_delay = 0; /* XXX really 0? */
783 784 785 786 787 788 789

	retval = hpsim_get_irq(KEYBOARD_INTR);
	if (retval < 0) {
		printk(KERN_ERR "%s: out of interrupt vectors!\n",
				__func__);
		goto err_free_tty;
	}
L
Linus Torvalds 已提交
790

791
	state->irq = retval;
L
Linus Torvalds 已提交
792

793
	/* the port is imaginary */
794
	printk(KERN_INFO "ttyS0 at 0x03f8 (irq = %d) is a 16550\n", state->irq);
L
Linus Torvalds 已提交
795

796 797 798 799
	retval = tty_register_driver(hp_simserial_driver);
	if (retval) {
		printk(KERN_ERR "Couldn't register simserial driver\n");
		goto err_free_tty;
L
Linus Torvalds 已提交
800 801 802
	}

	return 0;
803 804 805
err_free_tty:
	put_tty_driver(hp_simserial_driver);
	return retval;
L
Linus Torvalds 已提交
806 807 808 809 810
}

#ifndef MODULE
__initcall(simrs_init);
#endif