blob: b594abfbf21e76d58acc1df534a30f603670fb5a [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>
Ben Hutchings1926d0a2013-09-01 17:24:16 +010051#include <asm/machdep.h>
Milton Milleracad9552005-07-07 17:56:24 -070052
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020053#include "hvc_console.h"
54
Joe Perches5a71c612010-09-13 09:47:42 +000055static const char hvc_driver_name[] = "hvc_console";
Milton Milleracad9552005-07-07 17:56:24 -070056
Bill Pembertonde88b342012-11-19 13:24:32 -050057static struct vio_device_id hvc_driver_table[] = {
Milton Milleracad9552005-07-07 17:56:24 -070058 {"serial", "hvterm1"},
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100059#ifndef HVC_OLD_HVSI
60 {"serial", "hvterm-protocol"},
61#endif
Stephen Rothwellfb120da2005-08-17 16:42:59 +100062 { "", "" }
Milton Milleracad9552005-07-07 17:56:24 -070063};
64MODULE_DEVICE_TABLE(vio, hvc_driver_table);
65
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100066typedef enum hv_protocol {
67 HV_PROTOCOL_RAW,
68 HV_PROTOCOL_HVSI
69} hv_protocol_t;
70
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100071struct hvterm_priv {
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +100072 u32 termno; /* HV term number */
73 hv_protocol_t proto; /* Raw data or HVSI packets */
74 struct hvsi_priv hvsi; /* HVSI specific data */
Anton Blanchard19df9ab2011-07-12 19:19:57 +000075 spinlock_t buf_lock;
76 char buf[SIZE_VIO_GET_CHARS];
77 int left;
78 int offset;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100079};
80static struct hvterm_priv *hvterm_privs[MAX_NR_HVC_CONSOLES];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100081/* For early boot console */
82static struct hvterm_priv hvterm_priv0;
83
84static int hvterm_raw_get_chars(uint32_t vtermno, char *buf, int count)
Milton Miller70b234a2005-07-07 17:56:26 -070085{
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100086 struct hvterm_priv *pv = hvterm_privs[vtermno];
Anton Blanchard19df9ab2011-07-12 19:19:57 +000087 unsigned long i;
88 unsigned long flags;
89 int got;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100090
91 if (WARN_ON(!pv))
92 return 0;
Milton Miller70b234a2005-07-07 17:56:26 -070093
Anton Blanchard19df9ab2011-07-12 19:19:57 +000094 spin_lock_irqsave(&pv->buf_lock, flags);
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020095
Anton Blanchard19df9ab2011-07-12 19:19:57 +000096 if (pv->left == 0) {
97 pv->offset = 0;
98 pv->left = hvc_get_chars(pv->termno, pv->buf, count);
Milton Miller70b234a2005-07-07 17:56:26 -070099
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000100 /*
101 * Work around a HV bug where it gives us a null
102 * after every \r. -- paulus
103 */
104 for (i = 1; i < pv->left; ++i) {
105 if (pv->buf[i] == 0 && pv->buf[i-1] == '\r') {
106 --pv->left;
107 if (i < pv->left) {
108 memmove(&pv->buf[i], &pv->buf[i+1],
109 pv->left - i);
110 }
111 }
Milton Miller70b234a2005-07-07 17:56:26 -0700112 }
113 }
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000114
115 got = min(count, pv->left);
116 memcpy(buf, &pv->buf[pv->offset], got);
117 pv->offset += got;
118 pv->left -= got;
119
120 spin_unlock_irqrestore(&pv->buf_lock, flags);
121
Milton Miller70b234a2005-07-07 17:56:26 -0700122 return got;
123}
124
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000125static int hvterm_raw_put_chars(uint32_t vtermno, const char *buf, int count)
126{
127 struct hvterm_priv *pv = hvterm_privs[vtermno];
128
129 if (WARN_ON(!pv))
130 return 0;
131
132 return hvc_put_chars(pv->termno, buf, count);
133}
134
135static const struct hv_ops hvterm_raw_ops = {
136 .get_chars = hvterm_raw_get_chars,
137 .put_chars = hvterm_raw_put_chars,
Christian Borntraeger611e0972008-06-20 15:24:08 +0200138 .notifier_add = notifier_add_irq,
139 .notifier_del = notifier_del_irq,
Hendrik Bruecknerfc362e22008-10-13 23:12:48 +0000140 .notifier_hangup = notifier_hangup_irq,
Milton Miller030ffad2005-07-07 17:56:25 -0700141};
142
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000143static int hvterm_hvsi_get_chars(uint32_t vtermno, char *buf, int count)
144{
145 struct hvterm_priv *pv = hvterm_privs[vtermno];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000146
147 if (WARN_ON(!pv))
148 return 0;
149
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000150 return hvsilib_get_chars(&pv->hvsi, buf, count);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000151}
152
153static int hvterm_hvsi_put_chars(uint32_t vtermno, const char *buf, int count)
154{
155 struct hvterm_priv *pv = hvterm_privs[vtermno];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000156
157 if (WARN_ON(!pv))
158 return 0;
159
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000160 return hvsilib_put_chars(&pv->hvsi, buf, count);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000161}
162
163static int hvterm_hvsi_open(struct hvc_struct *hp, int data)
164{
165 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
166 int rc;
167
168 pr_devel("HVSI@%x: open !\n", pv->termno);
169
170 rc = notifier_add_irq(hp, data);
171 if (rc)
172 return rc;
173
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000174 return hvsilib_open(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000175}
176
177static void hvterm_hvsi_close(struct hvc_struct *hp, int data)
178{
179 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
180
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000181 pr_devel("HVSI@%x: do close !\n", pv->termno);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000182
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000183 hvsilib_close(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000184
185 notifier_del_irq(hp, data);
186}
187
188void hvterm_hvsi_hangup(struct hvc_struct *hp, int data)
189{
190 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
191
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000192 pr_devel("HVSI@%x: do hangup !\n", pv->termno);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000193
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000194 hvsilib_close(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000195
196 notifier_hangup_irq(hp, data);
197}
198
199static int hvterm_hvsi_tiocmget(struct hvc_struct *hp)
200{
201 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
202
203 if (!pv)
204 return -EINVAL;
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000205 return pv->hvsi.mctrl;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000206}
207
208static int hvterm_hvsi_tiocmset(struct hvc_struct *hp, unsigned int set,
209 unsigned int clear)
210{
211 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
212
213 pr_devel("HVSI@%x: Set modem control, set=%x,clr=%x\n",
214 pv->termno, set, clear);
215
216 if (set & TIOCM_DTR)
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000217 hvsilib_write_mctrl(&pv->hvsi, 1);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000218 else if (clear & TIOCM_DTR)
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000219 hvsilib_write_mctrl(&pv->hvsi, 0);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000220
221 return 0;
222}
223
224static const struct hv_ops hvterm_hvsi_ops = {
225 .get_chars = hvterm_hvsi_get_chars,
226 .put_chars = hvterm_hvsi_put_chars,
227 .notifier_add = hvterm_hvsi_open,
228 .notifier_del = hvterm_hvsi_close,
229 .notifier_hangup = hvterm_hvsi_hangup,
230 .tiocmget = hvterm_hvsi_tiocmget,
231 .tiocmset = hvterm_hvsi_tiocmset,
232};
233
Benjamin Herrenschmidtd1cfc0c2012-07-23 21:47:38 +0000234static void udbg_hvc_putc(char c)
235{
236 int count = -1;
237
238 if (!hvterm_privs[0])
239 return;
240
241 if (c == '\n')
242 udbg_hvc_putc('\r');
243
244 do {
245 switch(hvterm_privs[0]->proto) {
246 case HV_PROTOCOL_RAW:
247 count = hvterm_raw_put_chars(0, &c, 1);
248 break;
249 case HV_PROTOCOL_HVSI:
250 count = hvterm_hvsi_put_chars(0, &c, 1);
251 break;
252 }
253 } while(count == 0);
254}
255
256static int udbg_hvc_getc_poll(void)
257{
258 int rc = 0;
259 char c;
260
261 if (!hvterm_privs[0])
262 return -1;
263
264 switch(hvterm_privs[0]->proto) {
265 case HV_PROTOCOL_RAW:
266 rc = hvterm_raw_get_chars(0, &c, 1);
267 break;
268 case HV_PROTOCOL_HVSI:
269 rc = hvterm_hvsi_get_chars(0, &c, 1);
270 break;
271 }
272 if (!rc)
273 return -1;
274 return c;
275}
276
277static int udbg_hvc_getc(void)
278{
279 int ch;
280
281 if (!hvterm_privs[0])
282 return -1;
283
284 for (;;) {
285 ch = udbg_hvc_getc_poll();
286 if (ch == -1) {
287 /* This shouldn't be needed...but... */
288 volatile unsigned long delay;
289 for (delay=0; delay < 2000000; delay++)
290 ;
291 } else {
292 return ch;
293 }
294 }
295}
296
Bill Pemberton9671f092012-11-19 13:21:50 -0500297static int hvc_vio_probe(struct vio_dev *vdev,
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000298 const struct vio_device_id *id)
299{
300 const struct hv_ops *ops;
Milton Milleracad9552005-07-07 17:56:24 -0700301 struct hvc_struct *hp;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000302 struct hvterm_priv *pv;
303 hv_protocol_t proto;
304 int i, termno = -1;
Milton Milleracad9552005-07-07 17:56:24 -0700305
306 /* probed with invalid parameters. */
307 if (!vdev || !id)
308 return -EPERM;
309
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000310 if (of_device_is_compatible(vdev->dev.of_node, "hvterm1")) {
311 proto = HV_PROTOCOL_RAW;
312 ops = &hvterm_raw_ops;
313 } else if (of_device_is_compatible(vdev->dev.of_node, "hvterm-protocol")) {
314 proto = HV_PROTOCOL_HVSI;
315 ops = &hvterm_hvsi_ops;
316 } else {
Masanari Iida46e99c42012-10-24 23:29:41 +0900317 pr_err("hvc_vio: Unknown protocol for %s\n", vdev->dev.of_node->full_name);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000318 return -ENXIO;
319 }
320
321 pr_devel("hvc_vio_probe() device %s, using %s protocol\n",
322 vdev->dev.of_node->full_name,
323 proto == HV_PROTOCOL_RAW ? "raw" : "hvsi");
324
325 /* Is it our boot one ? */
326 if (hvterm_privs[0] == &hvterm_priv0 &&
327 vdev->unit_address == hvterm_priv0.termno) {
328 pv = hvterm_privs[0];
329 termno = 0;
330 pr_devel("->boot console, using termno 0\n");
331 }
332 /* nope, allocate a new one */
333 else {
334 for (i = 0; i < MAX_NR_HVC_CONSOLES && termno < 0; i++)
335 if (!hvterm_privs[i])
336 termno = i;
337 pr_devel("->non-boot console, using termno %d\n", termno);
338 if (termno < 0)
339 return -ENODEV;
340 pv = kzalloc(sizeof(struct hvterm_priv), GFP_KERNEL);
341 if (!pv)
342 return -ENOMEM;
343 pv->termno = vdev->unit_address;
344 pv->proto = proto;
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000345 spin_lock_init(&pv->buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000346 hvterm_privs[termno] = pv;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000347 hvsilib_init(&pv->hvsi, hvc_get_chars, hvc_put_chars,
348 pv->termno, 0);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000349 }
350
351 hp = hvc_alloc(termno, vdev->irq, ops, MAX_VIO_PUT_CHARS);
Milton Milleracad9552005-07-07 17:56:24 -0700352 if (IS_ERR(hp))
353 return PTR_ERR(hp);
354 dev_set_drvdata(&vdev->dev, hp);
355
Benjamin Herrenschmidtd1cfc0c2012-07-23 21:47:38 +0000356 /* register udbg if it's not there already for console 0 */
357 if (hp->index == 0 && !udbg_putc) {
358 udbg_putc = udbg_hvc_putc;
359 udbg_getc = udbg_hvc_getc;
360 udbg_getc_poll = udbg_hvc_getc_poll;
361 }
362
Milton Milleracad9552005-07-07 17:56:24 -0700363 return 0;
364}
365
Bill Pembertonae8d8a12012-11-19 13:26:18 -0500366static int hvc_vio_remove(struct vio_dev *vdev)
Milton Milleracad9552005-07-07 17:56:24 -0700367{
368 struct hvc_struct *hp = dev_get_drvdata(&vdev->dev);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000369 int rc, termno;
Milton Milleracad9552005-07-07 17:56:24 -0700370
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000371 termno = hp->vtermno;
372 rc = hvc_remove(hp);
373 if (rc == 0) {
374 if (hvterm_privs[termno] != &hvterm_priv0)
375 kfree(hvterm_privs[termno]);
376 hvterm_privs[termno] = NULL;
377 }
378 return rc;
Milton Milleracad9552005-07-07 17:56:24 -0700379}
380
381static struct vio_driver hvc_vio_driver = {
Milton Milleracad9552005-07-07 17:56:24 -0700382 .id_table = hvc_driver_table,
383 .probe = hvc_vio_probe,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +0000384 .remove = hvc_vio_remove,
385 .name = hvc_driver_name,
Milton Milleracad9552005-07-07 17:56:24 -0700386};
387
Peter Huewe948c28f2009-08-20 11:14:06 +0000388static int __init hvc_vio_init(void)
Milton Milleracad9552005-07-07 17:56:24 -0700389{
390 int rc;
391
392 /* Register as a vio device to receive callbacks */
393 rc = vio_register_driver(&hvc_vio_driver);
394
395 return rc;
396}
397module_init(hvc_vio_init); /* after drivers/char/hvc_console.c */
398
Peter Huewe948c28f2009-08-20 11:14:06 +0000399static void __exit hvc_vio_exit(void)
Milton Milleracad9552005-07-07 17:56:24 -0700400{
401 vio_unregister_driver(&hvc_vio_driver);
402}
403module_exit(hvc_vio_exit);
404
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000405void __init hvc_vio_init_early(void)
406{
407 struct device_node *stdout_node;
Anton Blanchard1502b482013-08-07 02:01:39 +1000408 const __be32 *termno;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000409 const char *name;
410 const struct hv_ops *ops;
411
412 /* find the boot console from /chosen/stdout */
413 if (!of_chosen)
414 return;
415 name = of_get_property(of_chosen, "linux,stdout-path", NULL);
416 if (name == NULL)
417 return;
418 stdout_node = of_find_node_by_path(name);
419 if (!stdout_node)
420 return;
421 name = of_get_property(stdout_node, "name", NULL);
422 if (!name) {
423 printk(KERN_WARNING "stdout node missing 'name' property!\n");
424 goto out;
425 }
426
427 /* Check if it's a virtual terminal */
428 if (strncmp(name, "vty", 3) != 0)
429 goto out;
430 termno = of_get_property(stdout_node, "reg", NULL);
431 if (termno == NULL)
432 goto out;
Anton Blanchard1502b482013-08-07 02:01:39 +1000433 hvterm_priv0.termno = of_read_number(termno, 1);
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000434 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000435 hvterm_privs[0] = &hvterm_priv0;
436
437 /* Check the protocol */
438 if (of_device_is_compatible(stdout_node, "hvterm1")) {
439 hvterm_priv0.proto = HV_PROTOCOL_RAW;
440 ops = &hvterm_raw_ops;
441 }
442 else if (of_device_is_compatible(stdout_node, "hvterm-protocol")) {
443 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
444 ops = &hvterm_hvsi_ops;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000445 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
446 hvterm_priv0.termno, 1);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000447 /* HVSI, perform the handshake now */
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000448 hvsilib_establish(&hvterm_priv0.hvsi);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000449 } else
450 goto out;
451 udbg_putc = udbg_hvc_putc;
452 udbg_getc = udbg_hvc_getc;
453 udbg_getc_poll = udbg_hvc_getc_poll;
454#ifdef HVC_OLD_HVSI
455 /* When using the old HVSI driver don't register the HVC
456 * backend for HVSI, only do udbg
457 */
458 if (hvterm_priv0.proto == HV_PROTOCOL_HVSI)
459 goto out;
460#endif
Ben Hutchings1926d0a2013-09-01 17:24:16 +0100461 /* Check whether the user has requested a different console. */
462 if (!strstr(cmd_line, "console="))
463 add_preferred_console("hvc", 0, NULL);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000464 hvc_instantiate(0, 0, ops);
465out:
466 of_node_put(stdout_node);
467}
468
469/* call this from early_init() for a working debug console on
470 * vterm capable LPAR machines
471 */
472#ifdef CONFIG_PPC_EARLY_DEBUG_LPAR
473void __init udbg_init_debug_lpar(void)
474{
475 hvterm_privs[0] = &hvterm_priv0;
476 hvterm_priv0.termno = 0;
477 hvterm_priv0.proto = HV_PROTOCOL_RAW;
Benjamin Herrenschmidtf7723f02011-07-20 18:01:48 +1000478 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000479 udbg_putc = udbg_hvc_putc;
480 udbg_getc = udbg_hvc_getc;
481 udbg_getc_poll = udbg_hvc_getc_poll;
482}
483#endif /* CONFIG_PPC_EARLY_DEBUG_LPAR */
484
485#ifdef CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI
486void __init udbg_init_debug_lpar_hvsi(void)
487{
488 hvterm_privs[0] = &hvterm_priv0;
489 hvterm_priv0.termno = CONFIG_PPC_EARLY_DEBUG_HVSI_VTERMNO;
490 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
Benjamin Herrenschmidtf7723f02011-07-20 18:01:48 +1000491 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000492 udbg_putc = udbg_hvc_putc;
493 udbg_getc = udbg_hvc_getc;
494 udbg_getc_poll = udbg_hvc_getc_poll;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000495 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
496 hvterm_priv0.termno, 1);
497 hvsilib_establish(&hvterm_priv0.hvsi);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000498}
499#endif /* CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI */