1 /* sunhv.c: Serial driver for SUN4V hypervisor console.
3 * Copyright (C) 2006 David S. Miller (davem@davemloft.net)
6 #include <linux/module.h>
7 #include <linux/kernel.h>
8 #include <linux/errno.h>
10 #include <linux/tty_flip.h>
11 #include <linux/major.h>
12 #include <linux/circ_buf.h>
13 #include <linux/serial.h>
14 #include <linux/sysrq.h>
15 #include <linux/console.h>
16 #include <linux/spinlock.h>
17 #include <linux/slab.h>
18 #include <linux/delay.h>
19 #include <linux/init.h>
21 #include <asm/hypervisor.h>
22 #include <asm/spitfire.h>
24 #include <asm/oplib.h>
27 #if defined(CONFIG_MAGIC_SYSRQ)
31 #include <linux/serial_core.h>
35 #define CON_BREAK ((long)-1)
36 #define CON_HUP ((long)-2)
38 static inline long hypervisor_con_getchar(long *status
)
40 register unsigned long func
asm("%o5");
41 register unsigned long arg0
asm("%o0");
42 register unsigned long arg1
asm("%o1");
44 func
= HV_FAST_CONS_GETCHAR
;
47 __asm__
__volatile__("ta %6"
48 : "=&r" (func
), "=&r" (arg0
), "=&r" (arg1
)
49 : "0" (func
), "1" (arg0
), "2" (arg1
),
57 static inline long hypervisor_con_putchar(long ch
)
59 register unsigned long func
asm("%o5");
60 register unsigned long arg0
asm("%o0");
62 func
= HV_FAST_CONS_PUTCHAR
;
64 __asm__
__volatile__("ta %4"
65 : "=&r" (func
), "=&r" (arg0
)
66 : "0" (func
), "1" (arg0
), "i" (HV_FAST_TRAP
));
71 #define IGNORE_BREAK 0x1
72 #define IGNORE_ALL 0x2
74 static int hung_up
= 0;
76 static struct tty_struct
*receive_chars(struct uart_port
*port
, struct pt_regs
*regs
)
78 struct tty_struct
*tty
= NULL
;
79 int saw_console_brk
= 0;
82 if (port
->info
!= NULL
) /* Unopened serial console */
83 tty
= port
->info
->tty
;
87 long c
= hypervisor_con_getchar(&status
);
90 if (status
== HV_EWOULDBLOCK
)
94 if (uart_handle_break(port
))
102 uart_handle_dcd_change(port
, 0);
103 } else if (hung_up
) {
105 uart_handle_dcd_change(port
, 1);
109 uart_handle_sysrq_char(port
, c
, regs
);
115 if (c
== CON_BREAK
) {
117 if (uart_handle_break(port
))
122 if (uart_handle_sysrq_char(port
, c
, regs
))
125 if ((port
->ignore_status_mask
& IGNORE_ALL
) ||
126 ((port
->ignore_status_mask
& IGNORE_BREAK
) &&
130 tty_insert_flip_char(tty
, c
, flag
);
139 static void transmit_chars(struct uart_port
*port
)
141 struct circ_buf
*xmit
;
146 xmit
= &port
->info
->xmit
;
147 if (uart_circ_empty(xmit
) || uart_tx_stopped(port
))
150 while (!uart_circ_empty(xmit
)) {
151 long status
= hypervisor_con_putchar(xmit
->buf
[xmit
->tail
]);
153 if (status
!= HV_EOK
)
156 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
160 if (uart_circ_chars_pending(xmit
) < WAKEUP_CHARS
)
161 uart_write_wakeup(port
);
164 static irqreturn_t
sunhv_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
166 struct uart_port
*port
= dev_id
;
167 struct tty_struct
*tty
;
170 spin_lock_irqsave(&port
->lock
, flags
);
171 tty
= receive_chars(port
, regs
);
172 transmit_chars(port
);
173 spin_unlock_irqrestore(&port
->lock
, flags
);
176 tty_flip_buffer_push(tty
);
181 /* port->lock is not held. */
182 static unsigned int sunhv_tx_empty(struct uart_port
*port
)
184 /* Transmitter is always empty for us. If the circ buffer
185 * is non-empty or there is an x_char pending, our caller
186 * will do the right thing and ignore what we return here.
191 /* port->lock held by caller. */
192 static void sunhv_set_mctrl(struct uart_port
*port
, unsigned int mctrl
)
197 /* port->lock is held by caller and interrupts are disabled. */
198 static unsigned int sunhv_get_mctrl(struct uart_port
*port
)
200 return TIOCM_DSR
| TIOCM_CAR
| TIOCM_CTS
;
203 /* port->lock held by caller. */
204 static void sunhv_stop_tx(struct uart_port
*port
)
209 /* port->lock held by caller. */
210 static void sunhv_start_tx(struct uart_port
*port
)
212 struct circ_buf
*xmit
= &port
->info
->xmit
;
214 while (!uart_circ_empty(xmit
)) {
215 long status
= hypervisor_con_putchar(xmit
->buf
[xmit
->tail
]);
217 if (status
!= HV_EOK
)
220 xmit
->tail
= (xmit
->tail
+ 1) & (UART_XMIT_SIZE
- 1);
225 /* port->lock is not held. */
226 static void sunhv_send_xchar(struct uart_port
*port
, char ch
)
231 spin_lock_irqsave(&port
->lock
, flags
);
233 while (limit
-- > 0) {
234 long status
= hypervisor_con_putchar(ch
);
235 if (status
== HV_EOK
)
239 spin_unlock_irqrestore(&port
->lock
, flags
);
242 /* port->lock held by caller. */
243 static void sunhv_stop_rx(struct uart_port
*port
)
247 /* port->lock held by caller. */
248 static void sunhv_enable_ms(struct uart_port
*port
)
252 /* port->lock is not held. */
253 static void sunhv_break_ctl(struct uart_port
*port
, int break_state
)
259 spin_lock_irqsave(&port
->lock
, flags
);
261 while (limit
-- > 0) {
262 long status
= hypervisor_con_putchar(CON_BREAK
);
263 if (status
== HV_EOK
)
268 spin_unlock_irqrestore(&port
->lock
, flags
);
272 /* port->lock is not held. */
273 static int sunhv_startup(struct uart_port
*port
)
278 /* port->lock is not held. */
279 static void sunhv_shutdown(struct uart_port
*port
)
283 /* port->lock is not held. */
284 static void sunhv_set_termios(struct uart_port
*port
, struct termios
*termios
,
287 unsigned int baud
= uart_get_baud_rate(port
, termios
, old
, 0, 4000000);
288 unsigned int quot
= uart_get_divisor(port
, baud
);
289 unsigned int iflag
, cflag
;
292 spin_lock_irqsave(&port
->lock
, flags
);
294 iflag
= termios
->c_iflag
;
295 cflag
= termios
->c_cflag
;
297 port
->ignore_status_mask
= 0;
299 port
->ignore_status_mask
|= IGNORE_BREAK
;
300 if ((cflag
& CREAD
) == 0)
301 port
->ignore_status_mask
|= IGNORE_ALL
;
304 uart_update_timeout(port
, cflag
,
305 (port
->uartclk
/ (16 * quot
)));
307 spin_unlock_irqrestore(&port
->lock
, flags
);
310 static const char *sunhv_type(struct uart_port
*port
)
312 return "SUN4V HCONS";
315 static void sunhv_release_port(struct uart_port
*port
)
319 static int sunhv_request_port(struct uart_port
*port
)
324 static void sunhv_config_port(struct uart_port
*port
, int flags
)
328 static int sunhv_verify_port(struct uart_port
*port
, struct serial_struct
*ser
)
333 static struct uart_ops sunhv_pops
= {
334 .tx_empty
= sunhv_tx_empty
,
335 .set_mctrl
= sunhv_set_mctrl
,
336 .get_mctrl
= sunhv_get_mctrl
,
337 .stop_tx
= sunhv_stop_tx
,
338 .start_tx
= sunhv_start_tx
,
339 .send_xchar
= sunhv_send_xchar
,
340 .stop_rx
= sunhv_stop_rx
,
341 .enable_ms
= sunhv_enable_ms
,
342 .break_ctl
= sunhv_break_ctl
,
343 .startup
= sunhv_startup
,
344 .shutdown
= sunhv_shutdown
,
345 .set_termios
= sunhv_set_termios
,
347 .release_port
= sunhv_release_port
,
348 .request_port
= sunhv_request_port
,
349 .config_port
= sunhv_config_port
,
350 .verify_port
= sunhv_verify_port
,
353 static struct uart_driver sunhv_reg
= {
354 .owner
= THIS_MODULE
,
355 .driver_name
= "serial",
360 static struct uart_port
*sunhv_port
;
362 static inline void sunhv_console_putchar(struct uart_port
*port
, char c
)
367 spin_lock_irqsave(&port
->lock
, flags
);
369 while (limit
-- > 0) {
370 long status
= hypervisor_con_putchar(c
);
371 if (status
== HV_EOK
)
376 spin_unlock_irqrestore(&port
->lock
, flags
);
379 static void sunhv_console_write(struct console
*con
, const char *s
, unsigned n
)
381 struct uart_port
*port
= sunhv_port
;
384 for (i
= 0; i
< n
; i
++) {
386 sunhv_console_putchar(port
, '\r');
387 sunhv_console_putchar(port
, *s
++);
391 static struct console sunhv_console
= {
393 .write
= sunhv_console_write
,
394 .device
= uart_console_device
,
395 .flags
= CON_PRINTBUFFER
,
400 static inline struct console
*SUNHV_CONSOLE(void)
402 if (con_is_present())
405 sunhv_console
.index
= 0;
407 return &sunhv_console
;
410 static int __init
hv_console_compatible(char *buf
, int len
)
415 if (!strcmp(buf
, "qcn"))
418 this_len
= strlen(buf
) + 1;
427 static unsigned int __init
get_interrupt(void)
429 struct device_node
*dev_node
;
431 dev_node
= sun4v_vdev_root
->child
;
432 while (dev_node
!= NULL
) {
433 struct property
*prop
;
435 if (strcmp(dev_node
->name
, "console"))
438 prop
= of_find_property(dev_node
, "compatible", NULL
);
442 if (hv_console_compatible(prop
->value
, prop
->length
))
446 dev_node
= dev_node
->sibling
;
451 /* Ok, the this is the OBP node for the sun4v hypervisor
452 * console device. Decode the interrupt.
454 return sun4v_vdev_device_interrupt(dev_node
);
457 static int __init
sunhv_init(void)
459 struct uart_port
*port
;
462 if (tlb_type
!= hypervisor
)
465 port
= kmalloc(sizeof(struct uart_port
), GFP_KERNEL
);
469 memset(port
, 0, sizeof(struct uart_port
));
472 port
->ops
= &sunhv_pops
;
473 port
->type
= PORT_SUNHV
;
474 port
->uartclk
= ( 29491200 / 16 ); /* arbitrary */
476 /* Set this just to make uart_configure_port() happy. */
477 port
->membase
= (unsigned char __iomem
*) __pa(port
);
479 port
->irq
= get_interrupt();
485 sunhv_reg
.minor
= sunserial_current_minor
;
488 ret
= uart_register_driver(&sunhv_reg
);
490 printk(KERN_ERR
"SUNHV: uart_register_driver() failed %d\n",
497 sunhv_reg
.tty_driver
->name_base
= sunhv_reg
.minor
- 64;
498 sunserial_current_minor
+= 1;
500 sunhv_reg
.cons
= SUNHV_CONSOLE();
504 ret
= uart_add_one_port(&sunhv_reg
, port
);
506 printk(KERN_ERR
"SUNHV: uart_add_one_port() failed %d\n", ret
);
507 sunserial_current_minor
-= 1;
508 uart_unregister_driver(&sunhv_reg
);
514 if (request_irq(port
->irq
, sunhv_interrupt
,
515 SA_SHIRQ
, "serial(sunhv)", port
)) {
516 printk(KERN_ERR
"sunhv: Cannot register IRQ\n");
517 uart_remove_one_port(&sunhv_reg
, port
);
518 sunserial_current_minor
-= 1;
519 uart_unregister_driver(&sunhv_reg
);
528 static void __exit
sunhv_exit(void)
530 struct uart_port
*port
= sunhv_port
;
534 free_irq(port
->irq
, port
);
536 uart_remove_one_port(&sunhv_reg
, port
);
537 sunserial_current_minor
-= 1;
539 uart_unregister_driver(&sunhv_reg
);
545 module_init(sunhv_init
);
546 module_exit(sunhv_exit
);
548 MODULE_AUTHOR("David S. Miller");
549 MODULE_DESCRIPTION("SUN4V Hypervisor console driver")
550 MODULE_LICENSE("GPL");