blob: 10beb1589d8340fb0d0c5965a53cca5abf0b75f7 [file] [log] [blame]
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -07001/*
2 * xen console driver interface to hvc_console.c
3 *
4 * (c) 2007 Gerd Hoffmann <kraxel@suse.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/console.h>
22#include <linux/delay.h>
23#include <linux/err.h>
Stefano Stabellini4d9310e2012-08-06 15:27:09 +010024#include <linux/irq.h>
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070025#include <linux/init.h>
26#include <linux/types.h>
Stefano Stabellini02e19f92012-01-30 16:02:31 +000027#include <linux/list.h>
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070028
Stefano Stabellinieb5ef072012-01-27 18:31:36 +000029#include <asm/io.h>
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070030#include <asm/xen/hypervisor.h>
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070031
32#include <xen/xen.h>
Stefano Stabellinieb5ef072012-01-27 18:31:36 +000033#include <xen/interface/xen.h>
34#include <xen/hvm.h>
Stefano Stabellini02e19f92012-01-30 16:02:31 +000035#include <xen/grant_table.h>
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070036#include <xen/page.h>
37#include <xen/events.h>
38#include <xen/interface/io/console.h>
Stefano Stabellini4d9310e2012-08-06 15:27:09 +010039#include <xen/interface/sched.h>
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070040#include <xen/hvc-console.h>
Stefano Stabellini02e19f92012-01-30 16:02:31 +000041#include <xen/xenbus.h>
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070042
43#include "hvc_console.h"
44
45#define HVC_COOKIE 0x58656e /* "Xen" in hex */
46
Stefano Stabellini02e19f92012-01-30 16:02:31 +000047struct xencons_info {
48 struct list_head list;
49 struct xenbus_device *xbdev;
50 struct xencons_interface *intf;
51 unsigned int evtchn;
52 struct hvc_struct *hvc;
53 int irq;
54 int vtermno;
55 grant_ref_t gntref;
56};
57
58static LIST_HEAD(xenconsoles);
59static DEFINE_SPINLOCK(xencons_lock);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070060
61/* ------------------------------------------------------------------ */
62
Stefano Stabellini02e19f92012-01-30 16:02:31 +000063static struct xencons_info *vtermno_to_xencons(int vtermno)
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070064{
Stefano Stabellini02e19f92012-01-30 16:02:31 +000065 struct xencons_info *entry, *n, *ret = NULL;
66
67 if (list_empty(&xenconsoles))
68 return NULL;
69
70 list_for_each_entry_safe(entry, n, &xenconsoles, list) {
71 if (entry->vtermno == vtermno) {
72 ret = entry;
73 break;
74 }
75 }
76
77 return ret;
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070078}
79
Stefano Stabellini02e19f92012-01-30 16:02:31 +000080static inline int xenbus_devid_to_vtermno(int devid)
81{
82 return devid + HVC_COOKIE;
83}
84
85static inline void notify_daemon(struct xencons_info *cons)
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070086{
87 /* Use evtchn: this is called early, before irq is set up. */
Stefano Stabellini02e19f92012-01-30 16:02:31 +000088 notify_remote_via_evtchn(cons->evtchn);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070089}
90
Stefano Stabellini02e19f92012-01-30 16:02:31 +000091static int __write_console(struct xencons_info *xencons,
92 const char *data, int len)
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070093{
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070094 XENCONS_RING_IDX cons, prod;
Stefano Stabellini02e19f92012-01-30 16:02:31 +000095 struct xencons_interface *intf = xencons->intf;
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -070096 int sent = 0;
97
98 cons = intf->out_cons;
99 prod = intf->out_prod;
100 mb(); /* update queue values before going on */
101 BUG_ON((prod - cons) > sizeof(intf->out));
102
103 while ((sent < len) && ((prod - cons) < sizeof(intf->out)))
104 intf->out[MASK_XENCONS_IDX(prod++, intf->out)] = data[sent++];
105
106 wmb(); /* write ring before updating pointer */
107 intf->out_prod = prod;
108
Jeremy Fitzhardinge403a85f2010-10-14 11:38:47 -0700109 if (sent)
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000110 notify_daemon(xencons);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700111 return sent;
112}
113
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100114static int domU_write_console(uint32_t vtermno, const char *data, int len)
Jeremy Fitzhardinge7825cf12009-10-20 15:28:21 +0900115{
116 int ret = len;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000117 struct xencons_info *cons = vtermno_to_xencons(vtermno);
118 if (cons == NULL)
119 return -EINVAL;
Jeremy Fitzhardinge7825cf12009-10-20 15:28:21 +0900120
121 /*
122 * Make sure the whole buffer is emitted, polling if
123 * necessary. We don't ever want to rely on the hvc daemon
124 * because the most interesting console output is when the
125 * kernel is crippled.
126 */
127 while (len) {
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000128 int sent = __write_console(cons, data, len);
Jeremy Fitzhardinge7825cf12009-10-20 15:28:21 +0900129
130 data += sent;
131 len -= sent;
132
133 if (unlikely(len))
134 HYPERVISOR_sched_op(SCHEDOP_yield, NULL);
135 }
136
137 return ret;
138}
139
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100140static int domU_read_console(uint32_t vtermno, char *buf, int len)
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700141{
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000142 struct xencons_interface *intf;
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700143 XENCONS_RING_IDX cons, prod;
144 int recv = 0;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000145 struct xencons_info *xencons = vtermno_to_xencons(vtermno);
146 if (xencons == NULL)
147 return -EINVAL;
148 intf = xencons->intf;
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700149
150 cons = intf->in_cons;
151 prod = intf->in_prod;
152 mb(); /* get pointers before reading ring */
153 BUG_ON((prod - cons) > sizeof(intf->in));
154
155 while (cons != prod && recv < len)
156 buf[recv++] = intf->in[MASK_XENCONS_IDX(cons++, intf->in)];
157
158 mb(); /* read ring before consuming */
159 intf->in_cons = cons;
160
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000161 notify_daemon(xencons);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700162 return recv;
163}
164
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100165static struct hv_ops domU_hvc_ops = {
166 .get_chars = domU_read_console,
167 .put_chars = domU_write_console,
Christian Borntraeger611e0972008-06-20 15:24:08 +0200168 .notifier_add = notifier_add_irq,
169 .notifier_del = notifier_del_irq,
Hendrik Bruecknerfc362e22008-10-13 23:12:48 +0000170 .notifier_hangup = notifier_hangup_irq,
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700171};
172
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100173static int dom0_read_console(uint32_t vtermno, char *buf, int len)
174{
175 return HYPERVISOR_console_io(CONSOLEIO_read, len, buf);
176}
177
178/*
179 * Either for a dom0 to write to the system console, or a domU with a
180 * debug version of Xen
181 */
182static int dom0_write_console(uint32_t vtermno, const char *str, int len)
183{
184 int rc = HYPERVISOR_console_io(CONSOLEIO_write, len, (char *)str);
185 if (rc < 0)
Konrad Rzeszutek Wilk04b772d2013-09-27 17:18:13 -0400186 return rc;
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100187
188 return len;
189}
190
191static struct hv_ops dom0_hvc_ops = {
192 .get_chars = dom0_read_console,
193 .put_chars = dom0_write_console,
194 .notifier_add = notifier_add_irq,
195 .notifier_del = notifier_del_irq,
196 .notifier_hangup = notifier_hangup_irq,
197};
198
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000199static int xen_hvm_console_init(void)
200{
201 int r;
202 uint64_t v = 0;
Julien Grall859e3262015-08-07 17:34:40 +0100203 unsigned long gfn;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000204 struct xencons_info *info;
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000205
206 if (!xen_hvm_domain())
207 return -ENODEV;
208
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000209 info = vtermno_to_xencons(HVC_COOKIE);
210 if (!info) {
Joe Perches2d1d3f32013-08-29 14:08:18 -0700211 info = kzalloc(sizeof(struct xencons_info), GFP_KERNEL);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000212 if (!info)
213 return -ENOMEM;
Konrad Rzeszutek Wilk37a80bf2012-06-26 09:30:51 -0400214 } else if (info->intf != NULL) {
215 /* already configured */
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000216 return 0;
Konrad Rzeszutek Wilk37a80bf2012-06-26 09:30:51 -0400217 }
Konrad Rzeszutek Wilk5842f5762012-05-23 12:56:59 -0400218 /*
219 * If the toolstack (or the hypervisor) hasn't set these values, the
Julien Grall859e3262015-08-07 17:34:40 +0100220 * default value is 0. Even though gfn = 0 and evtchn = 0 are
Konrad Rzeszutek Wilk5842f5762012-05-23 12:56:59 -0400221 * theoretically correct values, in practice they never are and they
222 * mean that a legacy toolstack hasn't initialized the pv console correctly.
223 */
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000224 r = hvm_get_parameter(HVM_PARAM_CONSOLE_EVTCHN, &v);
Konrad Rzeszutek Wilk5842f5762012-05-23 12:56:59 -0400225 if (r < 0 || v == 0)
Konrad Rzeszutek Wilk2e5ad6b2012-05-23 12:53:11 -0400226 goto err;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000227 info->evtchn = v;
Konrad Rzeszutek Wilka32c88b2012-05-23 12:55:38 -0400228 v = 0;
229 r = hvm_get_parameter(HVM_PARAM_CONSOLE_PFN, &v);
Konrad Rzeszutek Wilk5842f5762012-05-23 12:56:59 -0400230 if (r < 0 || v == 0)
Konrad Rzeszutek Wilk2e5ad6b2012-05-23 12:53:11 -0400231 goto err;
Julien Grall859e3262015-08-07 17:34:40 +0100232 gfn = v;
233 info->intf = xen_remap(gfn << PAGE_SHIFT, PAGE_SIZE);
Konrad Rzeszutek Wilk2e5ad6b2012-05-23 12:53:11 -0400234 if (info->intf == NULL)
235 goto err;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000236 info->vtermno = HVC_COOKIE;
237
238 spin_lock(&xencons_lock);
239 list_add_tail(&info->list, &xenconsoles);
240 spin_unlock(&xencons_lock);
241
242 return 0;
Konrad Rzeszutek Wilk2e5ad6b2012-05-23 12:53:11 -0400243err:
244 kfree(info);
245 return -ENODEV;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000246}
247
248static int xen_pv_console_init(void)
249{
250 struct xencons_info *info;
251
252 if (!xen_pv_domain())
253 return -ENODEV;
254
255 if (!xen_start_info->console.domU.evtchn)
256 return -ENODEV;
257
258 info = vtermno_to_xencons(HVC_COOKIE);
259 if (!info) {
Joe Perches2d1d3f32013-08-29 14:08:18 -0700260 info = kzalloc(sizeof(struct xencons_info), GFP_KERNEL);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000261 if (!info)
262 return -ENOMEM;
Konrad Rzeszutek Wilk37a80bf2012-06-26 09:30:51 -0400263 } else if (info->intf != NULL) {
264 /* already configured */
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000265 return 0;
Konrad Rzeszutek Wilk37a80bf2012-06-26 09:30:51 -0400266 }
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000267 info->evtchn = xen_start_info->console.domU.evtchn;
Julien Grall0df4f262015-08-07 17:34:37 +0100268 /* GFN == MFN for PV guest */
269 info->intf = gfn_to_virt(xen_start_info->console.domU.mfn);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000270 info->vtermno = HVC_COOKIE;
271
272 spin_lock(&xencons_lock);
273 list_add_tail(&info->list, &xenconsoles);
274 spin_unlock(&xencons_lock);
275
276 return 0;
277}
278
279static int xen_initial_domain_console_init(void)
280{
281 struct xencons_info *info;
282
283 if (!xen_initial_domain())
284 return -ENODEV;
285
286 info = vtermno_to_xencons(HVC_COOKIE);
287 if (!info) {
Joe Perches2d1d3f32013-08-29 14:08:18 -0700288 info = kzalloc(sizeof(struct xencons_info), GFP_KERNEL);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000289 if (!info)
290 return -ENOMEM;
291 }
292
David Vrabel77bb3df2015-05-19 18:40:49 +0100293 info->irq = bind_virq_to_irq(VIRQ_CONSOLE, 0, false);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000294 info->vtermno = HVC_COOKIE;
295
296 spin_lock(&xencons_lock);
297 list_add_tail(&info->list, &xenconsoles);
298 spin_unlock(&xencons_lock);
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000299
300 return 0;
301}
302
Boris Ostrovskyb9d934f2015-04-29 17:10:14 -0400303static void xen_console_update_evtchn(struct xencons_info *info)
304{
305 if (xen_hvm_domain()) {
Jan Beulichc4ace5d2015-05-28 09:28:22 +0100306 uint64_t v = 0;
Boris Ostrovskyb9d934f2015-04-29 17:10:14 -0400307 int err;
308
309 err = hvm_get_parameter(HVM_PARAM_CONSOLE_EVTCHN, &v);
310 if (!err && v)
311 info->evtchn = v;
312 } else
313 info->evtchn = xen_start_info->console.domU.evtchn;
314}
315
Jeremy Fitzhardinge6b9b7322008-05-26 23:31:25 +0100316void xen_console_resume(void)
317{
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000318 struct xencons_info *info = vtermno_to_xencons(HVC_COOKIE);
Boris Ostrovskyb9d934f2015-04-29 17:10:14 -0400319 if (info != NULL && info->irq) {
320 if (!xen_initial_domain())
321 xen_console_update_evtchn(info);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000322 rebind_evtchn_irq(info->evtchn, info->irq);
Boris Ostrovskyb9d934f2015-04-29 17:10:14 -0400323 }
Jeremy Fitzhardinge6b9b7322008-05-26 23:31:25 +0100324}
325
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000326static void xencons_disconnect_backend(struct xencons_info *info)
327{
328 if (info->irq > 0)
329 unbind_from_irqhandler(info->irq, NULL);
330 info->irq = 0;
331 if (info->evtchn > 0)
332 xenbus_free_evtchn(info->xbdev, info->evtchn);
333 info->evtchn = 0;
334 if (info->gntref > 0)
335 gnttab_free_grant_references(info->gntref);
336 info->gntref = 0;
337 if (info->hvc != NULL)
338 hvc_remove(info->hvc);
339 info->hvc = NULL;
340}
341
342static void xencons_free(struct xencons_info *info)
343{
344 free_page((unsigned long)info->intf);
345 info->intf = NULL;
346 info->vtermno = 0;
347 kfree(info);
348}
349
350static int xen_console_remove(struct xencons_info *info)
351{
352 xencons_disconnect_backend(info);
353 spin_lock(&xencons_lock);
354 list_del(&info->list);
355 spin_unlock(&xencons_lock);
356 if (info->xbdev != NULL)
357 xencons_free(info);
358 else {
359 if (xen_hvm_domain())
360 iounmap(info->intf);
361 kfree(info);
362 }
363 return 0;
364}
365
Stefano Stabellinicf8e0192012-02-21 11:30:42 +0000366#ifdef CONFIG_HVC_XEN_FRONTEND
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000367static int xencons_remove(struct xenbus_device *dev)
368{
369 return xen_console_remove(dev_get_drvdata(&dev->dev));
370}
371
372static int xencons_connect_backend(struct xenbus_device *dev,
373 struct xencons_info *info)
374{
375 int ret, evtchn, devid, ref, irq;
376 struct xenbus_transaction xbt;
377 grant_ref_t gref_head;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000378
379 ret = xenbus_alloc_evtchn(dev, &evtchn);
380 if (ret)
381 return ret;
382 info->evtchn = evtchn;
383 irq = bind_evtchn_to_irq(evtchn);
384 if (irq < 0)
385 return irq;
386 info->irq = irq;
387 devid = dev->nodename[strlen(dev->nodename) - 1] - '0';
388 info->hvc = hvc_alloc(xenbus_devid_to_vtermno(devid),
389 irq, &domU_hvc_ops, 256);
390 if (IS_ERR(info->hvc))
391 return PTR_ERR(info->hvc);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000392 ret = gnttab_alloc_grant_references(1, &gref_head);
393 if (ret < 0)
394 return ret;
395 info->gntref = gref_head;
396 ref = gnttab_claim_grant_reference(&gref_head);
397 if (ref < 0)
398 return ref;
399 gnttab_grant_foreign_access_ref(ref, info->xbdev->otherend_id,
Julien Grall859e3262015-08-07 17:34:40 +0100400 virt_to_gfn(info->intf), 0);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000401
402 again:
403 ret = xenbus_transaction_start(&xbt);
404 if (ret) {
405 xenbus_dev_fatal(dev, ret, "starting transaction");
406 return ret;
407 }
408 ret = xenbus_printf(xbt, dev->nodename, "ring-ref", "%d", ref);
409 if (ret)
410 goto error_xenbus;
411 ret = xenbus_printf(xbt, dev->nodename, "port", "%u",
412 evtchn);
413 if (ret)
414 goto error_xenbus;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000415 ret = xenbus_transaction_end(xbt, 0);
416 if (ret) {
417 if (ret == -EAGAIN)
418 goto again;
419 xenbus_dev_fatal(dev, ret, "completing transaction");
420 return ret;
421 }
422
423 xenbus_switch_state(dev, XenbusStateInitialised);
424 return 0;
425
426 error_xenbus:
427 xenbus_transaction_end(xbt, 1);
428 xenbus_dev_fatal(dev, ret, "writing xenstore");
429 return ret;
430}
431
Bill Pemberton9671f092012-11-19 13:21:50 -0500432static int xencons_probe(struct xenbus_device *dev,
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000433 const struct xenbus_device_id *id)
434{
435 int ret, devid;
436 struct xencons_info *info;
437
438 devid = dev->nodename[strlen(dev->nodename) - 1] - '0';
439 if (devid == 0)
440 return -ENODEV;
441
Dan Carpenter201a52b2012-05-15 11:47:47 +0300442 info = kzalloc(sizeof(struct xencons_info), GFP_KERNEL);
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000443 if (!info)
Dan Carpenter201a52b2012-05-15 11:47:47 +0300444 return -ENOMEM;
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000445 dev_set_drvdata(&dev->dev, info);
446 info->xbdev = dev;
447 info->vtermno = xenbus_devid_to_vtermno(devid);
448 info->intf = (void *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
449 if (!info->intf)
450 goto error_nomem;
451
452 ret = xencons_connect_backend(dev, info);
453 if (ret < 0)
454 goto error;
455 spin_lock(&xencons_lock);
456 list_add_tail(&info->list, &xenconsoles);
457 spin_unlock(&xencons_lock);
458
459 return 0;
460
461 error_nomem:
462 ret = -ENOMEM;
463 xenbus_dev_fatal(dev, ret, "allocating device memory");
464 error:
465 xencons_disconnect_backend(info);
466 xencons_free(info);
467 return ret;
468}
469
470static int xencons_resume(struct xenbus_device *dev)
471{
472 struct xencons_info *info = dev_get_drvdata(&dev->dev);
473
474 xencons_disconnect_backend(info);
475 memset(info->intf, 0, PAGE_SIZE);
476 return xencons_connect_backend(dev, info);
477}
478
479static void xencons_backend_changed(struct xenbus_device *dev,
480 enum xenbus_state backend_state)
481{
482 switch (backend_state) {
483 case XenbusStateReconfiguring:
484 case XenbusStateReconfigured:
485 case XenbusStateInitialising:
486 case XenbusStateInitialised:
487 case XenbusStateUnknown:
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000488 break;
489
490 case XenbusStateInitWait:
491 break;
492
493 case XenbusStateConnected:
494 xenbus_switch_state(dev, XenbusStateConnected);
495 break;
496
David Vrabel9b6934a2012-09-21 17:04:24 +0100497 case XenbusStateClosed:
498 if (dev->state == XenbusStateClosed)
499 break;
500 /* Missed the backend's CLOSING state -- fallthrough */
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000501 case XenbusStateClosing:
502 xenbus_frontend_closed(dev);
503 break;
504 }
505}
506
507static const struct xenbus_device_id xencons_ids[] = {
508 { "console" },
509 { "" }
510};
511
David Vrabel95afae42014-09-08 17:30:41 +0100512static struct xenbus_driver xencons_driver = {
513 .name = "xenconsole",
514 .ids = xencons_ids,
Stefano Stabellinicf8e0192012-02-21 11:30:42 +0000515 .probe = xencons_probe,
516 .remove = xencons_remove,
517 .resume = xencons_resume,
518 .otherend_changed = xencons_backend_changed,
David Vrabel95afae42014-09-08 17:30:41 +0100519};
Stefano Stabellinicf8e0192012-02-21 11:30:42 +0000520#endif /* CONFIG_HVC_XEN_FRONTEND */
521
522static int __init xen_hvc_init(void)
523{
524 int r;
525 struct xencons_info *info;
526 const struct hv_ops *ops;
527
528 if (!xen_domain())
529 return -ENODEV;
530
531 if (xen_initial_domain()) {
532 ops = &dom0_hvc_ops;
533 r = xen_initial_domain_console_init();
534 if (r < 0)
535 return r;
536 info = vtermno_to_xencons(HVC_COOKIE);
537 } else {
538 ops = &domU_hvc_ops;
539 if (xen_hvm_domain())
540 r = xen_hvm_console_init();
541 else
542 r = xen_pv_console_init();
543 if (r < 0)
544 return r;
545
546 info = vtermno_to_xencons(HVC_COOKIE);
547 info->irq = bind_evtchn_to_irq(info->evtchn);
548 }
549 if (info->irq < 0)
550 info->irq = 0; /* NO_IRQ */
551 else
552 irq_set_noprobe(info->irq);
553
554 info->hvc = hvc_alloc(HVC_COOKIE, info->irq, ops, 256);
555 if (IS_ERR(info->hvc)) {
556 r = PTR_ERR(info->hvc);
557 spin_lock(&xencons_lock);
558 list_del(&info->list);
559 spin_unlock(&xencons_lock);
560 if (info->irq)
561 unbind_from_irqhandler(info->irq, NULL);
562 kfree(info);
563 return r;
564 }
565
566 r = 0;
567#ifdef CONFIG_HVC_XEN_FRONTEND
568 r = xenbus_register_frontend(&xencons_driver);
569#endif
570 return r;
571}
Paul Gortmaker4fedd0b2014-01-15 16:35:43 -0500572device_initcall(xen_hvc_init);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700573
574static int xen_cons_init(void)
575{
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000576 const struct hv_ops *ops;
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100577
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000578 if (!xen_domain())
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700579 return 0;
580
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100581 if (xen_initial_domain())
582 ops = &dom0_hvc_ops;
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000583 else {
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000584 int r;
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100585 ops = &domU_hvc_ops;
586
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000587 if (xen_hvm_domain())
588 r = xen_hvm_console_init();
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000589 else
Stefano Stabellini02e19f92012-01-30 16:02:31 +0000590 r = xen_pv_console_init();
591 if (r < 0)
592 return r;
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000593 }
594
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100595 hvc_instantiate(HVC_COOKIE, 0, ops);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700596 return 0;
597}
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700598console_initcall(xen_cons_init);
599
Jeremy Fitzhardinge0922abd2008-05-26 23:31:00 +0100600#ifdef CONFIG_EARLY_PRINTK
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700601static void xenboot_write_console(struct console *console, const char *string,
602 unsigned len)
603{
604 unsigned int linelen, off = 0;
605 const char *pos;
606
Stefano Stabellinieb5ef072012-01-27 18:31:36 +0000607 if (!xen_pv_domain())
608 return;
609
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100610 dom0_write_console(0, string, len);
Jeremy Fitzhardinge0922abd2008-05-26 23:31:00 +0100611
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100612 if (xen_initial_domain())
613 return;
614
615 domU_write_console(0, "(early) ", 8);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700616 while (off < len && NULL != (pos = strchr(string+off, '\n'))) {
617 linelen = pos-string+off;
618 if (off + linelen > len)
619 break;
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100620 domU_write_console(0, string+off, linelen);
621 domU_write_console(0, "\r\n", 2);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700622 off += linelen + 1;
623 }
624 if (off < len)
Jeremy Fitzhardinge4fe7d5a2010-09-02 16:17:06 +0100625 domU_write_console(0, string+off, len-off);
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700626}
627
628struct console xenboot_console = {
629 .name = "xenboot",
630 .write = xenboot_write_console,
Jeremy Fitzhardinge0922abd2008-05-26 23:31:00 +0100631 .flags = CON_PRINTBUFFER | CON_BOOT | CON_ANYTIME,
David Vrabela9fbf4d2013-10-01 19:00:49 +0100632 .index = -1,
Jeremy Fitzhardingeb536b4b2007-07-17 18:37:06 -0700633};
Jeremy Fitzhardinge0922abd2008-05-26 23:31:00 +0100634#endif /* CONFIG_EARLY_PRINTK */
Jeremy Fitzhardinge0acf10d2008-05-26 23:30:59 +0100635
636void xen_raw_console_write(const char *str)
637{
Konrad Rzeszutek Wilk04b772d2013-09-27 17:18:13 -0400638 ssize_t len = strlen(str);
639 int rc = 0;
640
641 if (xen_domain()) {
642 rc = dom0_write_console(0, str, len);
643#ifdef CONFIG_X86
644 if (rc == -ENOSYS && xen_hvm_domain())
645 goto outb_print;
646
647 } else if (xen_cpuid_base()) {
648 int i;
649outb_print:
650 for (i = 0; i < len; i++)
651 outb(str[i], 0xe9);
652#endif
653 }
Jeremy Fitzhardinge0acf10d2008-05-26 23:30:59 +0100654}
655
656void xen_raw_printk(const char *fmt, ...)
657{
658 static char buf[512];
659 va_list ap;
660
661 va_start(ap, fmt);
662 vsnprintf(buf, sizeof(buf), fmt, ap);
663 va_end(ap);
664
665 xen_raw_console_write(buf);
666}