2 * vio driver interface to hvc_console.c
4 * This code was moved here to allow the remaining code to be reused as a
5 * generic polling mode with semi-reliable transport driver core to the
6 * console and tty subsystems.
12 * Copyright (C) 2004 IBM Corporation
14 * Additional Author(s):
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 * - handle error in sending hvsi protocol packets
34 * - retry nego on subsequent sends ?
39 #include <linux/types.h>
40 #include <linux/init.h>
41 #include <linux/delay.h>
42 #include <linux/slab.h>
43 #include <linux/console.h>
45 #include <asm/hvconsole.h>
50 #include <asm/machdep.h>
52 #include "hvc_console.h"
54 static const char hvc_driver_name[] = "hvc_console";
56 static struct vio_device_id hvc_driver_table[] = {
57 {"serial", "hvterm1"},
59 {"serial", "hvterm-protocol"},
64 typedef enum hv_protocol {
70 u32 termno; /* HV term number */
71 hv_protocol_t proto; /* Raw data or HVSI packets */
72 struct hvsi_priv hvsi; /* HVSI specific data */
74 char buf[SIZE_VIO_GET_CHARS];
78 static struct hvterm_priv *hvterm_privs[MAX_NR_HVC_CONSOLES];
79 /* For early boot console */
80 static struct hvterm_priv hvterm_priv0;
82 static int hvterm_raw_get_chars(uint32_t vtermno, char *buf, int count)
84 struct hvterm_priv *pv = hvterm_privs[vtermno];
92 spin_lock_irqsave(&pv->buf_lock, flags);
96 pv->left = hvc_get_chars(pv->termno, pv->buf, count);
99 * Work around a HV bug where it gives us a null
100 * after every \r. -- paulus
102 for (i = 1; i < pv->left; ++i) {
103 if (pv->buf[i] == 0 && pv->buf[i-1] == '\r') {
106 memmove(&pv->buf[i], &pv->buf[i+1],
113 got = min(count, pv->left);
114 memcpy(buf, &pv->buf[pv->offset], got);
118 spin_unlock_irqrestore(&pv->buf_lock, flags);
123 static int hvterm_raw_put_chars(uint32_t vtermno, const char *buf, int count)
125 struct hvterm_priv *pv = hvterm_privs[vtermno];
130 return hvc_put_chars(pv->termno, buf, count);
133 static const struct hv_ops hvterm_raw_ops = {
134 .get_chars = hvterm_raw_get_chars,
135 .put_chars = hvterm_raw_put_chars,
136 .notifier_add = notifier_add_irq,
137 .notifier_del = notifier_del_irq,
138 .notifier_hangup = notifier_hangup_irq,
141 static int hvterm_hvsi_get_chars(uint32_t vtermno, char *buf, int count)
143 struct hvterm_priv *pv = hvterm_privs[vtermno];
148 return hvsilib_get_chars(&pv->hvsi, buf, count);
151 static int hvterm_hvsi_put_chars(uint32_t vtermno, const char *buf, int count)
153 struct hvterm_priv *pv = hvterm_privs[vtermno];
158 return hvsilib_put_chars(&pv->hvsi, buf, count);
161 static int hvterm_hvsi_open(struct hvc_struct *hp, int data)
163 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
166 pr_devel("HVSI@%x: open !\n", pv->termno);
168 rc = notifier_add_irq(hp, data);
172 return hvsilib_open(&pv->hvsi, hp);
175 static void hvterm_hvsi_close(struct hvc_struct *hp, int data)
177 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
179 pr_devel("HVSI@%x: do close !\n", pv->termno);
181 hvsilib_close(&pv->hvsi, hp);
183 notifier_del_irq(hp, data);
186 void hvterm_hvsi_hangup(struct hvc_struct *hp, int data)
188 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
190 pr_devel("HVSI@%x: do hangup !\n", pv->termno);
192 hvsilib_close(&pv->hvsi, hp);
194 notifier_hangup_irq(hp, data);
197 static int hvterm_hvsi_tiocmget(struct hvc_struct *hp)
199 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
203 return pv->hvsi.mctrl;
206 static int hvterm_hvsi_tiocmset(struct hvc_struct *hp, unsigned int set,
209 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
211 pr_devel("HVSI@%x: Set modem control, set=%x,clr=%x\n",
212 pv->termno, set, clear);
215 hvsilib_write_mctrl(&pv->hvsi, 1);
216 else if (clear & TIOCM_DTR)
217 hvsilib_write_mctrl(&pv->hvsi, 0);
222 static const struct hv_ops hvterm_hvsi_ops = {
223 .get_chars = hvterm_hvsi_get_chars,
224 .put_chars = hvterm_hvsi_put_chars,
225 .notifier_add = hvterm_hvsi_open,
226 .notifier_del = hvterm_hvsi_close,
227 .notifier_hangup = hvterm_hvsi_hangup,
228 .tiocmget = hvterm_hvsi_tiocmget,
229 .tiocmset = hvterm_hvsi_tiocmset,
232 static void udbg_hvc_putc(char c)
236 if (!hvterm_privs[0])
243 switch(hvterm_privs[0]->proto) {
244 case HV_PROTOCOL_RAW:
245 count = hvterm_raw_put_chars(0, &c, 1);
247 case HV_PROTOCOL_HVSI:
248 count = hvterm_hvsi_put_chars(0, &c, 1);
254 static int udbg_hvc_getc_poll(void)
259 if (!hvterm_privs[0])
262 switch(hvterm_privs[0]->proto) {
263 case HV_PROTOCOL_RAW:
264 rc = hvterm_raw_get_chars(0, &c, 1);
266 case HV_PROTOCOL_HVSI:
267 rc = hvterm_hvsi_get_chars(0, &c, 1);
275 static int udbg_hvc_getc(void)
279 if (!hvterm_privs[0])
283 ch = udbg_hvc_getc_poll();
285 /* This shouldn't be needed...but... */
286 volatile unsigned long delay;
287 for (delay=0; delay < 2000000; delay++)
295 static int hvc_vio_probe(struct vio_dev *vdev,
296 const struct vio_device_id *id)
298 const struct hv_ops *ops;
299 struct hvc_struct *hp;
300 struct hvterm_priv *pv;
304 /* probed with invalid parameters. */
308 if (of_device_is_compatible(vdev->dev.of_node, "hvterm1")) {
309 proto = HV_PROTOCOL_RAW;
310 ops = &hvterm_raw_ops;
311 } else if (of_device_is_compatible(vdev->dev.of_node, "hvterm-protocol")) {
312 proto = HV_PROTOCOL_HVSI;
313 ops = &hvterm_hvsi_ops;
315 pr_err("hvc_vio: Unknown protocol for %s\n", vdev->dev.of_node->full_name);
319 pr_devel("hvc_vio_probe() device %s, using %s protocol\n",
320 vdev->dev.of_node->full_name,
321 proto == HV_PROTOCOL_RAW ? "raw" : "hvsi");
323 /* Is it our boot one ? */
324 if (hvterm_privs[0] == &hvterm_priv0 &&
325 vdev->unit_address == hvterm_priv0.termno) {
326 pv = hvterm_privs[0];
328 pr_devel("->boot console, using termno 0\n");
330 /* nope, allocate a new one */
332 for (i = 0; i < MAX_NR_HVC_CONSOLES && termno < 0; i++)
333 if (!hvterm_privs[i])
335 pr_devel("->non-boot console, using termno %d\n", termno);
338 pv = kzalloc(sizeof(struct hvterm_priv), GFP_KERNEL);
341 pv->termno = vdev->unit_address;
343 spin_lock_init(&pv->buf_lock);
344 hvterm_privs[termno] = pv;
345 hvsilib_init(&pv->hvsi, hvc_get_chars, hvc_put_chars,
349 hp = hvc_alloc(termno, vdev->irq, ops, MAX_VIO_PUT_CHARS);
352 dev_set_drvdata(&vdev->dev, hp);
354 /* register udbg if it's not there already for console 0 */
355 if (hp->index == 0 && !udbg_putc) {
356 udbg_putc = udbg_hvc_putc;
357 udbg_getc = udbg_hvc_getc;
358 udbg_getc_poll = udbg_hvc_getc_poll;
364 static struct vio_driver hvc_vio_driver = {
365 .id_table = hvc_driver_table,
366 .probe = hvc_vio_probe,
367 .name = hvc_driver_name,
369 .suppress_bind_attrs = true,
373 static int __init hvc_vio_init(void)
377 /* Register as a vio device to receive callbacks */
378 rc = vio_register_driver(&hvc_vio_driver);
382 device_initcall(hvc_vio_init); /* after drivers/tty/hvc/hvc_console.c */
384 void __init hvc_vio_init_early(void)
386 const __be32 *termno;
388 const struct hv_ops *ops;
390 /* find the boot console from /chosen/stdout */
393 name = of_get_property(of_stdout, "name", NULL);
395 printk(KERN_WARNING "stdout node missing 'name' property!\n");
399 /* Check if it's a virtual terminal */
400 if (strncmp(name, "vty", 3) != 0)
402 termno = of_get_property(of_stdout, "reg", NULL);
405 hvterm_priv0.termno = of_read_number(termno, 1);
406 spin_lock_init(&hvterm_priv0.buf_lock);
407 hvterm_privs[0] = &hvterm_priv0;
409 /* Check the protocol */
410 if (of_device_is_compatible(of_stdout, "hvterm1")) {
411 hvterm_priv0.proto = HV_PROTOCOL_RAW;
412 ops = &hvterm_raw_ops;
414 else if (of_device_is_compatible(of_stdout, "hvterm-protocol")) {
415 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
416 ops = &hvterm_hvsi_ops;
417 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
418 hvterm_priv0.termno, 1);
419 /* HVSI, perform the handshake now */
420 hvsilib_establish(&hvterm_priv0.hvsi);
423 udbg_putc = udbg_hvc_putc;
424 udbg_getc = udbg_hvc_getc;
425 udbg_getc_poll = udbg_hvc_getc_poll;
427 /* When using the old HVSI driver don't register the HVC
428 * backend for HVSI, only do udbg
430 if (hvterm_priv0.proto == HV_PROTOCOL_HVSI)
433 /* Check whether the user has requested a different console. */
434 if (!strstr(boot_command_line, "console="))
435 add_preferred_console("hvc", 0, NULL);
436 hvc_instantiate(0, 0, ops);
439 /* call this from early_init() for a working debug console on
440 * vterm capable LPAR machines
442 #ifdef CONFIG_PPC_EARLY_DEBUG_LPAR
443 void __init udbg_init_debug_lpar(void)
445 hvterm_privs[0] = &hvterm_priv0;
446 hvterm_priv0.termno = 0;
447 hvterm_priv0.proto = HV_PROTOCOL_RAW;
448 spin_lock_init(&hvterm_priv0.buf_lock);
449 udbg_putc = udbg_hvc_putc;
450 udbg_getc = udbg_hvc_getc;
451 udbg_getc_poll = udbg_hvc_getc_poll;
453 #endif /* CONFIG_PPC_EARLY_DEBUG_LPAR */
455 #ifdef CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI
456 void __init udbg_init_debug_lpar_hvsi(void)
458 hvterm_privs[0] = &hvterm_priv0;
459 hvterm_priv0.termno = CONFIG_PPC_EARLY_DEBUG_HVSI_VTERMNO;
460 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
461 spin_lock_init(&hvterm_priv0.buf_lock);
462 udbg_putc = udbg_hvc_putc;
463 udbg_getc = udbg_hvc_getc;
464 udbg_getc_poll = udbg_hvc_getc_poll;
465 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
466 hvterm_priv0.termno, 1);
467 hvsilib_establish(&hvterm_priv0.hvsi);
469 #endif /* CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI */