2 * acpi_system.c - ACPI System Driver ($Revision: 63 $)
4 * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
5 * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
7 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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.
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.
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.
23 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26 #include <linux/proc_fs.h>
27 #include <linux/init.h>
28 #include <asm/uaccess.h>
30 #include <acpi/acpi_drivers.h>
33 #define _COMPONENT ACPI_SYSTEM_COMPONENT
34 ACPI_MODULE_NAME ("acpi_system")
36 #define ACPI_SYSTEM_CLASS "system"
37 #define ACPI_SYSTEM_DRIVER_NAME "ACPI System Driver"
38 #define ACPI_SYSTEM_DEVICE_NAME "System"
39 #define ACPI_SYSTEM_FILE_INFO "info"
40 #define ACPI_SYSTEM_FILE_EVENT "event"
41 #define ACPI_SYSTEM_FILE_DSDT "dsdt"
42 #define ACPI_SYSTEM_FILE_FADT "fadt"
44 extern FADT_DESCRIPTOR acpi_fadt
;
46 /* --------------------------------------------------------------------------
48 -------------------------------------------------------------------------- */
51 acpi_system_read_info (
62 ACPI_FUNCTION_TRACE("acpi_system_read_info");
67 p
+= sprintf(p
, "version: %x\n", ACPI_CA_VERSION
);
71 if (size
<= off
+count
) *eof
= 1;
74 if (size
>count
) size
= count
;
80 static ssize_t
acpi_system_read_dsdt (struct file
*, char __user
*, size_t, loff_t
*);
82 static struct file_operations acpi_system_dsdt_ops
= {
83 .read
= acpi_system_read_dsdt
,
87 acpi_system_read_dsdt (
93 acpi_status status
= AE_OK
;
94 struct acpi_buffer dsdt
= {ACPI_ALLOCATE_BUFFER
, NULL
};
97 ACPI_FUNCTION_TRACE("acpi_system_read_dsdt");
99 status
= acpi_get_table(ACPI_TABLE_DSDT
, 1, &dsdt
);
100 if (ACPI_FAILURE(status
))
101 return_VALUE(-ENODEV
);
103 res
= simple_read_from_buffer(buffer
, count
, ppos
,
104 dsdt
.pointer
, dsdt
.length
);
105 acpi_os_free(dsdt
.pointer
);
111 static ssize_t
acpi_system_read_fadt (struct file
*, char __user
*, size_t, loff_t
*);
113 static struct file_operations acpi_system_fadt_ops
= {
114 .read
= acpi_system_read_fadt
,
118 acpi_system_read_fadt (
124 acpi_status status
= AE_OK
;
125 struct acpi_buffer fadt
= {ACPI_ALLOCATE_BUFFER
, NULL
};
128 ACPI_FUNCTION_TRACE("acpi_system_read_fadt");
130 status
= acpi_get_table(ACPI_TABLE_FADT
, 1, &fadt
);
131 if (ACPI_FAILURE(status
))
132 return_VALUE(-ENODEV
);
134 res
= simple_read_from_buffer(buffer
, count
, ppos
,
135 fadt
.pointer
, fadt
.length
);
136 acpi_os_free(fadt
.pointer
);
142 static int __init
acpi_system_init (void)
144 struct proc_dir_entry
*entry
;
148 ACPI_FUNCTION_TRACE("acpi_system_init");
154 name
= ACPI_SYSTEM_FILE_INFO
;
155 entry
= create_proc_read_entry(name
,
156 S_IRUGO
, acpi_root_dir
, acpi_system_read_info
,NULL
);
161 name
= ACPI_SYSTEM_FILE_DSDT
;
162 entry
= create_proc_entry(name
, S_IRUSR
, acpi_root_dir
);
164 entry
->proc_fops
= &acpi_system_dsdt_ops
;
169 name
= ACPI_SYSTEM_FILE_FADT
;
170 entry
= create_proc_entry(name
, S_IRUSR
, acpi_root_dir
);
172 entry
->proc_fops
= &acpi_system_fadt_ops
;
180 ACPI_DEBUG_PRINT((ACPI_DB_ERROR
,
181 "Unable to create '%s' proc fs entry\n", name
));
183 remove_proc_entry(ACPI_SYSTEM_FILE_FADT
, acpi_root_dir
);
184 remove_proc_entry(ACPI_SYSTEM_FILE_DSDT
, acpi_root_dir
);
185 remove_proc_entry(ACPI_SYSTEM_FILE_INFO
, acpi_root_dir
);
192 subsys_initcall(acpi_system_init
);