2 * ACPI configfs support
4 * Copyright (c) 2016 Intel Corporation
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
11 #define pr_fmt(fmt) "ACPI configfs: " fmt
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/configfs.h>
16 #include <linux/acpi.h>
18 static struct config_group *acpi_table_group;
21 struct config_item cfg;
22 struct acpi_table_header *header;
25 static ssize_t acpi_table_aml_write(struct config_item *cfg,
26 const void *data, size_t size)
28 const struct acpi_table_header *header = data;
29 struct acpi_table *table;
32 table = container_of(cfg, struct acpi_table, cfg);
35 pr_err("table already loaded\n");
39 if (header->length != size) {
40 pr_err("invalid table length\n");
44 if (memcmp(header->signature, ACPI_SIG_SSDT, 4)) {
45 pr_err("invalid table signature\n");
49 table = container_of(cfg, struct acpi_table, cfg);
51 table->header = kmemdup(header, header->length, GFP_KERNEL);
55 ret = acpi_load_table(table->header);
64 static inline struct acpi_table_header *get_header(struct config_item *cfg)
66 struct acpi_table *table = container_of(cfg, struct acpi_table, cfg);
69 pr_err("table not loaded\n");
74 static ssize_t acpi_table_aml_read(struct config_item *cfg,
75 void *data, size_t size)
77 struct acpi_table_header *h = get_header(cfg);
83 memcpy(data, h, h->length);
88 #define MAX_ACPI_TABLE_SIZE (128 * 1024)
90 CONFIGFS_BIN_ATTR(acpi_table_, aml, NULL, MAX_ACPI_TABLE_SIZE);
92 struct configfs_bin_attribute *acpi_table_bin_attrs[] = {
97 ssize_t acpi_table_signature_show(struct config_item *cfg, char *str)
99 struct acpi_table_header *h = get_header(cfg);
104 return sprintf(str, "%.*s\n", ACPI_NAME_SIZE, h->signature);
107 ssize_t acpi_table_length_show(struct config_item *cfg, char *str)
109 struct acpi_table_header *h = get_header(cfg);
114 return sprintf(str, "%d\n", h->length);
117 ssize_t acpi_table_revision_show(struct config_item *cfg, char *str)
119 struct acpi_table_header *h = get_header(cfg);
124 return sprintf(str, "%d\n", h->revision);
127 ssize_t acpi_table_oem_id_show(struct config_item *cfg, char *str)
129 struct acpi_table_header *h = get_header(cfg);
134 return sprintf(str, "%.*s\n", ACPI_OEM_ID_SIZE, h->oem_id);
137 ssize_t acpi_table_oem_table_id_show(struct config_item *cfg, char *str)
139 struct acpi_table_header *h = get_header(cfg);
144 return sprintf(str, "%.*s\n", ACPI_OEM_TABLE_ID_SIZE, h->oem_table_id);
147 ssize_t acpi_table_oem_revision_show(struct config_item *cfg, char *str)
149 struct acpi_table_header *h = get_header(cfg);
154 return sprintf(str, "%d\n", h->oem_revision);
157 ssize_t acpi_table_asl_compiler_id_show(struct config_item *cfg, char *str)
159 struct acpi_table_header *h = get_header(cfg);
164 return sprintf(str, "%.*s\n", ACPI_NAME_SIZE, h->asl_compiler_id);
167 ssize_t acpi_table_asl_compiler_revision_show(struct config_item *cfg,
170 struct acpi_table_header *h = get_header(cfg);
175 return sprintf(str, "%d\n", h->asl_compiler_revision);
178 CONFIGFS_ATTR_RO(acpi_table_, signature);
179 CONFIGFS_ATTR_RO(acpi_table_, length);
180 CONFIGFS_ATTR_RO(acpi_table_, revision);
181 CONFIGFS_ATTR_RO(acpi_table_, oem_id);
182 CONFIGFS_ATTR_RO(acpi_table_, oem_table_id);
183 CONFIGFS_ATTR_RO(acpi_table_, oem_revision);
184 CONFIGFS_ATTR_RO(acpi_table_, asl_compiler_id);
185 CONFIGFS_ATTR_RO(acpi_table_, asl_compiler_revision);
187 struct configfs_attribute *acpi_table_attrs[] = {
188 &acpi_table_attr_signature,
189 &acpi_table_attr_length,
190 &acpi_table_attr_revision,
191 &acpi_table_attr_oem_id,
192 &acpi_table_attr_oem_table_id,
193 &acpi_table_attr_oem_revision,
194 &acpi_table_attr_asl_compiler_id,
195 &acpi_table_attr_asl_compiler_revision,
199 static struct config_item_type acpi_table_type = {
200 .ct_owner = THIS_MODULE,
201 .ct_bin_attrs = acpi_table_bin_attrs,
202 .ct_attrs = acpi_table_attrs,
205 static struct config_item *acpi_table_make_item(struct config_group *group,
208 struct acpi_table *table;
210 table = kzalloc(sizeof(*table), GFP_KERNEL);
212 return ERR_PTR(-ENOMEM);
214 config_item_init_type_name(&table->cfg, name, &acpi_table_type);
218 struct configfs_group_operations acpi_table_group_ops = {
219 .make_item = acpi_table_make_item,
222 static struct config_item_type acpi_tables_type = {
223 .ct_owner = THIS_MODULE,
224 .ct_group_ops = &acpi_table_group_ops,
227 static struct config_item_type acpi_root_group_type = {
228 .ct_owner = THIS_MODULE,
231 static struct configfs_subsystem acpi_configfs = {
234 .ci_namebuf = "acpi",
235 .ci_type = &acpi_root_group_type,
238 .su_mutex = __MUTEX_INITIALIZER(acpi_configfs.su_mutex),
241 static int __init acpi_configfs_init(void)
244 struct config_group *root = &acpi_configfs.su_group;
246 config_group_init(root);
248 ret = configfs_register_subsystem(&acpi_configfs);
252 acpi_table_group = configfs_register_default_group(root, "table",
254 return PTR_ERR_OR_ZERO(acpi_table_group);
256 module_init(acpi_configfs_init);
258 static void __exit acpi_configfs_exit(void)
260 configfs_unregister_default_group(acpi_table_group);
261 configfs_unregister_subsystem(&acpi_configfs);
263 module_exit(acpi_configfs_exit);
266 MODULE_DESCRIPTION("ACPI configfs support");
267 MODULE_LICENSE("GPL v2");