2 * C-Brick Serial Port (and console) driver for SGI Altix machines.
4 * This driver is NOT suitable for talking to the l1-controller for
5 * anything other than 'console activities' --- please use the l1
9 * Copyright (c) 2004-2006 Silicon Graphics, Inc. All Rights Reserved.
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of version 2 of the GNU General Public License
13 * as published by the Free Software Foundation.
15 * This program is distributed in the hope that it would be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 * Further, this software is distributed without any warranty that it is
20 * free of the rightful claim of any third person regarding infringement
21 * or the like. Any license provided herein, whether implied or
22 * otherwise, applies only to this software file. Patent licenses, if
23 * any, provided herein do not apply to combinations of this program with
24 * other software, or any other product whatsoever.
26 * You should have received a copy of the GNU General Public
27 * License along with this program; if not, write the Free Software
28 * Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
30 * Contact information: Silicon Graphics, Inc., 1500 Crittenden Lane,
31 * Mountain View, CA 94043, or:
35 * For further information regarding this notice, see:
37 * http://oss.sgi.com/projects/GenInfo/NoticeExplan
40 #include <linux/interrupt.h>
41 #include <linux/tty.h>
42 #include <linux/tty_flip.h>
43 #include <linux/serial.h>
44 #include <linux/console.h>
45 #include <linux/module.h>
46 #include <linux/sysrq.h>
47 #include <linux/circ_buf.h>
48 #include <linux/serial_reg.h>
49 #include <linux/delay.h> /* for mdelay */
50 #include <linux/miscdevice.h>
51 #include <linux/serial_core.h>
54 #include <asm/sn/simulator.h>
55 #include <asm/sn/sn_sal.h>
57 /* number of characters we can transmit to the SAL console at a time */
58 #define SN_SAL_MAX_CHARS 120
60 /* 64K, when we're asynch, it must be at least printk's LOG_BUF_LEN to
61 * avoid losing chars, (always has to be a power of 2) */
62 #define SN_SAL_BUFFER_SIZE (64 * (1 << 10))
64 #define SN_SAL_UART_FIFO_DEPTH 16
65 #define SN_SAL_UART_FIFO_SPEED_CPS (9600/10)
67 /* sn_transmit_chars() calling args */
68 #define TRANSMIT_BUFFERED 0
69 #define TRANSMIT_RAW 1
71 /* To use dynamic numbers only and not use the assigned major and minor,
72 * define the following.. */
73 /* #define USE_DYNAMIC_MINOR 1 *//* use dynamic minor number */
74 #define USE_DYNAMIC_MINOR 0 /* Don't rely on misc_register dynamic minor */
76 /* Device name we're using */
77 #define DEVICE_NAME "ttySG"
78 #define DEVICE_NAME_DYNAMIC "ttySG0" /* need full name for misc_register */
79 /* The major/minor we are using, ignored for USE_DYNAMIC_MINOR */
80 #define DEVICE_MAJOR 204
81 #define DEVICE_MINOR 40
83 #ifdef CONFIG_MAGIC_SYSRQ
84 static char sysrq_serial_str
[] = "\eSYS";
85 static char *sysrq_serial_ptr
= sysrq_serial_str
;
86 static unsigned long sysrq_requested
;
87 #endif /* CONFIG_MAGIC_SYSRQ */
90 * Port definition - this kinda drives it all
93 struct timer_list sc_timer
;
94 struct uart_port sc_port
;
96 int (*sal_puts_raw
) (const char *s
, int len
);
97 int (*sal_puts
) (const char *s
, int len
);
98 int (*sal_getc
) (void);
99 int (*sal_input_pending
) (void);
100 void (*sal_wakeup_transmit
) (struct sn_cons_port
*, int);
102 unsigned long sc_interrupt_timeout
;
106 static struct sn_cons_port sal_console_port
;
107 static int sn_process_input
;
109 /* Only used if USE_DYNAMIC_MINOR is set to 1 */
110 static struct miscdevice misc
; /* used with misc_register for dynamic */
112 extern void early_sn_setup(void);
116 static int sn_debug_printf(const char *fmt
, ...);
117 #define DPRINTF(x...) sn_debug_printf(x)
119 #define DPRINTF(x...) do { } while (0)
123 static int snt_hw_puts_raw(const char *, int);
124 static int snt_hw_puts_buffered(const char *, int);
125 static int snt_poll_getc(void);
126 static int snt_poll_input_pending(void);
127 static int snt_intr_getc(void);
128 static int snt_intr_input_pending(void);
129 static void sn_transmit_chars(struct sn_cons_port
*, int);
131 /* A table for polling:
133 static struct sn_sal_ops poll_ops
= {
134 .sal_puts_raw
= snt_hw_puts_raw
,
135 .sal_puts
= snt_hw_puts_raw
,
136 .sal_getc
= snt_poll_getc
,
137 .sal_input_pending
= snt_poll_input_pending
140 /* A table for interrupts enabled */
141 static struct sn_sal_ops intr_ops
= {
142 .sal_puts_raw
= snt_hw_puts_raw
,
143 .sal_puts
= snt_hw_puts_buffered
,
144 .sal_getc
= snt_intr_getc
,
145 .sal_input_pending
= snt_intr_input_pending
,
146 .sal_wakeup_transmit
= sn_transmit_chars
149 /* the console does output in two distinctly different ways:
150 * synchronous (raw) and asynchronous (buffered). initially, early_printk
151 * does synchronous output. any data written goes directly to the SAL
152 * to be output (incidentally, it is internally buffered by the SAL)
153 * after interrupts and timers are initialized and available for use,
154 * the console init code switches to asynchronous output. this is
155 * also the earliest opportunity to begin polling for console input.
156 * after console initialization, console output and tty (serial port)
157 * output is buffered and sent to the SAL asynchronously (either by
158 * timer callback or by UART interrupt) */
160 /* routines for running the console in polling mode */
163 * snt_poll_getc - Get a character from the console in polling mode
166 static int snt_poll_getc(void)
170 ia64_sn_console_getc(&ch
);
175 * snt_poll_input_pending - Check if any input is waiting - polling mode.
178 static int snt_poll_input_pending(void)
182 status
= ia64_sn_console_check(&input
);
183 return !status
&& input
;
186 /* routines for an interrupt driven console (normal) */
189 * snt_intr_getc - Get a character from the console, interrupt mode
192 static int snt_intr_getc(void)
194 return ia64_sn_console_readc();
198 * snt_intr_input_pending - Check if input is pending, interrupt mode
201 static int snt_intr_input_pending(void)
203 return ia64_sn_console_intr_status() & SAL_CONSOLE_INTR_RECV
;
206 /* these functions are polled and interrupt */
209 * snt_hw_puts_raw - Send raw string to the console, polled or interrupt mode
214 static int snt_hw_puts_raw(const char *s
, int len
)
216 /* this will call the PROM and not return until this is done */
217 return ia64_sn_console_putb(s
, len
);
221 * snt_hw_puts_buffered - Send string to console, polled or interrupt mode
226 static int snt_hw_puts_buffered(const char *s
, int len
)
228 /* queue data to the PROM */
229 return ia64_sn_console_xmit_chars((char *)s
, len
);
232 /* uart interface structs
233 * These functions are associated with the uart_port that the serial core
234 * infrastructure calls.
236 * Note: Due to how the console works, many routines are no-ops.
240 * snp_type - What type of console are we?
241 * @port: Port to operate with (we ignore since we only have one port)
244 static const char *snp_type(struct uart_port
*port
)
246 return ("SGI SN L1");
250 * snp_tx_empty - Is the transmitter empty? We pretend we're always empty
251 * @port: Port to operate on (we ignore since we only have one port)
254 static unsigned int snp_tx_empty(struct uart_port
*port
)
260 * snp_stop_tx - stop the transmitter - no-op for us
261 * @port: Port to operat eon - we ignore - no-op function
264 static void snp_stop_tx(struct uart_port
*port
)
269 * snp_release_port - Free i/o and resources for port - no-op for us
270 * @port: Port to operate on - we ignore - no-op function
273 static void snp_release_port(struct uart_port
*port
)
278 * snp_shutdown - shut down the port - free irq and disable - no-op for us
279 * @port: Port to shut down - we ignore
282 static void snp_shutdown(struct uart_port
*port
)
287 * snp_set_mctrl - set control lines (dtr, rts, etc) - no-op for our console
288 * @port: Port to operate on - we ignore
289 * @mctrl: Lines to set/unset - we ignore
292 static void snp_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
297 * snp_get_mctrl - get contorl line info, we just return a static value
298 * @port: port to operate on - we only have one port so we ignore this
301 static unsigned int snp_get_mctrl(struct uart_port
*port
)
303 return TIOCM_CAR
| TIOCM_RNG
| TIOCM_DSR
| TIOCM_CTS
;
307 * snp_stop_rx - Stop the receiver - we ignor ethis
308 * @port: Port to operate on - we ignore
311 static void snp_stop_rx(struct uart_port
*port
)
316 * snp_start_tx - Start transmitter
317 * @port: Port to operate on
320 static void snp_start_tx(struct uart_port
*port
)
322 if (sal_console_port
.sc_ops
->sal_wakeup_transmit
)
323 sal_console_port
.sc_ops
->sal_wakeup_transmit(&sal_console_port
,
329 * snp_break_ctl - handle breaks - ignored by us
330 * @port: Port to operate on
331 * @break_state: Break state
334 static void snp_break_ctl(struct uart_port
*port
, int break_state
)
339 * snp_startup - Start up the serial port - always return 0 (We're always on)
340 * @port: Port to operate on
343 static int snp_startup(struct uart_port
*port
)
349 * snp_set_termios - set termios stuff - we ignore these
350 * @port: port to operate on
351 * @termios: New settings
356 snp_set_termios(struct uart_port
*port
, struct ktermios
*termios
,
357 struct ktermios
*old
)
362 * snp_request_port - allocate resources for port - ignored by us
363 * @port: port to operate on
366 static int snp_request_port(struct uart_port
*port
)
372 * snp_config_port - allocate resources, set up - we ignore, we're always on
373 * @port: Port to operate on
374 * @flags: flags used for port setup
377 static void snp_config_port(struct uart_port
*port
, int flags
)
381 /* Associate the uart functions above - given to serial core */
383 static struct uart_ops sn_console_ops
= {
384 .tx_empty
= snp_tx_empty
,
385 .set_mctrl
= snp_set_mctrl
,
386 .get_mctrl
= snp_get_mctrl
,
387 .stop_tx
= snp_stop_tx
,
388 .start_tx
= snp_start_tx
,
389 .stop_rx
= snp_stop_rx
,
390 .break_ctl
= snp_break_ctl
,
391 .startup
= snp_startup
,
392 .shutdown
= snp_shutdown
,
393 .set_termios
= snp_set_termios
,
396 .release_port
= snp_release_port
,
397 .request_port
= snp_request_port
,
398 .config_port
= snp_config_port
,
402 /* End of uart struct functions and defines */
407 * sn_debug_printf - close to hardware debugging printf
408 * @fmt: printf format
410 * This is as "close to the metal" as we can get, used when the driver
411 * itself may be broken.
414 static int sn_debug_printf(const char *fmt
, ...)
416 static char printk_buf
[1024];
421 printed_len
= vsnprintf(printk_buf
, sizeof(printk_buf
), fmt
, args
);
423 if (!sal_console_port
.sc_ops
) {
424 sal_console_port
.sc_ops
= &poll_ops
;
427 sal_console_port
.sc_ops
->sal_puts_raw(printk_buf
, printed_len
);
435 * Interrupt handling routines.
439 * sn_receive_chars - Grab characters, pass them to tty layer
440 * @port: Port to operate on
443 * Note: If we're not registered with the serial core infrastructure yet,
444 * we don't try to send characters to it...
448 sn_receive_chars(struct sn_cons_port
*port
, unsigned long flags
)
450 struct tty_port
*tport
= NULL
;
454 printk(KERN_ERR
"sn_receive_chars - port NULL so can't receive\n");
459 printk(KERN_ERR
"sn_receive_chars - port->sc_ops NULL so can't receive\n");
463 if (port
->sc_port
.state
) {
464 /* The serial_core stuffs are initialized, use them */
465 tport
= &port
->sc_port
.state
->port
;
468 while (port
->sc_ops
->sal_input_pending()) {
469 ch
= port
->sc_ops
->sal_getc();
471 printk(KERN_ERR
"sn_console: An error occurred while "
472 "obtaining data from the console (0x%0x)\n", ch
);
475 #ifdef CONFIG_MAGIC_SYSRQ
476 if (sysrq_requested
) {
477 unsigned long sysrq_timeout
= sysrq_requested
+ HZ
*5;
480 if (ch
&& time_before(jiffies
, sysrq_timeout
)) {
481 spin_unlock_irqrestore(&port
->sc_port
.lock
, flags
);
483 spin_lock_irqsave(&port
->sc_port
.lock
, flags
);
484 /* ignore actual sysrq command char */
488 if (ch
== *sysrq_serial_ptr
) {
489 if (!(*++sysrq_serial_ptr
)) {
490 sysrq_requested
= jiffies
;
491 sysrq_serial_ptr
= sysrq_serial_str
;
494 * ignore the whole sysrq string except for the
501 sysrq_serial_ptr
= sysrq_serial_str
;
502 #endif /* CONFIG_MAGIC_SYSRQ */
504 /* record the character to pass up to the tty layer */
506 if (tty_insert_flip_char(tport
, ch
, TTY_NORMAL
) == 0)
509 port
->sc_port
.icount
.rx
++;
513 tty_flip_buffer_push(tport
);
517 * sn_transmit_chars - grab characters from serial core, send off
518 * @port: Port to operate on
519 * @raw: Transmit raw or buffered
521 * Note: If we're early, before we're registered with serial core, the
522 * writes are going through sn_sal_console_write because that's how
523 * register_console has been set up. We currently could have asynch
524 * polls calling this function due to sn_sal_switch_to_asynch but we can
525 * ignore them until we register with the serial core stuffs.
528 static void sn_transmit_chars(struct sn_cons_port
*port
, int raw
)
530 int xmit_count
, tail
, head
, loops
, ii
;
533 struct circ_buf
*xmit
;
538 BUG_ON(!port
->sc_is_asynch
);
540 if (port
->sc_port
.state
) {
541 /* We're initialized, using serial core infrastructure */
542 xmit
= &port
->sc_port
.state
->xmit
;
544 /* Probably sn_sal_switch_to_asynch has been run but serial core isn't
545 * initialized yet. Just return. Writes are going through
546 * sn_sal_console_write (due to register_console) at this time.
551 if (uart_circ_empty(xmit
) || uart_tx_stopped(&port
->sc_port
)) {
553 ia64_sn_console_intr_disable(SAL_CONSOLE_INTR_XMIT
);
559 start
= &xmit
->buf
[tail
];
561 /* twice around gets the tail to the end of the buffer and
562 * then to the head, if needed */
563 loops
= (head
< tail
) ? 2 : 1;
565 for (ii
= 0; ii
< loops
; ii
++) {
566 xmit_count
= (head
< tail
) ?
567 (UART_XMIT_SIZE
- tail
) : (head
- tail
);
569 if (xmit_count
> 0) {
570 if (raw
== TRANSMIT_RAW
)
572 port
->sc_ops
->sal_puts_raw(start
,
576 port
->sc_ops
->sal_puts(start
, xmit_count
);
582 xmit_count
-= result
;
583 port
->sc_port
.icount
.tx
+= result
;
585 tail
&= UART_XMIT_SIZE
- 1;
587 start
= &xmit
->buf
[tail
];
592 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
593 uart_write_wakeup(&port
->sc_port
);
595 if (uart_circ_empty(xmit
))
596 snp_stop_tx(&port
->sc_port
); /* no-op for us */
600 * sn_sal_interrupt - Handle console interrupts
601 * @irq: irq #, useful for debug statements
602 * @dev_id: our pointer to our port (sn_cons_port which contains the uart port)
605 static irqreturn_t
sn_sal_interrupt(int irq
, void *dev_id
)
607 struct sn_cons_port
*port
= (struct sn_cons_port
*)dev_id
;
609 int status
= ia64_sn_console_intr_status();
614 spin_lock_irqsave(&port
->sc_port
.lock
, flags
);
615 if (status
& SAL_CONSOLE_INTR_RECV
) {
616 sn_receive_chars(port
, flags
);
618 if (status
& SAL_CONSOLE_INTR_XMIT
) {
619 sn_transmit_chars(port
, TRANSMIT_BUFFERED
);
621 spin_unlock_irqrestore(&port
->sc_port
.lock
, flags
);
626 * sn_sal_timer_poll - this function handles polled console mode
627 * @data: A pointer to our sn_cons_port (which contains the uart port)
629 * data is the pointer that init_timer will store for us. This function is
630 * associated with init_timer to see if there is any console traffic.
631 * Obviously not used in interrupt mode
634 static void sn_sal_timer_poll(unsigned long data
)
636 struct sn_cons_port
*port
= (struct sn_cons_port
*)data
;
642 if (!port
->sc_port
.irq
) {
643 spin_lock_irqsave(&port
->sc_port
.lock
, flags
);
644 if (sn_process_input
)
645 sn_receive_chars(port
, flags
);
646 sn_transmit_chars(port
, TRANSMIT_RAW
);
647 spin_unlock_irqrestore(&port
->sc_port
.lock
, flags
);
648 mod_timer(&port
->sc_timer
,
649 jiffies
+ port
->sc_interrupt_timeout
);
654 * Boot-time initialization code
658 * sn_sal_switch_to_asynch - Switch to async mode (as opposed to synch)
659 * @port: Our sn_cons_port (which contains the uart port)
661 * So this is used by sn_sal_serial_console_init (early on, before we're
662 * registered with serial core). It's also used by sn_sal_module_init
663 * right after we've registered with serial core. The later only happens
664 * if we didn't already come through here via sn_sal_serial_console_init.
667 static void __init
sn_sal_switch_to_asynch(struct sn_cons_port
*port
)
674 DPRINTF("sn_console: about to switch to asynchronous console\n");
676 /* without early_printk, we may be invoked late enough to race
677 * with other cpus doing console IO at this point, however
678 * console interrupts will never be enabled */
679 spin_lock_irqsave(&port
->sc_port
.lock
, flags
);
681 /* early_printk invocation may have done this for us */
683 port
->sc_ops
= &poll_ops
;
685 /* we can't turn on the console interrupt (as request_irq
686 * calls kmalloc, which isn't set up yet), so we rely on a
687 * timer to poll for input and push data from the console
690 init_timer(&port
->sc_timer
);
691 port
->sc_timer
.function
= sn_sal_timer_poll
;
692 port
->sc_timer
.data
= (unsigned long)port
;
694 if (IS_RUNNING_ON_SIMULATOR())
695 port
->sc_interrupt_timeout
= 6;
697 /* 960cps / 16 char FIFO = 60HZ
698 * HZ / (SN_SAL_FIFO_SPEED_CPS / SN_SAL_FIFO_DEPTH) */
699 port
->sc_interrupt_timeout
=
700 HZ
* SN_SAL_UART_FIFO_DEPTH
/ SN_SAL_UART_FIFO_SPEED_CPS
;
702 mod_timer(&port
->sc_timer
, jiffies
+ port
->sc_interrupt_timeout
);
704 port
->sc_is_asynch
= 1;
705 spin_unlock_irqrestore(&port
->sc_port
.lock
, flags
);
709 * sn_sal_switch_to_interrupts - Switch to interrupt driven mode
710 * @port: Our sn_cons_port (which contains the uart port)
712 * In sn_sal_module_init, after we're registered with serial core and
713 * the port is added, this function is called to switch us to interrupt
714 * mode. We were previously in asynch/polling mode (using init_timer).
716 * We attempt to switch to interrupt mode here by calling
717 * request_irq. If that works out, we enable receive interrupts.
719 static void __init
sn_sal_switch_to_interrupts(struct sn_cons_port
*port
)
724 DPRINTF("sn_console: switching to interrupt driven console\n");
726 if (request_irq(SGI_UART_VECTOR
, sn_sal_interrupt
,
728 "SAL console driver", port
) >= 0) {
729 spin_lock_irqsave(&port
->sc_port
.lock
, flags
);
730 port
->sc_port
.irq
= SGI_UART_VECTOR
;
731 port
->sc_ops
= &intr_ops
;
732 irq_set_handler(port
->sc_port
.irq
, handle_level_irq
);
734 /* turn on receive interrupts */
735 ia64_sn_console_intr_enable(SAL_CONSOLE_INTR_RECV
);
736 spin_unlock_irqrestore(&port
->sc_port
.lock
, flags
);
740 "sn_console: console proceeding in polled mode\n");
746 * Kernel console definitions
749 static void sn_sal_console_write(struct console
*, const char *, unsigned);
750 static int sn_sal_console_setup(struct console
*, char *);
751 static struct uart_driver sal_console_uart
;
752 extern struct tty_driver
*uart_console_device(struct console
*, int *);
754 static struct console sal_console
= {
756 .write
= sn_sal_console_write
,
757 .device
= uart_console_device
,
758 .setup
= sn_sal_console_setup
,
759 .index
= -1, /* unspecified */
760 .data
= &sal_console_uart
,
763 #define SAL_CONSOLE &sal_console
765 static struct uart_driver sal_console_uart
= {
766 .owner
= THIS_MODULE
,
767 .driver_name
= "sn_console",
768 .dev_name
= DEVICE_NAME
,
769 .major
= 0, /* major/minor set at registration time per USE_DYNAMIC_MINOR */
771 .nr
= 1, /* one port */
776 * sn_sal_module_init - When the kernel loads us, get us rolling w/ serial core
778 * Before this is called, we've been printing kernel messages in a special
779 * early mode not making use of the serial core infrastructure. When our
780 * driver is loaded for real, we register the driver and port with serial
781 * core and try to enable interrupt driven mode.
784 static int __init
sn_sal_module_init(void)
788 if (!ia64_platform_is("sn2"))
791 printk(KERN_INFO
"sn_console: Console driver init\n");
793 if (USE_DYNAMIC_MINOR
== 1) {
794 misc
.minor
= MISC_DYNAMIC_MINOR
;
795 misc
.name
= DEVICE_NAME_DYNAMIC
;
796 retval
= misc_register(&misc
);
798 printk(KERN_WARNING
"Failed to register console "
799 "device using misc_register.\n");
802 sal_console_uart
.major
= MISC_MAJOR
;
803 sal_console_uart
.minor
= misc
.minor
;
805 sal_console_uart
.major
= DEVICE_MAJOR
;
806 sal_console_uart
.minor
= DEVICE_MINOR
;
809 /* We register the driver and the port before switching to interrupts
810 * or async above so the proper uart structures are populated */
812 if (uart_register_driver(&sal_console_uart
) < 0) {
814 ("ERROR sn_sal_module_init failed uart_register_driver, line %d\n",
819 spin_lock_init(&sal_console_port
.sc_port
.lock
);
821 /* Setup the port struct with the minimum needed */
822 sal_console_port
.sc_port
.membase
= (char *)1; /* just needs to be non-zero */
823 sal_console_port
.sc_port
.type
= PORT_16550A
;
824 sal_console_port
.sc_port
.fifosize
= SN_SAL_MAX_CHARS
;
825 sal_console_port
.sc_port
.ops
= &sn_console_ops
;
826 sal_console_port
.sc_port
.line
= 0;
828 if (uart_add_one_port(&sal_console_uart
, &sal_console_port
.sc_port
) < 0) {
829 /* error - not sure what I'd do - so I'll do nothing */
830 printk(KERN_ERR
"%s: unable to add port\n", __func__
);
833 /* when this driver is compiled in, the console initialization
834 * will have already switched us into asynchronous operation
835 * before we get here through the module initcalls */
836 if (!sal_console_port
.sc_is_asynch
) {
837 sn_sal_switch_to_asynch(&sal_console_port
);
840 /* at this point (module_init) we can try to turn on interrupts */
841 if (!IS_RUNNING_ON_SIMULATOR()) {
842 sn_sal_switch_to_interrupts(&sal_console_port
);
844 sn_process_input
= 1;
849 * sn_sal_module_exit - When we're unloaded, remove the driver/port
852 static void __exit
sn_sal_module_exit(void)
854 del_timer_sync(&sal_console_port
.sc_timer
);
855 uart_remove_one_port(&sal_console_uart
, &sal_console_port
.sc_port
);
856 uart_unregister_driver(&sal_console_uart
);
857 misc_deregister(&misc
);
860 module_init(sn_sal_module_init
);
861 module_exit(sn_sal_module_exit
);
864 * puts_raw_fixed - sn_sal_console_write helper for adding \r's as required
865 * @puts_raw : puts function to do the writing
869 * We need a \r ahead of every \n for direct writes through
870 * ia64_sn_console_putb (what sal_puts_raw below actually does).
874 static void puts_raw_fixed(int (*puts_raw
) (const char *s
, int len
),
875 const char *s
, int count
)
879 /* Output '\r' before each '\n' */
880 while ((s1
= memchr(s
, '\n', count
)) != NULL
) {
890 * sn_sal_console_write - Print statements before serial core available
891 * @console: Console to operate on - we ignore since we have just one
895 * This is referenced in the console struct. It is used for early
896 * console printing before we register with serial core and for things
897 * such as kdb. The console_lock must be held when we get here.
899 * This function has some code for trying to print output even if the lock
900 * is held. We try to cover the case where a lock holder could have died.
901 * We don't use this special case code if we're not registered with serial
902 * core yet. After we're registered with serial core, the only time this
903 * function would be used is for high level kernel output like magic sys req,
907 sn_sal_console_write(struct console
*co
, const char *s
, unsigned count
)
909 unsigned long flags
= 0;
910 struct sn_cons_port
*port
= &sal_console_port
;
911 static int stole_lock
= 0;
913 BUG_ON(!port
->sc_is_asynch
);
915 /* We can't look at the xmit buffer if we're not registered with serial core
916 * yet. So only do the fancy recovery after registering
918 if (!port
->sc_port
.state
) {
919 /* Not yet registered with serial core - simple case */
920 puts_raw_fixed(port
->sc_ops
->sal_puts_raw
, s
, count
);
924 /* somebody really wants this output, might be an
925 * oops, kdb, panic, etc. make sure they get it. */
926 if (spin_is_locked(&port
->sc_port
.lock
)) {
927 int lhead
= port
->sc_port
.state
->xmit
.head
;
928 int ltail
= port
->sc_port
.state
->xmit
.tail
;
929 int counter
, got_lock
= 0;
932 * We attempt to determine if someone has died with the
933 * lock. We wait ~20 secs after the head and tail ptrs
934 * stop moving and assume the lock holder is not functional
935 * and plow ahead. If the lock is freed within the time out
936 * period we re-get the lock and go ahead normally. We also
937 * remember if we have plowed ahead so that we don't have
938 * to wait out the time out period again - the asumption
939 * is that we will time out again.
942 for (counter
= 0; counter
< 150; mdelay(125), counter
++) {
943 if (!spin_is_locked(&port
->sc_port
.lock
)
946 spin_lock_irqsave(&port
->sc_port
.lock
,
953 if ((lhead
!= port
->sc_port
.state
->xmit
.head
)
955 port
->sc_port
.state
->xmit
.tail
)) {
957 port
->sc_port
.state
->xmit
.head
;
959 port
->sc_port
.state
->xmit
.tail
;
964 /* flush anything in the serial core xmit buffer, raw */
965 sn_transmit_chars(port
, 1);
967 spin_unlock_irqrestore(&port
->sc_port
.lock
, flags
);
973 puts_raw_fixed(port
->sc_ops
->sal_puts_raw
, s
, count
);
976 spin_lock_irqsave(&port
->sc_port
.lock
, flags
);
977 sn_transmit_chars(port
, 1);
978 spin_unlock_irqrestore(&port
->sc_port
.lock
, flags
);
980 puts_raw_fixed(port
->sc_ops
->sal_puts_raw
, s
, count
);
986 * sn_sal_console_setup - Set up console for early printing
987 * @co: Console to work with
988 * @options: Options to set
990 * Altix console doesn't do anything with baud rates, etc, anyway.
992 * This isn't required since not providing the setup function in the
993 * console struct is ok. However, other patches like KDB plop something
994 * here so providing it is easier.
997 static int sn_sal_console_setup(struct console
*co
, char *options
)
1003 * sn_sal_console_write_early - simple early output routine
1004 * @co - console struct
1005 * @s - string to print
1008 * Simple function to provide early output, before even
1009 * sn_sal_serial_console_init is called. Referenced in the
1010 * console struct registerd in sn_serial_console_early_setup.
1014 sn_sal_console_write_early(struct console
*co
, const char *s
, unsigned count
)
1016 puts_raw_fixed(sal_console_port
.sc_ops
->sal_puts_raw
, s
, count
);
1019 /* Used for very early console printing - again, before
1020 * sn_sal_serial_console_init is run */
1021 static struct console sal_console_early __initdata
= {
1023 .write
= sn_sal_console_write_early
,
1024 .flags
= CON_PRINTBUFFER
,
1029 * sn_serial_console_early_setup - Sets up early console output support
1031 * Register a console early on... This is for output before even
1032 * sn_sal_serial_cosnole_init is called. This function is called from
1033 * setup.c. This allows us to do really early polled writes. When
1034 * sn_sal_serial_console_init is called, this console is unregistered
1035 * and a new one registered.
1037 int __init
sn_serial_console_early_setup(void)
1039 if (!ia64_platform_is("sn2"))
1042 sal_console_port
.sc_ops
= &poll_ops
;
1043 spin_lock_init(&sal_console_port
.sc_port
.lock
);
1044 early_sn_setup(); /* Find SAL entry points */
1045 register_console(&sal_console_early
);
1051 * sn_sal_serial_console_init - Early console output - set up for register
1053 * This function is called when regular console init happens. Because we
1054 * support even earlier console output with sn_serial_console_early_setup
1055 * (called from setup.c directly), this function unregisters the really
1058 * Note: Even if setup.c doesn't register sal_console_early, unregistering
1059 * it here doesn't hurt anything.
1062 static int __init
sn_sal_serial_console_init(void)
1064 if (ia64_platform_is("sn2")) {
1065 sn_sal_switch_to_asynch(&sal_console_port
);
1066 DPRINTF("sn_sal_serial_console_init : register console\n");
1067 register_console(&sal_console
);
1068 unregister_console(&sal_console_early
);
1073 console_initcall(sn_sal_serial_console_init
);