blob: 743f2445e2a13f48ce549c8a87e18063d17f84e5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Mitae108526e2008-07-23 21:26:44 -070029#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
31
32#include <acpi/acpi_drivers.h>
33
Len Browna192a952009-07-28 16:45:54 -040034#define PREFIX "ACPI: "
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define _COMPONENT ACPI_SYSTEM_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050037ACPI_MODULE_NAME("system");
Zhang Rui5bb730f2007-01-29 11:02:42 +080038
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#define ACPI_SYSTEM_CLASS "system"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define ACPI_SYSTEM_DEVICE_NAME "System"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Len Brown5229e872008-02-06 01:26:55 -050042u32 acpi_irq_handled;
Len Brown88bea182009-04-21 00:35:47 -040043u32 acpi_irq_not_handled;
Len Brown5229e872008-02-06 01:26:55 -050044
Zhang Rui5bb730f2007-01-29 11:02:42 +080045/*
46 * Make ACPICA version work as module param
47 */
Zhang Ruid4c5f042007-06-14 17:43:07 +080048static int param_get_acpica_version(char *buffer, struct kernel_param *kp)
49{
Zhang Rui5bb730f2007-01-29 11:02:42 +080050 int result;
51
52 result = sprintf(buffer, "%x", ACPI_CA_VERSION);
53
54 return result;
55}
56
57module_param_call(acpica_version, NULL, param_get_acpica_version, NULL, 0444);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/* --------------------------------------------------------------------------
Zhang Ruid4c5f042007-06-14 17:43:07 +080060 FS Interface (/sys)
61 -------------------------------------------------------------------------- */
62static LIST_HEAD(acpi_table_attr_list);
Greg Kroah-Hartmana77aa282007-12-17 15:54:39 -040063static struct kobject *tables_kobj;
Zhang Rui4658e4e2009-02-26 11:27:23 +080064static struct kobject *dynamic_tables_kobj;
Zhang Ruid4c5f042007-06-14 17:43:07 +080065
66struct acpi_table_attr {
67 struct bin_attribute attr;
68 char name[8];
69 int instance;
70 struct list_head node;
71};
72
73static ssize_t acpi_table_show(struct kobject *kobj,
74 struct bin_attribute *bin_attr, char *buf,
75 loff_t offset, size_t count)
76{
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;
80 acpi_status status;
Peter Gruber4feba702008-10-27 23:59:36 -040081 char name[ACPI_NAME_SIZE];
82
83 if (strncmp(table_attr->name, "NULL", 4))
84 memcpy(name, table_attr->name, ACPI_NAME_SIZE);
85 else
86 memcpy(name, "\0\0\0\0", 4);
Zhang Ruid4c5f042007-06-14 17:43:07 +080087
88 status =
Peter Gruber4feba702008-10-27 23:59:36 -040089 acpi_get_table(name, table_attr->instance,
Zhang Ruid4c5f042007-06-14 17:43:07 +080090 &table_header);
91 if (ACPI_FAILURE(status))
92 return -ENODEV;
93
Akinobu Mita46a21e42008-06-09 16:22:26 -070094 return memory_read_from_buffer(buf, count, &offset,
95 table_header, table_header->length);
Zhang Ruid4c5f042007-06-14 17:43:07 +080096}
97
98static void acpi_table_attr_init(struct acpi_table_attr *table_attr,
99 struct acpi_table_header *table_header)
100{
101 struct acpi_table_header *header = NULL;
102 struct acpi_table_attr *attr = NULL;
103
Eric W. Biedermana07e4152010-02-11 15:23:05 -0800104 sysfs_attr_init(&table_attr->attr.attr);
Peter Gruber4feba702008-10-27 23:59:36 -0400105 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 Ruid4c5f042007-06-14 17:43:07 +0800110
111 list_for_each_entry(attr, &acpi_table_attr_list, node) {
Peter Gruber4feba702008-10-27 23:59:36 -0400112 if (!memcmp(table_attr->name, attr->name, ACPI_NAME_SIZE))
Zhang Ruid4c5f042007-06-14 17:43:07 +0800113 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 Gruber4feba702008-10-27 23:59:36 -0400119 !acpi_get_table
120 (table_header->signature, 2, &header)))
121 sprintf(table_attr->name + ACPI_NAME_SIZE, "%d",
122 table_attr->instance);
Zhang Ruid4c5f042007-06-14 17:43:07 +0800123
124 table_attr->attr.size = 0;
125 table_attr->attr.read = acpi_table_show;
126 table_attr->attr.attr.name = table_attr->name;
Len Brownd0006f32009-07-30 16:00:53 -0400127 table_attr->attr.attr.mode = 0400;
Zhang Ruid4c5f042007-06-14 17:43:07 +0800128
129 return;
130}
131
Zhang Rui4658e4e2009-02-26 11:27:23 +0800132static acpi_status
133acpi_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 Ruid4c5f042007-06-14 17:43:07 +0800166static 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-Hartmana77aa282007-12-17 15:54:39 -0400173 tables_kobj = kobject_create_and_add("tables", acpi_kobj);
174 if (!tables_kobj)
Zhang Rui4658e4e2009-02-26 11:27:23 +0800175 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 Ruid4c5f042007-06-14 17:43:07 +0800180
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-Hartmana77aa282007-12-17 15:54:39 -0400193 sysfs_create_bin_file(tables_kobj,
Zhang Ruid4c5f042007-06-14 17:43:07 +0800194 &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-Hartmana77aa282007-12-17 15:54:39 -0400203 kobject_uevent(tables_kobj, KOBJ_ADD);
Zhang Rui4658e4e2009-02-26 11:27:23 +0800204 kobject_uevent(dynamic_tables_kobj, KOBJ_ADD);
205 result = acpi_install_table_handler(acpi_sysfs_table_handler, NULL);
Zhang Ruid4c5f042007-06-14 17:43:07 +0800206
Zhang Rui4658e4e2009-02-26 11:27:23 +0800207 return result == AE_OK ? 0 : -EINVAL;
208err_dynamic_tables:
209 kobject_put(tables_kobj);
210err:
211 return -ENOMEM;
Zhang Ruid4c5f042007-06-14 17:43:07 +0800212}
213
Len Brown5229e872008-02-06 01:26:55 -0500214/*
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 */
Len Brown88bea182009-04-21 00:35:47 -0400221#define COUNT_SCI_NOT 2 /* acpi_irq_not_handled */
222#define COUNT_ERROR 3 /* other */
223#define NUM_COUNTERS_EXTRA 4
Len Brown5229e872008-02-06 01:26:55 -0500224
Zhang Rui71b58cb2008-06-20 09:42:47 +0800225struct event_counter {
226 u32 count;
227 u32 flags;
228};
229
230static struct event_counter *all_counters;
Len Brown5229e872008-02-06 01:26:55 -0500231static u32 num_gpes;
232static u32 num_counters;
233static struct attribute **all_attrs;
234static u32 acpi_gpe_count;
235
236static struct attribute_group interrupt_stats_attr_group = {
237 .name = "interrupts",
238};
239static struct kobj_attribute *counter_attrs;
240
Len Brown5229e872008-02-06 01:26:55 -0500241static void delete_gpe_attr_array(void)
242{
Zhang Rui71b58cb2008-06-20 09:42:47 +0800243 struct event_counter *tmp = all_counters;
Len Brown5229e872008-02-06 01:26:55 -0500244
245 all_counters = NULL;
246 kfree(tmp);
247
248 if (counter_attrs) {
249 int i;
250
251 for (i = 0; i < num_gpes; i++)
252 kfree(counter_attrs[i].attr.name);
253
254 kfree(counter_attrs);
255 }
256 kfree(all_attrs);
257
258 return;
259}
260
261void acpi_os_gpe_count(u32 gpe_number)
262{
263 acpi_gpe_count++;
264
265 if (!all_counters)
266 return;
267
268 if (gpe_number < num_gpes)
Zhang Rui71b58cb2008-06-20 09:42:47 +0800269 all_counters[gpe_number].count++;
Len Brown5229e872008-02-06 01:26:55 -0500270 else
Zhang Rui71b58cb2008-06-20 09:42:47 +0800271 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR].
272 count++;
Len Brown5229e872008-02-06 01:26:55 -0500273
274 return;
275}
276
277void acpi_os_fixed_event_count(u32 event_number)
278{
279 if (!all_counters)
280 return;
281
282 if (event_number < ACPI_NUM_FIXED_EVENTS)
Zhang Rui71b58cb2008-06-20 09:42:47 +0800283 all_counters[num_gpes + event_number].count++;
Len Brown5229e872008-02-06 01:26:55 -0500284 else
Zhang Rui71b58cb2008-06-20 09:42:47 +0800285 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR].
286 count++;
Len Brown5229e872008-02-06 01:26:55 -0500287
288 return;
289}
290
Zhang Rui71b58cb2008-06-20 09:42:47 +0800291static int get_status(u32 index, acpi_event_status *status, acpi_handle *handle)
292{
293 int result = 0;
294
295 if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
296 goto end;
297
298 if (index < num_gpes) {
Bob Mooree97d6bf2008-12-30 09:45:17 +0800299 result = acpi_get_gpe_device(index, handle);
Zhang Rui71b58cb2008-06-20 09:42:47 +0800300 if (result) {
301 ACPI_EXCEPTION((AE_INFO, AE_NOT_FOUND,
302 "Invalid GPE 0x%x\n", index));
303 goto end;
304 }
305 result = acpi_get_gpe_status(*handle, index,
306 ACPI_NOT_ISR, status);
307 } else if (index < (num_gpes + ACPI_NUM_FIXED_EVENTS))
308 result = acpi_get_event_status(index - num_gpes, status);
309
Zhang Rui71b58cb2008-06-20 09:42:47 +0800310end:
311 return result;
312}
313
Len Brown5229e872008-02-06 01:26:55 -0500314static ssize_t counter_show(struct kobject *kobj,
315 struct kobj_attribute *attr, char *buf)
316{
Zhang Rui71b58cb2008-06-20 09:42:47 +0800317 int index = attr - counter_attrs;
318 int size;
319 acpi_handle handle;
320 acpi_event_status status;
321 int result = 0;
322
323 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI].count =
Len Brown5229e872008-02-06 01:26:55 -0500324 acpi_irq_handled;
Len Brown88bea182009-04-21 00:35:47 -0400325 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT].count =
326 acpi_irq_not_handled;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800327 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count =
Len Brown5229e872008-02-06 01:26:55 -0500328 acpi_gpe_count;
329
Zhang Rui71b58cb2008-06-20 09:42:47 +0800330 size = sprintf(buf, "%8d", all_counters[index].count);
331
332 /* "gpe_all" or "sci" */
333 if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
334 goto end;
335
336 result = get_status(index, &status, &handle);
337 if (result)
338 goto end;
339
Zhang Ruied206fa2008-10-27 14:01:02 -0700340 if (!(status & ACPI_EVENT_FLAG_HANDLE))
341 size += sprintf(buf + size, " invalid");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800342 else if (status & ACPI_EVENT_FLAG_ENABLED)
Zhang Ruied206fa2008-10-27 14:01:02 -0700343 size += sprintf(buf + size, " enabled");
344 else if (status & ACPI_EVENT_FLAG_WAKE_ENABLED)
345 size += sprintf(buf + size, " wake_enabled");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800346 else
Zhang Ruied206fa2008-10-27 14:01:02 -0700347 size += sprintf(buf + size, " disabled");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800348
349end:
350 size += sprintf(buf + size, "\n");
351 return result ? result : size;
Len Brown5229e872008-02-06 01:26:55 -0500352}
353
354/*
355 * counter_set() sets the specified counter.
356 * setting the total "sci" file to any value clears all counters.
Zhang Rui71b58cb2008-06-20 09:42:47 +0800357 * enable/disable/clear a gpe/fixed event in user space.
Len Brown5229e872008-02-06 01:26:55 -0500358 */
359static ssize_t counter_set(struct kobject *kobj,
360 struct kobj_attribute *attr, const char *buf, size_t size)
361{
362 int index = attr - counter_attrs;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800363 acpi_event_status status;
364 acpi_handle handle;
365 int result = 0;
Len Brown5229e872008-02-06 01:26:55 -0500366
367 if (index == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) {
368 int i;
369 for (i = 0; i < num_counters; ++i)
Zhang Rui71b58cb2008-06-20 09:42:47 +0800370 all_counters[i].count = 0;
Len Brown5229e872008-02-06 01:26:55 -0500371 acpi_gpe_count = 0;
372 acpi_irq_handled = 0;
Len Brown88bea182009-04-21 00:35:47 -0400373 acpi_irq_not_handled = 0;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800374 goto end;
375 }
Len Brown5229e872008-02-06 01:26:55 -0500376
Zhang Rui71b58cb2008-06-20 09:42:47 +0800377 /* show the event status for both GPEs and Fixed Events */
378 result = get_status(index, &status, &handle);
379 if (result)
380 goto end;
381
Zhang Ruied206fa2008-10-27 14:01:02 -0700382 if (!(status & ACPI_EVENT_FLAG_HANDLE)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800383 printk(KERN_WARNING PREFIX
384 "Can not change Invalid GPE/Fixed Event status\n");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800385 return -EINVAL;
386 }
387
388 if (index < num_gpes) {
389 if (!strcmp(buf, "disable\n") &&
390 (status & ACPI_EVENT_FLAG_ENABLED))
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100391 result = acpi_set_gpe(handle, index, ACPI_GPE_DISABLE);
Zhang Rui71b58cb2008-06-20 09:42:47 +0800392 else if (!strcmp(buf, "enable\n") &&
393 !(status & ACPI_EVENT_FLAG_ENABLED))
Rafael J. Wysocki9630bdd2010-02-17 23:41:07 +0100394 result = acpi_set_gpe(handle, index, ACPI_GPE_ENABLE);
Zhang Rui71b58cb2008-06-20 09:42:47 +0800395 else if (!strcmp(buf, "clear\n") &&
396 (status & ACPI_EVENT_FLAG_SET))
397 result = acpi_clear_gpe(handle, index, ACPI_NOT_ISR);
398 else
399 all_counters[index].count = strtoul(buf, NULL, 0);
400 } else if (index < num_gpes + ACPI_NUM_FIXED_EVENTS) {
401 int event = index - num_gpes;
402 if (!strcmp(buf, "disable\n") &&
403 (status & ACPI_EVENT_FLAG_ENABLED))
404 result = acpi_disable_event(event, ACPI_NOT_ISR);
405 else if (!strcmp(buf, "enable\n") &&
406 !(status & ACPI_EVENT_FLAG_ENABLED))
407 result = acpi_enable_event(event, ACPI_NOT_ISR);
408 else if (!strcmp(buf, "clear\n") &&
409 (status & ACPI_EVENT_FLAG_SET))
410 result = acpi_clear_event(event);
411 else
412 all_counters[index].count = strtoul(buf, NULL, 0);
Len Brown5229e872008-02-06 01:26:55 -0500413 } else
Zhang Rui71b58cb2008-06-20 09:42:47 +0800414 all_counters[index].count = strtoul(buf, NULL, 0);
Len Brown5229e872008-02-06 01:26:55 -0500415
Zhang Rui71b58cb2008-06-20 09:42:47 +0800416 if (ACPI_FAILURE(result))
417 result = -EINVAL;
418end:
419 return result ? result : size;
Len Brown5229e872008-02-06 01:26:55 -0500420}
421
422void acpi_irq_stats_init(void)
423{
424 int i;
425
426 if (all_counters)
427 return;
428
Bob Mooree97d6bf2008-12-30 09:45:17 +0800429 num_gpes = acpi_current_gpe_count;
Len Brown5229e872008-02-06 01:26:55 -0500430 num_counters = num_gpes + ACPI_NUM_FIXED_EVENTS + NUM_COUNTERS_EXTRA;
431
432 all_attrs = kzalloc(sizeof(struct attribute *) * (num_counters + 1),
433 GFP_KERNEL);
434 if (all_attrs == NULL)
435 return;
436
Zhang Rui71b58cb2008-06-20 09:42:47 +0800437 all_counters = kzalloc(sizeof(struct event_counter) * (num_counters),
438 GFP_KERNEL);
Len Brown5229e872008-02-06 01:26:55 -0500439 if (all_counters == NULL)
440 goto fail;
441
442 counter_attrs = kzalloc(sizeof(struct kobj_attribute) * (num_counters),
443 GFP_KERNEL);
444 if (counter_attrs == NULL)
445 goto fail;
446
447 for (i = 0; i < num_counters; ++i) {
Johann Felix Sodenc8dc9de2008-03-11 16:44:26 +0100448 char buffer[12];
Len Brown5229e872008-02-06 01:26:55 -0500449 char *name;
450
451 if (i < num_gpes)
452 sprintf(buffer, "gpe%02X", i);
453 else if (i == num_gpes + ACPI_EVENT_PMTIMER)
454 sprintf(buffer, "ff_pmtimer");
455 else if (i == num_gpes + ACPI_EVENT_GLOBAL)
456 sprintf(buffer, "ff_gbl_lock");
457 else if (i == num_gpes + ACPI_EVENT_POWER_BUTTON)
458 sprintf(buffer, "ff_pwr_btn");
459 else if (i == num_gpes + ACPI_EVENT_SLEEP_BUTTON)
460 sprintf(buffer, "ff_slp_btn");
461 else if (i == num_gpes + ACPI_EVENT_RTC)
462 sprintf(buffer, "ff_rt_clk");
463 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE)
464 sprintf(buffer, "gpe_all");
465 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI)
466 sprintf(buffer, "sci");
Len Brown88bea182009-04-21 00:35:47 -0400467 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT)
468 sprintf(buffer, "sci_not");
Len Brown5229e872008-02-06 01:26:55 -0500469 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR)
470 sprintf(buffer, "error");
471 else
472 sprintf(buffer, "bug%02X", i);
473
474 name = kzalloc(strlen(buffer) + 1, GFP_KERNEL);
475 if (name == NULL)
476 goto fail;
477 strncpy(name, buffer, strlen(buffer) + 1);
478
Eric W. Biedermana07e4152010-02-11 15:23:05 -0800479 sysfs_attr_init(&counter_attrs[i].attr);
Len Brown5229e872008-02-06 01:26:55 -0500480 counter_attrs[i].attr.name = name;
481 counter_attrs[i].attr.mode = 0644;
482 counter_attrs[i].show = counter_show;
483 counter_attrs[i].store = counter_set;
484
485 all_attrs[i] = &counter_attrs[i].attr;
486 }
487
488 interrupt_stats_attr_group.attrs = all_attrs;
Len Brownb7143152008-02-07 04:24:01 -0500489 if (!sysfs_create_group(acpi_kobj, &interrupt_stats_attr_group))
490 return;
Len Brown5229e872008-02-06 01:26:55 -0500491
492fail:
493 delete_gpe_attr_array();
494 return;
495}
496
497static void __exit interrupt_stats_exit(void)
498{
499 sysfs_remove_group(acpi_kobj, &interrupt_stats_attr_group);
500
501 delete_gpe_attr_array();
502
503 return;
504}
505
Zhang Ruid4c5f042007-06-14 17:43:07 +0800506/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 FS Interface (/proc)
508 -------------------------------------------------------------------------- */
Zhang Rui5bb730f2007-01-29 11:02:42 +0800509#ifdef CONFIG_ACPI_PROCFS
Zhang Ruid4c5f042007-06-14 17:43:07 +0800510#define ACPI_SYSTEM_FILE_INFO "info"
511#define ACPI_SYSTEM_FILE_EVENT "event"
512#define ACPI_SYSTEM_FILE_DSDT "dsdt"
513#define ACPI_SYSTEM_FILE_FADT "fadt"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Len Brown4be44fc2005-08-05 00:44:28 -0400515static int acpi_system_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 seq_printf(seq, "version: %x\n", ACPI_CA_VERSION);
Patrick Mocheld550d982006-06-27 00:41:40 -0400519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520}
521
522static int acpi_system_info_open_fs(struct inode *inode, struct file *file)
523{
524 return single_open(file, acpi_system_read_info, PDE(inode)->data);
525}
526
Arjan van de Vend7508032006-07-04 13:06:00 -0400527static const struct file_operations acpi_system_info_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700528 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400529 .open = acpi_system_info_open_fs,
530 .read = seq_read,
531 .llseek = seq_lseek,
532 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533};
534
Len Brown4be44fc2005-08-05 00:44:28 -0400535static ssize_t acpi_system_read_dsdt(struct file *, char __user *, size_t,
536 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Arjan van de Vend7508032006-07-04 13:06:00 -0400538static const struct file_operations acpi_system_dsdt_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700539 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400540 .read = acpi_system_read_dsdt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541};
542
543static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400544acpi_system_read_dsdt(struct file *file,
545 char __user * buffer, size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Len Brown4be44fc2005-08-05 00:44:28 -0400547 acpi_status status = AE_OK;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300548 struct acpi_table_header *dsdt = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400549 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300551 status = acpi_get_table(ACPI_SIG_DSDT, 1, &dsdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400553 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Zhang Ruid4c5f042007-06-14 17:43:07 +0800555 res = simple_read_from_buffer(buffer, count, ppos, dsdt, dsdt->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Patrick Mocheld550d982006-06-27 00:41:40 -0400557 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Len Brown4be44fc2005-08-05 00:44:28 -0400560static ssize_t acpi_system_read_fadt(struct file *, char __user *, size_t,
561 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Arjan van de Vend7508032006-07-04 13:06:00 -0400563static const struct file_operations acpi_system_fadt_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700564 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400565 .read = acpi_system_read_fadt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566};
567
568static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400569acpi_system_read_fadt(struct file *file,
570 char __user * buffer, size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Len Brown4be44fc2005-08-05 00:44:28 -0400572 acpi_status status = AE_OK;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300573 struct acpi_table_header *fadt = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400574 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300576 status = acpi_get_table(ACPI_SIG_FADT, 1, &fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400578 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Zhang Ruid4c5f042007-06-14 17:43:07 +0800580 res = simple_read_from_buffer(buffer, count, ppos, fadt, fadt->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Patrick Mocheld550d982006-06-27 00:41:40 -0400582 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Zhang Ruid4c5f042007-06-14 17:43:07 +0800585static int acpi_system_procfs_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Len Brown4be44fc2005-08-05 00:44:28 -0400587 struct proc_dir_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700591 entry = proc_create(ACPI_SYSTEM_FILE_INFO, S_IRUGO, acpi_root_dir,
592 &acpi_system_info_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (!entry)
594 goto Error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 /* 'dsdt' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700597 entry = proc_create(ACPI_SYSTEM_FILE_DSDT, S_IRUSR, acpi_root_dir,
598 &acpi_system_dsdt_ops);
599 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 goto Error;
601
602 /* 'fadt' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700603 entry = proc_create(ACPI_SYSTEM_FILE_FADT, S_IRUSR, acpi_root_dir,
604 &acpi_system_fadt_ops);
605 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 goto Error;
607
Len Brown4be44fc2005-08-05 00:44:28 -0400608 Done:
Patrick Mocheld550d982006-06-27 00:41:40 -0400609 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Len Brown4be44fc2005-08-05 00:44:28 -0400611 Error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 remove_proc_entry(ACPI_SYSTEM_FILE_FADT, acpi_root_dir);
613 remove_proc_entry(ACPI_SYSTEM_FILE_DSDT, acpi_root_dir);
614 remove_proc_entry(ACPI_SYSTEM_FILE_INFO, acpi_root_dir);
615
616 error = -EFAULT;
617 goto Done;
618}
Zhang Ruid4c5f042007-06-14 17:43:07 +0800619#else
620static int acpi_system_procfs_init(void)
621{
622 return 0;
623}
624#endif
625
Bjorn Helgaas141a0af2009-03-24 16:49:58 -0600626int __init acpi_system_init(void)
Zhang Ruid4c5f042007-06-14 17:43:07 +0800627{
Bjorn Helgaas141a0af2009-03-24 16:49:58 -0600628 int result;
Zhang Ruid4c5f042007-06-14 17:43:07 +0800629
630 result = acpi_system_procfs_init();
631 if (result)
632 return result;
633
634 result = acpi_system_sysfs_init();
635
636 return result;
637}