blob: c8859047acfe0e0dd9cfcef34ea08e6276bea082 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#define _COMPONENT ACPI_SYSTEM_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050035ACPI_MODULE_NAME("system");
Zhang Rui5bb730f2007-01-29 11:02:42 +080036#ifdef MODULE_PARAM_PREFIX
37#undef MODULE_PARAM_PREFIX
38#endif
39#define MODULE_PARAM_PREFIX "acpi."
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define ACPI_SYSTEM_CLASS "system"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define ACPI_SYSTEM_DEVICE_NAME "System"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Len Brown5229e872008-02-06 01:26:55 -050044u32 acpi_irq_handled;
45
Zhang Rui5bb730f2007-01-29 11:02:42 +080046/*
47 * Make ACPICA version work as module param
48 */
Zhang Ruid4c5f042007-06-14 17:43:07 +080049static int param_get_acpica_version(char *buffer, struct kernel_param *kp)
50{
Zhang Rui5bb730f2007-01-29 11:02:42 +080051 int result;
52
53 result = sprintf(buffer, "%x", ACPI_CA_VERSION);
54
55 return result;
56}
57
58module_param_call(acpica_version, NULL, param_get_acpica_version, NULL, 0444);
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/* --------------------------------------------------------------------------
Zhang Ruid4c5f042007-06-14 17:43:07 +080061 FS Interface (/sys)
62 -------------------------------------------------------------------------- */
63static LIST_HEAD(acpi_table_attr_list);
Greg Kroah-Hartmana77aa282007-12-17 15:54:39 -040064static struct kobject *tables_kobj;
Zhang Rui4658e4e2009-02-26 11:27:23 +080065static struct kobject *dynamic_tables_kobj;
Zhang Ruid4c5f042007-06-14 17:43:07 +080066
67struct acpi_table_attr {
68 struct bin_attribute attr;
69 char name[8];
70 int instance;
71 struct list_head node;
72};
73
74static 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 Gruber4feba702008-10-27 23:59:36 -040082 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 Ruid4c5f042007-06-14 17:43:07 +080088
89 status =
Peter Gruber4feba702008-10-27 23:59:36 -040090 acpi_get_table(name, table_attr->instance,
Zhang Ruid4c5f042007-06-14 17:43:07 +080091 &table_header);
92 if (ACPI_FAILURE(status))
93 return -ENODEV;
94
Akinobu Mita46a21e42008-06-09 16:22:26 -070095 return memory_read_from_buffer(buf, count, &offset,
96 table_header, table_header->length);
Zhang Ruid4c5f042007-06-14 17:43:07 +080097}
98
99static 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 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;
127 table_attr->attr.attr.mode = 0444;
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 */
221#define COUNT_ERROR 2 /* other */
222#define NUM_COUNTERS_EXTRA 3
223
Zhang Rui71b58cb2008-06-20 09:42:47 +0800224struct event_counter {
225 u32 count;
226 u32 flags;
227};
228
229static struct event_counter *all_counters;
Len Brown5229e872008-02-06 01:26:55 -0500230static u32 num_gpes;
231static u32 num_counters;
232static struct attribute **all_attrs;
233static u32 acpi_gpe_count;
234
235static struct attribute_group interrupt_stats_attr_group = {
236 .name = "interrupts",
237};
238static struct kobj_attribute *counter_attrs;
239
Len Brown5229e872008-02-06 01:26:55 -0500240static void delete_gpe_attr_array(void)
241{
Zhang Rui71b58cb2008-06-20 09:42:47 +0800242 struct event_counter *tmp = all_counters;
Len Brown5229e872008-02-06 01:26:55 -0500243
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
260void 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 Rui71b58cb2008-06-20 09:42:47 +0800268 all_counters[gpe_number].count++;
Len Brown5229e872008-02-06 01:26:55 -0500269 else
Zhang Rui71b58cb2008-06-20 09:42:47 +0800270 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR].
271 count++;
Len Brown5229e872008-02-06 01:26:55 -0500272
273 return;
274}
275
276void 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 Rui71b58cb2008-06-20 09:42:47 +0800282 all_counters[num_gpes + event_number].count++;
Len Brown5229e872008-02-06 01:26:55 -0500283 else
Zhang Rui71b58cb2008-06-20 09:42:47 +0800284 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR].
285 count++;
Len Brown5229e872008-02-06 01:26:55 -0500286
287 return;
288}
289
Zhang Rui71b58cb2008-06-20 09:42:47 +0800290static 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 Mooree97d6bf2008-12-30 09:45:17 +0800298 result = acpi_get_gpe_device(index, handle);
Zhang Rui71b58cb2008-06-20 09:42:47 +0800299 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 Rui71b58cb2008-06-20 09:42:47 +0800309end:
310 return result;
311}
312
Len Brown5229e872008-02-06 01:26:55 -0500313static ssize_t counter_show(struct kobject *kobj,
314 struct kobj_attribute *attr, char *buf)
315{
Zhang Rui71b58cb2008-06-20 09:42:47 +0800316 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 Brown5229e872008-02-06 01:26:55 -0500323 acpi_irq_handled;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800324 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count =
Len Brown5229e872008-02-06 01:26:55 -0500325 acpi_gpe_count;
326
Zhang Rui71b58cb2008-06-20 09:42:47 +0800327 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 Ruied206fa2008-10-27 14:01:02 -0700337 if (!(status & ACPI_EVENT_FLAG_HANDLE))
338 size += sprintf(buf + size, " invalid");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800339 else if (status & ACPI_EVENT_FLAG_ENABLED)
Zhang Ruied206fa2008-10-27 14:01:02 -0700340 size += sprintf(buf + size, " enabled");
341 else if (status & ACPI_EVENT_FLAG_WAKE_ENABLED)
342 size += sprintf(buf + size, " wake_enabled");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800343 else
Zhang Ruied206fa2008-10-27 14:01:02 -0700344 size += sprintf(buf + size, " disabled");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800345
346end:
347 size += sprintf(buf + size, "\n");
348 return result ? result : size;
Len Brown5229e872008-02-06 01:26:55 -0500349}
350
351/*
352 * counter_set() sets the specified counter.
353 * setting the total "sci" file to any value clears all counters.
Zhang Rui71b58cb2008-06-20 09:42:47 +0800354 * enable/disable/clear a gpe/fixed event in user space.
Len Brown5229e872008-02-06 01:26:55 -0500355 */
356static 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 Rui71b58cb2008-06-20 09:42:47 +0800360 acpi_event_status status;
361 acpi_handle handle;
362 int result = 0;
Len Brown5229e872008-02-06 01:26:55 -0500363
364 if (index == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) {
365 int i;
366 for (i = 0; i < num_counters; ++i)
Zhang Rui71b58cb2008-06-20 09:42:47 +0800367 all_counters[i].count = 0;
Len Brown5229e872008-02-06 01:26:55 -0500368 acpi_gpe_count = 0;
369 acpi_irq_handled = 0;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800370 goto end;
371 }
Len Brown5229e872008-02-06 01:26:55 -0500372
Zhang Rui71b58cb2008-06-20 09:42:47 +0800373 /* 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 Ruied206fa2008-10-27 14:01:02 -0700378 if (!(status & ACPI_EVENT_FLAG_HANDLE)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800379 printk(KERN_WARNING PREFIX
380 "Can not change Invalid GPE/Fixed Event status\n");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800381 return -EINVAL;
382 }
383
384 if (index < num_gpes) {
385 if (!strcmp(buf, "disable\n") &&
386 (status & ACPI_EVENT_FLAG_ENABLED))
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400387 result = acpi_disable_gpe(handle, index);
Zhang Rui71b58cb2008-06-20 09:42:47 +0800388 else if (!strcmp(buf, "enable\n") &&
389 !(status & ACPI_EVENT_FLAG_ENABLED))
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400390 result = acpi_enable_gpe(handle, index);
Zhang Rui71b58cb2008-06-20 09:42:47 +0800391 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 Brown5229e872008-02-06 01:26:55 -0500409 } else
Zhang Rui71b58cb2008-06-20 09:42:47 +0800410 all_counters[index].count = strtoul(buf, NULL, 0);
Len Brown5229e872008-02-06 01:26:55 -0500411
Zhang Rui71b58cb2008-06-20 09:42:47 +0800412 if (ACPI_FAILURE(result))
413 result = -EINVAL;
414end:
415 return result ? result : size;
Len Brown5229e872008-02-06 01:26:55 -0500416}
417
418void acpi_irq_stats_init(void)
419{
420 int i;
421
422 if (all_counters)
423 return;
424
Bob Mooree97d6bf2008-12-30 09:45:17 +0800425 num_gpes = acpi_current_gpe_count;
Len Brown5229e872008-02-06 01:26:55 -0500426 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 Rui71b58cb2008-06-20 09:42:47 +0800433 all_counters = kzalloc(sizeof(struct event_counter) * (num_counters),
434 GFP_KERNEL);
Len Brown5229e872008-02-06 01:26:55 -0500435 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 Sodenc8dc9de2008-03-11 16:44:26 +0100444 char buffer[12];
Len Brown5229e872008-02-06 01:26:55 -0500445 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 Brownb7143152008-02-07 04:24:01 -0500482 if (!sysfs_create_group(acpi_kobj, &interrupt_stats_attr_group))
483 return;
Len Brown5229e872008-02-06 01:26:55 -0500484
485fail:
486 delete_gpe_attr_array();
487 return;
488}
489
490static 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 Ruid4c5f042007-06-14 17:43:07 +0800499/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 FS Interface (/proc)
501 -------------------------------------------------------------------------- */
Zhang Rui5bb730f2007-01-29 11:02:42 +0800502#ifdef CONFIG_ACPI_PROCFS
Zhang Ruid4c5f042007-06-14 17:43:07 +0800503#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 Torvalds1da177e2005-04-16 15:20:36 -0700507
Len Brown4be44fc2005-08-05 00:44:28 -0400508static int acpi_system_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 seq_printf(seq, "version: %x\n", ACPI_CA_VERSION);
Patrick Mocheld550d982006-06-27 00:41:40 -0400512 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515static 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 Vend7508032006-07-04 13:06:00 -0400520static const struct file_operations acpi_system_info_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700521 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400522 .open = acpi_system_info_open_fs,
523 .read = seq_read,
524 .llseek = seq_lseek,
525 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526};
527
Len Brown4be44fc2005-08-05 00:44:28 -0400528static ssize_t acpi_system_read_dsdt(struct file *, char __user *, size_t,
529 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Arjan van de Vend7508032006-07-04 13:06:00 -0400531static const struct file_operations acpi_system_dsdt_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700532 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400533 .read = acpi_system_read_dsdt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534};
535
536static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400537acpi_system_read_dsdt(struct file *file,
538 char __user * buffer, size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Len Brown4be44fc2005-08-05 00:44:28 -0400540 acpi_status status = AE_OK;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300541 struct acpi_table_header *dsdt = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400542 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300544 status = acpi_get_table(ACPI_SIG_DSDT, 1, &dsdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400546 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Zhang Ruid4c5f042007-06-14 17:43:07 +0800548 res = simple_read_from_buffer(buffer, count, ppos, dsdt, dsdt->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Patrick Mocheld550d982006-06-27 00:41:40 -0400550 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Len Brown4be44fc2005-08-05 00:44:28 -0400553static ssize_t acpi_system_read_fadt(struct file *, char __user *, size_t,
554 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Arjan van de Vend7508032006-07-04 13:06:00 -0400556static const struct file_operations acpi_system_fadt_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700557 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400558 .read = acpi_system_read_fadt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559};
560
561static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400562acpi_system_read_fadt(struct file *file,
563 char __user * buffer, size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Len Brown4be44fc2005-08-05 00:44:28 -0400565 acpi_status status = AE_OK;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300566 struct acpi_table_header *fadt = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400567 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300569 status = acpi_get_table(ACPI_SIG_FADT, 1, &fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400571 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Zhang Ruid4c5f042007-06-14 17:43:07 +0800573 res = simple_read_from_buffer(buffer, count, ppos, fadt, fadt->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Patrick Mocheld550d982006-06-27 00:41:40 -0400575 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Zhang Ruid4c5f042007-06-14 17:43:07 +0800578static int acpi_system_procfs_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Len Brown4be44fc2005-08-05 00:44:28 -0400580 struct proc_dir_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700584 entry = proc_create(ACPI_SYSTEM_FILE_INFO, S_IRUGO, acpi_root_dir,
585 &acpi_system_info_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (!entry)
587 goto Error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 /* 'dsdt' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700590 entry = proc_create(ACPI_SYSTEM_FILE_DSDT, S_IRUSR, acpi_root_dir,
591 &acpi_system_dsdt_ops);
592 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 goto Error;
594
595 /* 'fadt' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700596 entry = proc_create(ACPI_SYSTEM_FILE_FADT, S_IRUSR, acpi_root_dir,
597 &acpi_system_fadt_ops);
598 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto Error;
600
Len Brown4be44fc2005-08-05 00:44:28 -0400601 Done:
Patrick Mocheld550d982006-06-27 00:41:40 -0400602 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Len Brown4be44fc2005-08-05 00:44:28 -0400604 Error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 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 Ruid4c5f042007-06-14 17:43:07 +0800612#else
613static int acpi_system_procfs_init(void)
614{
615 return 0;
616}
617#endif
618
619static 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 Torvalds1da177e2005-04-16 15:20:36 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635subsys_initcall(acpi_system_init);