blob: 3a0d53d6368f2f177afc3fc7528ec27cdbd56027 [file] [log] [blame]
Milton Milleracad9552005-07-07 17:56:24 -07001/*
2 * vio driver interface to hvc_console.c
3 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004 * This code was moved here to allow the remaining code to be reused as a
Milton Milleracad9552005-07-07 17:56:24 -07005 * generic polling mode with semi-reliable transport driver core to the
6 * console and tty subsystems.
7 *
8 *
9 * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM
10 * Copyright (C) 2001 Paul Mackerras <paulus@au.ibm.com>, IBM
11 * Copyright (C) 2004 Benjamin Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
12 * Copyright (C) 2004 IBM Corporation
13 *
14 * Additional Author(s):
15 * Ryan S. Arnold <rsa@us.ibm.com>
16 *
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.
21 *
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.
26 *
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
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100030 *
31 * TODO:
32 *
33 * - handle error in sending hvsi protocol packets
34 * - retry nego on subsequent sends ?
Milton Milleracad9552005-07-07 17:56:24 -070035 */
36
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100037#undef DEBUG
38
Milton Milleracad9552005-07-07 17:56:24 -070039#include <linux/types.h>
40#include <linux/init.h>
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100041#include <linux/delay.h>
42#include <linux/slab.h>
43#include <linux/console.h>
Paul Gortmaker578b9ce2011-05-27 16:14:23 -040044#include <linux/module.h>
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020045
Milton Milleracad9552005-07-07 17:56:24 -070046#include <asm/hvconsole.h>
47#include <asm/vio.h>
48#include <asm/prom.h>
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100049#include <asm/hvsi.h>
50#include <asm/udbg.h>
Milton Milleracad9552005-07-07 17:56:24 -070051
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020052#include "hvc_console.h"
53
Joe Perches5a71c612010-09-13 09:47:42 +000054static const char hvc_driver_name[] = "hvc_console";
Milton Milleracad9552005-07-07 17:56:24 -070055
56static struct vio_device_id hvc_driver_table[] __devinitdata = {
57 {"serial", "hvterm1"},
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100058#ifndef HVC_OLD_HVSI
59 {"serial", "hvterm-protocol"},
60#endif
Stephen Rothwellfb120da2005-08-17 16:42:59 +100061 { "", "" }
Milton Milleracad9552005-07-07 17:56:24 -070062};
63MODULE_DEVICE_TABLE(vio, hvc_driver_table);
64
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100065typedef enum hv_protocol {
66 HV_PROTOCOL_RAW,
67 HV_PROTOCOL_HVSI
68} hv_protocol_t;
69
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100070struct hvterm_priv {
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +100071 u32 termno; /* HV term number */
72 hv_protocol_t proto; /* Raw data or HVSI packets */
73 struct hvsi_priv hvsi; /* HVSI specific data */
Anton Blanchard19df9ab2011-07-12 19:19:57 +000074 spinlock_t buf_lock;
75 char buf[SIZE_VIO_GET_CHARS];
76 int left;
77 int offset;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100078};
79static struct hvterm_priv *hvterm_privs[MAX_NR_HVC_CONSOLES];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100080/* For early boot console */
81static struct hvterm_priv hvterm_priv0;
82
83static int hvterm_raw_get_chars(uint32_t vtermno, char *buf, int count)
Milton Miller70b234a2005-07-07 17:56:26 -070084{
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100085 struct hvterm_priv *pv = hvterm_privs[vtermno];
Anton Blanchard19df9ab2011-07-12 19:19:57 +000086 unsigned long i;
87 unsigned long flags;
88 int got;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100089
90 if (WARN_ON(!pv))
91 return 0;
Milton Miller70b234a2005-07-07 17:56:26 -070092
Anton Blanchard19df9ab2011-07-12 19:19:57 +000093 spin_lock_irqsave(&pv->buf_lock, flags);
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020094
Anton Blanchard19df9ab2011-07-12 19:19:57 +000095 if (pv->left == 0) {
96 pv->offset = 0;
97 pv->left = hvc_get_chars(pv->termno, pv->buf, count);
Milton Miller70b234a2005-07-07 17:56:26 -070098
Anton Blanchard19df9ab2011-07-12 19:19:57 +000099 /*
100 * Work around a HV bug where it gives us a null
101 * after every \r. -- paulus
102 */
103 for (i = 1; i < pv->left; ++i) {
104 if (pv->buf[i] == 0 && pv->buf[i-1] == '\r') {
105 --pv->left;
106 if (i < pv->left) {
107 memmove(&pv->buf[i], &pv->buf[i+1],
108 pv->left - i);
109 }
110 }
Milton Miller70b234a2005-07-07 17:56:26 -0700111 }
112 }
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000113
114 got = min(count, pv->left);
115 memcpy(buf, &pv->buf[pv->offset], got);
116 pv->offset += got;
117 pv->left -= got;
118
119 spin_unlock_irqrestore(&pv->buf_lock, flags);
120
Milton Miller70b234a2005-07-07 17:56:26 -0700121 return got;
122}
123
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000124static int hvterm_raw_put_chars(uint32_t vtermno, const char *buf, int count)
125{
126 struct hvterm_priv *pv = hvterm_privs[vtermno];
127
128 if (WARN_ON(!pv))
129 return 0;
130
131 return hvc_put_chars(pv->termno, buf, count);
132}
133
134static const struct hv_ops hvterm_raw_ops = {
135 .get_chars = hvterm_raw_get_chars,
136 .put_chars = hvterm_raw_put_chars,
Christian Borntraeger611e0972008-06-20 15:24:08 +0200137 .notifier_add = notifier_add_irq,
138 .notifier_del = notifier_del_irq,
Hendrik Bruecknerfc362e22008-10-13 23:12:48 +0000139 .notifier_hangup = notifier_hangup_irq,
Milton Miller030ffad2005-07-07 17:56:25 -0700140};
141
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000142static int hvterm_hvsi_get_chars(uint32_t vtermno, char *buf, int count)
143{
144 struct hvterm_priv *pv = hvterm_privs[vtermno];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000145
146 if (WARN_ON(!pv))
147 return 0;
148
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000149 return hvsilib_get_chars(&pv->hvsi, buf, count);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000150}
151
152static int hvterm_hvsi_put_chars(uint32_t vtermno, const char *buf, int count)
153{
154 struct hvterm_priv *pv = hvterm_privs[vtermno];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000155
156 if (WARN_ON(!pv))
157 return 0;
158
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000159 return hvsilib_put_chars(&pv->hvsi, buf, count);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000160}
161
162static int hvterm_hvsi_open(struct hvc_struct *hp, int data)
163{
164 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
165 int rc;
166
167 pr_devel("HVSI@%x: open !\n", pv->termno);
168
169 rc = notifier_add_irq(hp, data);
170 if (rc)
171 return rc;
172
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000173 return hvsilib_open(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000174}
175
176static void hvterm_hvsi_close(struct hvc_struct *hp, int data)
177{
178 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
179
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000180 pr_devel("HVSI@%x: do close !\n", pv->termno);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000181
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000182 hvsilib_close(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000183
184 notifier_del_irq(hp, data);
185}
186
187void hvterm_hvsi_hangup(struct hvc_struct *hp, int data)
188{
189 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
190
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000191 pr_devel("HVSI@%x: do hangup !\n", pv->termno);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000192
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000193 hvsilib_close(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000194
195 notifier_hangup_irq(hp, data);
196}
197
198static int hvterm_hvsi_tiocmget(struct hvc_struct *hp)
199{
200 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
201
202 if (!pv)
203 return -EINVAL;
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000204 return pv->hvsi.mctrl;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000205}
206
207static int hvterm_hvsi_tiocmset(struct hvc_struct *hp, unsigned int set,
208 unsigned int clear)
209{
210 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
211
212 pr_devel("HVSI@%x: Set modem control, set=%x,clr=%x\n",
213 pv->termno, set, clear);
214
215 if (set & TIOCM_DTR)
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000216 hvsilib_write_mctrl(&pv->hvsi, 1);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000217 else if (clear & TIOCM_DTR)
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000218 hvsilib_write_mctrl(&pv->hvsi, 0);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000219
220 return 0;
221}
222
223static const struct hv_ops hvterm_hvsi_ops = {
224 .get_chars = hvterm_hvsi_get_chars,
225 .put_chars = hvterm_hvsi_put_chars,
226 .notifier_add = hvterm_hvsi_open,
227 .notifier_del = hvterm_hvsi_close,
228 .notifier_hangup = hvterm_hvsi_hangup,
229 .tiocmget = hvterm_hvsi_tiocmget,
230 .tiocmset = hvterm_hvsi_tiocmset,
231};
232
233static int __devinit hvc_vio_probe(struct vio_dev *vdev,
234 const struct vio_device_id *id)
235{
236 const struct hv_ops *ops;
Milton Milleracad9552005-07-07 17:56:24 -0700237 struct hvc_struct *hp;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000238 struct hvterm_priv *pv;
239 hv_protocol_t proto;
240 int i, termno = -1;
Milton Milleracad9552005-07-07 17:56:24 -0700241
242 /* probed with invalid parameters. */
243 if (!vdev || !id)
244 return -EPERM;
245
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000246 if (of_device_is_compatible(vdev->dev.of_node, "hvterm1")) {
247 proto = HV_PROTOCOL_RAW;
248 ops = &hvterm_raw_ops;
249 } else if (of_device_is_compatible(vdev->dev.of_node, "hvterm-protocol")) {
250 proto = HV_PROTOCOL_HVSI;
251 ops = &hvterm_hvsi_ops;
252 } else {
253 pr_err("hvc_vio: Unkown protocol for %s\n", vdev->dev.of_node->full_name);
254 return -ENXIO;
255 }
256
257 pr_devel("hvc_vio_probe() device %s, using %s protocol\n",
258 vdev->dev.of_node->full_name,
259 proto == HV_PROTOCOL_RAW ? "raw" : "hvsi");
260
261 /* Is it our boot one ? */
262 if (hvterm_privs[0] == &hvterm_priv0 &&
263 vdev->unit_address == hvterm_priv0.termno) {
264 pv = hvterm_privs[0];
265 termno = 0;
266 pr_devel("->boot console, using termno 0\n");
267 }
268 /* nope, allocate a new one */
269 else {
270 for (i = 0; i < MAX_NR_HVC_CONSOLES && termno < 0; i++)
271 if (!hvterm_privs[i])
272 termno = i;
273 pr_devel("->non-boot console, using termno %d\n", termno);
274 if (termno < 0)
275 return -ENODEV;
276 pv = kzalloc(sizeof(struct hvterm_priv), GFP_KERNEL);
277 if (!pv)
278 return -ENOMEM;
279 pv->termno = vdev->unit_address;
280 pv->proto = proto;
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000281 spin_lock_init(&pv->buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000282 hvterm_privs[termno] = pv;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000283 hvsilib_init(&pv->hvsi, hvc_get_chars, hvc_put_chars,
284 pv->termno, 0);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000285 }
286
287 hp = hvc_alloc(termno, vdev->irq, ops, MAX_VIO_PUT_CHARS);
Milton Milleracad9552005-07-07 17:56:24 -0700288 if (IS_ERR(hp))
289 return PTR_ERR(hp);
290 dev_set_drvdata(&vdev->dev, hp);
291
292 return 0;
293}
294
295static int __devexit hvc_vio_remove(struct vio_dev *vdev)
296{
297 struct hvc_struct *hp = dev_get_drvdata(&vdev->dev);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000298 int rc, termno;
Milton Milleracad9552005-07-07 17:56:24 -0700299
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000300 termno = hp->vtermno;
301 rc = hvc_remove(hp);
302 if (rc == 0) {
303 if (hvterm_privs[termno] != &hvterm_priv0)
304 kfree(hvterm_privs[termno]);
305 hvterm_privs[termno] = NULL;
306 }
307 return rc;
Milton Milleracad9552005-07-07 17:56:24 -0700308}
309
310static struct vio_driver hvc_vio_driver = {
Milton Milleracad9552005-07-07 17:56:24 -0700311 .id_table = hvc_driver_table,
312 .probe = hvc_vio_probe,
Mike Frysingere364ca92009-06-10 09:42:30 +0000313 .remove = __devexit_p(hvc_vio_remove),
Milton Milleracad9552005-07-07 17:56:24 -0700314 .driver = {
Stephen Rothwell6fdf5392005-10-24 14:53:21 +1000315 .name = hvc_driver_name,
Milton Milleracad9552005-07-07 17:56:24 -0700316 .owner = THIS_MODULE,
317 }
318};
319
Peter Huewe948c28f2009-08-20 11:14:06 +0000320static int __init hvc_vio_init(void)
Milton Milleracad9552005-07-07 17:56:24 -0700321{
322 int rc;
323
324 /* Register as a vio device to receive callbacks */
325 rc = vio_register_driver(&hvc_vio_driver);
326
327 return rc;
328}
329module_init(hvc_vio_init); /* after drivers/char/hvc_console.c */
330
Peter Huewe948c28f2009-08-20 11:14:06 +0000331static void __exit hvc_vio_exit(void)
Milton Milleracad9552005-07-07 17:56:24 -0700332{
333 vio_unregister_driver(&hvc_vio_driver);
334}
335module_exit(hvc_vio_exit);
336
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000337static void udbg_hvc_putc(char c)
Milton Milleracad9552005-07-07 17:56:24 -0700338{
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000339 int count = -1;
Milton Milleracad9552005-07-07 17:56:24 -0700340
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000341 if (c == '\n')
342 udbg_hvc_putc('\r');
Milton Milleracad9552005-07-07 17:56:24 -0700343
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000344 do {
345 switch(hvterm_priv0.proto) {
346 case HV_PROTOCOL_RAW:
347 count = hvterm_raw_put_chars(0, &c, 1);
348 break;
349 case HV_PROTOCOL_HVSI:
350 count = hvterm_hvsi_put_chars(0, &c, 1);
Milton Milleracad9552005-07-07 17:56:24 -0700351 break;
Nicolas Palixdc421492008-12-02 03:38:55 +0000352 }
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000353 } while(count == 0);
354}
Milton Milleracad9552005-07-07 17:56:24 -0700355
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000356static int udbg_hvc_getc_poll(void)
357{
358 int rc = 0;
359 char c;
Milton Milleracad9552005-07-07 17:56:24 -0700360
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000361 switch(hvterm_priv0.proto) {
362 case HV_PROTOCOL_RAW:
363 rc = hvterm_raw_get_chars(0, &c, 1);
364 break;
365 case HV_PROTOCOL_HVSI:
366 rc = hvterm_hvsi_get_chars(0, &c, 1);
367 break;
368 }
369 if (!rc)
370 return -1;
371 return c;
372}
373
374static int udbg_hvc_getc(void)
375{
376 int ch;
377 for (;;) {
378 ch = udbg_hvc_getc_poll();
379 if (ch == -1) {
380 /* This shouldn't be needed...but... */
381 volatile unsigned long delay;
382 for (delay=0; delay < 2000000; delay++)
383 ;
384 } else {
385 return ch;
Milton Milleracad9552005-07-07 17:56:24 -0700386 }
387 }
Milton Milleracad9552005-07-07 17:56:24 -0700388}
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000389
390void __init hvc_vio_init_early(void)
391{
392 struct device_node *stdout_node;
393 const u32 *termno;
394 const char *name;
395 const struct hv_ops *ops;
396
397 /* find the boot console from /chosen/stdout */
398 if (!of_chosen)
399 return;
400 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
401 if (name == NULL)
402 return;
403 stdout_node = of_find_node_by_path(name);
404 if (!stdout_node)
405 return;
406 name = of_get_property(stdout_node, "name", NULL);
407 if (!name) {
408 printk(KERN_WARNING "stdout node missing 'name' property!\n");
409 goto out;
410 }
411
412 /* Check if it's a virtual terminal */
413 if (strncmp(name, "vty", 3) != 0)
414 goto out;
415 termno = of_get_property(stdout_node, "reg", NULL);
416 if (termno == NULL)
417 goto out;
418 hvterm_priv0.termno = *termno;
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000419 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000420 hvterm_privs[0] = &hvterm_priv0;
421
422 /* Check the protocol */
423 if (of_device_is_compatible(stdout_node, "hvterm1")) {
424 hvterm_priv0.proto = HV_PROTOCOL_RAW;
425 ops = &hvterm_raw_ops;
426 }
427 else if (of_device_is_compatible(stdout_node, "hvterm-protocol")) {
428 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
429 ops = &hvterm_hvsi_ops;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000430 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
431 hvterm_priv0.termno, 1);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000432 /* HVSI, perform the handshake now */
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000433 hvsilib_establish(&hvterm_priv0.hvsi);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000434 } else
435 goto out;
436 udbg_putc = udbg_hvc_putc;
437 udbg_getc = udbg_hvc_getc;
438 udbg_getc_poll = udbg_hvc_getc_poll;
439#ifdef HVC_OLD_HVSI
440 /* When using the old HVSI driver don't register the HVC
441 * backend for HVSI, only do udbg
442 */
443 if (hvterm_priv0.proto == HV_PROTOCOL_HVSI)
444 goto out;
445#endif
446 add_preferred_console("hvc", 0, NULL);
447 hvc_instantiate(0, 0, ops);
448out:
449 of_node_put(stdout_node);
450}
451
452/* call this from early_init() for a working debug console on
453 * vterm capable LPAR machines
454 */
455#ifdef CONFIG_PPC_EARLY_DEBUG_LPAR
456void __init udbg_init_debug_lpar(void)
457{
458 hvterm_privs[0] = &hvterm_priv0;
459 hvterm_priv0.termno = 0;
460 hvterm_priv0.proto = HV_PROTOCOL_RAW;
Benjamin Herrenschmidtf7723f02011-07-20 18:01:48 +1000461 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000462 udbg_putc = udbg_hvc_putc;
463 udbg_getc = udbg_hvc_getc;
464 udbg_getc_poll = udbg_hvc_getc_poll;
465}
466#endif /* CONFIG_PPC_EARLY_DEBUG_LPAR */
467
468#ifdef CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI
469void __init udbg_init_debug_lpar_hvsi(void)
470{
471 hvterm_privs[0] = &hvterm_priv0;
472 hvterm_priv0.termno = CONFIG_PPC_EARLY_DEBUG_HVSI_VTERMNO;
473 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
Benjamin Herrenschmidtf7723f02011-07-20 18:01:48 +1000474 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000475 udbg_putc = udbg_hvc_putc;
476 udbg_getc = udbg_hvc_getc;
477 udbg_getc_poll = udbg_hvc_getc_poll;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000478 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
479 hvterm_priv0.termno, 1);
480 hvsilib_establish(&hvterm_priv0.hvsi);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000481}
482#endif /* CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI */