1 // SPDX-License-Identifier: GPL-2.0+
3 * vio driver interface to hvc_console.c
5 * This code was moved here to allow the remaining code to be reused as a
6 * generic polling mode with semi-reliable transport driver core to the
7 * console and tty subsystems.
13 * Copyright (C) 2004 IBM Corporation
15 * Additional Author(s):
20 * - handle error in sending hvsi protocol packets
21 * - retry nego on subsequent sends ?
26 #include <linux/types.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/console.h>
32 #include <asm/hvconsole.h>
37 #include <asm/machdep.h>
39 #include "hvc_console.h"
41 static const char hvc_driver_name[] = "hvc_console";
43 static const struct vio_device_id hvc_driver_table[] = {
44 {"serial", "hvterm1"},
46 {"serial", "hvterm-protocol"},
51 typedef enum hv_protocol {
57 u32 termno; /* HV term number */
58 hv_protocol_t proto; /* Raw data or HVSI packets */
59 struct hvsi_priv hvsi; /* HVSI specific data */
61 char buf[SIZE_VIO_GET_CHARS];
65 static struct hvterm_priv *hvterm_privs[MAX_NR_HVC_CONSOLES];
66 /* For early boot console */
67 static struct hvterm_priv hvterm_priv0;
69 static int hvterm_raw_get_chars(uint32_t vtermno, char *buf, int count)
71 struct hvterm_priv *pv = hvterm_privs[vtermno];
79 spin_lock_irqsave(&pv->buf_lock, flags);
83 pv->left = hvc_get_chars(pv->termno, pv->buf, count);
86 * Work around a HV bug where it gives us a null
87 * after every \r. -- paulus
89 for (i = 1; i < pv->left; ++i) {
90 if (pv->buf[i] == 0 && pv->buf[i-1] == '\r') {
93 memmove(&pv->buf[i], &pv->buf[i+1],
100 got = min(count, pv->left);
101 memcpy(buf, &pv->buf[pv->offset], got);
105 spin_unlock_irqrestore(&pv->buf_lock, flags);
110 static int hvterm_raw_put_chars(uint32_t vtermno, const char *buf, int count)
112 struct hvterm_priv *pv = hvterm_privs[vtermno];
117 return hvc_put_chars(pv->termno, buf, count);
120 static const struct hv_ops hvterm_raw_ops = {
121 .get_chars = hvterm_raw_get_chars,
122 .put_chars = hvterm_raw_put_chars,
123 .notifier_add = notifier_add_irq,
124 .notifier_del = notifier_del_irq,
125 .notifier_hangup = notifier_hangup_irq,
128 static int hvterm_hvsi_get_chars(uint32_t vtermno, char *buf, int count)
130 struct hvterm_priv *pv = hvterm_privs[vtermno];
135 return hvsilib_get_chars(&pv->hvsi, buf, count);
138 static int hvterm_hvsi_put_chars(uint32_t vtermno, const char *buf, int count)
140 struct hvterm_priv *pv = hvterm_privs[vtermno];
145 return hvsilib_put_chars(&pv->hvsi, buf, count);
148 static int hvterm_hvsi_open(struct hvc_struct *hp, int data)
150 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
153 pr_devel("HVSI@%x: open !\n", pv->termno);
155 rc = notifier_add_irq(hp, data);
159 return hvsilib_open(&pv->hvsi, hp);
162 static void hvterm_hvsi_close(struct hvc_struct *hp, int data)
164 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
166 pr_devel("HVSI@%x: do close !\n", pv->termno);
168 hvsilib_close(&pv->hvsi, hp);
170 notifier_del_irq(hp, data);
173 void hvterm_hvsi_hangup(struct hvc_struct *hp, int data)
175 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
177 pr_devel("HVSI@%x: do hangup !\n", pv->termno);
179 hvsilib_close(&pv->hvsi, hp);
181 notifier_hangup_irq(hp, data);
184 static int hvterm_hvsi_tiocmget(struct hvc_struct *hp)
186 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
190 return pv->hvsi.mctrl;
193 static int hvterm_hvsi_tiocmset(struct hvc_struct *hp, unsigned int set,
196 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
198 pr_devel("HVSI@%x: Set modem control, set=%x,clr=%x\n",
199 pv->termno, set, clear);
202 hvsilib_write_mctrl(&pv->hvsi, 1);
203 else if (clear & TIOCM_DTR)
204 hvsilib_write_mctrl(&pv->hvsi, 0);
209 static const struct hv_ops hvterm_hvsi_ops = {
210 .get_chars = hvterm_hvsi_get_chars,
211 .put_chars = hvterm_hvsi_put_chars,
212 .notifier_add = hvterm_hvsi_open,
213 .notifier_del = hvterm_hvsi_close,
214 .notifier_hangup = hvterm_hvsi_hangup,
215 .tiocmget = hvterm_hvsi_tiocmget,
216 .tiocmset = hvterm_hvsi_tiocmset,
219 static void udbg_hvc_putc(char c)
223 if (!hvterm_privs[0])
230 switch(hvterm_privs[0]->proto) {
231 case HV_PROTOCOL_RAW:
232 count = hvterm_raw_put_chars(0, &c, 1);
234 case HV_PROTOCOL_HVSI:
235 count = hvterm_hvsi_put_chars(0, &c, 1);
241 static int udbg_hvc_getc_poll(void)
246 if (!hvterm_privs[0])
249 switch(hvterm_privs[0]->proto) {
250 case HV_PROTOCOL_RAW:
251 rc = hvterm_raw_get_chars(0, &c, 1);
253 case HV_PROTOCOL_HVSI:
254 rc = hvterm_hvsi_get_chars(0, &c, 1);
262 static int udbg_hvc_getc(void)
266 if (!hvterm_privs[0])
270 ch = udbg_hvc_getc_poll();
272 /* This shouldn't be needed...but... */
273 volatile unsigned long delay;
274 for (delay=0; delay < 2000000; delay++)
282 static int hvc_vio_probe(struct vio_dev *vdev,
283 const struct vio_device_id *id)
285 const struct hv_ops *ops;
286 struct hvc_struct *hp;
287 struct hvterm_priv *pv;
291 /* probed with invalid parameters. */
295 if (of_device_is_compatible(vdev->dev.of_node, "hvterm1")) {
296 proto = HV_PROTOCOL_RAW;
297 ops = &hvterm_raw_ops;
298 } else if (of_device_is_compatible(vdev->dev.of_node, "hvterm-protocol")) {
299 proto = HV_PROTOCOL_HVSI;
300 ops = &hvterm_hvsi_ops;
302 pr_err("hvc_vio: Unknown protocol for %pOF\n", vdev->dev.of_node);
306 pr_devel("hvc_vio_probe() device %pOF, using %s protocol\n",
308 proto == HV_PROTOCOL_RAW ? "raw" : "hvsi");
310 /* Is it our boot one ? */
311 if (hvterm_privs[0] == &hvterm_priv0 &&
312 vdev->unit_address == hvterm_priv0.termno) {
313 pv = hvterm_privs[0];
315 pr_devel("->boot console, using termno 0\n");
317 /* nope, allocate a new one */
319 for (i = 0; i < MAX_NR_HVC_CONSOLES && termno < 0; i++)
320 if (!hvterm_privs[i])
322 pr_devel("->non-boot console, using termno %d\n", termno);
325 pv = kzalloc(sizeof(struct hvterm_priv), GFP_KERNEL);
328 pv->termno = vdev->unit_address;
330 spin_lock_init(&pv->buf_lock);
331 hvterm_privs[termno] = pv;
332 hvsilib_init(&pv->hvsi, hvc_get_chars, hvc_put_chars,
336 hp = hvc_alloc(termno, vdev->irq, ops, MAX_VIO_PUT_CHARS);
339 dev_set_drvdata(&vdev->dev, hp);
341 /* register udbg if it's not there already for console 0 */
342 if (hp->index == 0 && !udbg_putc) {
343 udbg_putc = udbg_hvc_putc;
344 udbg_getc = udbg_hvc_getc;
345 udbg_getc_poll = udbg_hvc_getc_poll;
351 static struct vio_driver hvc_vio_driver = {
352 .id_table = hvc_driver_table,
353 .probe = hvc_vio_probe,
354 .name = hvc_driver_name,
356 .suppress_bind_attrs = true,
360 static int __init hvc_vio_init(void)
364 /* Register as a vio device to receive callbacks */
365 rc = vio_register_driver(&hvc_vio_driver);
369 device_initcall(hvc_vio_init); /* after drivers/tty/hvc/hvc_console.c */
371 void __init hvc_vio_init_early(void)
373 const __be32 *termno;
374 const struct hv_ops *ops;
376 /* find the boot console from /chosen/stdout */
377 /* Check if it's a virtual terminal */
378 if (!of_node_name_prefix(of_stdout, "vty"))
380 termno = of_get_property(of_stdout, "reg", NULL);
383 hvterm_priv0.termno = of_read_number(termno, 1);
384 spin_lock_init(&hvterm_priv0.buf_lock);
385 hvterm_privs[0] = &hvterm_priv0;
387 /* Check the protocol */
388 if (of_device_is_compatible(of_stdout, "hvterm1")) {
389 hvterm_priv0.proto = HV_PROTOCOL_RAW;
390 ops = &hvterm_raw_ops;
392 else if (of_device_is_compatible(of_stdout, "hvterm-protocol")) {
393 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
394 ops = &hvterm_hvsi_ops;
395 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
396 hvterm_priv0.termno, 1);
397 /* HVSI, perform the handshake now */
398 hvsilib_establish(&hvterm_priv0.hvsi);
401 udbg_putc = udbg_hvc_putc;
402 udbg_getc = udbg_hvc_getc;
403 udbg_getc_poll = udbg_hvc_getc_poll;
405 /* When using the old HVSI driver don't register the HVC
406 * backend for HVSI, only do udbg
408 if (hvterm_priv0.proto == HV_PROTOCOL_HVSI)
411 /* Check whether the user has requested a different console. */
412 if (!strstr(boot_command_line, "console="))
413 add_preferred_console("hvc", 0, NULL);
414 hvc_instantiate(0, 0, ops);
417 /* call this from early_init() for a working debug console on
418 * vterm capable LPAR machines
420 #ifdef CONFIG_PPC_EARLY_DEBUG_LPAR
421 void __init udbg_init_debug_lpar(void)
424 * If we're running as a hypervisor then we definitely can't call the
425 * hypervisor to print debug output (we *are* the hypervisor), so don't
426 * register if we detect that MSR_HV=1.
428 if (mfmsr() & MSR_HV)
431 hvterm_privs[0] = &hvterm_priv0;
432 hvterm_priv0.termno = 0;
433 hvterm_priv0.proto = HV_PROTOCOL_RAW;
434 spin_lock_init(&hvterm_priv0.buf_lock);
435 udbg_putc = udbg_hvc_putc;
436 udbg_getc = udbg_hvc_getc;
437 udbg_getc_poll = udbg_hvc_getc_poll;
439 #endif /* CONFIG_PPC_EARLY_DEBUG_LPAR */
441 #ifdef CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI
442 void __init udbg_init_debug_lpar_hvsi(void)
444 /* See comment above in udbg_init_debug_lpar() */
445 if (mfmsr() & MSR_HV)
448 hvterm_privs[0] = &hvterm_priv0;
449 hvterm_priv0.termno = CONFIG_PPC_EARLY_DEBUG_HVSI_VTERMNO;
450 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
451 spin_lock_init(&hvterm_priv0.buf_lock);
452 udbg_putc = udbg_hvc_putc;
453 udbg_getc = udbg_hvc_getc;
454 udbg_getc_poll = udbg_hvc_getc_poll;
455 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
456 hvterm_priv0.termno, 1);
457 hvsilib_establish(&hvterm_priv0.hvsi);
459 #endif /* CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI */