xen-kbdfront.c 9.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Xen para-virtual input device
 *
 * Copyright (C) 2005 Anthony Liguori <aliguori@us.ibm.com>
 * Copyright (C) 2006-2008 Red Hat, Inc., Markus Armbruster <armbru@redhat.com>
 *
 *  Based on linux/drivers/input/mouse/sermouse.c
 *
 *  This file is subject to the terms and conditions of the GNU General Public
 *  License. See the file COPYING in the main directory of this archive for
 *  more details.
 */

J
Joe Perches 已提交
14 15
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

16 17 18 19
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <linux/input.h>
20
#include <linux/slab.h>
21

22
#include <asm/xen/hypervisor.h>
23 24

#include <xen/xen.h>
25 26
#include <xen/events.h>
#include <xen/page.h>
27 28
#include <xen/grant_table.h>
#include <xen/interface/grant_table.h>
29 30 31
#include <xen/interface/io/fbif.h>
#include <xen/interface/io/kbdif.h>
#include <xen/xenbus.h>
32
#include <xen/platform_pci.h>
33 34 35 36 37

struct xenkbd_info {
	struct input_dev *kbd;
	struct input_dev *ptr;
	struct xenkbd_page *page;
38
	int gref;
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
	int irq;
	struct xenbus_device *xbdev;
	char phys[32];
};

static int xenkbd_remove(struct xenbus_device *);
static int xenkbd_connect_backend(struct xenbus_device *, struct xenkbd_info *);
static void xenkbd_disconnect_backend(struct xenkbd_info *);

/*
 * Note: if you need to send out events, see xenfb_do_update() for how
 * to do that.
 */

static irqreturn_t input_handler(int rq, void *dev_id)
{
	struct xenkbd_info *info = dev_id;
	struct xenkbd_page *page = info->page;
	__u32 cons, prod;

	prod = page->in_prod;
	if (prod == page->in_cons)
		return IRQ_HANDLED;
	rmb();			/* ensure we see ring contents up to prod */
	for (cons = page->in_cons; cons != prod; cons++) {
		union xenkbd_in_event *event;
		struct input_dev *dev;
		event = &XENKBD_IN_RING_REF(page, cons);

		dev = info->ptr;
		switch (event->type) {
		case XENKBD_TYPE_MOTION:
			input_report_rel(dev, REL_X, event->motion.rel_x);
			input_report_rel(dev, REL_Y, event->motion.rel_y);
73 74 75
			if (event->motion.rel_z)
				input_report_rel(dev, REL_WHEEL,
						 -event->motion.rel_z);
76 77 78 79 80 81 82 83 84 85 86
			break;
		case XENKBD_TYPE_KEY:
			dev = NULL;
			if (test_bit(event->key.keycode, info->kbd->keybit))
				dev = info->kbd;
			if (test_bit(event->key.keycode, info->ptr->keybit))
				dev = info->ptr;
			if (dev)
				input_report_key(dev, event->key.keycode,
						 event->key.pressed);
			else
J
Joe Perches 已提交
87 88
				pr_warning("unhandled keycode 0x%x\n",
					   event->key.keycode);
89 90 91 92
			break;
		case XENKBD_TYPE_POS:
			input_report_abs(dev, ABS_X, event->pos.abs_x);
			input_report_abs(dev, ABS_Y, event->pos.abs_y);
93 94 95
			if (event->pos.rel_z)
				input_report_rel(dev, REL_WHEEL,
						 -event->pos.rel_z);
96 97 98 99 100 101 102 103 104 105 106 107
			break;
		}
		if (dev)
			input_sync(dev);
	}
	mb();			/* ensure we got ring contents */
	page->in_cons = cons;
	notify_remote_via_irq(info->irq);

	return IRQ_HANDLED;
}

