blob: 6e4107f824039bdee65174c38dbcce06672ee119 [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 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
Peter Gruber4feba702008-10-27 23:59:36 -0400104 if (table_header->signature[0] != '\0')
105 memcpy(table_attr->name, table_header->signature,
106 ACPI_NAME_SIZE);
107 else
108 memcpy(table_attr->name, "NULL", 4);
Zhang Ruid4c5f042007-06-14 17:43:07 +0800109
110 list_for_each_entry(attr, &acpi_table_attr_list, node) {
Peter Gruber4feba702008-10-27 23:59:36 -0400111 if (!memcmp(table_attr->name, attr->name, ACPI_NAME_SIZE))
Zhang Ruid4c5f042007-06-14 17:43:07 +0800112 if (table_attr->instance < attr->instance)
113 table_attr->instance = attr->instance;
114 }
115 table_attr->instance++;
116
117 if (table_attr->instance > 1 || (table_attr->instance == 1 &&
Peter Gruber4feba702008-10-27 23:59:36 -0400118 !acpi_get_table
119 (table_header->signature, 2, &header)))
120 sprintf(table_attr->name + ACPI_NAME_SIZE, "%d",
121 table_attr->instance);
Zhang Ruid4c5f042007-06-14 17:43:07 +0800122
123 table_attr->attr.size = 0;
124 table_attr->attr.read = acpi_table_show;
125 table_attr->attr.attr.name = table_attr->name;
126 table_attr->attr.attr.mode = 0444;
Zhang Ruid4c5f042007-06-14 17:43:07 +0800127
128 return;
129}
130
131static int acpi_system_sysfs_init(void)
132{
133 struct acpi_table_attr *table_attr;
134 struct acpi_table_header *table_header = NULL;
135 int table_index = 0;
136 int result;
137
Greg Kroah-Hartmana77aa282007-12-17 15:54:39 -0400138 tables_kobj = kobject_create_and_add("tables", acpi_kobj);
139 if (!tables_kobj)
140 return -ENOMEM;
Zhang Ruid4c5f042007-06-14 17:43:07 +0800141
142 do {
143 result = acpi_get_table_by_index(table_index, &table_header);
144 if (!result) {
145 table_index++;
146 table_attr = NULL;
147 table_attr =
148 kzalloc(sizeof(struct acpi_table_attr), GFP_KERNEL);
149 if (!table_attr)
150 return -ENOMEM;
151
152 acpi_table_attr_init(table_attr, table_header);
153 result =
Greg Kroah-Hartmana77aa282007-12-17 15:54:39 -0400154 sysfs_create_bin_file(tables_kobj,
Zhang Ruid4c5f042007-06-14 17:43:07 +0800155 &table_attr->attr);
156 if (result) {
157 kfree(table_attr);
158 return result;
159 } else
160 list_add_tail(&table_attr->node,
161 &acpi_table_attr_list);
162 }
163 } while (!result);
Greg Kroah-Hartmana77aa282007-12-17 15:54:39 -0400164 kobject_uevent(tables_kobj, KOBJ_ADD);
Zhang Ruid4c5f042007-06-14 17:43:07 +0800165
166 return 0;
167}
168
Len Brown5229e872008-02-06 01:26:55 -0500169/*
170 * Detailed ACPI IRQ counters in /sys/firmware/acpi/interrupts/
171 * See Documentation/ABI/testing/sysfs-firmware-acpi
172 */
173
174#define COUNT_GPE 0
175#define COUNT_SCI 1 /* acpi_irq_handled */
176#define COUNT_ERROR 2 /* other */
177#define NUM_COUNTERS_EXTRA 3
178
Zhang Rui71b58cb2008-06-20 09:42:47 +0800179struct event_counter {
180 u32 count;
181 u32 flags;
182};
183
184static struct event_counter *all_counters;
Len Brown5229e872008-02-06 01:26:55 -0500185static u32 num_gpes;
186static u32 num_counters;
187static struct attribute **all_attrs;
188static u32 acpi_gpe_count;
189
190static struct attribute_group interrupt_stats_attr_group = {
191 .name = "interrupts",
192};
193static struct kobj_attribute *counter_attrs;
194
195static int count_num_gpes(void)
196{
197 int count = 0;
198 struct acpi_gpe_xrupt_info *gpe_xrupt_info;
199 struct acpi_gpe_block_info *gpe_block;
200 acpi_cpu_flags flags;
201
202 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
203
204 gpe_xrupt_info = acpi_gbl_gpe_xrupt_list_head;
205 while (gpe_xrupt_info) {
206 gpe_block = gpe_xrupt_info->gpe_block_list_head;
207 while (gpe_block) {
208 count += gpe_block->register_count *
209 ACPI_GPE_REGISTER_WIDTH;
210 gpe_block = gpe_block->next;
211 }
212 gpe_xrupt_info = gpe_xrupt_info->next;
213 }
214 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
215
216 return count;
217}
218
Zhang Rui71b58cb2008-06-20 09:42:47 +0800219static int get_gpe_device(int index, acpi_handle *handle)
220{
221 struct acpi_gpe_xrupt_info *gpe_xrupt_info;
222 struct acpi_gpe_block_info *gpe_block;
223 acpi_cpu_flags flags;
224 struct acpi_namespace_node *node;
225
226 flags = acpi_os_acquire_lock(acpi_gbl_gpe_lock);
227
228 gpe_xrupt_info = acpi_gbl_gpe_xrupt_list_head;
229 while (gpe_xrupt_info) {
230 gpe_block = gpe_xrupt_info->gpe_block_list_head;
231 node = gpe_block->node;
232 while (gpe_block) {
233 index -= gpe_block->register_count *
234 ACPI_GPE_REGISTER_WIDTH;
235 if (index < 0) {
236 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
237 /* return NULL if it's FADT GPE */
238 if (node->type != ACPI_TYPE_DEVICE)
239 *handle = NULL;
240 else
241 *handle = node;
242 return 0;
243 }
244 node = gpe_block->node;
245 gpe_block = gpe_block->next;
246 }
247 gpe_xrupt_info = gpe_xrupt_info->next;
248 }
249 acpi_os_release_lock(acpi_gbl_gpe_lock, flags);
250
251 return -ENODEV;
252}
253
Len Brown5229e872008-02-06 01:26:55 -0500254static void delete_gpe_attr_array(void)
255{
Zhang Rui71b58cb2008-06-20 09:42:47 +0800256 struct event_counter *tmp = all_counters;
Len Brown5229e872008-02-06 01:26:55 -0500257
258 all_counters = NULL;
259 kfree(tmp);
260
261 if (counter_attrs) {
262 int i;
263
264 for (i = 0; i < num_gpes; i++)
265 kfree(counter_attrs[i].attr.name);
266
267 kfree(counter_attrs);
268 }
269 kfree(all_attrs);
270
271 return;
272}
273
274void acpi_os_gpe_count(u32 gpe_number)
275{
276 acpi_gpe_count++;
277
278 if (!all_counters)
279 return;
280
281 if (gpe_number < num_gpes)
Zhang Rui71b58cb2008-06-20 09:42:47 +0800282 all_counters[gpe_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
290void acpi_os_fixed_event_count(u32 event_number)
291{
292 if (!all_counters)
293 return;
294
295 if (event_number < ACPI_NUM_FIXED_EVENTS)
Zhang Rui71b58cb2008-06-20 09:42:47 +0800296 all_counters[num_gpes + event_number].count++;
Len Brown5229e872008-02-06 01:26:55 -0500297 else
Zhang Rui71b58cb2008-06-20 09:42:47 +0800298 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR].
299 count++;
Len Brown5229e872008-02-06 01:26:55 -0500300
301 return;
302}
303
Zhang Rui71b58cb2008-06-20 09:42:47 +0800304static int get_status(u32 index, acpi_event_status *status, acpi_handle *handle)
305{
306 int result = 0;
307
308 if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
309 goto end;
310
311 if (index < num_gpes) {
312 result = get_gpe_device(index, handle);
313 if (result) {
314 ACPI_EXCEPTION((AE_INFO, AE_NOT_FOUND,
315 "Invalid GPE 0x%x\n", index));
316 goto end;
317 }
318 result = acpi_get_gpe_status(*handle, index,
319 ACPI_NOT_ISR, status);
320 } else if (index < (num_gpes + ACPI_NUM_FIXED_EVENTS))
321 result = acpi_get_event_status(index - num_gpes, status);
322
Zhang Rui71b58cb2008-06-20 09:42:47 +0800323end:
324 return result;
325}
326
Len Brown5229e872008-02-06 01:26:55 -0500327static ssize_t counter_show(struct kobject *kobj,
328 struct kobj_attribute *attr, char *buf)
329{
Zhang Rui71b58cb2008-06-20 09:42:47 +0800330 int index = attr - counter_attrs;
331 int size;
332 acpi_handle handle;
333 acpi_event_status status;
334 int result = 0;
335
336 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI].count =
Len Brown5229e872008-02-06 01:26:55 -0500337 acpi_irq_handled;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800338 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count =
Len Brown5229e872008-02-06 01:26:55 -0500339 acpi_gpe_count;
340
Zhang Rui71b58cb2008-06-20 09:42:47 +0800341 size = sprintf(buf, "%8d", all_counters[index].count);
342
343 /* "gpe_all" or "sci" */
344 if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
345 goto end;
346
347 result = get_status(index, &status, &handle);
348 if (result)
349 goto end;
350
Zhang Ruied206fa2008-10-27 14:01:02 -0700351 if (!(status & ACPI_EVENT_FLAG_HANDLE))
352 size += sprintf(buf + size, " invalid");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800353 else if (status & ACPI_EVENT_FLAG_ENABLED)
Zhang Ruied206fa2008-10-27 14:01:02 -0700354 size += sprintf(buf + size, " enabled");
355 else if (status & ACPI_EVENT_FLAG_WAKE_ENABLED)
356 size += sprintf(buf + size, " wake_enabled");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800357 else
Zhang Ruied206fa2008-10-27 14:01:02 -0700358 size += sprintf(buf + size, " disabled");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800359
360end:
361 size += sprintf(buf + size, "\n");
362 return result ? result : size;
Len Brown5229e872008-02-06 01:26:55 -0500363}
364
365/*
366 * counter_set() sets the specified counter.
367 * setting the total "sci" file to any value clears all counters.
Zhang Rui71b58cb2008-06-20 09:42:47 +0800368 * enable/disable/clear a gpe/fixed event in user space.
Len Brown5229e872008-02-06 01:26:55 -0500369 */
370static ssize_t counter_set(struct kobject *kobj,
371 struct kobj_attribute *attr, const char *buf, size_t size)
372{
373 int index = attr - counter_attrs;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800374 acpi_event_status status;
375 acpi_handle handle;
376 int result = 0;
Len Brown5229e872008-02-06 01:26:55 -0500377
378 if (index == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) {
379 int i;
380 for (i = 0; i < num_counters; ++i)
Zhang Rui71b58cb2008-06-20 09:42:47 +0800381 all_counters[i].count = 0;
Len Brown5229e872008-02-06 01:26:55 -0500382 acpi_gpe_count = 0;
383 acpi_irq_handled = 0;
Zhang Rui71b58cb2008-06-20 09:42:47 +0800384 goto end;
385 }
Len Brown5229e872008-02-06 01:26:55 -0500386
Zhang Rui71b58cb2008-06-20 09:42:47 +0800387 /* show the event status for both GPEs and Fixed Events */
388 result = get_status(index, &status, &handle);
389 if (result)
390 goto end;
391
Zhang Ruied206fa2008-10-27 14:01:02 -0700392 if (!(status & ACPI_EVENT_FLAG_HANDLE)) {
Lin Ming55ac9a02008-09-28 14:51:56 +0800393 printk(KERN_WARNING PREFIX
394 "Can not change Invalid GPE/Fixed Event status\n");
Zhang Rui71b58cb2008-06-20 09:42:47 +0800395 return -EINVAL;
396 }
397
398 if (index < num_gpes) {
399 if (!strcmp(buf, "disable\n") &&
400 (status & ACPI_EVENT_FLAG_ENABLED))
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400401 result = acpi_disable_gpe(handle, index);
Zhang Rui71b58cb2008-06-20 09:42:47 +0800402 else if (!strcmp(buf, "enable\n") &&
403 !(status & ACPI_EVENT_FLAG_ENABLED))
Alexey Starikovskiy0b7084a2008-10-25 21:48:46 +0400404 result = acpi_enable_gpe(handle, index);
Zhang Rui71b58cb2008-06-20 09:42:47 +0800405 else if (!strcmp(buf, "clear\n") &&
406 (status & ACPI_EVENT_FLAG_SET))
407 result = acpi_clear_gpe(handle, index, ACPI_NOT_ISR);
408 else
409 all_counters[index].count = strtoul(buf, NULL, 0);
410 } else if (index < num_gpes + ACPI_NUM_FIXED_EVENTS) {
411 int event = index - num_gpes;
412 if (!strcmp(buf, "disable\n") &&
413 (status & ACPI_EVENT_FLAG_ENABLED))
414 result = acpi_disable_event(event, ACPI_NOT_ISR);
415 else if (!strcmp(buf, "enable\n") &&
416 !(status & ACPI_EVENT_FLAG_ENABLED))
417 result = acpi_enable_event(event, ACPI_NOT_ISR);
418 else if (!strcmp(buf, "clear\n") &&
419 (status & ACPI_EVENT_FLAG_SET))
420 result = acpi_clear_event(event);
421 else
422 all_counters[index].count = strtoul(buf, NULL, 0);
Len Brown5229e872008-02-06 01:26:55 -0500423 } else
Zhang Rui71b58cb2008-06-20 09:42:47 +0800424 all_counters[index].count = strtoul(buf, NULL, 0);
Len Brown5229e872008-02-06 01:26:55 -0500425
Zhang Rui71b58cb2008-06-20 09:42:47 +0800426 if (ACPI_FAILURE(result))
427 result = -EINVAL;
428end:
429 return result ? result : size;
Len Brown5229e872008-02-06 01:26:55 -0500430}
431
432void acpi_irq_stats_init(void)
433{
434 int i;
435
436 if (all_counters)
437 return;
438
439 num_gpes = count_num_gpes();
440 num_counters = num_gpes + ACPI_NUM_FIXED_EVENTS + NUM_COUNTERS_EXTRA;
441
442 all_attrs = kzalloc(sizeof(struct attribute *) * (num_counters + 1),
443 GFP_KERNEL);
444 if (all_attrs == NULL)
445 return;
446
Zhang Rui71b58cb2008-06-20 09:42:47 +0800447 all_counters = kzalloc(sizeof(struct event_counter) * (num_counters),
448 GFP_KERNEL);
Len Brown5229e872008-02-06 01:26:55 -0500449 if (all_counters == NULL)
450 goto fail;
451
452 counter_attrs = kzalloc(sizeof(struct kobj_attribute) * (num_counters),
453 GFP_KERNEL);
454 if (counter_attrs == NULL)
455 goto fail;
456
457 for (i = 0; i < num_counters; ++i) {
Johann Felix Sodenc8dc9de2008-03-11 16:44:26 +0100458 char buffer[12];
Len Brown5229e872008-02-06 01:26:55 -0500459 char *name;
460
461 if (i < num_gpes)
462 sprintf(buffer, "gpe%02X", i);
463 else if (i == num_gpes + ACPI_EVENT_PMTIMER)
464 sprintf(buffer, "ff_pmtimer");
465 else if (i == num_gpes + ACPI_EVENT_GLOBAL)
466 sprintf(buffer, "ff_gbl_lock");
467 else if (i == num_gpes + ACPI_EVENT_POWER_BUTTON)
468 sprintf(buffer, "ff_pwr_btn");
469 else if (i == num_gpes + ACPI_EVENT_SLEEP_BUTTON)
470 sprintf(buffer, "ff_slp_btn");
471 else if (i == num_gpes + ACPI_EVENT_RTC)
472 sprintf(buffer, "ff_rt_clk");
473 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE)
474 sprintf(buffer, "gpe_all");
475 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI)
476 sprintf(buffer, "sci");
477 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR)
478 sprintf(buffer, "error");
479 else
480 sprintf(buffer, "bug%02X", i);
481
482 name = kzalloc(strlen(buffer) + 1, GFP_KERNEL);
483 if (name == NULL)
484 goto fail;
485 strncpy(name, buffer, strlen(buffer) + 1);
486
487 counter_attrs[i].attr.name = name;
488 counter_attrs[i].attr.mode = 0644;
489 counter_attrs[i].show = counter_show;
490 counter_attrs[i].store = counter_set;
491
492 all_attrs[i] = &counter_attrs[i].attr;
493 }
494
495 interrupt_stats_attr_group.attrs = all_attrs;
Len Brownb7143152008-02-07 04:24:01 -0500496 if (!sysfs_create_group(acpi_kobj, &interrupt_stats_attr_group))
497 return;
Len Brown5229e872008-02-06 01:26:55 -0500498
499fail:
500 delete_gpe_attr_array();
501 return;
502}
503
504static void __exit interrupt_stats_exit(void)
505{
506 sysfs_remove_group(acpi_kobj, &interrupt_stats_attr_group);
507
508 delete_gpe_attr_array();
509
510 return;
511}
512
Zhang Ruid4c5f042007-06-14 17:43:07 +0800513/* --------------------------------------------------------------------------
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 FS Interface (/proc)
515 -------------------------------------------------------------------------- */
Zhang Rui5bb730f2007-01-29 11:02:42 +0800516#ifdef CONFIG_ACPI_PROCFS
Zhang Ruid4c5f042007-06-14 17:43:07 +0800517#define ACPI_SYSTEM_FILE_INFO "info"
518#define ACPI_SYSTEM_FILE_EVENT "event"
519#define ACPI_SYSTEM_FILE_DSDT "dsdt"
520#define ACPI_SYSTEM_FILE_FADT "fadt"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Len Brown4be44fc2005-08-05 00:44:28 -0400522static int acpi_system_read_info(struct seq_file *seq, void *offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 seq_printf(seq, "version: %x\n", ACPI_CA_VERSION);
Patrick Mocheld550d982006-06-27 00:41:40 -0400526 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
529static int acpi_system_info_open_fs(struct inode *inode, struct file *file)
530{
531 return single_open(file, acpi_system_read_info, PDE(inode)->data);
532}
533
Arjan van de Vend7508032006-07-04 13:06:00 -0400534static const struct file_operations acpi_system_info_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700535 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400536 .open = acpi_system_info_open_fs,
537 .read = seq_read,
538 .llseek = seq_lseek,
539 .release = single_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540};
541
Len Brown4be44fc2005-08-05 00:44:28 -0400542static ssize_t acpi_system_read_dsdt(struct file *, char __user *, size_t,
543 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Arjan van de Vend7508032006-07-04 13:06:00 -0400545static const struct file_operations acpi_system_dsdt_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700546 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400547 .read = acpi_system_read_dsdt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548};
549
550static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400551acpi_system_read_dsdt(struct file *file,
552 char __user * buffer, size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Len Brown4be44fc2005-08-05 00:44:28 -0400554 acpi_status status = AE_OK;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300555 struct acpi_table_header *dsdt = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400556 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300558 status = acpi_get_table(ACPI_SIG_DSDT, 1, &dsdt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400560 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Zhang Ruid4c5f042007-06-14 17:43:07 +0800562 res = simple_read_from_buffer(buffer, count, ppos, dsdt, dsdt->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Patrick Mocheld550d982006-06-27 00:41:40 -0400564 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Len Brown4be44fc2005-08-05 00:44:28 -0400567static ssize_t acpi_system_read_fadt(struct file *, char __user *, size_t,
568 loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Arjan van de Vend7508032006-07-04 13:06:00 -0400570static const struct file_operations acpi_system_fadt_ops = {
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700571 .owner = THIS_MODULE,
Len Brown4be44fc2005-08-05 00:44:28 -0400572 .read = acpi_system_read_fadt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573};
574
575static ssize_t
Len Brown4be44fc2005-08-05 00:44:28 -0400576acpi_system_read_fadt(struct file *file,
577 char __user * buffer, size_t count, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Len Brown4be44fc2005-08-05 00:44:28 -0400579 acpi_status status = AE_OK;
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300580 struct acpi_table_header *fadt = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400581 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Alexey Starikovskiyad71860a2007-02-02 19:48:19 +0300583 status = acpi_get_table(ACPI_SIG_FADT, 1, &fadt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 if (ACPI_FAILURE(status))
Patrick Mocheld550d982006-06-27 00:41:40 -0400585 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Zhang Ruid4c5f042007-06-14 17:43:07 +0800587 res = simple_read_from_buffer(buffer, count, ppos, fadt, fadt->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Patrick Mocheld550d982006-06-27 00:41:40 -0400589 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Zhang Ruid4c5f042007-06-14 17:43:07 +0800592static int acpi_system_procfs_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Len Brown4be44fc2005-08-05 00:44:28 -0400594 struct proc_dir_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* 'info' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700598 entry = proc_create(ACPI_SYSTEM_FILE_INFO, S_IRUGO, acpi_root_dir,
599 &acpi_system_info_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (!entry)
601 goto Error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 /* 'dsdt' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700604 entry = proc_create(ACPI_SYSTEM_FILE_DSDT, S_IRUSR, acpi_root_dir,
605 &acpi_system_dsdt_ops);
606 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 goto Error;
608
609 /* 'fadt' [R] */
Denis V. Lunevcf7acfa2008-04-29 01:02:27 -0700610 entry = proc_create(ACPI_SYSTEM_FILE_FADT, S_IRUSR, acpi_root_dir,
611 &acpi_system_fadt_ops);
612 if (!entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 goto Error;
614
Len Brown4be44fc2005-08-05 00:44:28 -0400615 Done:
Patrick Mocheld550d982006-06-27 00:41:40 -0400616 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Len Brown4be44fc2005-08-05 00:44:28 -0400618 Error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 remove_proc_entry(ACPI_SYSTEM_FILE_FADT, acpi_root_dir);
620 remove_proc_entry(ACPI_SYSTEM_FILE_DSDT, acpi_root_dir);
621 remove_proc_entry(ACPI_SYSTEM_FILE_INFO, acpi_root_dir);
622
623 error = -EFAULT;
624 goto Done;
625}
Zhang Ruid4c5f042007-06-14 17:43:07 +0800626#else
627static int acpi_system_procfs_init(void)
628{
629 return 0;
630}
631#endif
632
633static int __init acpi_system_init(void)
634{
635 int result = 0;
636
637 if (acpi_disabled)
638 return 0;
639
640 result = acpi_system_procfs_init();
641 if (result)
642 return result;
643
644 result = acpi_system_sysfs_init();
645
646 return result;
647}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649subsys_initcall(acpi_system_init);