blob: 8bab8b00d47d658190dad693fbf4cb798e7de7c1 [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>
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020044
Milton Milleracad9552005-07-07 17:56:24 -070045#include <asm/hvconsole.h>
46#include <asm/vio.h>
47#include <asm/prom.h>
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100048#include <asm/hvsi.h>
49#include <asm/udbg.h>
Ben Hutchings1926d0a2013-09-01 17:24:16 +010050#include <asm/machdep.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
Bill Pembertonde88b342012-11-19 13:24:32 -050056static struct vio_device_id hvc_driver_table[] = {
Milton Milleracad9552005-07-07 17:56:24 -070057 {"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};
Milton Milleracad9552005-07-07 17:56:24 -070063
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100064typedef enum hv_protocol {
65 HV_PROTOCOL_RAW,
66 HV_PROTOCOL_HVSI
67} hv_protocol_t;
68
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100069struct hvterm_priv {
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +100070 u32 termno; /* HV term number */
71 hv_protocol_t proto; /* Raw data or HVSI packets */
72 struct hvsi_priv hvsi; /* HVSI specific data */
Anton Blanchard19df9ab2011-07-12 19:19:57 +000073 spinlock_t buf_lock;
74 char buf[SIZE_VIO_GET_CHARS];
75 int left;
76 int offset;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100077};
78static struct hvterm_priv *hvterm_privs[MAX_NR_HVC_CONSOLES];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100079/* For early boot console */
80static struct hvterm_priv hvterm_priv0;
81
82static int hvterm_raw_get_chars(uint32_t vtermno, char *buf, int count)
Milton Miller70b234a2005-07-07 17:56:26 -070083{
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100084 struct hvterm_priv *pv = hvterm_privs[vtermno];
Anton Blanchard19df9ab2011-07-12 19:19:57 +000085 unsigned long i;
86 unsigned long flags;
87 int got;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +100088
89 if (WARN_ON(!pv))
90 return 0;
Milton Miller70b234a2005-07-07 17:56:26 -070091
Anton Blanchard19df9ab2011-07-12 19:19:57 +000092 spin_lock_irqsave(&pv->buf_lock, flags);
Ryan S. Arnold45d607e2006-03-27 21:25:16 +020093
Anton Blanchard19df9ab2011-07-12 19:19:57 +000094 if (pv->left == 0) {
95 pv->offset = 0;
96 pv->left = hvc_get_chars(pv->termno, pv->buf, count);
Milton Miller70b234a2005-07-07 17:56:26 -070097
Anton Blanchard19df9ab2011-07-12 19:19:57 +000098 /*
99 * Work around a HV bug where it gives us a null
100 * after every \r. -- paulus
101 */
102 for (i = 1; i < pv->left; ++i) {
103 if (pv->buf[i] == 0 && pv->buf[i-1] == '\r') {
104 --pv->left;
105 if (i < pv->left) {
106 memmove(&pv->buf[i], &pv->buf[i+1],
107 pv->left - i);
108 }
109 }
Milton Miller70b234a2005-07-07 17:56:26 -0700110 }
111 }
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000112
113 got = min(count, pv->left);
114 memcpy(buf, &pv->buf[pv->offset], got);
115 pv->offset += got;
116 pv->left -= got;
117
118 spin_unlock_irqrestore(&pv->buf_lock, flags);
119
Milton Miller70b234a2005-07-07 17:56:26 -0700120 return got;
121}
122
Daniel Axtens70b0b332019-06-03 16:56:57 +1000123/**
124 * hvterm_raw_put_chars: send characters to firmware for given vterm adapter
125 * @vtermno: The virtual terminal number.
126 * @buf: The characters to send. Because of the underlying hypercall in
127 * hvc_put_chars(), this buffer must be at least 16 bytes long, even if
128 * you are sending fewer chars.
129 * @count: number of chars to send.
130 */
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000131static int hvterm_raw_put_chars(uint32_t vtermno, const char *buf, int count)
132{
133 struct hvterm_priv *pv = hvterm_privs[vtermno];
134
135 if (WARN_ON(!pv))
136 return 0;
137
138 return hvc_put_chars(pv->termno, buf, count);
139}
140
141static const struct hv_ops hvterm_raw_ops = {
142 .get_chars = hvterm_raw_get_chars,
143 .put_chars = hvterm_raw_put_chars,
Christian Borntraeger611e0972008-06-20 15:24:08 +0200144 .notifier_add = notifier_add_irq,
145 .notifier_del = notifier_del_irq,
Hendrik Bruecknerfc362e22008-10-13 23:12:48 +0000146 .notifier_hangup = notifier_hangup_irq,
Milton Miller030ffad2005-07-07 17:56:25 -0700147};
148
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000149static int hvterm_hvsi_get_chars(uint32_t vtermno, char *buf, int count)
150{
151 struct hvterm_priv *pv = hvterm_privs[vtermno];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000152
153 if (WARN_ON(!pv))
154 return 0;
155
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000156 return hvsilib_get_chars(&pv->hvsi, buf, count);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000157}
158
159static int hvterm_hvsi_put_chars(uint32_t vtermno, const char *buf, int count)
160{
161 struct hvterm_priv *pv = hvterm_privs[vtermno];
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000162
163 if (WARN_ON(!pv))
164 return 0;
165
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000166 return hvsilib_put_chars(&pv->hvsi, buf, count);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000167}
168
169static int hvterm_hvsi_open(struct hvc_struct *hp, int data)
170{
171 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
172 int rc;
173
174 pr_devel("HVSI@%x: open !\n", pv->termno);
175
176 rc = notifier_add_irq(hp, data);
177 if (rc)
178 return rc;
179
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000180 return hvsilib_open(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000181}
182
183static void hvterm_hvsi_close(struct hvc_struct *hp, int data)
184{
185 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
186
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000187 pr_devel("HVSI@%x: do close !\n", pv->termno);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000188
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000189 hvsilib_close(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000190
191 notifier_del_irq(hp, data);
192}
193
194void hvterm_hvsi_hangup(struct hvc_struct *hp, int data)
195{
196 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
197
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000198 pr_devel("HVSI@%x: do hangup !\n", pv->termno);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000199
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000200 hvsilib_close(&pv->hvsi, hp);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000201
202 notifier_hangup_irq(hp, data);
203}
204
205static int hvterm_hvsi_tiocmget(struct hvc_struct *hp)
206{
207 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
208
209 if (!pv)
210 return -EINVAL;
Benjamin Herrenschmidt17bdc6c2011-04-29 16:44:24 +1000211 return pv->hvsi.mctrl;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000212}
213
214static int hvterm_hvsi_tiocmset(struct hvc_struct *hp, unsigned int set,
215 unsigned int clear)
216{
217 struct hvterm_priv *pv = hvterm_privs[hp->vtermno];
218
219 pr_devel("HVSI@%x: Set modem control, set=%x,clr=%x\n",
220 pv->termno, set, clear);
221
222 if (set & TIOCM_DTR)
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000223 hvsilib_write_mctrl(&pv->hvsi, 1);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000224 else if (clear & TIOCM_DTR)
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000225 hvsilib_write_mctrl(&pv->hvsi, 0);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000226
227 return 0;
228}
229
230static const struct hv_ops hvterm_hvsi_ops = {
231 .get_chars = hvterm_hvsi_get_chars,
232 .put_chars = hvterm_hvsi_put_chars,
233 .notifier_add = hvterm_hvsi_open,
234 .notifier_del = hvterm_hvsi_close,
235 .notifier_hangup = hvterm_hvsi_hangup,
236 .tiocmget = hvterm_hvsi_tiocmget,
237 .tiocmset = hvterm_hvsi_tiocmset,
238};
239
Benjamin Herrenschmidtd1cfc0c2012-07-23 21:47:38 +0000240static void udbg_hvc_putc(char c)
241{
242 int count = -1;
Daniel Axtens70b0b332019-06-03 16:56:57 +1000243 unsigned char bounce_buffer[16];
Benjamin Herrenschmidtd1cfc0c2012-07-23 21:47:38 +0000244
245 if (!hvterm_privs[0])
246 return;
247
248 if (c == '\n')
249 udbg_hvc_putc('\r');
250
251 do {
252 switch(hvterm_privs[0]->proto) {
253 case HV_PROTOCOL_RAW:
Daniel Axtens70b0b332019-06-03 16:56:57 +1000254 /*
255 * hvterm_raw_put_chars requires at least a 16-byte
256 * buffer, so go via the bounce buffer
257 */
258 bounce_buffer[0] = c;
259 count = hvterm_raw_put_chars(0, bounce_buffer, 1);
Benjamin Herrenschmidtd1cfc0c2012-07-23 21:47:38 +0000260 break;
261 case HV_PROTOCOL_HVSI:
262 count = hvterm_hvsi_put_chars(0, &c, 1);
263 break;
264 }
265 } while(count == 0);
266}
267
268static int udbg_hvc_getc_poll(void)
269{
270 int rc = 0;
271 char c;
272
273 if (!hvterm_privs[0])
274 return -1;
275
276 switch(hvterm_privs[0]->proto) {
277 case HV_PROTOCOL_RAW:
278 rc = hvterm_raw_get_chars(0, &c, 1);
279 break;
280 case HV_PROTOCOL_HVSI:
281 rc = hvterm_hvsi_get_chars(0, &c, 1);
282 break;
283 }
284 if (!rc)
285 return -1;
286 return c;
287}
288
289static int udbg_hvc_getc(void)
290{
291 int ch;
292
293 if (!hvterm_privs[0])
294 return -1;
295
296 for (;;) {
297 ch = udbg_hvc_getc_poll();
298 if (ch == -1) {
299 /* This shouldn't be needed...but... */
300 volatile unsigned long delay;
301 for (delay=0; delay < 2000000; delay++)
302 ;
303 } else {
304 return ch;
305 }
306 }
307}
308
Bill Pemberton9671f092012-11-19 13:21:50 -0500309static int hvc_vio_probe(struct vio_dev *vdev,
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000310 const struct vio_device_id *id)
311{
312 const struct hv_ops *ops;
Milton Milleracad9552005-07-07 17:56:24 -0700313 struct hvc_struct *hp;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000314 struct hvterm_priv *pv;
315 hv_protocol_t proto;
316 int i, termno = -1;
Milton Milleracad9552005-07-07 17:56:24 -0700317
318 /* probed with invalid parameters. */
319 if (!vdev || !id)
320 return -EPERM;
321
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000322 if (of_device_is_compatible(vdev->dev.of_node, "hvterm1")) {
323 proto = HV_PROTOCOL_RAW;
324 ops = &hvterm_raw_ops;
325 } else if (of_device_is_compatible(vdev->dev.of_node, "hvterm-protocol")) {
326 proto = HV_PROTOCOL_HVSI;
327 ops = &hvterm_hvsi_ops;
328 } else {
Masanari Iida46e99c42012-10-24 23:29:41 +0900329 pr_err("hvc_vio: Unknown protocol for %s\n", vdev->dev.of_node->full_name);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000330 return -ENXIO;
331 }
332
333 pr_devel("hvc_vio_probe() device %s, using %s protocol\n",
334 vdev->dev.of_node->full_name,
335 proto == HV_PROTOCOL_RAW ? "raw" : "hvsi");
336
337 /* Is it our boot one ? */
338 if (hvterm_privs[0] == &hvterm_priv0 &&
339 vdev->unit_address == hvterm_priv0.termno) {
340 pv = hvterm_privs[0];
341 termno = 0;
342 pr_devel("->boot console, using termno 0\n");
343 }
344 /* nope, allocate a new one */
345 else {
346 for (i = 0; i < MAX_NR_HVC_CONSOLES && termno < 0; i++)
347 if (!hvterm_privs[i])
348 termno = i;
349 pr_devel("->non-boot console, using termno %d\n", termno);
350 if (termno < 0)
351 return -ENODEV;
352 pv = kzalloc(sizeof(struct hvterm_priv), GFP_KERNEL);
353 if (!pv)
354 return -ENOMEM;
355 pv->termno = vdev->unit_address;
356 pv->proto = proto;
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000357 spin_lock_init(&pv->buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000358 hvterm_privs[termno] = pv;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000359 hvsilib_init(&pv->hvsi, hvc_get_chars, hvc_put_chars,
360 pv->termno, 0);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000361 }
362
363 hp = hvc_alloc(termno, vdev->irq, ops, MAX_VIO_PUT_CHARS);
Milton Milleracad9552005-07-07 17:56:24 -0700364 if (IS_ERR(hp))
365 return PTR_ERR(hp);
366 dev_set_drvdata(&vdev->dev, hp);
367
Benjamin Herrenschmidtd1cfc0c2012-07-23 21:47:38 +0000368 /* register udbg if it's not there already for console 0 */
369 if (hp->index == 0 && !udbg_putc) {
370 udbg_putc = udbg_hvc_putc;
371 udbg_getc = udbg_hvc_getc;
372 udbg_getc_poll = udbg_hvc_getc_poll;
373 }
374
Milton Milleracad9552005-07-07 17:56:24 -0700375 return 0;
376}
377
Milton Milleracad9552005-07-07 17:56:24 -0700378static struct vio_driver hvc_vio_driver = {
Milton Milleracad9552005-07-07 17:56:24 -0700379 .id_table = hvc_driver_table,
380 .probe = hvc_vio_probe,
Benjamin Herrenschmidtcb52d892012-03-26 19:06:30 +0000381 .name = hvc_driver_name,
Paul Gortmakere3c5fc42015-10-18 18:21:14 -0400382 .driver = {
383 .suppress_bind_attrs = true,
384 },
Milton Milleracad9552005-07-07 17:56:24 -0700385};
386
Peter Huewe948c28f2009-08-20 11:14:06 +0000387static int __init hvc_vio_init(void)
Milton Milleracad9552005-07-07 17:56:24 -0700388{
389 int rc;
390
391 /* Register as a vio device to receive callbacks */
392 rc = vio_register_driver(&hvc_vio_driver);
393
394 return rc;
395}
Paul Gortmakere3c5fc42015-10-18 18:21:14 -0400396device_initcall(hvc_vio_init); /* after drivers/tty/hvc/hvc_console.c */
Milton Milleracad9552005-07-07 17:56:24 -0700397
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000398void __init hvc_vio_init_early(void)
399{
Anton Blanchard1502b482013-08-07 02:01:39 +1000400 const __be32 *termno;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000401 const char *name;
402 const struct hv_ops *ops;
403
404 /* find the boot console from /chosen/stdout */
Grant Likelya752ee52014-03-28 08:12:18 -0700405 if (!of_stdout)
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000406 return;
Grant Likelya752ee52014-03-28 08:12:18 -0700407 name = of_get_property(of_stdout, "name", NULL);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000408 if (!name) {
409 printk(KERN_WARNING "stdout node missing 'name' property!\n");
Grant Likelya752ee52014-03-28 08:12:18 -0700410 return;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000411 }
412
413 /* Check if it's a virtual terminal */
414 if (strncmp(name, "vty", 3) != 0)
Grant Likelya752ee52014-03-28 08:12:18 -0700415 return;
416 termno = of_get_property(of_stdout, "reg", NULL);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000417 if (termno == NULL)
Grant Likelya752ee52014-03-28 08:12:18 -0700418 return;
Anton Blanchard1502b482013-08-07 02:01:39 +1000419 hvterm_priv0.termno = of_read_number(termno, 1);
Anton Blanchard19df9ab2011-07-12 19:19:57 +0000420 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000421 hvterm_privs[0] = &hvterm_priv0;
422
423 /* Check the protocol */
Grant Likelya752ee52014-03-28 08:12:18 -0700424 if (of_device_is_compatible(of_stdout, "hvterm1")) {
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000425 hvterm_priv0.proto = HV_PROTOCOL_RAW;
426 ops = &hvterm_raw_ops;
427 }
Grant Likelya752ee52014-03-28 08:12:18 -0700428 else if (of_device_is_compatible(of_stdout, "hvterm-protocol")) {
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000429 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
430 ops = &hvterm_hvsi_ops;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000431 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
432 hvterm_priv0.termno, 1);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000433 /* HVSI, perform the handshake now */
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000434 hvsilib_establish(&hvterm_priv0.hvsi);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000435 } else
Grant Likelya752ee52014-03-28 08:12:18 -0700436 return;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000437 udbg_putc = udbg_hvc_putc;
438 udbg_getc = udbg_hvc_getc;
439 udbg_getc_poll = udbg_hvc_getc_poll;
440#ifdef HVC_OLD_HVSI
441 /* When using the old HVSI driver don't register the HVC
442 * backend for HVSI, only do udbg
443 */
444 if (hvterm_priv0.proto == HV_PROTOCOL_HVSI)
Grant Likelya752ee52014-03-28 08:12:18 -0700445 return;
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000446#endif
Ben Hutchings1926d0a2013-09-01 17:24:16 +0100447 /* Check whether the user has requested a different console. */
Anton Blanchard3e47d142014-09-17 14:39:36 +1000448 if (!strstr(boot_command_line, "console="))
Ben Hutchings1926d0a2013-09-01 17:24:16 +0100449 add_preferred_console("hvc", 0, NULL);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000450 hvc_instantiate(0, 0, ops);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000451}
452
453/* call this from early_init() for a working debug console on
454 * vterm capable LPAR machines
455 */
456#ifdef CONFIG_PPC_EARLY_DEBUG_LPAR
457void __init udbg_init_debug_lpar(void)
458{
459 hvterm_privs[0] = &hvterm_priv0;
460 hvterm_priv0.termno = 0;
461 hvterm_priv0.proto = HV_PROTOCOL_RAW;
Benjamin Herrenschmidtf7723f02011-07-20 18:01:48 +1000462 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000463 udbg_putc = udbg_hvc_putc;
464 udbg_getc = udbg_hvc_getc;
465 udbg_getc_poll = udbg_hvc_getc_poll;
466}
467#endif /* CONFIG_PPC_EARLY_DEBUG_LPAR */
468
469#ifdef CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI
470void __init udbg_init_debug_lpar_hvsi(void)
471{
472 hvterm_privs[0] = &hvterm_priv0;
473 hvterm_priv0.termno = CONFIG_PPC_EARLY_DEBUG_HVSI_VTERMNO;
474 hvterm_priv0.proto = HV_PROTOCOL_HVSI;
Benjamin Herrenschmidtf7723f02011-07-20 18:01:48 +1000475 spin_lock_init(&hvterm_priv0.buf_lock);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000476 udbg_putc = udbg_hvc_putc;
477 udbg_getc = udbg_hvc_getc;
478 udbg_getc_poll = udbg_hvc_getc_poll;
Benjamin Herrenschmidt87fa35d2011-07-01 13:10:21 +1000479 hvsilib_init(&hvterm_priv0.hvsi, hvc_get_chars, hvc_put_chars,
480 hvterm_priv0.termno, 1);
481 hvsilib_establish(&hvterm_priv0.hvsi);
Benjamin Herrenschmidt4d2bb3f2011-05-12 13:46:38 +1000482}
483#endif /* CONFIG_PPC_EARLY_DEBUG_LPAR_HVSI */