B
Bill Pemberton 已提交
108
static int xenkbd_probe(struct xenbus_device *dev,
109 110
				  const struct xenbus_device_id *id)
{
111
	int ret, i, abs;
112 113 114 115 116 117 118 119
	struct xenkbd_info *info;
	struct input_dev *kbd, *ptr;

	info = kzalloc(sizeof(*info), GFP_KERNEL);
	if (!info) {
		xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
		return -ENOMEM;
	}
120
	dev_set_drvdata(&dev->dev, info);
121 122
	info->xbdev = dev;
	info->irq = -1;
123
	info->gref = -1;
124 125 126 127 128 129
	snprintf(info->phys, sizeof(info->phys), "xenbus/%s", dev->nodename);

	info->page = (void *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
	if (!info->page)
		goto error_nomem;

130 131
	if (xenbus_scanf(XBT_NIL, dev->otherend, "feature-abs-pointer", "%d", &abs) < 0)
		abs = 0;
132 133 134 135 136 137 138 139
	if (abs) {
		ret = xenbus_printf(XBT_NIL, dev->nodename,
				    "request-abs-pointer", "1");
		if (ret) {
			pr_warning("xenkbd: can't request abs-pointer");
			abs = 0;
		}
	}
140

141 142 143 144 145 146 147 148 149
	/* keyboard */
	kbd = input_allocate_device();
	if (!kbd)
		goto error_nomem;
	kbd->name = "Xen Virtual Keyboard";
	kbd->phys = info->phys;
	kbd->id.bustype = BUS_PCI;
	kbd->id.vendor = 0x5853;
	kbd->id.product = 0xffff;
150 151

	__set_bit(EV_KEY, kbd->evbit);
152
	for (i = KEY_ESC; i < KEY_UNKNOWN; i++)
153
		__set_bit(i, kbd->keybit);
154
	for (i = KEY_OK; i < KEY_MAX; i++)
155
		__set_bit(i, kbd->keybit);
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173

	ret = input_register_device(kbd);
	if (ret) {
		input_free_device(kbd);
		xenbus_dev_fatal(dev, ret, "input_register_device(kbd)");
		goto error;
	}
	info->kbd = kbd;

	/* pointing device */
	ptr = input_allocate_device();
	if (!ptr)
		goto error_nomem;
	ptr->name = "Xen Virtual Pointer";
	ptr->phys = info->phys;
	ptr->id.bustype = BUS_PCI;
	ptr->id.vendor = 0x5853;
	ptr->id.product = 0xfffe;
174 175 176 177 178 179 180 181 182 183 184 185

	if (abs) {
		__set_bit(EV_ABS, ptr->evbit);
		input_set_abs_params(ptr, ABS_X, 0, XENFB_WIDTH, 0, 0);
		input_set_abs_params(ptr, ABS_Y, 0, XENFB_HEIGHT, 0, 0);
	} else {
		input_set_capability(ptr, EV_REL, REL_X);
		input_set_capability(ptr, EV_REL, REL_Y);
	}
	input_set_capability(ptr, EV_REL, REL_WHEEL);

	__set_bit(EV_KEY, ptr->evbit);
186
	for (i = BTN_LEFT; i <= BTN_TASK; i++)
187
		__set_bit(i, ptr->keybit);
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212

	ret = input_register_device(ptr);
	if (ret) {
		input_free_device(ptr);
		xenbus_dev_fatal(dev, ret, "input_register_device(ptr)");
		goto error;
	}
	info->ptr = ptr;

	ret = xenkbd_connect_backend(dev, info);
	if (ret < 0)
		goto error;

	return 0;

 error_nomem:
	ret = -ENOMEM;
	xenbus_dev_fatal(dev, ret, "allocating device memory");
 error:
	xenkbd_remove(dev);
	return ret;
}

static int xenkbd_resume(struct xenbus_device *dev)
{
213
	struct xenkbd_info *info = dev_get_drvdata(&dev->dev);
214 215 216 217 218 219 220 221

	xenkbd_disconnect_backend(info);
	memset(info->page, 0, PAGE_SIZE);
	return xenkbd_connect_backend(dev, info);
}

static int xenkbd_remove(struct xenbus_device *dev)
{
222
	struct xenkbd_info *info = dev_get_drvdata(&dev->dev);
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239

	xenkbd_disconnect_backend(info);
	if (info->kbd)
		input_unregister_device(info->kbd);
	if (info->ptr)
		input_unregister_device(info->ptr);
	free_page((unsigned long)info->page);
	kfree(info);
	return 0;
}

static int xenkbd_connect_backend(struct xenbus_device *dev,
				  struct xenkbd_info *info)
{
	int ret, evtchn;
	struct xenbus_transaction xbt;

240
	ret = gnttab_grant_foreign_access(dev->otherend_id,
241
	                                  virt_to_gfn(info->page), 0);
242 243 244 245
	if (ret < 0)
		return ret;
	info->gref = ret;

246 247
	ret = xenbus_alloc_evtchn(dev, &evtchn);
	if (ret)
248
		goto error_grant;
249 250 251 252
	ret = bind_evtchn_to_irqhandler(evtchn, input_handler,
					0, dev->devicetype, info);
	if (ret < 0) {
		xenbus_dev_fatal(dev, ret, "bind_evtchn_to_irqhandler");
253
		goto error_evtchan;
254 255 256 257 258 259 260
	}
	info->irq = ret;

 again:
	ret = xenbus_transaction_start(&xbt);
	if (ret) {
		xenbus_dev_fatal(dev, ret, "starting transaction");
261
		goto error_irqh;
262 263
	}
	ret = xenbus_printf(xbt, dev->nodename, "page-ref", "%lu",
264
			    virt_to_gfn(info->page));
265 266 267
	if (ret)
		goto error_xenbus;
	ret = xenbus_printf(xbt, dev->nodename, "page-gref", "%u", info->gref);
268 269 270 271 272 273 274 275 276 277 278
	if (ret)
		goto error_xenbus;
	ret = xenbus_printf(xbt, dev->nodename, "event-channel", "%u",
			    evtchn);
	if (ret)
		goto error_xenbus;
	ret = xenbus_transaction_end(xbt, 0);
	if (ret) {
		if (ret == -EAGAIN)
			goto again;
		xenbus_dev_fatal(dev, ret, "completing transaction");
279
		goto error_irqh;
280 281 282 283 284 285 286 287
	}

	xenbus_switch_state(dev, XenbusStateInitialised);
	return 0;

 error_xenbus:
	xenbus_transaction_end(xbt, 1);
	xenbus_dev_fatal(dev, ret, "writing xenstore");
288 289 290 291 292 293
 error_irqh:
	unbind_from_irqhandler(info->irq, info);
	info->irq = -1;
 error_evtchan:
	xenbus_free_evtchn(dev, evtchn);
 error_grant:
294
	gnttab_end_foreign_access(info->gref, 0, 0UL);
295
	info->gref = -1;
296 297 298 299 300 301 302 303
	return ret;
}

static void xenkbd_disconnect_backend(struct xenkbd_info *info)
{
	if (info->irq >= 0)
		unbind_from_irqhandler(info->irq, info);
	info->irq = -1;
304
	if (info->gref >= 0)
305
		gnttab_end_foreign_access(info->gref, 0, 0UL);
306
	info->gref = -1;
307 308 309 310 311
}

static void xenkbd_backend_changed(struct xenbus_device *dev,
				   enum xenbus_state backend_state)
{
312
	struct xenkbd_info *info = dev_get_drvdata(&dev->dev);
313
	int ret, val;
314 315 316 317

	switch (backend_state) {
	case XenbusStateInitialising:
	case XenbusStateInitialised:
318 319
	case XenbusStateReconfiguring:
	case XenbusStateReconfigured:
320 321 322 323 324
	case XenbusStateUnknown:
		break;

	case XenbusStateInitWait:
InitWait:
325 326 327 328 329 330 331 332 333 334 335
		ret = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
				   "feature-abs-pointer", "%d", &val);
		if (ret < 0)
			val = 0;
		if (val) {
			ret = xenbus_printf(XBT_NIL, info->xbdev->nodename,
					    "request-abs-pointer", "1");
			if (ret)
				pr_warning("xenkbd: can't request abs-pointer");
		}

336 337 338 339 340 341 342 343 344 345 346
		xenbus_switch_state(dev, XenbusStateConnected);
		break;

	case XenbusStateConnected:
		/*
		 * Work around xenbus race condition: If backend goes
		 * through InitWait to Connected fast enough, we can
		 * get Connected twice here.
		 */
		if (dev->state != XenbusStateConnected)
			goto InitWait; /* no InitWait seen yet, fudge it */
347 348 349 350 351 352 353 354 355 356

		/* Set input abs params to match backend screen res */
		if (xenbus_scanf(XBT_NIL, info->xbdev->otherend,
				 "width", "%d", &val) > 0)
			input_set_abs_params(info->ptr, ABS_X, 0, val, 0, 0);

		if (xenbus_scanf(XBT_NIL, info->xbdev->otherend,
				 "height", "%d", &val) > 0)
			input_set_abs_params(info->ptr, ABS_Y, 0, val, 0, 0);

357 358
		break;

359 360 361 362
	case XenbusStateClosed:
		if (dev->state == XenbusStateClosed)
			break;
		/* Missed the backend's CLOSING state -- fallthrough */
363 364 365 366 367 368
	case XenbusStateClosing:
		xenbus_frontend_closed(dev);
		break;
	}
}

369
static const struct xenbus_device_id xenkbd_ids[] = {
370 371 372 373
	{ "vkbd" },
	{ "" }
};

374 375
static struct xenbus_driver xenkbd_driver = {
	.ids = xenkbd_ids,
376 377 378 379
	.probe = xenkbd_probe,
	.remove = xenkbd_remove,
	.resume = xenkbd_resume,
	.otherend_changed = xenkbd_backend_changed,
380
};
381 382 383

static int __init xenkbd_init(void)
{
384
	if (!xen_domain())
385 386 387
		return -ENODEV;

	/* Nothing to do if running in dom0. */
388
	if (xen_initial_domain())
389 390
		return -ENODEV;

391 392 393
	if (!xen_has_pv_devices())
		return -ENODEV;

394
	return xenbus_register_frontend(&xenkbd_driver);
395 396 397 398
}

static void __exit xenkbd_cleanup(void)
{
399
	xenbus_unregister_driver(&xenkbd_driver);
400 401 402 403 404
}

module_init(xenkbd_init);
module_exit(xenkbd_cleanup);

405
MODULE_DESCRIPTION("Xen virtual keyboard/pointer device frontend");
406
MODULE_LICENSE("GPL");
407
MODULE_ALIAS("xen:vkbd");