a08a53f033b42f0790e0007cb7fa8fffb6b04bbb
[firefly-linux-kernel-4.4.55.git] / arch / ia64 / hp / sim / simserial.c
1 /*
2  * Simulated Serial Driver (fake serial)
3  *
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.
9  *
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>
13  *
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
17  */
18
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>
26 #include <linux/mm.h>
27 #include <linux/seq_file.h>
28 #include <linux/slab.h>
29 #include <linux/capability.h>
30 #include <linux/console.h>
31 #include <linux/module.h>
32 #include <linux/serial.h>
33 #include <linux/serialP.h>
34 #include <linux/sysrq.h>
35
36 #include <asm/irq.h>
37 #include <asm/hpsim.h>
38 #include <asm/hw_irq.h>
39 #include <asm/uaccess.h>
40
41 #include "hpsim_ssc.h"
42
43 #undef SIMSERIAL_DEBUG  /* define this to get some debug information */
44
45 #define KEYBOARD_INTR   3       /* must match with simulator! */
46
47 #define NR_PORTS        1       /* only one port for now */
48
49 #define IRQ_T(state) ((state->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED)
50
51 static char *serial_name = "SimSerial driver";
52 static char *serial_version = "0.6";
53
54 /*
55  * This has been extracted from asm/serial.h. We need one eventually but
56  * I don't know exactly what we're going to put in it so just fake one
57  * for now.
58  */
59 #define BASE_BAUD ( 1843200 / 16 )
60
61 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
62
63 /*
64  * Most of the values here are meaningless to this particular driver.
65  * However some values must be preserved for the code (leveraged from serial.c
66  * to work correctly).
67  * port must not be 0
68  * type must not be UNKNOWN
69  * So I picked arbitrary (guess from where?) values instead
70  */
71 static struct serial_state rs_table[NR_PORTS]={
72   /* UART CLK   PORT IRQ     FLAGS        */
73   { BASE_BAUD, 0x3F8, 0, STD_COM_FLAGS, PORT_16550 }  /* ttyS0 */
74 };
75
76 /*
77  * Just for the fun of it !
78  */
79 static struct serial_uart_config uart_config[] = {
80         { "unknown", 1, 0 },
81         { "8250", 1, 0 },
82         { "16450", 1, 0 },
83         { "16550", 1, 0 },
84         { "16550A", 16, UART_CLEAR_FIFO | UART_USE_FIFO },
85         { "cirrus", 1, 0 },
86         { "ST16650", 1, UART_CLEAR_FIFO | UART_STARTECH },
87         { "ST16650V2", 32, UART_CLEAR_FIFO | UART_USE_FIFO |
88                   UART_STARTECH },
89         { "TI16750", 64, UART_CLEAR_FIFO | UART_USE_FIFO},
90         { NULL, 0}
91 };
92
93 struct tty_driver *hp_simserial_driver;
94
95 static struct async_struct *IRQ_ports[NR_IRQS];
96
97 static struct console *console;
98
99 static unsigned char *tmp_buf;
100
101 extern struct console *console_drivers; /* from kernel/printk.c */
102
103 /*
104  * ------------------------------------------------------------
105  * rs_stop() and rs_start()
106  *
107  * This routines are called before setting or resetting tty->stopped.
108  * They enable or disable transmitter interrupts, as necessary.
109  * ------------------------------------------------------------
110  */
111 static void rs_stop(struct tty_struct *tty)
112 {
113 #ifdef SIMSERIAL_DEBUG
114         printk("rs_stop: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n",
115                 tty->stopped, tty->hw_stopped, tty->flow_stopped);
116 #endif
117
118 }
119
120 static void rs_start(struct tty_struct *tty)
121 {
122 #ifdef SIMSERIAL_DEBUG
123         printk("rs_start: tty->stopped=%d tty->hw_stopped=%d tty->flow_stopped=%d\n",
124                 tty->stopped, tty->hw_stopped, tty->flow_stopped);
125 #endif
126 }
127
128 static  void receive_chars(struct tty_struct *tty)
129 {
130         unsigned char ch;
131         static unsigned char seen_esc = 0;
132
133         while ( (ch = ia64_ssc(0, 0, 0, 0, SSC_GETCHAR)) ) {
134                 if ( ch == 27 && seen_esc == 0 ) {
135                         seen_esc = 1;
136                         continue;
137                 } else {
138                         if ( seen_esc==1 && ch == 'O' ) {
139                                 seen_esc = 2;
140                                 continue;
141                         } else if ( seen_esc == 2 ) {
142                                 if ( ch == 'P' ) /* F1 */
143                                         show_state();
144 #ifdef CONFIG_MAGIC_SYSRQ
145                                 if ( ch == 'S' ) { /* F4 */
146                                         do
147                                                 ch = ia64_ssc(0, 0, 0, 0,
148                                                               SSC_GETCHAR);
149                                         while (!ch);
150                                         handle_sysrq(ch);
151                                 }
152 #endif
153                                 seen_esc = 0;
154                                 continue;
155                         }
156                 }
157                 seen_esc = 0;
158
159                 if (tty_insert_flip_char(tty, ch, TTY_NORMAL) == 0)
160                         break;
161         }
162         tty_flip_buffer_push(tty);
163 }
164
165 /*
166  * This is the serial driver's interrupt routine for a single port
167  */
168 static irqreturn_t rs_interrupt_single(int irq, void *dev_id)
169 {
170         struct async_struct * info;
171
172         /*
173          * I don't know exactly why they don't use the dev_id opaque data
174          * pointer instead of this extra lookup table
175          */
176         info = IRQ_ports[irq];
177         if (!info || !info->tty) {
178                 printk(KERN_INFO "simrs_interrupt_single: info|tty=0 info=%p problem\n", info);
179                 return IRQ_NONE;
180         }
181         /*
182          * pretty simple in our case, because we only get interrupts
183          * on inbound traffic
184          */
185         receive_chars(info->tty);
186         return IRQ_HANDLED;
187 }
188
189 /*
190  * -------------------------------------------------------------------
191  * Here ends the serial interrupt routines.
192  * -------------------------------------------------------------------
193  */
194
195 static int rs_put_char(struct tty_struct *tty, unsigned char ch)
196 {
197         struct async_struct *info = (struct async_struct *)tty->driver_data;
198         unsigned long flags;
199
200         if (!tty || !info->xmit.buf)
201                 return 0;
202
203         local_irq_save(flags);
204         if (CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE) == 0) {
205                 local_irq_restore(flags);
206                 return 0;
207         }
208         info->xmit.buf[info->xmit.head] = ch;
209         info->xmit.head = (info->xmit.head + 1) & (SERIAL_XMIT_SIZE-1);
210         local_irq_restore(flags);
211         return 1;
212 }
213
214 static void transmit_chars(struct async_struct *info, int *intr_done)
215 {
216         int count;
217         unsigned long flags;
218
219
220         local_irq_save(flags);
221
222         if (info->x_char) {
223                 char c = info->x_char;
224
225                 console->write(console, &c, 1);
226
227                 info->state->icount.tx++;
228                 info->x_char = 0;
229
230                 goto out;
231         }
232
233         if (info->xmit.head == info->xmit.tail || info->tty->stopped || info->tty->hw_stopped) {
234 #ifdef SIMSERIAL_DEBUG
235                 printk("transmit_chars: head=%d, tail=%d, stopped=%d\n",
236                        info->xmit.head, info->xmit.tail, info->tty->stopped);
237 #endif
238                 goto out;
239         }
240         /*
241          * We removed the loop and try to do it in to chunks. We need
242          * 2 operations maximum because it's a ring buffer.
243          *
244          * First from current to tail if possible.
245          * Then from the beginning of the buffer until necessary
246          */
247
248         count = min(CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE),
249                     SERIAL_XMIT_SIZE - info->xmit.tail);
250         console->write(console, info->xmit.buf+info->xmit.tail, count);
251
252         info->xmit.tail = (info->xmit.tail+count) & (SERIAL_XMIT_SIZE-1);
253
254         /*
255          * We have more at the beginning of the buffer
256          */
257         count = CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
258         if (count) {
259                 console->write(console, info->xmit.buf, count);
260                 info->xmit.tail += count;
261         }
262 out:
263         local_irq_restore(flags);
264 }
265
266 static void rs_flush_chars(struct tty_struct *tty)
267 {
268         struct async_struct *info = (struct async_struct *)tty->driver_data;
269
270         if (info->xmit.head == info->xmit.tail || tty->stopped || tty->hw_stopped ||
271             !info->xmit.buf)
272                 return;
273
274         transmit_chars(info, NULL);
275 }
276
277
278 static int rs_write(struct tty_struct * tty,
279                     const unsigned char *buf, int count)
280 {
281         int     c, ret = 0;
282         struct async_struct *info = (struct async_struct *)tty->driver_data;
283         unsigned long flags;
284
285         if (!tty || !info->xmit.buf || !tmp_buf) return 0;
286
287         local_irq_save(flags);
288         while (1) {
289                 c = CIRC_SPACE_TO_END(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
290                 if (count < c)
291                         c = count;
292                 if (c <= 0) {
293                         break;
294                 }
295                 memcpy(info->xmit.buf + info->xmit.head, buf, c);
296                 info->xmit.head = ((info->xmit.head + c) &
297                                    (SERIAL_XMIT_SIZE-1));
298                 buf += c;
299                 count -= c;
300                 ret += c;
301         }
302         local_irq_restore(flags);
303         /*
304          * Hey, we transmit directly from here in our case
305          */
306         if (CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE)
307             && !tty->stopped && !tty->hw_stopped) {
308                 transmit_chars(info, NULL);
309         }
310         return ret;
311 }
312
313 static int rs_write_room(struct tty_struct *tty)
314 {
315         struct async_struct *info = (struct async_struct *)tty->driver_data;
316
317         return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
318 }
319
320 static int rs_chars_in_buffer(struct tty_struct *tty)
321 {
322         struct async_struct *info = (struct async_struct *)tty->driver_data;
323
324         return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
325 }
326
327 static void rs_flush_buffer(struct tty_struct *tty)
328 {
329         struct async_struct *info = (struct async_struct *)tty->driver_data;
330         unsigned long flags;
331
332         local_irq_save(flags);
333         info->xmit.head = info->xmit.tail = 0;
334         local_irq_restore(flags);
335
336         tty_wakeup(tty);
337 }
338
339 /*
340  * This function is used to send a high-priority XON/XOFF character to
341  * the device
342  */
343 static void rs_send_xchar(struct tty_struct *tty, char ch)
344 {
345         struct async_struct *info = (struct async_struct *)tty->driver_data;
346
347         info->x_char = ch;
348         if (ch) {
349                 /*
350                  * I guess we could call console->write() directly but
351                  * let's do that for now.
352                  */
353                 transmit_chars(info, NULL);
354         }
355 }
356
357 /*
358  * ------------------------------------------------------------
359  * rs_throttle()
360  *
361  * This routine is called by the upper-layer tty layer to signal that
362  * incoming characters should be throttled.
363  * ------------------------------------------------------------
364  */
365 static void rs_throttle(struct tty_struct * tty)
366 {
367         if (I_IXOFF(tty)) rs_send_xchar(tty, STOP_CHAR(tty));
368
369         printk(KERN_INFO "simrs_throttle called\n");
370 }
371
372 static void rs_unthrottle(struct tty_struct * tty)
373 {
374         struct async_struct *info = (struct async_struct *)tty->driver_data;
375
376         if (I_IXOFF(tty)) {
377                 if (info->x_char)
378                         info->x_char = 0;
379                 else
380                         rs_send_xchar(tty, START_CHAR(tty));
381         }
382         printk(KERN_INFO "simrs_unthrottle called\n");
383 }
384
385
386 static int rs_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg)
387 {
388         if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
389             (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGSTRUCT) &&
390             (cmd != TIOCMIWAIT)) {
391                 if (tty->flags & (1 << TTY_IO_ERROR))
392                     return -EIO;
393         }
394
395         switch (cmd) {
396                 case TIOCGSERIAL:
397                         printk(KERN_INFO "simrs_ioctl TIOCGSERIAL called\n");
398                         return 0;
399                 case TIOCSSERIAL:
400                         printk(KERN_INFO "simrs_ioctl TIOCSSERIAL called\n");
401                         return 0;
402                 case TIOCSERCONFIG:
403                         printk(KERN_INFO "rs_ioctl: TIOCSERCONFIG called\n");
404                         return -EINVAL;
405
406                 case TIOCSERGETLSR: /* Get line status register */
407                         printk(KERN_INFO "rs_ioctl: TIOCSERGETLSR called\n");
408                         return  -EINVAL;
409
410                 case TIOCSERGSTRUCT:
411                         printk(KERN_INFO "rs_ioctl: TIOCSERGSTRUCT called\n");
412 #if 0
413                         if (copy_to_user((struct async_struct *) arg,
414                                          info, sizeof(struct async_struct)))
415                                 return -EFAULT;
416 #endif
417                         return 0;
418
419                 /*
420                  * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
421                  * - mask passed in arg for lines of interest
422                  *   (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
423                  * Caller should use TIOCGICOUNT to see which one it was
424                  */
425                 case TIOCMIWAIT:
426                         printk(KERN_INFO "rs_ioctl: TIOCMIWAIT: called\n");
427                         return 0;
428                 case TIOCSERGWILD:
429                 case TIOCSERSWILD:
430                         /* "setserial -W" is called in Debian boot */
431                         printk (KERN_INFO "TIOCSER?WILD ioctl obsolete, ignored.\n");
432                         return 0;
433
434                 default:
435                         return -ENOIOCTLCMD;
436                 }
437         return 0;
438 }
439
440 #define RELEVANT_IFLAG(iflag) (iflag & (IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK))
441
442 static void rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
443 {
444         /* Handle turning off CRTSCTS */
445         if ((old_termios->c_cflag & CRTSCTS) &&
446             !(tty->termios->c_cflag & CRTSCTS)) {
447                 tty->hw_stopped = 0;
448                 rs_start(tty);
449         }
450 }
451 /*
452  * This routine will shutdown a serial port; interrupts are disabled, and
453  * DTR is dropped if the hangup on close termio flag is on.
454  */
455 static void shutdown(struct async_struct * info)
456 {
457         unsigned long   flags;
458         struct serial_state *state = info->state;
459         int             retval;
460
461         if (!(state->flags & ASYNC_INITIALIZED))
462                 return;
463
464 #ifdef SIMSERIAL_DEBUG
465         printk("Shutting down serial port %d (irq %d)....", info->line,
466                state->irq);
467 #endif
468
469         local_irq_save(flags);
470         {
471                 /*
472                  * First unlink the serial port from the IRQ chain...
473                  */
474                 if (info->next_port)
475                         info->next_port->prev_port = info->prev_port;
476                 if (info->prev_port)
477                         info->prev_port->next_port = info->next_port;
478                 else
479                         IRQ_ports[state->irq] = info->next_port;
480
481                 /*
482                  * Free the IRQ, if necessary
483                  */
484                 if (state->irq && (!IRQ_ports[state->irq] ||
485                                    !IRQ_ports[state->irq]->next_port)) {
486                         if (IRQ_ports[state->irq]) {
487                                 free_irq(state->irq, NULL);
488                                 retval = request_irq(state->irq, rs_interrupt_single,
489                                                      IRQ_T(state), "serial",
490                                                      NULL);
491
492                                 if (retval)
493                                         printk(KERN_ERR "serial shutdown: request_irq: error %d"
494                                                "  Couldn't reacquire IRQ.\n", retval);
495                         } else
496                                 free_irq(state->irq, NULL);
497                 }
498
499                 if (info->xmit.buf) {
500                         free_page((unsigned long) info->xmit.buf);
501                         info->xmit.buf = NULL;
502                 }
503
504                 if (info->tty) set_bit(TTY_IO_ERROR, &info->tty->flags);
505
506                 state->flags &= ~ASYNC_INITIALIZED;
507         }
508         local_irq_restore(flags);
509 }
510
511 /*
512  * ------------------------------------------------------------
513  * rs_close()
514  *
515  * This routine is called when the serial port gets closed.  First, we
516  * wait for the last remaining data to be sent.  Then, we unlink its
517  * async structure from the interrupt chain if necessary, and we free
518  * that IRQ if nothing is left in the chain.
519  * ------------------------------------------------------------
520  */
521 static void rs_close(struct tty_struct *tty, struct file * filp)
522 {
523         struct async_struct * info = (struct async_struct *)tty->driver_data;
524         struct serial_state *state;
525         unsigned long flags;
526
527         if (!info ) return;
528
529         state = info->state;
530
531         local_irq_save(flags);
532         if (tty_hung_up_p(filp)) {
533 #ifdef SIMSERIAL_DEBUG
534                 printk("rs_close: hung_up\n");
535 #endif
536                 local_irq_restore(flags);
537                 return;
538         }
539 #ifdef SIMSERIAL_DEBUG
540         printk("rs_close ttys%d, count = %d\n", info->line, state->count);
541 #endif
542         if ((tty->count == 1) && (state->count != 1)) {
543                 /*
544                  * Uh, oh.  tty->count is 1, which means that the tty
545                  * structure will be freed.  state->count should always
546                  * be one in these conditions.  If it's greater than
547                  * one, we've got real problems, since it means the
548                  * serial port won't be shutdown.
549                  */
550                 printk(KERN_ERR "rs_close: bad serial port count; tty->count is 1, "
551                        "state->count is %d\n", state->count);
552                 state->count = 1;
553         }
554         if (--state->count < 0) {
555                 printk(KERN_ERR "rs_close: bad serial port count for ttys%d: %d\n",
556                        info->line, state->count);
557                 state->count = 0;
558         }
559         if (state->count) {
560                 local_irq_restore(flags);
561                 return;
562         }
563         state->flags |= ASYNC_CLOSING;
564         local_irq_restore(flags);
565
566         /*
567          * Now we wait for the transmit buffer to clear; and we notify
568          * the line discipline to only process XON/XOFF characters.
569          */
570         shutdown(info);
571         rs_flush_buffer(tty);
572         tty_ldisc_flush(tty);
573         info->tty = NULL;
574         if (info->blocked_open) {
575                 if (info->close_delay)
576                         schedule_timeout_interruptible(info->close_delay);
577                 wake_up_interruptible(&info->open_wait);
578         }
579         state->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CLOSING);
580         wake_up_interruptible(&info->close_wait);
581 }
582
583 /*
584  * rs_wait_until_sent() --- wait until the transmitter is empty
585  */
586 static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
587 {
588 }
589
590
591 /*
592  * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
593  */
594 static void rs_hangup(struct tty_struct *tty)
595 {
596         struct async_struct * info = (struct async_struct *)tty->driver_data;
597         struct serial_state *state = info->state;
598
599 #ifdef SIMSERIAL_DEBUG
600         printk("rs_hangup: called\n");
601 #endif
602
603         rs_flush_buffer(tty);
604         if (state->flags & ASYNC_CLOSING)
605                 return;
606         shutdown(info);
607
608         state->count = 0;
609         state->flags &= ~ASYNC_NORMAL_ACTIVE;
610         info->tty = NULL;
611         wake_up_interruptible(&info->open_wait);
612 }
613
614
615 static int get_async_struct(int line, struct async_struct **ret_info)
616 {
617         struct async_struct *info;
618         struct serial_state *sstate;
619
620         sstate = rs_table + line;
621         sstate->count++;
622         if (sstate->info) {
623                 *ret_info = sstate->info;
624                 return 0;
625         }
626         info = kzalloc(sizeof(struct async_struct), GFP_KERNEL);
627         if (!info) {
628                 sstate->count--;
629                 return -ENOMEM;
630         }
631         init_waitqueue_head(&info->open_wait);
632         init_waitqueue_head(&info->close_wait);
633         info->port = sstate->port;
634         info->xmit_fifo_size = sstate->xmit_fifo_size;
635         info->line = line;
636         info->state = sstate;
637         if (sstate->info) {
638                 kfree(info);
639                 *ret_info = sstate->info;
640                 return 0;
641         }
642         *ret_info = sstate->info = info;
643         return 0;
644 }
645
646 static int
647 startup(struct async_struct *info)
648 {
649         unsigned long flags;
650         int     retval=0;
651         irq_handler_t handler;
652         struct serial_state *state= info->state;
653         unsigned long page;
654
655         page = get_zeroed_page(GFP_KERNEL);
656         if (!page)
657                 return -ENOMEM;
658
659         local_irq_save(flags);
660
661         if (state->flags & ASYNC_INITIALIZED) {
662                 free_page(page);
663                 goto errout;
664         }
665
666         if (!state->port || !state->type) {
667                 if (info->tty) set_bit(TTY_IO_ERROR, &info->tty->flags);
668                 free_page(page);
669                 goto errout;
670         }
671         if (info->xmit.buf)
672                 free_page(page);
673         else
674                 info->xmit.buf = (unsigned char *) page;
675
676 #ifdef SIMSERIAL_DEBUG
677         printk("startup: ttys%d (irq %d)...", info->line, state->irq);
678 #endif
679
680         /*
681          * Allocate the IRQ if necessary
682          */
683         if (state->irq && (!IRQ_ports[state->irq] ||
684                           !IRQ_ports[state->irq]->next_port)) {
685                 if (IRQ_ports[state->irq]) {
686                         retval = -EBUSY;
687                         goto errout;
688                 } else
689                         handler = rs_interrupt_single;
690
691                 retval = request_irq(state->irq, handler, IRQ_T(state),
692                                 "simserial", NULL);
693                 if (retval)
694                         goto errout;
695         }
696
697         /*
698          * Insert serial port into IRQ chain.
699          */
700         info->prev_port = NULL;
701         info->next_port = IRQ_ports[state->irq];
702         if (info->next_port)
703                 info->next_port->prev_port = info;
704         IRQ_ports[state->irq] = info;
705
706         if (info->tty) clear_bit(TTY_IO_ERROR, &info->tty->flags);
707
708         info->xmit.head = info->xmit.tail = 0;
709
710 #if 0
711         /*
712          * Set up serial timers...
713          */
714         timer_table[RS_TIMER].expires = jiffies + 2*HZ/100;
715         timer_active |= 1 << RS_TIMER;
716 #endif
717
718         /*
719          * Set up the tty->alt_speed kludge
720          */
721         if (info->tty) {
722                 if ((state->flags & ASYNC_SPD_MASK) == ASYNC_SPD_HI)
723                         info->tty->alt_speed = 57600;
724                 if ((state->flags & ASYNC_SPD_MASK) == ASYNC_SPD_VHI)
725                         info->tty->alt_speed = 115200;
726                 if ((state->flags & ASYNC_SPD_MASK) == ASYNC_SPD_SHI)
727                         info->tty->alt_speed = 230400;
728                 if ((state->flags & ASYNC_SPD_MASK) == ASYNC_SPD_WARP)
729                         info->tty->alt_speed = 460800;
730         }
731
732         state->flags |= ASYNC_INITIALIZED;
733         local_irq_restore(flags);
734         return 0;
735
736 errout:
737         local_irq_restore(flags);
738         return retval;
739 }
740
741
742 /*
743  * This routine is called whenever a serial port is opened.  It
744  * enables interrupts for a serial port, linking in its async structure into
745  * the IRQ chain.   It also performs the serial-specific
746  * initialization for the tty structure.
747  */
748 static int rs_open(struct tty_struct *tty, struct file * filp)
749 {
750         struct async_struct     *info;
751         int                     retval;
752         unsigned long           page;
753
754         retval = get_async_struct(tty->index, &info);
755         if (retval)
756                 return retval;
757         tty->driver_data = info;
758         info->tty = tty;
759
760 #ifdef SIMSERIAL_DEBUG
761         printk("rs_open %s, count = %d\n", tty->name, info->state->count);
762 #endif
763         info->tty->low_latency = (info->state->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
764
765         if (!tmp_buf) {
766                 page = get_zeroed_page(GFP_KERNEL);
767                 if (!page)
768                         return -ENOMEM;
769                 if (tmp_buf)
770                         free_page(page);
771                 else
772                         tmp_buf = (unsigned char *) page;
773         }
774
775         /*
776          * If the port is the middle of closing, bail out now
777          */
778         if (tty_hung_up_p(filp) ||
779             (info->state->flags & ASYNC_CLOSING)) {
780                 if (info->state->flags & ASYNC_CLOSING)
781                         interruptible_sleep_on(&info->close_wait);
782 #ifdef SERIAL_DO_RESTART
783                 return ((info->state->flags & ASYNC_HUP_NOTIFY) ?
784                         -EAGAIN : -ERESTARTSYS);
785 #else
786                 return -EAGAIN;
787 #endif
788         }
789
790         /*
791          * Start up serial port
792          */
793         retval = startup(info);
794         if (retval) {
795                 return retval;
796         }
797
798         /*
799          * figure out which console to use (should be one already)
800          */
801         console = console_drivers;
802         while (console) {
803                 if ((console->flags & CON_ENABLED) && console->write) break;
804                 console = console->next;
805         }
806
807 #ifdef SIMSERIAL_DEBUG
808         printk("rs_open ttys%d successful\n", info->line);
809 #endif
810         return 0;
811 }
812
813 /*
814  * /proc fs routines....
815  */
816
817 static inline void line_info(struct seq_file *m, struct serial_state *state)
818 {
819         seq_printf(m, "%d: uart:%s port:%lX irq:%d\n",
820                        state->line, uart_config[state->type].name,
821                        state->port, state->irq);
822 }
823
824 static int rs_proc_show(struct seq_file *m, void *v)
825 {
826         int i;
827
828         seq_printf(m, "simserinfo:1.0 driver:%s\n", serial_version);
829         for (i = 0; i < NR_PORTS; i++)
830                 line_info(m, &rs_table[i]);
831         return 0;
832 }
833
834 static int rs_proc_open(struct inode *inode, struct file *file)
835 {
836         return single_open(file, rs_proc_show, NULL);
837 }
838
839 static const struct file_operations rs_proc_fops = {
840         .owner          = THIS_MODULE,
841         .open           = rs_proc_open,
842         .read           = seq_read,
843         .llseek         = seq_lseek,
844         .release        = single_release,
845 };
846
847 /*
848  * ---------------------------------------------------------------------
849  * rs_init() and friends
850  *
851  * rs_init() is called at boot-time to initialize the serial driver.
852  * ---------------------------------------------------------------------
853  */
854
855 /*
856  * This routine prints out the appropriate serial driver version
857  * number, and identifies which options were configured into this
858  * driver.
859  */
860 static inline void show_serial_version(void)
861 {
862         printk(KERN_INFO "%s version %s with", serial_name, serial_version);
863         printk(KERN_INFO " no serial options enabled\n");
864 }
865
866 static const struct tty_operations hp_ops = {
867         .open = rs_open,
868         .close = rs_close,
869         .write = rs_write,
870         .put_char = rs_put_char,
871         .flush_chars = rs_flush_chars,
872         .write_room = rs_write_room,
873         .chars_in_buffer = rs_chars_in_buffer,
874         .flush_buffer = rs_flush_buffer,
875         .ioctl = rs_ioctl,
876         .throttle = rs_throttle,
877         .unthrottle = rs_unthrottle,
878         .send_xchar = rs_send_xchar,
879         .set_termios = rs_set_termios,
880         .stop = rs_stop,
881         .start = rs_start,
882         .hangup = rs_hangup,
883         .wait_until_sent = rs_wait_until_sent,
884         .proc_fops = &rs_proc_fops,
885 };
886
887 /*
888  * The serial driver boot-time initialization code!
889  */
890 static int __init
891 simrs_init (void)
892 {
893         int                     i, rc;
894         struct serial_state     *state;
895
896         if (!ia64_platform_is("hpsim"))
897                 return -ENODEV;
898
899         hp_simserial_driver = alloc_tty_driver(NR_PORTS);
900         if (!hp_simserial_driver)
901                 return -ENOMEM;
902
903         show_serial_version();
904
905         /* Initialize the tty_driver structure */
906
907         hp_simserial_driver->driver_name = "simserial";
908         hp_simserial_driver->name = "ttyS";
909         hp_simserial_driver->major = TTY_MAJOR;
910         hp_simserial_driver->minor_start = 64;
911         hp_simserial_driver->type = TTY_DRIVER_TYPE_SERIAL;
912         hp_simserial_driver->subtype = SERIAL_TYPE_NORMAL;
913         hp_simserial_driver->init_termios = tty_std_termios;
914         hp_simserial_driver->init_termios.c_cflag =
915                 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
916         hp_simserial_driver->flags = TTY_DRIVER_REAL_RAW;
917         tty_set_operations(hp_simserial_driver, &hp_ops);
918
919         /*
920          * Let's have a little bit of fun !
921          */
922         for (i = 0, state = rs_table; i < NR_PORTS; i++,state++) {
923
924                 if (state->type == PORT_UNKNOWN) continue;
925
926                 if (!state->irq) {
927                         if ((rc = hpsim_get_irq(KEYBOARD_INTR)) < 0)
928                                 panic("%s: out of interrupt vectors!\n",
929                                       __func__);
930                         state->irq = rc;
931                 }
932
933                 printk(KERN_INFO "ttyS%d at 0x%04lx (irq = %d) is a %s\n",
934                        state->line,
935                        state->port, state->irq,
936                        uart_config[state->type].name);
937         }
938
939         if (tty_register_driver(hp_simserial_driver))
940                 panic("Couldn't register simserial driver\n");
941
942         return 0;
943 }
944
945 #ifndef MODULE
946 __initcall(simrs_init);
947 #endif