2 * Simulated Serial Driver (fake serial)
4 * This driver is mostly used for bringup purposes and will go away.
5 * It has a strong dependency on the system console. All outputs
6 * are rerouted to the same facility as the one used by printk which, in our
7 * case means sys_sim.c console (goes via the simulator). The code hereafter
8 * is completely leveraged from the serial.c driver.
10 * Copyright (C) 1999-2000, 2002-2003 Hewlett-Packard Co
11 * Stephane Eranian <eranian@hpl.hp.com>
12 * David Mosberger-Tang <davidm@hpl.hp.com>
14 * 02/04/00 D. Mosberger Merged in serial.c bug fixes in rs_close().
15 * 02/25/00 D. Mosberger Synced up with 2.3.99pre-5 version of serial.c.
16 * 07/30/02 D. Mosberger Replace sti()/cli() with explicit spinlocks & local irq masking
19 #include <linux/init.h>
20 #include <linux/errno.h>
21 #include <linux/sched.h>
22 #include <linux/tty.h>
23 #include <linux/tty_flip.h>
24 #include <linux/major.h>
25 #include <linux/fcntl.h>
27 #include <linux/slab.h>
28 #include <linux/capability.h>
29 #include <linux/console.h>
30 #include <linux/module.h>
31 #include <linux/serial.h>
32 #include <linux/serialP.h>
33 #include <linux/sysrq.h>
36 #include <asm/hw_irq.h>
37 #include <asm/uaccess.h>
40 # include <linux/kdb.h>
43 #undef SIMSERIAL_DEBUG /* define this to get some debug information */
45 #define KEYBOARD_INTR 3 /* must match with simulator! */
47 #define NR_PORTS 1 /* only one port for now */
49 #define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED)
51 #define SSC_GETCHAR 21
53 extern long ia64_ssc (long, long, long, long, int);
54 extern void ia64_ssc_connect_irq (long intr
, long irq
);
56 static char *serial_name
= "SimSerial driver";
57 static char *serial_version
= "0.6";
60 * This has been extracted from asm/serial.h. We need one eventually but
61 * I don't know exactly what we're going to put in it so just fake one
64 #define BASE_BAUD ( 1843200 / 16 )
66 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
69 * Most of the values here are meaningless to this particular driver.
70 * However some values must be preserved for the code (leveraged from serial.c
73 * type must not be UNKNOWN
74 * So I picked arbitrary (guess from where?) values instead
76 static struct serial_state rs_table
[NR_PORTS
]={
77 /* UART CLK PORT IRQ FLAGS */
78 { 0, BASE_BAUD
, 0x3F8, 0, STD_COM_FLAGS
,0,PORT_16550
} /* ttyS0 */
82 * Just for the fun of it !
84 static struct serial_uart_config uart_config
[] = {
89 { "16550A", 16, UART_CLEAR_FIFO
| UART_USE_FIFO
},
91 { "ST16650", 1, UART_CLEAR_FIFO
| UART_STARTECH
},
92 { "ST16650V2", 32, UART_CLEAR_FIFO
| UART_USE_FIFO
|
94 { "TI16750", 64, UART_CLEAR_FIFO
| UART_USE_FIFO
},
98 struct tty_driver
*hp_simserial_driver
;
100 static struct async_struct
*IRQ_ports
[NR_IRQS
];
102 static struct console
*console
;
104 static unsigned char *tmp_buf
;
106 extern struct console
*console_drivers
; /* from kernel/printk.c */
109 * ------------------------------------------------------------
110 * rs_stop() and rs_start()
112 * This routines are called before setting or resetting tty->stopped.
113 * They enable or disable transmitter interrupts, as necessary.
114 * ------------------------------------------------------------
116 static void rs_stop(struct tty_struct
*tty
)
118 #ifdef SIMSERIAL_DEBUG
119 printk("rs_stop: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n",
120 tty
->stopped
, tty
->hw_stopped
, tty
->flow_stopped
);
125 static void rs_start(struct tty_struct
*tty
)
127 #ifdef SIMSERIAL_DEBUG
128 printk("rs_start: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n",
129 tty
->stopped
, tty
->hw_stopped
, tty
->flow_stopped
);
133 static void receive_chars(struct tty_struct
*tty
)
136 static unsigned char seen_esc
= 0;
138 while ( (ch
= ia64_ssc(0, 0, 0, 0, SSC_GETCHAR
)) ) {
139 if ( ch
== 27 && seen_esc
== 0 ) {
143 if ( seen_esc
==1 && ch
== 'O' ) {
146 } else if ( seen_esc
== 2 ) {
147 if ( ch
== 'P' ) /* F1 */
149 #ifdef CONFIG_MAGIC_SYSRQ
150 if ( ch
== 'S' ) { /* F4 */
152 ch
= ia64_ssc(0, 0, 0, 0,
155 handle_sysrq(ch
, NULL
);
164 if (tty_insert_flip_char(tty
, ch
, TTY_NORMAL
) == 0)
167 tty_flip_buffer_push(tty
);
171 * This is the serial driver's interrupt routine for a single port
173 static irqreturn_t
rs_interrupt_single(int irq
, void *dev_id
)
175 struct async_struct
* info
;
178 * I don't know exactly why they don't use the dev_id opaque data
179 * pointer instead of this extra lookup table
181 info
= IRQ_ports
[irq
];
182 if (!info
|| !info
->tty
) {
183 printk(KERN_INFO
"simrs_interrupt_single: info|tty=0 info=%p problem\n", info
);
187 * pretty simple in our case, because we only get interrupts
190 receive_chars(info
->tty
);
195 * -------------------------------------------------------------------
196 * Here ends the serial interrupt routines.
197 * -------------------------------------------------------------------
202 * not really used in our situation so keep them commented out for now
204 static DECLARE_TASK_QUEUE(tq_serial
); /* used to be at the top of the file */
205 static void do_serial_bh(void)
207 run_task_queue(&tq_serial
);
208 printk(KERN_ERR
"do_serial_bh: called\n");
212 static void do_softint(struct work_struct
*private_
)
214 printk(KERN_ERR
"simserial: do_softint called\n");
217 static void rs_put_char(struct tty_struct
*tty
, unsigned char ch
)
219 struct async_struct
*info
= (struct async_struct
*)tty
->driver_data
;
222 if (!tty
|| !info
->xmit
.buf
) return;
224 local_irq_save(flags
);
225 if (CIRC_SPACE(info
->xmit
.head
, info
->xmit
.tail
, SERIAL_XMIT_SIZE
) == 0) {
226 local_irq_restore(flags
);
229 info
->xmit
.buf
[info
->xmit
.head
] = ch
;
230 info
->xmit
.head
= (info
->xmit
.head
+ 1) & (SERIAL_XMIT_SIZE
-1);
231 local_irq_restore(flags
);
234 static void transmit_chars(struct async_struct
*info
, int *intr_done
)
240 local_irq_save(flags
);
243 char c
= info
->x_char
;
245 console
->write(console
, &c
, 1);
247 info
->state
->icount
.tx
++;
253 if (info
->xmit
.head
== info
->xmit
.tail
|| info
->tty
->stopped
|| info
->tty
->hw_stopped
) {
254 #ifdef SIMSERIAL_DEBUG
255 printk("transmit_chars: head=%d, tail=%d, stopped=%d\n",
256 info
->xmit
.head
, info
->xmit
.tail
, info
->tty
->stopped
);
261 * We removed the loop and try to do it in to chunks. We need
262 * 2 operations maximum because it's a ring buffer.
264 * First from current to tail if possible.
265 * Then from the beginning of the buffer until necessary
268 count
= min(CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
, SERIAL_XMIT_SIZE
),
269 SERIAL_XMIT_SIZE
- info
->xmit
.tail
);
270 console
->write(console
, info
->xmit
.buf
+info
->xmit
.tail
, count
);
272 info
->xmit
.tail
= (info
->xmit
.tail
+count
) & (SERIAL_XMIT_SIZE
-1);
275 * We have more at the beginning of the buffer
277 count
= CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
, SERIAL_XMIT_SIZE
);
279 console
->write(console
, info
->xmit
.buf
, count
);
280 info
->xmit
.tail
+= count
;
283 local_irq_restore(flags
);
286 static void rs_flush_chars(struct tty_struct
*tty
)
288 struct async_struct
*info
= (struct async_struct
*)tty
->driver_data
;
290 if (info
->xmit
.head
== info
->xmit
.tail
|| tty
->stopped
|| tty
->hw_stopped
||
294 transmit_chars(info
, NULL
);
298 static int rs_write(struct tty_struct
* tty
,
299 const unsigned char *buf
, int count
)
302 struct async_struct
*info
= (struct async_struct
*)tty
->driver_data
;
305 if (!tty
|| !info
->xmit
.buf
|| !tmp_buf
) return 0;
307 local_irq_save(flags
);
309 c
= CIRC_SPACE_TO_END(info
->xmit
.head
, info
->xmit
.tail
, SERIAL_XMIT_SIZE
);
315 memcpy(info
->xmit
.buf
+ info
->xmit
.head
, buf
, c
);
316 info
->xmit
.head
= ((info
->xmit
.head
+ c
) &
317 (SERIAL_XMIT_SIZE
-1));
322 local_irq_restore(flags
);
324 * Hey, we transmit directly from here in our case
326 if (CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
, SERIAL_XMIT_SIZE
)
327 && !tty
->stopped
&& !tty
->hw_stopped
) {
328 transmit_chars(info
, NULL
);
333 static int rs_write_room(struct tty_struct
*tty
)
335 struct async_struct
*info
= (struct async_struct
*)tty
->driver_data
;
337 return CIRC_SPACE(info
->xmit
.head
, info
->xmit
.tail
, SERIAL_XMIT_SIZE
);
340 static int rs_chars_in_buffer(struct tty_struct
*tty
)
342 struct async_struct
*info
= (struct async_struct
*)tty
->driver_data
;
344 return CIRC_CNT(info
->xmit
.head
, info
->xmit
.tail
, SERIAL_XMIT_SIZE
);
347 static void rs_flush_buffer(struct tty_struct
*tty
)
349 struct async_struct
*info
= (struct async_struct
*)tty
->driver_data
;
352 local_irq_save(flags
);
353 info
->xmit
.head
= info
->xmit
.tail
= 0;
354 local_irq_restore(flags
);
356 wake_up_interruptible(&tty
->write_wait
);
358 if ((tty
->flags
& (1 << TTY_DO_WRITE_WAKEUP
)) &&
359 tty
->ldisc
.write_wakeup
)
360 (tty
->ldisc
.write_wakeup
)(tty
);
364 * This function is used to send a high-priority XON/XOFF character to
367 static void rs_send_xchar(struct tty_struct
*tty
, char ch
)
369 struct async_struct
*info
= (struct async_struct
*)tty
->driver_data
;
374 * I guess we could call console->write() directly but
375 * let's do that for now.
377 transmit_chars(info
, NULL
);
382 * ------------------------------------------------------------
385 * This routine is called by the upper-layer tty layer to signal that
386 * incoming characters should be throttled.
387 * ------------------------------------------------------------
389 static void rs_throttle(struct tty_struct
* tty
)
391 if (I_IXOFF(tty
)) rs_send_xchar(tty
, STOP_CHAR(tty
));
393 printk(KERN_INFO
"simrs_throttle called\n");
396 static void rs_unthrottle(struct tty_struct
* tty
)
398 struct async_struct
*info
= (struct async_struct
*)tty
->driver_data
;
404 rs_send_xchar(tty
, START_CHAR(tty
));
406 printk(KERN_INFO
"simrs_unthrottle called\n");
410 * rs_break() --- routine which turns the break handling on or off
412 static void rs_break(struct tty_struct
*tty
, int break_state
)
416 static int rs_ioctl(struct tty_struct
*tty
, struct file
* file
,
417 unsigned int cmd
, unsigned long arg
)
419 if ((cmd
!= TIOCGSERIAL
) && (cmd
!= TIOCSSERIAL
) &&
420 (cmd
!= TIOCSERCONFIG
) && (cmd
!= TIOCSERGSTRUCT
) &&
421 (cmd
!= TIOCMIWAIT
) && (cmd
!= TIOCGICOUNT
)) {
422 if (tty
->flags
& (1 << TTY_IO_ERROR
))
428 printk(KERN_INFO
"rs_ioctl: TIOCMGET called\n");
433 printk(KERN_INFO
"rs_ioctl: TIOCMBIS/BIC/SET called\n");
436 printk(KERN_INFO
"simrs_ioctl TIOCGSERIAL called\n");
439 printk(KERN_INFO
"simrs_ioctl TIOCSSERIAL called\n");
442 printk(KERN_INFO
"rs_ioctl: TIOCSERCONFIG called\n");
445 case TIOCSERGETLSR
: /* Get line status register */
446 printk(KERN_INFO
"rs_ioctl: TIOCSERGETLSR called\n");
450 printk(KERN_INFO
"rs_ioctl: TIOCSERGSTRUCT called\n");
452 if (copy_to_user((struct async_struct
*) arg
,
453 info
, sizeof(struct async_struct
)))
459 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
460 * - mask passed in arg for lines of interest
461 * (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
462 * Caller should use TIOCGICOUNT to see which one it was
465 printk(KERN_INFO
"rs_ioctl: TIOCMIWAIT: called\n");
468 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
469 * Return: write counters to the user passed counter struct
470 * NB: both 1->0 and 0->1 transitions are counted except for
471 * RI where only 0->1 is counted.
474 printk(KERN_INFO
"rs_ioctl: TIOCGICOUNT called\n");
479 /* "setserial -W" is called in Debian boot */
480 printk (KERN_INFO
"TIOCSER?WILD ioctl obsolete, ignored.\n");
489 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
491 static void rs_set_termios(struct tty_struct
*tty
, struct ktermios
*old_termios
)
493 unsigned int cflag
= tty
->termios
->c_cflag
;
495 if ( (cflag
== old_termios
->c_cflag
)
496 && ( RELEVANT_IFLAG(tty
->termios
->c_iflag
)
497 == RELEVANT_IFLAG(old_termios
->c_iflag
)))
501 /* Handle turning off CRTSCTS */
502 if ((old_termios
->c_cflag
& CRTSCTS
) &&
503 !(tty
->termios
->c_cflag
& CRTSCTS
)) {
509 * This routine will shutdown a serial port; interrupts are disabled, and
510 * DTR is dropped if the hangup on close termio flag is on.
512 static void shutdown(struct async_struct
* info
)
515 struct serial_state
*state
;
518 if (!(info
->flags
& ASYNC_INITIALIZED
)) return;
522 #ifdef SIMSERIAL_DEBUG
523 printk("Shutting down serial port %d (irq %d)....", info
->line
,
527 local_irq_save(flags
);
530 * First unlink the serial port from the IRQ chain...
533 info
->next_port
->prev_port
= info
->prev_port
;
535 info
->prev_port
->next_port
= info
->next_port
;
537 IRQ_ports
[state
->irq
] = info
->next_port
;
540 * Free the IRQ, if necessary
542 if (state
->irq
&& (!IRQ_ports
[state
->irq
] ||
543 !IRQ_ports
[state
->irq
]->next_port
)) {
544 if (IRQ_ports
[state
->irq
]) {
545 free_irq(state
->irq
, NULL
);
546 retval
= request_irq(state
->irq
, rs_interrupt_single
,
547 IRQ_T(info
), "serial", NULL
);
550 printk(KERN_ERR
"serial shutdown: request_irq: error %d"
551 " Couldn't reacquire IRQ.\n", retval
);
553 free_irq(state
->irq
, NULL
);
556 if (info
->xmit
.buf
) {
557 free_page((unsigned long) info
->xmit
.buf
);
558 info
->xmit
.buf
= NULL
;
561 if (info
->tty
) set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
563 info
->flags
&= ~ASYNC_INITIALIZED
;
565 local_irq_restore(flags
);
569 * ------------------------------------------------------------
572 * This routine is called when the serial port gets closed. First, we
573 * wait for the last remaining data to be sent. Then, we unlink its
574 * async structure from the interrupt chain if necessary, and we free
575 * that IRQ if nothing is left in the chain.
576 * ------------------------------------------------------------
578 static void rs_close(struct tty_struct
*tty
, struct file
* filp
)
580 struct async_struct
* info
= (struct async_struct
*)tty
->driver_data
;
581 struct serial_state
*state
;
588 local_irq_save(flags
);
589 if (tty_hung_up_p(filp
)) {
590 #ifdef SIMSERIAL_DEBUG
591 printk("rs_close: hung_up\n");
593 local_irq_restore(flags
);
596 #ifdef SIMSERIAL_DEBUG
597 printk("rs_close ttys%d, count = %d\n", info
->line
, state
->count
);
599 if ((tty
->count
== 1) && (state
->count
!= 1)) {
601 * Uh, oh. tty->count is 1, which means that the tty
602 * structure will be freed. state->count should always
603 * be one in these conditions. If it's greater than
604 * one, we've got real problems, since it means the
605 * serial port won't be shutdown.
607 printk(KERN_ERR
"rs_close: bad serial port count; tty->count is 1, "
608 "state->count is %d\n", state
->count
);
611 if (--state
->count
< 0) {
612 printk(KERN_ERR
"rs_close: bad serial port count for ttys%d: %d\n",
613 info
->line
, state
->count
);
617 local_irq_restore(flags
);
620 info
->flags
|= ASYNC_CLOSING
;
621 local_irq_restore(flags
);
624 * Now we wait for the transmit buffer to clear; and we notify
625 * the line discipline to only process XON/XOFF characters.
628 if (tty
->driver
->flush_buffer
) tty
->driver
->flush_buffer(tty
);
629 if (tty
->ldisc
.flush_buffer
) tty
->ldisc
.flush_buffer(tty
);
632 if (info
->blocked_open
) {
633 if (info
->close_delay
)
634 schedule_timeout_interruptible(info
->close_delay
);
635 wake_up_interruptible(&info
->open_wait
);
637 info
->flags
&= ~(ASYNC_NORMAL_ACTIVE
|ASYNC_CLOSING
);
638 wake_up_interruptible(&info
->close_wait
);
642 * rs_wait_until_sent() --- wait until the transmitter is empty
644 static void rs_wait_until_sent(struct tty_struct
*tty
, int timeout
)
650 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
652 static void rs_hangup(struct tty_struct
*tty
)
654 struct async_struct
* info
= (struct async_struct
*)tty
->driver_data
;
655 struct serial_state
*state
= info
->state
;
657 #ifdef SIMSERIAL_DEBUG
658 printk("rs_hangup: called\n");
663 rs_flush_buffer(tty
);
664 if (info
->flags
& ASYNC_CLOSING
)
670 info
->flags
&= ~ASYNC_NORMAL_ACTIVE
;
672 wake_up_interruptible(&info
->open_wait
);
676 static int get_async_struct(int line
, struct async_struct
**ret_info
)
678 struct async_struct
*info
;
679 struct serial_state
*sstate
;
681 sstate
= rs_table
+ line
;
684 *ret_info
= sstate
->info
;
687 info
= kzalloc(sizeof(struct async_struct
), GFP_KERNEL
);
692 init_waitqueue_head(&info
->open_wait
);
693 init_waitqueue_head(&info
->close_wait
);
694 init_waitqueue_head(&info
->delta_msr_wait
);
695 info
->magic
= SERIAL_MAGIC
;
696 info
->port
= sstate
->port
;
697 info
->flags
= sstate
->flags
;
698 info
->xmit_fifo_size
= sstate
->xmit_fifo_size
;
700 INIT_WORK(&info
->work
, do_softint
);
701 info
->state
= sstate
;
704 *ret_info
= sstate
->info
;
707 *ret_info
= sstate
->info
= info
;
712 startup(struct async_struct
*info
)
716 irq_handler_t handler
;
717 struct serial_state
*state
= info
->state
;
720 page
= get_zeroed_page(GFP_KERNEL
);
724 local_irq_save(flags
);
726 if (info
->flags
& ASYNC_INITIALIZED
) {
731 if (!state
->port
|| !state
->type
) {
732 if (info
->tty
) set_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
739 info
->xmit
.buf
= (unsigned char *) page
;
741 #ifdef SIMSERIAL_DEBUG
742 printk("startup: ttys%d (irq %d)...", info
->line
, state
->irq
);
746 * Allocate the IRQ if necessary
748 if (state
->irq
&& (!IRQ_ports
[state
->irq
] ||
749 !IRQ_ports
[state
->irq
]->next_port
)) {
750 if (IRQ_ports
[state
->irq
]) {
754 handler
= rs_interrupt_single
;
756 retval
= request_irq(state
->irq
, handler
, IRQ_T(info
), "simserial", NULL
);
758 if (capable(CAP_SYS_ADMIN
)) {
760 set_bit(TTY_IO_ERROR
,
769 * Insert serial port into IRQ chain.
771 info
->prev_port
= NULL
;
772 info
->next_port
= IRQ_ports
[state
->irq
];
774 info
->next_port
->prev_port
= info
;
775 IRQ_ports
[state
->irq
] = info
;
777 if (info
->tty
) clear_bit(TTY_IO_ERROR
, &info
->tty
->flags
);
779 info
->xmit
.head
= info
->xmit
.tail
= 0;
783 * Set up serial timers...
785 timer_table
[RS_TIMER
].expires
= jiffies
+ 2*HZ
/100;
786 timer_active
|= 1 << RS_TIMER
;
790 * Set up the tty->alt_speed kludge
793 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_HI
)
794 info
->tty
->alt_speed
= 57600;
795 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_VHI
)
796 info
->tty
->alt_speed
= 115200;
797 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_SHI
)
798 info
->tty
->alt_speed
= 230400;
799 if ((info
->flags
& ASYNC_SPD_MASK
) == ASYNC_SPD_WARP
)
800 info
->tty
->alt_speed
= 460800;
803 info
->flags
|= ASYNC_INITIALIZED
;
804 local_irq_restore(flags
);
808 local_irq_restore(flags
);
814 * This routine is called whenever a serial port is opened. It
815 * enables interrupts for a serial port, linking in its async structure into
816 * the IRQ chain. It also performs the serial-specific
817 * initialization for the tty structure.
819 static int rs_open(struct tty_struct
*tty
, struct file
* filp
)
821 struct async_struct
*info
;
826 if ((line
< 0) || (line
>= NR_PORTS
))
828 retval
= get_async_struct(line
, &info
);
831 tty
->driver_data
= info
;
834 #ifdef SIMSERIAL_DEBUG
835 printk("rs_open %s, count = %d\n", tty
->name
, info
->state
->count
);
837 info
->tty
->low_latency
= (info
->flags
& ASYNC_LOW_LATENCY
) ? 1 : 0;
840 page
= get_zeroed_page(GFP_KERNEL
);
846 tmp_buf
= (unsigned char *) page
;
850 * If the port is the middle of closing, bail out now
852 if (tty_hung_up_p(filp
) ||
853 (info
->flags
& ASYNC_CLOSING
)) {
854 if (info
->flags
& ASYNC_CLOSING
)
855 interruptible_sleep_on(&info
->close_wait
);
856 #ifdef SERIAL_DO_RESTART
857 return ((info
->flags
& ASYNC_HUP_NOTIFY
) ?
858 -EAGAIN
: -ERESTARTSYS
);
865 * Start up serial port
867 retval
= startup(info
);
873 * figure out which console to use (should be one already)
875 console
= console_drivers
;
877 if ((console
->flags
& CON_ENABLED
) && console
->write
) break;
878 console
= console
->next
;
881 #ifdef SIMSERIAL_DEBUG
882 printk("rs_open ttys%d successful\n", info
->line
);
888 * /proc fs routines....
891 static inline int line_info(char *buf
, struct serial_state
*state
)
893 return sprintf(buf
, "%d: uart:%s port:%lX irq:%d\n",
894 state
->line
, uart_config
[state
->type
].name
,
895 state
->port
, state
->irq
);
898 static int rs_read_proc(char *page
, char **start
, off_t off
, int count
,
899 int *eof
, void *data
)
904 len
+= sprintf(page
, "simserinfo:1.0 driver:%s\n", serial_version
);
905 for (i
= 0; i
< NR_PORTS
&& len
< 4000; i
++) {
906 l
= line_info(page
+ len
, &rs_table
[i
]);
908 if (len
+begin
> off
+count
)
910 if (len
+begin
< off
) {
917 if (off
>= len
+begin
)
919 *start
= page
+ (begin
-off
);
920 return ((count
< begin
+len
-off
) ? count
: begin
+len
-off
);
924 * ---------------------------------------------------------------------
925 * rs_init() and friends
927 * rs_init() is called at boot-time to initialize the serial driver.
928 * ---------------------------------------------------------------------
932 * This routine prints out the appropriate serial driver version
933 * number, and identifies which options were configured into this
936 static inline void show_serial_version(void)
938 printk(KERN_INFO
"%s version %s with", serial_name
, serial_version
);
939 printk(KERN_INFO
" no serial options enabled\n");
942 static const struct tty_operations hp_ops
= {
946 .put_char
= rs_put_char
,
947 .flush_chars
= rs_flush_chars
,
948 .write_room
= rs_write_room
,
949 .chars_in_buffer
= rs_chars_in_buffer
,
950 .flush_buffer
= rs_flush_buffer
,
952 .throttle
= rs_throttle
,
953 .unthrottle
= rs_unthrottle
,
954 .send_xchar
= rs_send_xchar
,
955 .set_termios
= rs_set_termios
,
959 .break_ctl
= rs_break
,
960 .wait_until_sent
= rs_wait_until_sent
,
961 .read_proc
= rs_read_proc
,
965 * The serial driver boot-time initialization code!
971 struct serial_state
*state
;
973 if (!ia64_platform_is("hpsim"))
976 hp_simserial_driver
= alloc_tty_driver(1);
977 if (!hp_simserial_driver
)
980 show_serial_version();
982 /* Initialize the tty_driver structure */
984 hp_simserial_driver
->owner
= THIS_MODULE
;
985 hp_simserial_driver
->driver_name
= "simserial";
986 hp_simserial_driver
->name
= "ttyS";
987 hp_simserial_driver
->major
= TTY_MAJOR
;
988 hp_simserial_driver
->minor_start
= 64;
989 hp_simserial_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
990 hp_simserial_driver
->subtype
= SERIAL_TYPE_NORMAL
;
991 hp_simserial_driver
->init_termios
= tty_std_termios
;
992 hp_simserial_driver
->init_termios
.c_cflag
=
993 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
994 hp_simserial_driver
->flags
= TTY_DRIVER_REAL_RAW
;
995 tty_set_operations(hp_simserial_driver
, &hp_ops
);
998 * Let's have a little bit of fun !
1000 for (i
= 0, state
= rs_table
; i
< NR_PORTS
; i
++,state
++) {
1002 if (state
->type
== PORT_UNKNOWN
) continue;
1005 if ((rc
= assign_irq_vector(AUTO_ASSIGN
)) < 0)
1006 panic("%s: out of interrupt vectors!\n",
1009 ia64_ssc_connect_irq(KEYBOARD_INTR
, state
->irq
);
1012 printk(KERN_INFO
"ttyS%d at 0x%04lx (irq = %d) is a %s\n",
1014 state
->port
, state
->irq
,
1015 uart_config
[state
->type
].name
);
1018 if (tty_register_driver(hp_simserial_driver
))
1019 panic("Couldn't register simserial driver\n");
1025 __initcall(simrs_init
);