| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * event.c - exporting ACPI events via procfs | 
 | 3 |  * | 
 | 4 |  *  Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com> | 
 | 5 |  *  Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com> | 
 | 6 |  * | 
 | 7 |  */ | 
 | 8 |  | 
 | 9 | #include <linux/spinlock.h> | 
 | 10 | #include <linux/proc_fs.h> | 
 | 11 | #include <linux/init.h> | 
 | 12 | #include <linux/poll.h> | 
 | 13 | #include <acpi/acpi_drivers.h> | 
 | 14 |  | 
 | 15 | #define _COMPONENT		ACPI_SYSTEM_COMPONENT | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 16 | ACPI_MODULE_NAME("event") | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 |  | 
 | 18 | /* Global vars for handling event proc entry */ | 
 | 19 | static DEFINE_SPINLOCK(acpi_system_event_lock); | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 20 | int event_is_open = 0; | 
 | 21 | extern struct list_head acpi_bus_event_list; | 
 | 22 | extern wait_queue_head_t acpi_bus_event_queue; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 24 | static int acpi_system_open_event(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | { | 
| Pavel Machek | c65ade4 | 2005-08-05 00:37:45 -0400 | [diff] [blame] | 26 | 	spin_lock_irq(&acpi_system_event_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 |  | 
| Pavel Machek | c65ade4 | 2005-08-05 00:37:45 -0400 | [diff] [blame] | 28 | 	if (event_is_open) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | 		goto out_busy; | 
 | 30 |  | 
 | 31 | 	event_is_open = 1; | 
 | 32 |  | 
| Pavel Machek | c65ade4 | 2005-08-05 00:37:45 -0400 | [diff] [blame] | 33 | 	spin_unlock_irq(&acpi_system_event_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | 	return 0; | 
 | 35 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 36 |       out_busy: | 
| Pavel Machek | c65ade4 | 2005-08-05 00:37:45 -0400 | [diff] [blame] | 37 | 	spin_unlock_irq(&acpi_system_event_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | 	return -EBUSY; | 
 | 39 | } | 
 | 40 |  | 
 | 41 | static ssize_t | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 42 | acpi_system_read_event(struct file *file, char __user * buffer, size_t count, | 
 | 43 | 		       loff_t * ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 45 | 	int result = 0; | 
 | 46 | 	struct acpi_bus_event event; | 
 | 47 | 	static char str[ACPI_MAX_STRING]; | 
 | 48 | 	static int chars_remaining = 0; | 
 | 49 | 	static char *ptr; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 |  | 
 | 52 | 	if (!chars_remaining) { | 
 | 53 | 		memset(&event, 0, sizeof(struct acpi_bus_event)); | 
 | 54 |  | 
 | 55 | 		if ((file->f_flags & O_NONBLOCK) | 
 | 56 | 		    && (list_empty(&acpi_bus_event_list))) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 57 | 			return -EAGAIN; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 |  | 
 | 59 | 		result = acpi_bus_receive_event(&event); | 
| Pavel Machek | 5cc9eee | 2005-10-17 16:43:31 -0700 | [diff] [blame] | 60 | 		if (result) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 61 | 			return result; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 63 | 		chars_remaining = sprintf(str, "%s %s %08x %08x\n", | 
 | 64 | 					  event.device_class ? event. | 
 | 65 | 					  device_class : "<unknown>", | 
 | 66 | 					  event.bus_id ? event. | 
 | 67 | 					  bus_id : "<unknown>", event.type, | 
 | 68 | 					  event.data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | 		ptr = str; | 
 | 70 | 	} | 
 | 71 |  | 
 | 72 | 	if (chars_remaining < count) { | 
 | 73 | 		count = chars_remaining; | 
 | 74 | 	} | 
 | 75 |  | 
 | 76 | 	if (copy_to_user(buffer, ptr, count)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 77 | 		return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 |  | 
 | 79 | 	*ppos += count; | 
 | 80 | 	chars_remaining -= count; | 
 | 81 | 	ptr += count; | 
 | 82 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 83 | 	return count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | } | 
 | 85 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 86 | static int acpi_system_close_event(struct inode *inode, struct file *file) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 88 | 	spin_lock_irq(&acpi_system_event_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | 	event_is_open = 0; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 90 | 	spin_unlock_irq(&acpi_system_event_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | 	return 0; | 
 | 92 | } | 
 | 93 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 94 | static unsigned int acpi_system_poll_event(struct file *file, poll_table * wait) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { | 
 | 96 | 	poll_wait(file, &acpi_bus_event_queue, wait); | 
 | 97 | 	if (!list_empty(&acpi_bus_event_list)) | 
 | 98 | 		return POLLIN | POLLRDNORM; | 
 | 99 | 	return 0; | 
 | 100 | } | 
 | 101 |  | 
| Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 102 | static const struct file_operations acpi_system_event_ops = { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 103 | 	.open = acpi_system_open_event, | 
 | 104 | 	.read = acpi_system_read_event, | 
 | 105 | 	.release = acpi_system_close_event, | 
 | 106 | 	.poll = acpi_system_poll_event, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | }; | 
 | 108 |  | 
 | 109 | static int __init acpi_event_init(void) | 
 | 110 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 111 | 	struct proc_dir_entry *entry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | 	int error = 0; | 
 | 113 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 |  | 
 | 115 | 	if (acpi_disabled) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 116 | 		return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 |  | 
 | 118 | 	/* 'event' [R] */ | 
 | 119 | 	entry = create_proc_entry("event", S_IRUSR, acpi_root_dir); | 
 | 120 | 	if (entry) | 
 | 121 | 		entry->proc_fops = &acpi_system_event_ops; | 
 | 122 | 	else { | 
| Thomas Renninger | a6fc672 | 2006-06-26 23:58:43 -0400 | [diff] [blame] | 123 | 		error = -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | 	} | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 125 | 	return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } | 
 | 127 |  | 
 | 128 | subsys_initcall(acpi_event_init); |