2 * acpi_system.c - ACPI System Driver ($Revision: 63 $)
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 #include <linux/proc_fs.h>
27 #include <linux/seq_file.h>
28 #include <linux/init.h>
29 #include <linux/string.h>
30 #include <asm/uaccess.h>
32 #include <acpi/acpi_drivers.h>
34 #define PREFIX "ACPI: "
36 #define _COMPONENT ACPI_SYSTEM_COMPONENT
37 ACPI_MODULE_NAME("system");
39 #define ACPI_SYSTEM_CLASS "system"
40 #define ACPI_SYSTEM_DEVICE_NAME "System"
43 u32 acpi_irq_not_handled;
46 * Make ACPICA version work as module param
48 static int param_get_acpica_version(char *buffer, struct kernel_param *kp)
52 result = sprintf(buffer, "%x", ACPI_CA_VERSION);
57 module_param_call(acpica_version, NULL, param_get_acpica_version, NULL, 0444);
59 /* --------------------------------------------------------------------------
61 -------------------------------------------------------------------------- */
62 static LIST_HEAD(acpi_table_attr_list);
63 static struct kobject *tables_kobj;
64 static struct kobject *dynamic_tables_kobj;
66 struct acpi_table_attr {
67 struct bin_attribute attr;
70 struct list_head node;
73 static ssize_t acpi_table_show(struct kobject *kobj,
74 struct bin_attribute *bin_attr, char *buf,
75 loff_t offset, size_t count)
77 struct acpi_table_attr *table_attr =
78 container_of(bin_attr, struct acpi_table_attr, attr);
79 struct acpi_table_header *table_header = NULL;
81 char name[ACPI_NAME_SIZE];
83 if (strncmp(table_attr->name, "NULL", 4))
84 memcpy(name, table_attr->name, ACPI_NAME_SIZE);
86 memcpy(name, "\0\0\0\0", 4);
89 acpi_get_table(name, table_attr->instance,
91 if (ACPI_FAILURE(status))
94 return memory_read_from_buffer(buf, count, &offset,
95 table_header, table_header->length);
98 static void acpi_table_attr_init(struct acpi_table_attr *table_attr,
99 struct acpi_table_header *table_header)
101 struct acpi_table_header *header = NULL;
102 struct acpi_table_attr *attr = NULL;
104 if (table_header->signature[0] != '\0')
105 memcpy(table_attr->name, table_header->signature,
108 memcpy(table_attr->name, "NULL", 4);
110 list_for_each_entry(attr, &acpi_table_attr_list, node) {
111 if (!memcmp(table_attr->name, attr->name, ACPI_NAME_SIZE))
112 if (table_attr->instance < attr->instance)
113 table_attr->instance = attr->instance;
115 table_attr->instance++;
117 if (table_attr->instance > 1 || (table_attr->instance == 1 &&
119 (table_header->signature, 2, &header)))
120 sprintf(table_attr->name + ACPI_NAME_SIZE, "%d",
121 table_attr->instance);
123 table_attr->attr.size = 0;
124 table_attr->attr.read = acpi_table_show;
125 table_attr->attr.attr.name = table_attr->name;
126 table_attr->attr.attr.mode = 0400;
132 acpi_sysfs_table_handler(u32 event, void *table, void *context)
134 struct acpi_table_attr *table_attr;
137 case ACPI_TABLE_EVENT_LOAD:
139 kzalloc(sizeof(struct acpi_table_attr), GFP_KERNEL);
143 acpi_table_attr_init(table_attr, table);
144 if (sysfs_create_bin_file(dynamic_tables_kobj,
145 &table_attr->attr)) {
149 list_add_tail(&table_attr->node,
150 &acpi_table_attr_list);
152 case ACPI_TABLE_EVENT_UNLOAD:
154 * we do not need to do anything right now
155 * because the table is not deleted from the
156 * global table list when unloading it.
160 return AE_BAD_PARAMETER;
165 static int acpi_system_sysfs_init(void)
167 struct acpi_table_attr *table_attr;
168 struct acpi_table_header *table_header = NULL;
172 tables_kobj = kobject_create_and_add("tables", acpi_kobj);
176 dynamic_tables_kobj = kobject_create_and_add("dynamic", tables_kobj);
177 if (!dynamic_tables_kobj)
178 goto err_dynamic_tables;
181 result = acpi_get_table_by_index(table_index, &table_header);
186 kzalloc(sizeof(struct acpi_table_attr), GFP_KERNEL);
190 acpi_table_attr_init(table_attr, table_header);
192 sysfs_create_bin_file(tables_kobj,
198 list_add_tail(&table_attr->node,
199 &acpi_table_attr_list);
202 kobject_uevent(tables_kobj, KOBJ_ADD);
203 kobject_uevent(dynamic_tables_kobj, KOBJ_ADD);
204 result = acpi_install_table_handler(acpi_sysfs_table_handler, NULL);
206 return result == AE_OK ? 0 : -EINVAL;
208 kobject_put(tables_kobj);
214 * Detailed ACPI IRQ counters in /sys/firmware/acpi/interrupts/
215 * See Documentation/ABI/testing/sysfs-firmware-acpi
219 #define COUNT_SCI 1 /* acpi_irq_handled */
220 #define COUNT_SCI_NOT 2 /* acpi_irq_not_handled */
221 #define COUNT_ERROR 3 /* other */
222 #define NUM_COUNTERS_EXTRA 4
224 struct event_counter {
229 static struct event_counter *all_counters;
231 static u32 num_counters;
232 static struct attribute **all_attrs;
233 static u32 acpi_gpe_count;
235 static struct attribute_group interrupt_stats_attr_group = {
236 .name = "interrupts",
238 static struct kobj_attribute *counter_attrs;
240 static void delete_gpe_attr_array(void)
242 struct event_counter *tmp = all_counters;
250 for (i = 0; i < num_gpes; i++)
251 kfree(counter_attrs[i].attr.name);
253 kfree(counter_attrs);
260 void acpi_os_gpe_count(u32 gpe_number)
267 if (gpe_number < num_gpes)
268 all_counters[gpe_number].count++;
270 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR].
276 void acpi_os_fixed_event_count(u32 event_number)
281 if (event_number < ACPI_NUM_FIXED_EVENTS)
282 all_counters[num_gpes + event_number].count++;
284 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR].
290 static int get_status(u32 index, acpi_event_status *status, acpi_handle *handle)
294 if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
297 if (index < num_gpes) {
298 result = acpi_get_gpe_device(index, handle);
300 ACPI_EXCEPTION((AE_INFO, AE_NOT_FOUND,
301 "Invalid GPE 0x%x\n", index));
304 result = acpi_get_gpe_status(*handle, index,
305 ACPI_NOT_ISR, status);
306 } else if (index < (num_gpes + ACPI_NUM_FIXED_EVENTS))
307 result = acpi_get_event_status(index - num_gpes, status);
313 static ssize_t counter_show(struct kobject *kobj,
314 struct kobj_attribute *attr, char *buf)
316 int index = attr - counter_attrs;
319 acpi_event_status status;
322 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI].count =
324 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT].count =
325 acpi_irq_not_handled;
326 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count =
329 size = sprintf(buf, "%8d", all_counters[index].count);
331 /* "gpe_all" or "sci" */
332 if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
335 result = get_status(index, &status, &handle);
339 if (!(status & ACPI_EVENT_FLAG_HANDLE))
340 size += sprintf(buf + size, " invalid");
341 else if (status & ACPI_EVENT_FLAG_ENABLED)
342 size += sprintf(buf + size, " enabled");
343 else if (status & ACPI_EVENT_FLAG_WAKE_ENABLED)
344 size += sprintf(buf + size, " wake_enabled");
346 size += sprintf(buf + size, " disabled");
349 size += sprintf(buf + size, "\n");
350 return result ? result : size;
354 * counter_set() sets the specified counter.
355 * setting the total "sci" file to any value clears all counters.
356 * enable/disable/clear a gpe/fixed event in user space.
358 static ssize_t counter_set(struct kobject *kobj,
359 struct kobj_attribute *attr, const char *buf, size_t size)
361 int index = attr - counter_attrs;
362 acpi_event_status status;
366 if (index == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) {
368 for (i = 0; i < num_counters; ++i)
369 all_counters[i].count = 0;
371 acpi_irq_handled = 0;
372 acpi_irq_not_handled = 0;
376 /* show the event status for both GPEs and Fixed Events */
377 result = get_status(index, &status, &handle);
381 if (!(status & ACPI_EVENT_FLAG_HANDLE)) {
382 printk(KERN_WARNING PREFIX
383 "Can not change Invalid GPE/Fixed Event status\n");
387 if (index < num_gpes) {
388 if (!strcmp(buf, "disable\n") &&
389 (status & ACPI_EVENT_FLAG_ENABLED))
390 result = acpi_disable_gpe(handle, index);
391 else if (!strcmp(buf, "enable\n") &&
392 !(status & ACPI_EVENT_FLAG_ENABLED))
393 result = acpi_enable_gpe(handle, index);
394 else if (!strcmp(buf, "clear\n") &&
395 (status & ACPI_EVENT_FLAG_SET))
396 result = acpi_clear_gpe(handle, index, ACPI_NOT_ISR);
398 all_counters[index].count = strtoul(buf, NULL, 0);
399 } else if (index < num_gpes + ACPI_NUM_FIXED_EVENTS) {
400 int event = index - num_gpes;
401 if (!strcmp(buf, "disable\n") &&
402 (status & ACPI_EVENT_FLAG_ENABLED))
403 result = acpi_disable_event(event, ACPI_NOT_ISR);
404 else if (!strcmp(buf, "enable\n") &&
405 !(status & ACPI_EVENT_FLAG_ENABLED))
406 result = acpi_enable_event(event, ACPI_NOT_ISR);
407 else if (!strcmp(buf, "clear\n") &&
408 (status & ACPI_EVENT_FLAG_SET))
409 result = acpi_clear_event(event);
411 all_counters[index].count = strtoul(buf, NULL, 0);
413 all_counters[index].count = strtoul(buf, NULL, 0);
415 if (ACPI_FAILURE(result))
418 return result ? result : size;
421 void acpi_irq_stats_init(void)
428 num_gpes = acpi_current_gpe_count;
429 num_counters = num_gpes + ACPI_NUM_FIXED_EVENTS + NUM_COUNTERS_EXTRA;
431 all_attrs = kzalloc(sizeof(struct attribute *) * (num_counters + 1),
433 if (all_attrs == NULL)
436 all_counters = kzalloc(sizeof(struct event_counter) * (num_counters),
438 if (all_counters == NULL)
441 counter_attrs = kzalloc(sizeof(struct kobj_attribute) * (num_counters),
443 if (counter_attrs == NULL)
446 for (i = 0; i < num_counters; ++i) {
451 sprintf(buffer, "gpe%02X", i);
452 else if (i == num_gpes + ACPI_EVENT_PMTIMER)
453 sprintf(buffer, "ff_pmtimer");
454 else if (i == num_gpes + ACPI_EVENT_GLOBAL)
455 sprintf(buffer, "ff_gbl_lock");
456 else if (i == num_gpes + ACPI_EVENT_POWER_BUTTON)
457 sprintf(buffer, "ff_pwr_btn");
458 else if (i == num_gpes + ACPI_EVENT_SLEEP_BUTTON)
459 sprintf(buffer, "ff_slp_btn");
460 else if (i == num_gpes + ACPI_EVENT_RTC)
461 sprintf(buffer, "ff_rt_clk");
462 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE)
463 sprintf(buffer, "gpe_all");
464 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI)
465 sprintf(buffer, "sci");
466 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT)
467 sprintf(buffer, "sci_not");
468 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR)
469 sprintf(buffer, "error");
471 sprintf(buffer, "bug%02X", i);
473 name = kzalloc(strlen(buffer) + 1, GFP_KERNEL);
476 strncpy(name, buffer, strlen(buffer) + 1);
478 counter_attrs[i].attr.name = name;
479 counter_attrs[i].attr.mode = 0644;
480 counter_attrs[i].show = counter_show;
481 counter_attrs[i].store = counter_set;
483 all_attrs[i] = &counter_attrs[i].attr;
486 interrupt_stats_attr_group.attrs = all_attrs;
487 if (!sysfs_create_group(acpi_kobj, &interrupt_stats_attr_group))
491 delete_gpe_attr_array();
495 static void __exit interrupt_stats_exit(void)
497 sysfs_remove_group(acpi_kobj, &interrupt_stats_attr_group);
499 delete_gpe_attr_array();
504 /* --------------------------------------------------------------------------
506 -------------------------------------------------------------------------- */
507 #ifdef CONFIG_ACPI_PROCFS
508 #define ACPI_SYSTEM_FILE_INFO "info"
509 #define ACPI_SYSTEM_FILE_EVENT "event"
510 #define ACPI_SYSTEM_FILE_DSDT "dsdt"
511 #define ACPI_SYSTEM_FILE_FADT "fadt"
513 static int acpi_system_read_info(struct seq_file *seq, void *offset)
516 seq_printf(seq, "version: %x\n", ACPI_CA_VERSION);
520 static int acpi_system_info_open_fs(struct inode *inode, struct file *file)
522 return single_open(file, acpi_system_read_info, PDE(inode)->data);
525 static const struct file_operations acpi_system_info_ops = {
526 .owner = THIS_MODULE,
527 .open = acpi_system_info_open_fs,
530 .release = single_release,
533 static ssize_t acpi_system_read_dsdt(struct file *, char __user *, size_t,
536 static const struct file_operations acpi_system_dsdt_ops = {
537 .owner = THIS_MODULE,
538 .read = acpi_system_read_dsdt,
542 acpi_system_read_dsdt(struct file *file,
543 char __user * buffer, size_t count, loff_t * ppos)
545 acpi_status status = AE_OK;
546 struct acpi_table_header *dsdt = NULL;
549 status = acpi_get_table(ACPI_SIG_DSDT, 1, &dsdt);
550 if (ACPI_FAILURE(status))
553 res = simple_read_from_buffer(buffer, count, ppos, dsdt, dsdt->length);
558 static ssize_t acpi_system_read_fadt(struct file *, char __user *, size_t,
561 static const struct file_operations acpi_system_fadt_ops = {
562 .owner = THIS_MODULE,
563 .read = acpi_system_read_fadt,
567 acpi_system_read_fadt(struct file *file,
568 char __user * buffer, size_t count, loff_t * ppos)
570 acpi_status status = AE_OK;
571 struct acpi_table_header *fadt = NULL;
574 status = acpi_get_table(ACPI_SIG_FADT, 1, &fadt);
575 if (ACPI_FAILURE(status))
578 res = simple_read_from_buffer(buffer, count, ppos, fadt, fadt->length);
583 static int acpi_system_procfs_init(void)
585 struct proc_dir_entry *entry;
589 entry = proc_create(ACPI_SYSTEM_FILE_INFO, S_IRUGO, acpi_root_dir,
590 &acpi_system_info_ops);
595 entry = proc_create(ACPI_SYSTEM_FILE_DSDT, S_IRUSR, acpi_root_dir,
596 &acpi_system_dsdt_ops);
601 entry = proc_create(ACPI_SYSTEM_FILE_FADT, S_IRUSR, acpi_root_dir,
602 &acpi_system_fadt_ops);
610 remove_proc_entry(ACPI_SYSTEM_FILE_FADT, acpi_root_dir);
611 remove_proc_entry(ACPI_SYSTEM_FILE_DSDT, acpi_root_dir);
612 remove_proc_entry(ACPI_SYSTEM_FILE_INFO, acpi_root_dir);
618 static int acpi_system_procfs_init(void)
624 int __init acpi_system_init(void)
628 result = acpi_system_procfs_init();
632 result = acpi_system_sysfs_init();