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