| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  acpi_system.c - ACPI System Driver ($Revision: 63 $) | 
|  | 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 | *  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. | 
|  | 13 | * | 
|  | 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. | 
|  | 18 | * | 
|  | 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. | 
|  | 22 | * | 
|  | 23 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 
|  | 24 | */ | 
|  | 25 |  | 
|  | 26 | #include <linux/proc_fs.h> | 
|  | 27 | #include <linux/seq_file.h> | 
|  | 28 | #include <linux/init.h> | 
| Akinobu Mita | e108526 | 2008-07-23 21:26:44 -0700 | [diff] [blame] | 29 | #include <linux/string.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <asm/uaccess.h> | 
|  | 31 |  | 
|  | 32 | #include <acpi/acpi_drivers.h> | 
|  | 33 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #define _COMPONENT		ACPI_SYSTEM_COMPONENT | 
| Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 35 | ACPI_MODULE_NAME("system"); | 
| Zhang Rui | 5bb730f | 2007-01-29 11:02:42 +0800 | [diff] [blame] | 36 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #define ACPI_SYSTEM_CLASS		"system" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #define ACPI_SYSTEM_DEVICE_NAME		"System" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 |  | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 40 | u32 acpi_irq_handled; | 
| Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 41 | u32 acpi_irq_not_handled; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 42 |  | 
| Zhang Rui | 5bb730f | 2007-01-29 11:02:42 +0800 | [diff] [blame] | 43 | /* | 
|  | 44 | * Make ACPICA version work as module param | 
|  | 45 | */ | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 46 | static int param_get_acpica_version(char *buffer, struct kernel_param *kp) | 
|  | 47 | { | 
| Zhang Rui | 5bb730f | 2007-01-29 11:02:42 +0800 | [diff] [blame] | 48 | int result; | 
|  | 49 |  | 
|  | 50 | result = sprintf(buffer, "%x", ACPI_CA_VERSION); | 
|  | 51 |  | 
|  | 52 | return result; | 
|  | 53 | } | 
|  | 54 |  | 
|  | 55 | module_param_call(acpica_version, NULL, param_get_acpica_version, NULL, 0444); | 
|  | 56 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | /* -------------------------------------------------------------------------- | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 58 | FS Interface (/sys) | 
|  | 59 | -------------------------------------------------------------------------- */ | 
|  | 60 | static LIST_HEAD(acpi_table_attr_list); | 
| Greg Kroah-Hartman | a77aa28 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 61 | static struct kobject *tables_kobj; | 
| Zhang Rui | 4658e4e | 2009-02-26 11:27:23 +0800 | [diff] [blame] | 62 | static struct kobject *dynamic_tables_kobj; | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 63 |  | 
|  | 64 | struct acpi_table_attr { | 
|  | 65 | struct bin_attribute attr; | 
|  | 66 | char name[8]; | 
|  | 67 | int instance; | 
|  | 68 | struct list_head node; | 
|  | 69 | }; | 
|  | 70 |  | 
|  | 71 | static ssize_t acpi_table_show(struct kobject *kobj, | 
|  | 72 | struct bin_attribute *bin_attr, char *buf, | 
|  | 73 | loff_t offset, size_t count) | 
|  | 74 | { | 
|  | 75 | struct acpi_table_attr *table_attr = | 
|  | 76 | container_of(bin_attr, struct acpi_table_attr, attr); | 
|  | 77 | struct acpi_table_header *table_header = NULL; | 
|  | 78 | acpi_status status; | 
| Peter Gruber | 4feba70 | 2008-10-27 23:59:36 -0400 | [diff] [blame] | 79 | char name[ACPI_NAME_SIZE]; | 
|  | 80 |  | 
|  | 81 | if (strncmp(table_attr->name, "NULL", 4)) | 
|  | 82 | memcpy(name, table_attr->name, ACPI_NAME_SIZE); | 
|  | 83 | else | 
|  | 84 | memcpy(name, "\0\0\0\0", 4); | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 85 |  | 
|  | 86 | status = | 
| Peter Gruber | 4feba70 | 2008-10-27 23:59:36 -0400 | [diff] [blame] | 87 | acpi_get_table(name, table_attr->instance, | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 88 | &table_header); | 
|  | 89 | if (ACPI_FAILURE(status)) | 
|  | 90 | return -ENODEV; | 
|  | 91 |  | 
| Akinobu Mita | 46a21e4 | 2008-06-09 16:22:26 -0700 | [diff] [blame] | 92 | return memory_read_from_buffer(buf, count, &offset, | 
|  | 93 | table_header, table_header->length); | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 94 | } | 
|  | 95 |  | 
|  | 96 | static void acpi_table_attr_init(struct acpi_table_attr *table_attr, | 
|  | 97 | struct acpi_table_header *table_header) | 
|  | 98 | { | 
|  | 99 | struct acpi_table_header *header = NULL; | 
|  | 100 | struct acpi_table_attr *attr = NULL; | 
|  | 101 |  | 
| Peter Gruber | 4feba70 | 2008-10-27 23:59:36 -0400 | [diff] [blame] | 102 | if (table_header->signature[0] != '\0') | 
|  | 103 | memcpy(table_attr->name, table_header->signature, | 
|  | 104 | ACPI_NAME_SIZE); | 
|  | 105 | else | 
|  | 106 | memcpy(table_attr->name, "NULL", 4); | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 107 |  | 
|  | 108 | list_for_each_entry(attr, &acpi_table_attr_list, node) { | 
| Peter Gruber | 4feba70 | 2008-10-27 23:59:36 -0400 | [diff] [blame] | 109 | if (!memcmp(table_attr->name, attr->name, ACPI_NAME_SIZE)) | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 110 | if (table_attr->instance < attr->instance) | 
|  | 111 | table_attr->instance = attr->instance; | 
|  | 112 | } | 
|  | 113 | table_attr->instance++; | 
|  | 114 |  | 
|  | 115 | if (table_attr->instance > 1 || (table_attr->instance == 1 && | 
| Peter Gruber | 4feba70 | 2008-10-27 23:59:36 -0400 | [diff] [blame] | 116 | !acpi_get_table | 
|  | 117 | (table_header->signature, 2, &header))) | 
|  | 118 | sprintf(table_attr->name + ACPI_NAME_SIZE, "%d", | 
|  | 119 | table_attr->instance); | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 120 |  | 
|  | 121 | table_attr->attr.size = 0; | 
|  | 122 | table_attr->attr.read = acpi_table_show; | 
|  | 123 | table_attr->attr.attr.name = table_attr->name; | 
|  | 124 | table_attr->attr.attr.mode = 0444; | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 125 |  | 
|  | 126 | return; | 
|  | 127 | } | 
|  | 128 |  | 
| Zhang Rui | 4658e4e | 2009-02-26 11:27:23 +0800 | [diff] [blame] | 129 | static acpi_status | 
|  | 130 | acpi_sysfs_table_handler(u32 event, void *table, void *context) | 
|  | 131 | { | 
|  | 132 | struct acpi_table_attr *table_attr; | 
|  | 133 |  | 
|  | 134 | switch (event) { | 
|  | 135 | case ACPI_TABLE_EVENT_LOAD: | 
|  | 136 | table_attr = | 
|  | 137 | kzalloc(sizeof(struct acpi_table_attr), GFP_KERNEL); | 
|  | 138 | if (!table_attr) | 
|  | 139 | return AE_NO_MEMORY; | 
|  | 140 |  | 
|  | 141 | acpi_table_attr_init(table_attr, table); | 
|  | 142 | if (sysfs_create_bin_file(dynamic_tables_kobj, | 
|  | 143 | &table_attr->attr)) { | 
|  | 144 | kfree(table_attr); | 
|  | 145 | return AE_ERROR; | 
|  | 146 | } else | 
|  | 147 | list_add_tail(&table_attr->node, | 
|  | 148 | &acpi_table_attr_list); | 
|  | 149 | break; | 
|  | 150 | case ACPI_TABLE_EVENT_UNLOAD: | 
|  | 151 | /* | 
|  | 152 | * we do not need to do anything right now | 
|  | 153 | * because the table is not deleted from the | 
|  | 154 | * global table list when unloading it. | 
|  | 155 | */ | 
|  | 156 | break; | 
|  | 157 | default: | 
|  | 158 | return AE_BAD_PARAMETER; | 
|  | 159 | } | 
|  | 160 | return AE_OK; | 
|  | 161 | } | 
|  | 162 |  | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 163 | static int acpi_system_sysfs_init(void) | 
|  | 164 | { | 
|  | 165 | struct acpi_table_attr *table_attr; | 
|  | 166 | struct acpi_table_header *table_header = NULL; | 
|  | 167 | int table_index = 0; | 
|  | 168 | int result; | 
|  | 169 |  | 
| Greg Kroah-Hartman | a77aa28 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 170 | tables_kobj = kobject_create_and_add("tables", acpi_kobj); | 
|  | 171 | if (!tables_kobj) | 
| Zhang Rui | 4658e4e | 2009-02-26 11:27:23 +0800 | [diff] [blame] | 172 | goto err; | 
|  | 173 |  | 
|  | 174 | dynamic_tables_kobj = kobject_create_and_add("dynamic", tables_kobj); | 
|  | 175 | if (!dynamic_tables_kobj) | 
|  | 176 | goto err_dynamic_tables; | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 177 |  | 
|  | 178 | do { | 
|  | 179 | result = acpi_get_table_by_index(table_index, &table_header); | 
|  | 180 | if (!result) { | 
|  | 181 | table_index++; | 
|  | 182 | table_attr = NULL; | 
|  | 183 | table_attr = | 
|  | 184 | kzalloc(sizeof(struct acpi_table_attr), GFP_KERNEL); | 
|  | 185 | if (!table_attr) | 
|  | 186 | return -ENOMEM; | 
|  | 187 |  | 
|  | 188 | acpi_table_attr_init(table_attr, table_header); | 
|  | 189 | result = | 
| Greg Kroah-Hartman | a77aa28 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 190 | sysfs_create_bin_file(tables_kobj, | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 191 | &table_attr->attr); | 
|  | 192 | if (result) { | 
|  | 193 | kfree(table_attr); | 
|  | 194 | return result; | 
|  | 195 | } else | 
|  | 196 | list_add_tail(&table_attr->node, | 
|  | 197 | &acpi_table_attr_list); | 
|  | 198 | } | 
|  | 199 | } while (!result); | 
| Greg Kroah-Hartman | a77aa28 | 2007-12-17 15:54:39 -0400 | [diff] [blame] | 200 | kobject_uevent(tables_kobj, KOBJ_ADD); | 
| Zhang Rui | 4658e4e | 2009-02-26 11:27:23 +0800 | [diff] [blame] | 201 | kobject_uevent(dynamic_tables_kobj, KOBJ_ADD); | 
|  | 202 | result = acpi_install_table_handler(acpi_sysfs_table_handler, NULL); | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 203 |  | 
| Zhang Rui | 4658e4e | 2009-02-26 11:27:23 +0800 | [diff] [blame] | 204 | return result == AE_OK ? 0 : -EINVAL; | 
|  | 205 | err_dynamic_tables: | 
|  | 206 | kobject_put(tables_kobj); | 
|  | 207 | err: | 
|  | 208 | return -ENOMEM; | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 209 | } | 
|  | 210 |  | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 211 | /* | 
|  | 212 | * Detailed ACPI IRQ counters in /sys/firmware/acpi/interrupts/ | 
|  | 213 | * See Documentation/ABI/testing/sysfs-firmware-acpi | 
|  | 214 | */ | 
|  | 215 |  | 
|  | 216 | #define COUNT_GPE 0 | 
|  | 217 | #define COUNT_SCI 1	/* acpi_irq_handled */ | 
| Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 218 | #define COUNT_SCI_NOT 2	/* acpi_irq_not_handled */ | 
|  | 219 | #define COUNT_ERROR 3	/* other */ | 
|  | 220 | #define NUM_COUNTERS_EXTRA 4 | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 221 |  | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 222 | struct event_counter { | 
|  | 223 | u32 count; | 
|  | 224 | u32 flags; | 
|  | 225 | }; | 
|  | 226 |  | 
|  | 227 | static struct event_counter *all_counters; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 228 | static u32 num_gpes; | 
|  | 229 | static u32 num_counters; | 
|  | 230 | static struct attribute **all_attrs; | 
|  | 231 | static u32 acpi_gpe_count; | 
|  | 232 |  | 
|  | 233 | static struct attribute_group interrupt_stats_attr_group = { | 
|  | 234 | .name = "interrupts", | 
|  | 235 | }; | 
|  | 236 | static struct kobj_attribute *counter_attrs; | 
|  | 237 |  | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 238 | static void delete_gpe_attr_array(void) | 
|  | 239 | { | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 240 | struct event_counter *tmp = all_counters; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 241 |  | 
|  | 242 | all_counters = NULL; | 
|  | 243 | kfree(tmp); | 
|  | 244 |  | 
|  | 245 | if (counter_attrs) { | 
|  | 246 | int i; | 
|  | 247 |  | 
|  | 248 | for (i = 0; i < num_gpes; i++) | 
|  | 249 | kfree(counter_attrs[i].attr.name); | 
|  | 250 |  | 
|  | 251 | kfree(counter_attrs); | 
|  | 252 | } | 
|  | 253 | kfree(all_attrs); | 
|  | 254 |  | 
|  | 255 | return; | 
|  | 256 | } | 
|  | 257 |  | 
|  | 258 | void acpi_os_gpe_count(u32 gpe_number) | 
|  | 259 | { | 
|  | 260 | acpi_gpe_count++; | 
|  | 261 |  | 
|  | 262 | if (!all_counters) | 
|  | 263 | return; | 
|  | 264 |  | 
|  | 265 | if (gpe_number < num_gpes) | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 266 | all_counters[gpe_number].count++; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 267 | else | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 268 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR]. | 
|  | 269 | count++; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 270 |  | 
|  | 271 | return; | 
|  | 272 | } | 
|  | 273 |  | 
|  | 274 | void acpi_os_fixed_event_count(u32 event_number) | 
|  | 275 | { | 
|  | 276 | if (!all_counters) | 
|  | 277 | return; | 
|  | 278 |  | 
|  | 279 | if (event_number < ACPI_NUM_FIXED_EVENTS) | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 280 | all_counters[num_gpes + event_number].count++; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 281 | else | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 282 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR]. | 
|  | 283 | count++; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 284 |  | 
|  | 285 | return; | 
|  | 286 | } | 
|  | 287 |  | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 288 | static int get_status(u32 index, acpi_event_status *status, acpi_handle *handle) | 
|  | 289 | { | 
|  | 290 | int result = 0; | 
|  | 291 |  | 
|  | 292 | if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS) | 
|  | 293 | goto end; | 
|  | 294 |  | 
|  | 295 | if (index < num_gpes) { | 
| Bob Moore | e97d6bf | 2008-12-30 09:45:17 +0800 | [diff] [blame] | 296 | result = acpi_get_gpe_device(index, handle); | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 297 | if (result) { | 
|  | 298 | ACPI_EXCEPTION((AE_INFO, AE_NOT_FOUND, | 
|  | 299 | "Invalid GPE 0x%x\n", index)); | 
|  | 300 | goto end; | 
|  | 301 | } | 
|  | 302 | result = acpi_get_gpe_status(*handle, index, | 
|  | 303 | ACPI_NOT_ISR, status); | 
|  | 304 | } else if (index < (num_gpes + ACPI_NUM_FIXED_EVENTS)) | 
|  | 305 | result = acpi_get_event_status(index - num_gpes, status); | 
|  | 306 |  | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 307 | end: | 
|  | 308 | return result; | 
|  | 309 | } | 
|  | 310 |  | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 311 | static ssize_t counter_show(struct kobject *kobj, | 
|  | 312 | struct kobj_attribute *attr, char *buf) | 
|  | 313 | { | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 314 | int index = attr - counter_attrs; | 
|  | 315 | int size; | 
|  | 316 | acpi_handle handle; | 
|  | 317 | acpi_event_status status; | 
|  | 318 | int result = 0; | 
|  | 319 |  | 
|  | 320 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI].count = | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 321 | acpi_irq_handled; | 
| Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 322 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT].count = | 
|  | 323 | acpi_irq_not_handled; | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 324 | all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count = | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 325 | acpi_gpe_count; | 
|  | 326 |  | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 327 | size = sprintf(buf, "%8d", all_counters[index].count); | 
|  | 328 |  | 
|  | 329 | /* "gpe_all" or "sci" */ | 
|  | 330 | if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS) | 
|  | 331 | goto end; | 
|  | 332 |  | 
|  | 333 | result = get_status(index, &status, &handle); | 
|  | 334 | if (result) | 
|  | 335 | goto end; | 
|  | 336 |  | 
| Zhang Rui | ed206fa | 2008-10-27 14:01:02 -0700 | [diff] [blame] | 337 | if (!(status & ACPI_EVENT_FLAG_HANDLE)) | 
|  | 338 | size += sprintf(buf + size, "	invalid"); | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 339 | else if (status & ACPI_EVENT_FLAG_ENABLED) | 
| Zhang Rui | ed206fa | 2008-10-27 14:01:02 -0700 | [diff] [blame] | 340 | size += sprintf(buf + size, "	enabled"); | 
|  | 341 | else if (status & ACPI_EVENT_FLAG_WAKE_ENABLED) | 
|  | 342 | size += sprintf(buf + size, "	wake_enabled"); | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 343 | else | 
| Zhang Rui | ed206fa | 2008-10-27 14:01:02 -0700 | [diff] [blame] | 344 | size += sprintf(buf + size, "	disabled"); | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 345 |  | 
|  | 346 | end: | 
|  | 347 | size += sprintf(buf + size, "\n"); | 
|  | 348 | return result ? result : size; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 349 | } | 
|  | 350 |  | 
|  | 351 | /* | 
|  | 352 | * counter_set() sets the specified counter. | 
|  | 353 | * setting the total "sci" file to any value clears all counters. | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 354 | * enable/disable/clear a gpe/fixed event in user space. | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 355 | */ | 
|  | 356 | static ssize_t counter_set(struct kobject *kobj, | 
|  | 357 | struct kobj_attribute *attr, const char *buf, size_t size) | 
|  | 358 | { | 
|  | 359 | int index = attr - counter_attrs; | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 360 | acpi_event_status status; | 
|  | 361 | acpi_handle handle; | 
|  | 362 | int result = 0; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 363 |  | 
|  | 364 | if (index == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) { | 
|  | 365 | int i; | 
|  | 366 | for (i = 0; i < num_counters; ++i) | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 367 | all_counters[i].count = 0; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 368 | acpi_gpe_count = 0; | 
|  | 369 | acpi_irq_handled = 0; | 
| Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 370 | acpi_irq_not_handled = 0; | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 371 | goto end; | 
|  | 372 | } | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 373 |  | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 374 | /* show the event status for both GPEs and Fixed Events */ | 
|  | 375 | result = get_status(index, &status, &handle); | 
|  | 376 | if (result) | 
|  | 377 | goto end; | 
|  | 378 |  | 
| Zhang Rui | ed206fa | 2008-10-27 14:01:02 -0700 | [diff] [blame] | 379 | if (!(status & ACPI_EVENT_FLAG_HANDLE)) { | 
| Lin Ming | 55ac9a0 | 2008-09-28 14:51:56 +0800 | [diff] [blame] | 380 | printk(KERN_WARNING PREFIX | 
|  | 381 | "Can not change Invalid GPE/Fixed Event status\n"); | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 382 | return -EINVAL; | 
|  | 383 | } | 
|  | 384 |  | 
|  | 385 | if (index < num_gpes) { | 
|  | 386 | if (!strcmp(buf, "disable\n") && | 
|  | 387 | (status & ACPI_EVENT_FLAG_ENABLED)) | 
| Alexey Starikovskiy | 0b7084a | 2008-10-25 21:48:46 +0400 | [diff] [blame] | 388 | result = acpi_disable_gpe(handle, index); | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 389 | else if (!strcmp(buf, "enable\n") && | 
|  | 390 | !(status & ACPI_EVENT_FLAG_ENABLED)) | 
| Alexey Starikovskiy | 0b7084a | 2008-10-25 21:48:46 +0400 | [diff] [blame] | 391 | result = acpi_enable_gpe(handle, index); | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 392 | else if (!strcmp(buf, "clear\n") && | 
|  | 393 | (status & ACPI_EVENT_FLAG_SET)) | 
|  | 394 | result = acpi_clear_gpe(handle, index, ACPI_NOT_ISR); | 
|  | 395 | else | 
|  | 396 | all_counters[index].count = strtoul(buf, NULL, 0); | 
|  | 397 | } else if (index < num_gpes + ACPI_NUM_FIXED_EVENTS) { | 
|  | 398 | int event = index - num_gpes; | 
|  | 399 | if (!strcmp(buf, "disable\n") && | 
|  | 400 | (status & ACPI_EVENT_FLAG_ENABLED)) | 
|  | 401 | result = acpi_disable_event(event, ACPI_NOT_ISR); | 
|  | 402 | else if (!strcmp(buf, "enable\n") && | 
|  | 403 | !(status & ACPI_EVENT_FLAG_ENABLED)) | 
|  | 404 | result = acpi_enable_event(event, ACPI_NOT_ISR); | 
|  | 405 | else if (!strcmp(buf, "clear\n") && | 
|  | 406 | (status & ACPI_EVENT_FLAG_SET)) | 
|  | 407 | result = acpi_clear_event(event); | 
|  | 408 | else | 
|  | 409 | all_counters[index].count = strtoul(buf, NULL, 0); | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 410 | } else | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 411 | all_counters[index].count = strtoul(buf, NULL, 0); | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 412 |  | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 413 | if (ACPI_FAILURE(result)) | 
|  | 414 | result = -EINVAL; | 
|  | 415 | end: | 
|  | 416 | return result ? result : size; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 417 | } | 
|  | 418 |  | 
|  | 419 | void acpi_irq_stats_init(void) | 
|  | 420 | { | 
|  | 421 | int i; | 
|  | 422 |  | 
|  | 423 | if (all_counters) | 
|  | 424 | return; | 
|  | 425 |  | 
| Bob Moore | e97d6bf | 2008-12-30 09:45:17 +0800 | [diff] [blame] | 426 | num_gpes = acpi_current_gpe_count; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 427 | num_counters = num_gpes + ACPI_NUM_FIXED_EVENTS + NUM_COUNTERS_EXTRA; | 
|  | 428 |  | 
|  | 429 | all_attrs = kzalloc(sizeof(struct attribute *) * (num_counters + 1), | 
|  | 430 | GFP_KERNEL); | 
|  | 431 | if (all_attrs == NULL) | 
|  | 432 | return; | 
|  | 433 |  | 
| Zhang Rui | 71b58cb | 2008-06-20 09:42:47 +0800 | [diff] [blame] | 434 | all_counters = kzalloc(sizeof(struct event_counter) * (num_counters), | 
|  | 435 | GFP_KERNEL); | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 436 | if (all_counters == NULL) | 
|  | 437 | goto fail; | 
|  | 438 |  | 
|  | 439 | counter_attrs = kzalloc(sizeof(struct kobj_attribute) * (num_counters), | 
|  | 440 | GFP_KERNEL); | 
|  | 441 | if (counter_attrs == NULL) | 
|  | 442 | goto fail; | 
|  | 443 |  | 
|  | 444 | for (i = 0; i < num_counters; ++i) { | 
| Johann Felix Soden | c8dc9de | 2008-03-11 16:44:26 +0100 | [diff] [blame] | 445 | char buffer[12]; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 446 | char *name; | 
|  | 447 |  | 
|  | 448 | if (i < num_gpes) | 
|  | 449 | sprintf(buffer, "gpe%02X", i); | 
|  | 450 | else if (i == num_gpes + ACPI_EVENT_PMTIMER) | 
|  | 451 | sprintf(buffer, "ff_pmtimer"); | 
|  | 452 | else if (i == num_gpes + ACPI_EVENT_GLOBAL) | 
|  | 453 | sprintf(buffer, "ff_gbl_lock"); | 
|  | 454 | else if (i == num_gpes + ACPI_EVENT_POWER_BUTTON) | 
|  | 455 | sprintf(buffer, "ff_pwr_btn"); | 
|  | 456 | else if (i == num_gpes + ACPI_EVENT_SLEEP_BUTTON) | 
|  | 457 | sprintf(buffer, "ff_slp_btn"); | 
|  | 458 | else if (i == num_gpes + ACPI_EVENT_RTC) | 
|  | 459 | sprintf(buffer, "ff_rt_clk"); | 
|  | 460 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE) | 
|  | 461 | sprintf(buffer, "gpe_all"); | 
|  | 462 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) | 
|  | 463 | sprintf(buffer, "sci"); | 
| Len Brown | 88bea18 | 2009-04-21 00:35:47 -0400 | [diff] [blame] | 464 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT) | 
|  | 465 | sprintf(buffer, "sci_not"); | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 466 | else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR) | 
|  | 467 | sprintf(buffer, "error"); | 
|  | 468 | else | 
|  | 469 | sprintf(buffer, "bug%02X", i); | 
|  | 470 |  | 
|  | 471 | name = kzalloc(strlen(buffer) + 1, GFP_KERNEL); | 
|  | 472 | if (name == NULL) | 
|  | 473 | goto fail; | 
|  | 474 | strncpy(name, buffer, strlen(buffer) + 1); | 
|  | 475 |  | 
|  | 476 | counter_attrs[i].attr.name = name; | 
|  | 477 | counter_attrs[i].attr.mode = 0644; | 
|  | 478 | counter_attrs[i].show = counter_show; | 
|  | 479 | counter_attrs[i].store = counter_set; | 
|  | 480 |  | 
|  | 481 | all_attrs[i] = &counter_attrs[i].attr; | 
|  | 482 | } | 
|  | 483 |  | 
|  | 484 | interrupt_stats_attr_group.attrs = all_attrs; | 
| Len Brown | b714315 | 2008-02-07 04:24:01 -0500 | [diff] [blame] | 485 | if (!sysfs_create_group(acpi_kobj, &interrupt_stats_attr_group)) | 
|  | 486 | return; | 
| Len Brown | 5229e87 | 2008-02-06 01:26:55 -0500 | [diff] [blame] | 487 |  | 
|  | 488 | fail: | 
|  | 489 | delete_gpe_attr_array(); | 
|  | 490 | return; | 
|  | 491 | } | 
|  | 492 |  | 
|  | 493 | static void __exit interrupt_stats_exit(void) | 
|  | 494 | { | 
|  | 495 | sysfs_remove_group(acpi_kobj, &interrupt_stats_attr_group); | 
|  | 496 |  | 
|  | 497 | delete_gpe_attr_array(); | 
|  | 498 |  | 
|  | 499 | return; | 
|  | 500 | } | 
|  | 501 |  | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 502 | /* -------------------------------------------------------------------------- | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | FS Interface (/proc) | 
|  | 504 | -------------------------------------------------------------------------- */ | 
| Zhang Rui | 5bb730f | 2007-01-29 11:02:42 +0800 | [diff] [blame] | 505 | #ifdef CONFIG_ACPI_PROCFS | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 506 | #define ACPI_SYSTEM_FILE_INFO		"info" | 
|  | 507 | #define ACPI_SYSTEM_FILE_EVENT		"event" | 
|  | 508 | #define ACPI_SYSTEM_FILE_DSDT		"dsdt" | 
|  | 509 | #define ACPI_SYSTEM_FILE_FADT		"fadt" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 511 | static int acpi_system_read_info(struct seq_file *seq, void *offset) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 |  | 
|  | 514 | seq_printf(seq, "version:                 %x\n", ACPI_CA_VERSION); | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 515 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } | 
|  | 517 |  | 
|  | 518 | static int acpi_system_info_open_fs(struct inode *inode, struct file *file) | 
|  | 519 | { | 
|  | 520 | return single_open(file, acpi_system_read_info, PDE(inode)->data); | 
|  | 521 | } | 
|  | 522 |  | 
| Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 523 | static const struct file_operations acpi_system_info_ops = { | 
| Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 524 | .owner = THIS_MODULE, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 525 | .open = acpi_system_info_open_fs, | 
|  | 526 | .read = seq_read, | 
|  | 527 | .llseek = seq_lseek, | 
|  | 528 | .release = single_release, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | }; | 
|  | 530 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 531 | static ssize_t acpi_system_read_dsdt(struct file *, char __user *, size_t, | 
|  | 532 | loff_t *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 |  | 
| Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 534 | static const struct file_operations acpi_system_dsdt_ops = { | 
| Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 535 | .owner = THIS_MODULE, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 536 | .read = acpi_system_read_dsdt, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | }; | 
|  | 538 |  | 
|  | 539 | static ssize_t | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 540 | acpi_system_read_dsdt(struct file *file, | 
|  | 541 | char __user * buffer, size_t count, loff_t * ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 542 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 543 | acpi_status status = AE_OK; | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 544 | struct acpi_table_header *dsdt = NULL; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 545 | ssize_t res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 |  | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 547 | status = acpi_get_table(ACPI_SIG_DSDT, 1, &dsdt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | if (ACPI_FAILURE(status)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 549 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 |  | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 551 | res = simple_read_from_buffer(buffer, count, ppos, dsdt, dsdt->length); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 553 | return res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } | 
|  | 555 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 556 | static ssize_t acpi_system_read_fadt(struct file *, char __user *, size_t, | 
|  | 557 | loff_t *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 |  | 
| Arjan van de Ven | d750803 | 2006-07-04 13:06:00 -0400 | [diff] [blame] | 559 | static const struct file_operations acpi_system_fadt_ops = { | 
| Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 560 | .owner = THIS_MODULE, | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 561 | .read = acpi_system_read_fadt, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | }; | 
|  | 563 |  | 
|  | 564 | static ssize_t | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 565 | acpi_system_read_fadt(struct file *file, | 
|  | 566 | char __user * buffer, size_t count, loff_t * ppos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 568 | acpi_status status = AE_OK; | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 569 | struct acpi_table_header *fadt = NULL; | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 570 | ssize_t res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 |  | 
| Alexey Starikovskiy | ad71860 | 2007-02-02 19:48:19 +0300 | [diff] [blame] | 572 | status = acpi_get_table(ACPI_SIG_FADT, 1, &fadt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | if (ACPI_FAILURE(status)) | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 574 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 |  | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 576 | res = simple_read_from_buffer(buffer, count, ppos, fadt, fadt->length); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 |  | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 578 | return res; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 579 | } | 
|  | 580 |  | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 581 | static int acpi_system_procfs_init(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | { | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 583 | struct proc_dir_entry *entry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | int error = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | /* 'info' [R] */ | 
| Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 587 | entry = proc_create(ACPI_SYSTEM_FILE_INFO, S_IRUGO, acpi_root_dir, | 
|  | 588 | &acpi_system_info_ops); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | if (!entry) | 
|  | 590 | goto Error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 591 |  | 
|  | 592 | /* 'dsdt' [R] */ | 
| Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 593 | entry = proc_create(ACPI_SYSTEM_FILE_DSDT, S_IRUSR, acpi_root_dir, | 
|  | 594 | &acpi_system_dsdt_ops); | 
|  | 595 | if (!entry) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | goto Error; | 
|  | 597 |  | 
|  | 598 | /* 'fadt' [R] */ | 
| Denis V. Lunev | cf7acfa | 2008-04-29 01:02:27 -0700 | [diff] [blame] | 599 | entry = proc_create(ACPI_SYSTEM_FILE_FADT, S_IRUSR, acpi_root_dir, | 
|  | 600 | &acpi_system_fadt_ops); | 
|  | 601 | if (!entry) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | goto Error; | 
|  | 603 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 604 | Done: | 
| Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 605 | return error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 |  | 
| Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 607 | Error: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | remove_proc_entry(ACPI_SYSTEM_FILE_FADT, acpi_root_dir); | 
|  | 609 | remove_proc_entry(ACPI_SYSTEM_FILE_DSDT, acpi_root_dir); | 
|  | 610 | remove_proc_entry(ACPI_SYSTEM_FILE_INFO, acpi_root_dir); | 
|  | 611 |  | 
|  | 612 | error = -EFAULT; | 
|  | 613 | goto Done; | 
|  | 614 | } | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 615 | #else | 
|  | 616 | static int acpi_system_procfs_init(void) | 
|  | 617 | { | 
|  | 618 | return 0; | 
|  | 619 | } | 
|  | 620 | #endif | 
|  | 621 |  | 
| Bjorn Helgaas | 141a0af | 2009-03-24 16:49:58 -0600 | [diff] [blame] | 622 | int __init acpi_system_init(void) | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 623 | { | 
| Bjorn Helgaas | 141a0af | 2009-03-24 16:49:58 -0600 | [diff] [blame] | 624 | int result; | 
| Zhang Rui | d4c5f04 | 2007-06-14 17:43:07 +0800 | [diff] [blame] | 625 |  | 
|  | 626 | result = acpi_system_procfs_init(); | 
|  | 627 | if (result) | 
|  | 628 | return result; | 
|  | 629 |  | 
|  | 630 | result = acpi_system_sysfs_init(); | 
|  | 631 |  | 
|  | 632 | return result; | 
|  | 633 | } |