⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 input.c

📁 Linux Kernel 2.6.9 for OMAP1710
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * The input core * * Copyright (c) 1999-2002 Vojtech Pavlik *//* * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. */#include <linux/init.h>#include <linux/sched.h>#include <linux/smp_lock.h>#include <linux/input.h>#include <linux/module.h>#include <linux/random.h>#include <linux/major.h>#include <linux/pm.h>#include <linux/proc_fs.h>#include <linux/kmod.h>#include <linux/interrupt.h>#include <linux/poll.h>#include <linux/device.h>#include <linux/devfs_fs_kernel.h>MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");MODULE_DESCRIPTION("Input core");MODULE_LICENSE("GPL");EXPORT_SYMBOL(input_register_device);EXPORT_SYMBOL(input_unregister_device);EXPORT_SYMBOL(input_register_handler);EXPORT_SYMBOL(input_unregister_handler);EXPORT_SYMBOL(input_grab_device);EXPORT_SYMBOL(input_release_device);EXPORT_SYMBOL(input_open_device);EXPORT_SYMBOL(input_close_device);EXPORT_SYMBOL(input_accept_process);EXPORT_SYMBOL(input_flush_device);EXPORT_SYMBOL(input_event);EXPORT_SYMBOL(input_class);#define INPUT_DEVICES	256static LIST_HEAD(input_dev_list);static LIST_HEAD(input_handler_list);static struct input_handler *input_table[8];#ifdef CONFIG_PROC_FSstatic struct proc_dir_entry *proc_bus_input_dir;DECLARE_WAIT_QUEUE_HEAD(input_devices_poll_wait);static int input_devices_state;#endifstatic inline unsigned int ms_to_jiffies(unsigned int ms){        unsigned int j;        j = (ms * HZ + 500) / 1000;        return (j > 0) ? j : 1;}void input_event(struct input_dev *dev, unsigned int type, unsigned int code, int value){	struct input_handle *handle;	if (dev->pm_dev)		pm_access(dev->pm_dev);	if (type > EV_MAX || !test_bit(type, dev->evbit))		return;	add_mouse_randomness((type << 4) ^ code ^ (code >> 4) ^ value);	switch (type) {		case EV_SYN:			switch (code) {				case SYN_CONFIG:					if (dev->event) dev->event(dev, type, code, value);					break;				case SYN_REPORT:					if (dev->sync) return;					dev->sync = 1;					break;			}			break;		case EV_KEY:			if (code > KEY_MAX || !test_bit(code, dev->keybit) || !!test_bit(code, dev->key) == value)				return;			if (value == 2)				break;			change_bit(code, dev->key);			if (test_bit(EV_REP, dev->evbit) && dev->rep[REP_PERIOD] && dev->timer.data && value) {				dev->repeat_key = code;				mod_timer(&dev->timer, jiffies + ms_to_jiffies(dev->rep[REP_DELAY]));			}			break;		case EV_ABS:			if (code > ABS_MAX || !test_bit(code, dev->absbit))				return;			if (dev->absfuzz[code]) {				if ((value > dev->abs[code] - (dev->absfuzz[code] >> 1)) &&				    (value < dev->abs[code] + (dev->absfuzz[code] >> 1)))					return;				if ((value > dev->abs[code] - dev->absfuzz[code]) &&				    (value < dev->abs[code] + dev->absfuzz[code]))					value = (dev->abs[code] * 3 + value) >> 2;				if ((value > dev->abs[code] - (dev->absfuzz[code] << 1)) &&				    (value < dev->abs[code] + (dev->absfuzz[code] << 1)))					value = (dev->abs[code] + value) >> 1;			}			if (dev->abs[code] == value)				return;			dev->abs[code] = value;			break;		case EV_REL:			if (code > REL_MAX || !test_bit(code, dev->relbit) || (value == 0))				return;			break;		case EV_MSC:			if (code > MSC_MAX || !test_bit(code, dev->mscbit))				return;			if (dev->event) dev->event(dev, type, code, value);			break;		case EV_LED:			if (code > LED_MAX || !test_bit(code, dev->ledbit) || !!test_bit(code, dev->led) == value)				return;			change_bit(code, dev->led);			if (dev->event) dev->event(dev, type, code, value);			break;		case EV_SND:			if (code > SND_MAX || !test_bit(code, dev->sndbit))				return;			if (dev->event) dev->event(dev, type, code, value);			break;		case EV_REP:			if (code > REP_MAX || value < 0 || dev->rep[code] == value) return;			dev->rep[code] = value;			if (dev->event) dev->event(dev, type, code, value);			break;		case EV_FF:			if (dev->event) dev->event(dev, type, code, value);			break;	}	if (type != EV_SYN)		dev->sync = 0;	if (dev->grab)		dev->grab->handler->event(dev->grab, type, code, value);	else		list_for_each_entry(handle, &dev->h_list, d_node)			if (handle->open)				handle->handler->event(handle, type, code, value);}static void input_repeat_key(unsigned long data){	struct input_dev *dev = (void *) data;	if (!test_bit(dev->repeat_key, dev->key))		return;	input_event(dev, EV_KEY, dev->repeat_key, 2);	input_sync(dev);	mod_timer(&dev->timer, jiffies + ms_to_jiffies(dev->rep[REP_PERIOD]));}int input_accept_process(struct input_handle *handle, struct file *file){	if (handle->dev->accept)		return handle->dev->accept(handle->dev, file);	return 0;}int input_grab_device(struct input_handle *handle){	if (handle->dev->grab)		return -EBUSY;	handle->dev->grab = handle;	return 0;}void input_release_device(struct input_handle *handle){	if (handle->dev->grab == handle)		handle->dev->grab = NULL;}int input_open_device(struct input_handle *handle){	if (handle->dev->pm_dev)		pm_access(handle->dev->pm_dev);	handle->open++;	if (handle->dev->open)		return handle->dev->open(handle->dev);	return 0;}int input_flush_device(struct input_handle* handle, struct file* file){	if (handle->dev->flush)		return handle->dev->flush(handle->dev, file);	return 0;}void input_close_device(struct input_handle *handle){	input_release_device(handle);	if (handle->dev->pm_dev)		pm_dev_idle(handle->dev->pm_dev);	if (handle->dev->close)		handle->dev->close(handle->dev);	handle->open--;}static void input_link_handle(struct input_handle *handle){	list_add_tail(&handle->d_node, &handle->dev->h_list);	list_add_tail(&handle->h_node, &handle->handler->h_list);}#define MATCH_BIT(bit, max) \		for (i = 0; i < NBITS(max); i++) \			if ((id->bit[i] & dev->bit[i]) != id->bit[i]) \				break; \		if (i != NBITS(max)) \			continue;static struct input_device_id *input_match_device(struct input_device_id *id, struct input_dev *dev){	int i;	for (; id->flags || id->driver_info; id++) {		if (id->flags & INPUT_DEVICE_ID_MATCH_BUS)			if (id->id.bustype != dev->id.bustype)				continue;		if (id->flags & INPUT_DEVICE_ID_MATCH_VENDOR)			if (id->id.vendor != dev->id.vendor)				continue;		if (id->flags & INPUT_DEVICE_ID_MATCH_PRODUCT)			if (id->id.product != dev->id.product)				continue;		if (id->flags & INPUT_DEVICE_ID_MATCH_VERSION)			if (id->id.version != dev->id.version)				continue;		MATCH_BIT(evbit,  EV_MAX);		MATCH_BIT(keybit, KEY_MAX);		MATCH_BIT(relbit, REL_MAX);		MATCH_BIT(absbit, ABS_MAX);		MATCH_BIT(mscbit, MSC_MAX);		MATCH_BIT(ledbit, LED_MAX);		MATCH_BIT(sndbit, SND_MAX);		MATCH_BIT(ffbit,  FF_MAX);		return id;	}	return NULL;}/* * Input hotplugging interface - loading event handlers based on * device bitfields. */#ifdef CONFIG_HOTPLUG/* * Input hotplugging invokes what /proc/sys/kernel/hotplug says * (normally /sbin/hotplug) when input devices get added or removed. * * This invokes a user mode policy agent, typically helping to load driver * or other modules, configure the device, and more.  Drivers can provide * a MODULE_DEVICE_TABLE to help with module loading subtasks. * */#define SPRINTF_BIT_A(bit, name, max) \	do { \		envp[i++] = scratch; \		scratch += sprintf(scratch, name); \		for (j = NBITS(max) - 1; j >= 0; j--) \			if (dev->bit[j]) break; \		for (; j >= 0; j--) \			scratch += sprintf(scratch, "%lx ", dev->bit[j]); \		scratch++; \	} while (0)#define SPRINTF_BIT_A2(bit, name, max, ev) \	do { \		if (test_bit(ev, dev->evbit)) \			SPRINTF_BIT_A(bit, name, max); \	} while (0)static void input_call_hotplug(char *verb, struct input_dev *dev){	char *argv[3], **envp, *buf, *scratch;	int i = 0, j, value;	if (!hotplug_path[0]) {		printk(KERN_ERR "input.c: calling hotplug without a hotplug agent defined\n");		return;	}	if (in_interrupt()) {		printk(KERN_ERR "input.c: calling hotplug from interrupt\n");		return;	}	if (!current->fs->root) {		printk(KERN_WARNING "input.c: calling hotplug without valid filesystem\n");		return;	}	if (!(envp = (char **) kmalloc(20 * sizeof(char *), GFP_KERNEL))) {		printk(KERN_ERR "input.c: not enough memory allocating hotplug environment\n");		return;	}	if (!(buf = kmalloc(1024, GFP_KERNEL))) {		kfree (envp);		printk(KERN_ERR "input.c: not enough memory allocating hotplug environment\n");		return;	}	argv[0] = hotplug_path;	argv[1] = "input";	argv[2] = NULL;	envp[i++] = "HOME=/";	envp[i++] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";	scratch = buf;	envp[i++] = scratch;	scratch += sprintf(scratch, "ACTION=%s", verb) + 1;	envp[i++] = scratch;	scratch += sprintf(scratch, "PRODUCT=%x/%x/%x/%x",		dev->id.bustype, dev->id.vendor, dev->id.product, dev->id.version) + 1;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -