event.c 3.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * event.c - exporting ACPI events via procfs
 *
 *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
 *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
 *
 */

#include <linux/spinlock.h>
#include <linux/proc_fs.h>
#include <linux/init.h>
#include <linux/poll.h>
#include <acpi/acpi_drivers.h>

#define _COMPONENT		ACPI_SYSTEM_COMPONENT
L
Len Brown 已提交
16
ACPI_MODULE_NAME("event")
L
Linus Torvalds 已提交
17 18 19

/* Global vars for handling event proc entry */
static DEFINE_SPINLOCK(acpi_system_event_lock);
L
Len Brown 已提交
20 21 22
int event_is_open = 0;
extern struct list_head acpi_bus_event_list;
extern wait_queue_head_t acpi_bus_event_queue;
L
Linus Torvalds 已提交
23

L
Len Brown 已提交
24
static int acpi_system_open_event(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
25
{
P
Pavel Machek 已提交
26
	spin_lock_irq(&acpi_system_event_lock);
L
Linus Torvalds 已提交
27

P
Pavel Machek 已提交
28
	if (event_is_open)
L
Linus Torvalds 已提交
29 30 31 32
		goto out_busy;

	event_is_open = 1;

P
Pavel Machek 已提交
33
	spin_unlock_irq(&acpi_system_event_lock);
L
Linus Torvalds 已提交
34 35
	return 0;

L
Len Brown 已提交
36
      out_busy:
P
Pavel Machek 已提交
37
	spin_unlock_irq(&acpi_system_event_lock);
L
Linus Torvalds 已提交
38 39 40 41
	return -EBUSY;
}

static ssize_t
L
Len Brown 已提交
42 43
acpi_system_read_event(struct file *file, char __user * buffer, size_t count,
		       loff_t * ppos)
L
Linus Torvalds 已提交
44
{
L
Len Brown 已提交
45 46 47 48 49
	int result = 0;
	struct acpi_bus_event event;
	static char str[ACPI_MAX_STRING];
	static int chars_remaining = 0;
	static char *ptr;
L
Linus Torvalds 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64

	ACPI_FUNCTION_TRACE("acpi_system_read_event");

	if (!chars_remaining) {
		memset(&event, 0, sizeof(struct acpi_bus_event));

		if ((file->f_flags & O_NONBLOCK)
		    && (list_empty(&acpi_bus_event_list)))
			return_VALUE(-EAGAIN);

		result = acpi_bus_receive_event(&event);
		if (result) {
			return_VALUE(-EIO);
		}

L
Len Brown 已提交
65 66 67 68 69 70
		chars_remaining = sprintf(str, "%s %s %08x %08x\n",
					  event.device_class ? event.
					  device_class : "<unknown>",
					  event.bus_id ? event.
					  bus_id : "<unknown>", event.type,
					  event.data);
L
Linus Torvalds 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
		ptr = str;
	}

	if (chars_remaining < count) {
		count = chars_remaining;
	}

	if (copy_to_user(buffer, ptr, count))
		return_VALUE(-EFAULT);

	*ppos += count;
	chars_remaining -= count;
	ptr += count;

	return_VALUE(count);
}

L
Len Brown 已提交
88
static int acpi_system_close_event(struct inode *inode, struct file *file)
L
Linus Torvalds 已提交
89
{
L
Len Brown 已提交
90
	spin_lock_irq(&acpi_system_event_lock);
L
Linus Torvalds 已提交
91
	event_is_open = 0;
L
Len Brown 已提交
92
	spin_unlock_irq(&acpi_system_event_lock);
L
Linus Torvalds 已提交
93 94 95
	return 0;
}

L
Len Brown 已提交
96
static unsigned int acpi_system_poll_event(struct file *file, poll_table * wait)
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104
{
	poll_wait(file, &acpi_bus_event_queue, wait);
	if (!list_empty(&acpi_bus_event_list))
		return POLLIN | POLLRDNORM;
	return 0;
}

static struct file_operations acpi_system_event_ops = {
L
Len Brown 已提交
105 106 107 108
	.open = acpi_system_open_event,
	.read = acpi_system_read_event,
	.release = acpi_system_close_event,
	.poll = acpi_system_poll_event,
L
Linus Torvalds 已提交
109 110 111 112
};

static int __init acpi_event_init(void)
{
L
Len Brown 已提交
113
	struct proc_dir_entry *entry;
L
Linus Torvalds 已提交
114 115 116 117 118 119 120 121 122 123 124 125
	int error = 0;

	ACPI_FUNCTION_TRACE("acpi_event_init");

	if (acpi_disabled)
		return_VALUE(0);

	/* 'event' [R] */
	entry = create_proc_entry("event", S_IRUSR, acpi_root_dir);
	if (entry)
		entry->proc_fops = &acpi_system_event_ops;
	else {
L
Len Brown 已提交
126 127 128
		ACPI_DEBUG_PRINT((ACPI_DB_ERROR,
				  "Unable to create '%s' proc fs entry\n",
				  "event"));
L
Linus Torvalds 已提交
129 130 131 132 133 134
		error = -EFAULT;
	}
	return_VALUE(error);
}

subsys_initcall(acpi_event_init);