evbug.c 3.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/*
 *  Copyright (c) 1999-2001 Vojtech Pavlik
 */

/*
 *  Input driver event debug module - dumps all events into syslog
 */

/*
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * Should you need to contact me, the author, you can do so either by
 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
 */

#include <linux/slab.h>
#include <linux/module.h>
#include <linux/input.h>
#include <linux/init.h>
#include <linux/device.h>

MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
MODULE_DESCRIPTION("Input driver event debug module");
MODULE_LICENSE("GPL");

static void evbug_event(struct input_handle *handle, unsigned int type, unsigned int code, int value)
{
D
Dmitry Torokhov 已提交
41
	printk(KERN_DEBUG "evbug.c: Event. Dev: %s, Type: %d, Code: %d, Value: %d\n",
42
		dev_name(&handle->dev->dev), type, code, value);
L
Linus Torvalds 已提交
43 44
}

45 46
static int evbug_connect(struct input_handler *handler, struct input_dev *dev,
			 const struct input_device_id *id)
L
Linus Torvalds 已提交
47 48
{
	struct input_handle *handle;
49
	int error;
L
Linus Torvalds 已提交
50

51 52 53
	handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
	if (!handle)
		return -ENOMEM;
L
Linus Torvalds 已提交
54 55 56

	handle->dev = dev;
	handle->handler = handler;
57 58 59 60 61
	handle->name = "evbug";

	error = input_register_handle(handle);
	if (error)
		goto err_free_handle;
L
Linus Torvalds 已提交
62

63 64 65
	error = input_open_device(handle);
	if (error)
		goto err_unregister_handle;
L
Linus Torvalds 已提交
66

67
	printk(KERN_DEBUG "evbug.c: Connected device: %s (%s at %s)\n",
68
		dev_name(&dev->dev),
69 70
		dev->name ?: "unknown",
		dev->phys ?: "unknown");
L
Linus Torvalds 已提交
71

72 73 74 75 76 77 78
	return 0;

 err_unregister_handle:
	input_unregister_handle(handle);
 err_free_handle:
	kfree(handle);
	return error;
L
Linus Torvalds 已提交
79 80 81 82
}

static void evbug_disconnect(struct input_handle *handle)
{
83
	printk(KERN_DEBUG "evbug.c: Disconnected device: %s\n",
84
		dev_name(&handle->dev->dev));
L
Linus Torvalds 已提交
85 86

	input_close_device(handle);
87
	input_unregister_handle(handle);
L
Linus Torvalds 已提交
88 89 90
	kfree(handle);
}

D
Dmitry Torokhov 已提交
91
static const struct input_device_id evbug_ids[] = {
L
Linus Torvalds 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
	{ .driver_info = 1 },	/* Matches all devices */
	{ },			/* Terminating zero entry */
};

MODULE_DEVICE_TABLE(input, evbug_ids);

static struct input_handler evbug_handler = {
	.event =	evbug_event,
	.connect =	evbug_connect,
	.disconnect =	evbug_disconnect,
	.name =		"evbug",
	.id_table =	evbug_ids,
};

static int __init evbug_init(void)
{
108
	return input_register_handler(&evbug_handler);
L
Linus Torvalds 已提交
109 110 111 112 113 114 115 116 117
}

static void __exit evbug_exit(void)
{
	input_unregister_handler(&evbug_handler);
}

module_init(evbug_init);
module_exit(evbug_exit);