1 // SPDX-License-Identifier: GPL-2.0
3 * sysfs.c - ACPI sysfs interface to userspace.
6 #define pr_fmt(fmt) "ACPI: " fmt
8 #include <linux/init.h>
9 #include <linux/kernel.h>
10 #include <linux/moduleparam.h>
11 #include <linux/acpi.h>
15 #ifdef CONFIG_ACPI_DEBUG
17 * ACPI debug sysfs I/F, including:
18 * /sys/modules/acpi/parameters/debug_layer
19 * /sys/modules/acpi/parameters/debug_level
20 * /sys/modules/acpi/parameters/trace_method_name
21 * /sys/modules/acpi/parameters/trace_state
22 * /sys/modules/acpi/parameters/trace_debug_layer
23 * /sys/modules/acpi/parameters/trace_debug_level
34 #define ACPI_DEBUG_INIT(v) { .name = #v, .value = v }
36 static const struct acpi_dlayer acpi_debug_layers[] = {
37 ACPI_DEBUG_INIT(ACPI_UTILITIES),
38 ACPI_DEBUG_INIT(ACPI_HARDWARE),
39 ACPI_DEBUG_INIT(ACPI_EVENTS),
40 ACPI_DEBUG_INIT(ACPI_TABLES),
41 ACPI_DEBUG_INIT(ACPI_NAMESPACE),
42 ACPI_DEBUG_INIT(ACPI_PARSER),
43 ACPI_DEBUG_INIT(ACPI_DISPATCHER),
44 ACPI_DEBUG_INIT(ACPI_EXECUTER),
45 ACPI_DEBUG_INIT(ACPI_RESOURCES),
46 ACPI_DEBUG_INIT(ACPI_CA_DEBUGGER),
47 ACPI_DEBUG_INIT(ACPI_OS_SERVICES),
48 ACPI_DEBUG_INIT(ACPI_CA_DISASSEMBLER),
49 ACPI_DEBUG_INIT(ACPI_COMPILER),
50 ACPI_DEBUG_INIT(ACPI_TOOLS),
53 static const struct acpi_dlevel acpi_debug_levels[] = {
54 ACPI_DEBUG_INIT(ACPI_LV_INIT),
55 ACPI_DEBUG_INIT(ACPI_LV_DEBUG_OBJECT),
56 ACPI_DEBUG_INIT(ACPI_LV_INFO),
57 ACPI_DEBUG_INIT(ACPI_LV_REPAIR),
58 ACPI_DEBUG_INIT(ACPI_LV_TRACE_POINT),
60 ACPI_DEBUG_INIT(ACPI_LV_INIT_NAMES),
61 ACPI_DEBUG_INIT(ACPI_LV_PARSE),
62 ACPI_DEBUG_INIT(ACPI_LV_LOAD),
63 ACPI_DEBUG_INIT(ACPI_LV_DISPATCH),
64 ACPI_DEBUG_INIT(ACPI_LV_EXEC),
65 ACPI_DEBUG_INIT(ACPI_LV_NAMES),
66 ACPI_DEBUG_INIT(ACPI_LV_OPREGION),
67 ACPI_DEBUG_INIT(ACPI_LV_BFIELD),
68 ACPI_DEBUG_INIT(ACPI_LV_TABLES),
69 ACPI_DEBUG_INIT(ACPI_LV_VALUES),
70 ACPI_DEBUG_INIT(ACPI_LV_OBJECTS),
71 ACPI_DEBUG_INIT(ACPI_LV_RESOURCES),
72 ACPI_DEBUG_INIT(ACPI_LV_USER_REQUESTS),
73 ACPI_DEBUG_INIT(ACPI_LV_PACKAGE),
75 ACPI_DEBUG_INIT(ACPI_LV_ALLOCATIONS),
76 ACPI_DEBUG_INIT(ACPI_LV_FUNCTIONS),
77 ACPI_DEBUG_INIT(ACPI_LV_OPTIMIZATIONS),
79 ACPI_DEBUG_INIT(ACPI_LV_MUTEX),
80 ACPI_DEBUG_INIT(ACPI_LV_THREADS),
81 ACPI_DEBUG_INIT(ACPI_LV_IO),
82 ACPI_DEBUG_INIT(ACPI_LV_INTERRUPTS),
84 ACPI_DEBUG_INIT(ACPI_LV_AML_DISASSEMBLE),
85 ACPI_DEBUG_INIT(ACPI_LV_VERBOSE_INFO),
86 ACPI_DEBUG_INIT(ACPI_LV_FULL_TABLES),
87 ACPI_DEBUG_INIT(ACPI_LV_EVENTS),
90 static int param_get_debug_layer(char *buffer, const struct kernel_param *kp)
95 result = sprintf(buffer, "%-25s\tHex SET\n", "Description");
97 for (i = 0; i < ARRAY_SIZE(acpi_debug_layers); i++) {
98 result += sprintf(buffer + result, "%-25s\t0x%08lX [%c]\n",
99 acpi_debug_layers[i].name,
100 acpi_debug_layers[i].value,
101 (acpi_dbg_layer & acpi_debug_layers[i].value)
105 sprintf(buffer + result, "%-25s\t0x%08X [%c]\n", "ACPI_ALL_DRIVERS",
107 (acpi_dbg_layer & ACPI_ALL_DRIVERS) ==
108 ACPI_ALL_DRIVERS ? '*' : (acpi_dbg_layer & ACPI_ALL_DRIVERS)
111 sprintf(buffer + result,
112 "--\ndebug_layer = 0x%08X ( * = enabled)\n",
118 static int param_get_debug_level(char *buffer, const struct kernel_param *kp)
123 result = sprintf(buffer, "%-25s\tHex SET\n", "Description");
125 for (i = 0; i < ARRAY_SIZE(acpi_debug_levels); i++) {
126 result += sprintf(buffer + result, "%-25s\t0x%08lX [%c]\n",
127 acpi_debug_levels[i].name,
128 acpi_debug_levels[i].value,
129 (acpi_dbg_level & acpi_debug_levels[i].value)
133 sprintf(buffer + result, "--\ndebug_level = 0x%08X (* = enabled)\n",
139 static const struct kernel_param_ops param_ops_debug_layer = {
140 .set = param_set_uint,
141 .get = param_get_debug_layer,
144 static const struct kernel_param_ops param_ops_debug_level = {
145 .set = param_set_uint,
146 .get = param_get_debug_level,
149 module_param_cb(debug_layer, ¶m_ops_debug_layer, &acpi_dbg_layer, 0644);
150 module_param_cb(debug_level, ¶m_ops_debug_level, &acpi_dbg_level, 0644);
152 static char trace_method_name[1024];
154 static int param_set_trace_method_name(const char *val,
155 const struct kernel_param *kp)
158 bool is_abs_path = true;
163 if ((is_abs_path && strlen(val) > 1023) ||
164 (!is_abs_path && strlen(val) > 1022)) {
165 pr_err("%s: string parameter too long\n", kp->name);
170 * It's not safe to update acpi_gbl_trace_method_name without
171 * having the tracer stopped, so we save the original tracer
172 * state and disable it.
174 saved_flags = acpi_gbl_trace_flags;
175 (void)acpi_debug_trace(NULL,
176 acpi_gbl_trace_dbg_level,
177 acpi_gbl_trace_dbg_layer,
180 /* This is a hack. We can't kmalloc in early boot. */
182 strcpy(trace_method_name, val);
184 trace_method_name[0] = '\\';
185 strcpy(trace_method_name+1, val);
188 /* Restore the original tracer state */
189 (void)acpi_debug_trace(trace_method_name,
190 acpi_gbl_trace_dbg_level,
191 acpi_gbl_trace_dbg_layer,
197 static int param_get_trace_method_name(char *buffer, const struct kernel_param *kp)
199 return scnprintf(buffer, PAGE_SIZE, "%s\n", acpi_gbl_trace_method_name);
202 static const struct kernel_param_ops param_ops_trace_method = {
203 .set = param_set_trace_method_name,
204 .get = param_get_trace_method_name,
207 static const struct kernel_param_ops param_ops_trace_attrib = {
208 .set = param_set_uint,
209 .get = param_get_uint,
212 module_param_cb(trace_method_name, ¶m_ops_trace_method, &trace_method_name, 0644);
213 module_param_cb(trace_debug_layer, ¶m_ops_trace_attrib, &acpi_gbl_trace_dbg_layer, 0644);
214 module_param_cb(trace_debug_level, ¶m_ops_trace_attrib, &acpi_gbl_trace_dbg_level, 0644);
216 static int param_set_trace_state(const char *val,
217 const struct kernel_param *kp)
220 const char *method = trace_method_name;
223 /* So "xxx-once" comparison should go prior than "xxx" comparison */
224 #define acpi_compare_param(val, key) \
225 strncmp((val), (key), sizeof(key) - 1)
227 if (!acpi_compare_param(val, "enable")) {
229 flags = ACPI_TRACE_ENABLED;
230 } else if (!acpi_compare_param(val, "disable"))
232 else if (!acpi_compare_param(val, "method-once"))
233 flags = ACPI_TRACE_ENABLED | ACPI_TRACE_ONESHOT;
234 else if (!acpi_compare_param(val, "method"))
235 flags = ACPI_TRACE_ENABLED;
236 else if (!acpi_compare_param(val, "opcode-once"))
237 flags = ACPI_TRACE_ENABLED | ACPI_TRACE_ONESHOT | ACPI_TRACE_OPCODE;
238 else if (!acpi_compare_param(val, "opcode"))
239 flags = ACPI_TRACE_ENABLED | ACPI_TRACE_OPCODE;
243 status = acpi_debug_trace(method,
244 acpi_gbl_trace_dbg_level,
245 acpi_gbl_trace_dbg_layer,
247 if (ACPI_FAILURE(status))
253 static int param_get_trace_state(char *buffer, const struct kernel_param *kp)
255 if (!(acpi_gbl_trace_flags & ACPI_TRACE_ENABLED))
256 return sprintf(buffer, "disable\n");
258 if (acpi_gbl_trace_method_name) {
259 if (acpi_gbl_trace_flags & ACPI_TRACE_ONESHOT)
260 return sprintf(buffer, "method-once\n");
262 return sprintf(buffer, "method\n");
264 return sprintf(buffer, "enable\n");
269 module_param_call(trace_state, param_set_trace_state, param_get_trace_state,
271 #endif /* CONFIG_ACPI_DEBUG */
274 /* /sys/modules/acpi/parameters/aml_debug_output */
276 module_param_named(aml_debug_output, acpi_gbl_enable_aml_debug_object,
278 MODULE_PARM_DESC(aml_debug_output,
279 "To enable/disable the ACPI Debug Object output.");
281 /* /sys/module/acpi/parameters/acpica_version */
282 static int param_get_acpica_version(char *buffer,
283 const struct kernel_param *kp)
287 result = sprintf(buffer, "%x\n", ACPI_CA_VERSION);
292 module_param_call(acpica_version, NULL, param_get_acpica_version, NULL, 0444);
295 * ACPI table sysfs I/F:
296 * /sys/firmware/acpi/tables/
297 * /sys/firmware/acpi/tables/data/
298 * /sys/firmware/acpi/tables/dynamic/
301 static LIST_HEAD(acpi_table_attr_list);
302 static struct kobject *tables_kobj;
303 static struct kobject *tables_data_kobj;
304 static struct kobject *dynamic_tables_kobj;
305 static struct kobject *hotplug_kobj;
307 #define ACPI_MAX_TABLE_INSTANCES 999
308 #define ACPI_INST_SIZE 4 /* including trailing 0 */
310 struct acpi_table_attr {
311 struct bin_attribute attr;
312 char name[ACPI_NAMESEG_SIZE];
314 char filename[ACPI_NAMESEG_SIZE+ACPI_INST_SIZE];
315 struct list_head node;
318 struct acpi_data_attr {
319 struct bin_attribute attr;
323 static ssize_t acpi_table_show(struct file *filp, struct kobject *kobj,
324 struct bin_attribute *bin_attr, char *buf,
325 loff_t offset, size_t count)
327 struct acpi_table_attr *table_attr =
328 container_of(bin_attr, struct acpi_table_attr, attr);
329 struct acpi_table_header *table_header = NULL;
333 status = acpi_get_table(table_attr->name, table_attr->instance,
335 if (ACPI_FAILURE(status))
338 rc = memory_read_from_buffer(buf, count, &offset, table_header,
339 table_header->length);
340 acpi_put_table(table_header);
344 static int acpi_table_attr_init(struct kobject *tables_obj,
345 struct acpi_table_attr *table_attr,
346 struct acpi_table_header *table_header)
348 struct acpi_table_header *header = NULL;
349 struct acpi_table_attr *attr = NULL;
350 char instance_str[ACPI_INST_SIZE];
352 sysfs_attr_init(&table_attr->attr.attr);
353 ACPI_COPY_NAMESEG(table_attr->name, table_header->signature);
355 list_for_each_entry(attr, &acpi_table_attr_list, node) {
356 if (ACPI_COMPARE_NAMESEG(table_attr->name, attr->name))
357 if (table_attr->instance < attr->instance)
358 table_attr->instance = attr->instance;
360 table_attr->instance++;
361 if (table_attr->instance > ACPI_MAX_TABLE_INSTANCES) {
362 pr_warn("%4.4s: too many table instances\n",
367 ACPI_COPY_NAMESEG(table_attr->filename, table_header->signature);
368 table_attr->filename[ACPI_NAMESEG_SIZE] = '\0';
369 if (table_attr->instance > 1 || (table_attr->instance == 1 &&
371 (table_header->signature, 2, &header))) {
372 snprintf(instance_str, sizeof(instance_str), "%u",
373 table_attr->instance);
374 strcat(table_attr->filename, instance_str);
377 table_attr->attr.size = table_header->length;
378 table_attr->attr.read = acpi_table_show;
379 table_attr->attr.attr.name = table_attr->filename;
380 table_attr->attr.attr.mode = 0400;
382 return sysfs_create_bin_file(tables_obj, &table_attr->attr);
385 acpi_status acpi_sysfs_table_handler(u32 event, void *table, void *context)
387 struct acpi_table_attr *table_attr;
390 case ACPI_TABLE_EVENT_INSTALL:
392 kzalloc(sizeof(struct acpi_table_attr), GFP_KERNEL);
396 if (acpi_table_attr_init(dynamic_tables_kobj,
397 table_attr, table)) {
401 list_add_tail(&table_attr->node, &acpi_table_attr_list);
403 case ACPI_TABLE_EVENT_LOAD:
404 case ACPI_TABLE_EVENT_UNLOAD:
405 case ACPI_TABLE_EVENT_UNINSTALL:
407 * we do not need to do anything right now
408 * because the table is not deleted from the
409 * global table list when unloading it.
413 return AE_BAD_PARAMETER;
418 static ssize_t acpi_data_show(struct file *filp, struct kobject *kobj,
419 struct bin_attribute *bin_attr, char *buf,
420 loff_t offset, size_t count)
422 struct acpi_data_attr *data_attr;
426 data_attr = container_of(bin_attr, struct acpi_data_attr, attr);
428 base = acpi_os_map_memory(data_attr->addr, data_attr->attr.size);
431 rc = memory_read_from_buffer(buf, count, &offset, base,
432 data_attr->attr.size);
433 acpi_os_unmap_memory(base, data_attr->attr.size);
438 static int acpi_bert_data_init(void *th, struct acpi_data_attr *data_attr)
440 struct acpi_table_bert *bert = th;
442 if (bert->header.length < sizeof(struct acpi_table_bert) ||
443 bert->region_length < sizeof(struct acpi_hest_generic_status)) {
447 data_attr->addr = bert->address;
448 data_attr->attr.size = bert->region_length;
449 data_attr->attr.attr.name = "BERT";
451 return sysfs_create_bin_file(tables_data_kobj, &data_attr->attr);
454 static struct acpi_data_obj {
456 int (*fn)(void *, struct acpi_data_attr *);
457 } acpi_data_objs[] = {
458 { ACPI_SIG_BERT, acpi_bert_data_init },
461 #define NUM_ACPI_DATA_OBJS ARRAY_SIZE(acpi_data_objs)
463 static int acpi_table_data_init(struct acpi_table_header *th)
465 struct acpi_data_attr *data_attr;
468 for (i = 0; i < NUM_ACPI_DATA_OBJS; i++) {
469 if (ACPI_COMPARE_NAMESEG(th->signature, acpi_data_objs[i].name)) {
470 data_attr = kzalloc(sizeof(*data_attr), GFP_KERNEL);
473 sysfs_attr_init(&data_attr->attr.attr);
474 data_attr->attr.read = acpi_data_show;
475 data_attr->attr.attr.mode = 0400;
476 return acpi_data_objs[i].fn(th, data_attr);
482 static int acpi_tables_sysfs_init(void)
484 struct acpi_table_attr *table_attr;
485 struct acpi_table_header *table_header = NULL;
490 tables_kobj = kobject_create_and_add("tables", acpi_kobj);
494 tables_data_kobj = kobject_create_and_add("data", tables_kobj);
495 if (!tables_data_kobj)
496 goto err_tables_data;
498 dynamic_tables_kobj = kobject_create_and_add("dynamic", tables_kobj);
499 if (!dynamic_tables_kobj)
500 goto err_dynamic_tables;
502 for (table_index = 0;; table_index++) {
503 status = acpi_get_table_by_index(table_index, &table_header);
505 if (status == AE_BAD_PARAMETER)
508 if (ACPI_FAILURE(status))
511 table_attr = kzalloc(sizeof(*table_attr), GFP_KERNEL);
515 ret = acpi_table_attr_init(tables_kobj,
516 table_attr, table_header);
521 list_add_tail(&table_attr->node, &acpi_table_attr_list);
522 acpi_table_data_init(table_header);
525 kobject_uevent(tables_kobj, KOBJ_ADD);
526 kobject_uevent(tables_data_kobj, KOBJ_ADD);
527 kobject_uevent(dynamic_tables_kobj, KOBJ_ADD);
531 kobject_put(tables_data_kobj);
533 kobject_put(tables_kobj);
539 * Detailed ACPI IRQ counters:
540 * /sys/firmware/acpi/interrupts/
543 u32 acpi_irq_handled;
544 u32 acpi_irq_not_handled;
547 #define COUNT_SCI 1 /* acpi_irq_handled */
548 #define COUNT_SCI_NOT 2 /* acpi_irq_not_handled */
549 #define COUNT_ERROR 3 /* other */
550 #define NUM_COUNTERS_EXTRA 4
552 struct event_counter {
557 static struct event_counter *all_counters;
559 static u32 num_counters;
560 static struct attribute **all_attrs;
561 static u32 acpi_gpe_count;
563 static struct attribute_group interrupt_stats_attr_group = {
564 .name = "interrupts",
567 static struct kobj_attribute *counter_attrs;
569 static void delete_gpe_attr_array(void)
571 struct event_counter *tmp = all_counters;
579 for (i = 0; i < num_gpes; i++)
580 kfree(counter_attrs[i].attr.name);
582 kfree(counter_attrs);
589 static void gpe_count(u32 gpe_number)
596 if (gpe_number < num_gpes)
597 all_counters[gpe_number].count++;
599 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS +
600 COUNT_ERROR].count++;
605 static void fixed_event_count(u32 event_number)
610 if (event_number < ACPI_NUM_FIXED_EVENTS)
611 all_counters[num_gpes + event_number].count++;
613 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS +
614 COUNT_ERROR].count++;
619 static void acpi_global_event_handler(u32 event_type, acpi_handle device,
620 u32 event_number, void *context)
622 if (event_type == ACPI_EVENT_TYPE_GPE) {
623 gpe_count(event_number);
624 pr_debug("GPE event 0x%02x\n", event_number);
625 } else if (event_type == ACPI_EVENT_TYPE_FIXED) {
626 fixed_event_count(event_number);
627 pr_debug("Fixed event 0x%02x\n", event_number);
629 pr_debug("Other event 0x%02x\n", event_number);
633 static int get_status(u32 index, acpi_event_status *ret,
638 if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
641 if (index < num_gpes) {
642 status = acpi_get_gpe_device(index, handle);
643 if (ACPI_FAILURE(status)) {
644 pr_warn("Invalid GPE 0x%x", index);
647 status = acpi_get_gpe_status(*handle, index, ret);
649 status = acpi_get_event_status(index - num_gpes, ret);
651 if (ACPI_FAILURE(status))
657 static ssize_t counter_show(struct kobject *kobj,
658 struct kobj_attribute *attr, char *buf)
660 int index = attr - counter_attrs;
663 acpi_event_status status;
666 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI].count =
668 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT].count =
669 acpi_irq_not_handled;
670 all_counters[num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE].count =
672 size = sprintf(buf, "%8u", all_counters[index].count);
674 /* "gpe_all" or "sci" */
675 if (index >= num_gpes + ACPI_NUM_FIXED_EVENTS)
678 result = get_status(index, &status, &handle);
682 if (status & ACPI_EVENT_FLAG_ENABLE_SET)
683 size += sprintf(buf + size, " EN");
685 size += sprintf(buf + size, " ");
686 if (status & ACPI_EVENT_FLAG_STATUS_SET)
687 size += sprintf(buf + size, " STS");
689 size += sprintf(buf + size, " ");
691 if (!(status & ACPI_EVENT_FLAG_HAS_HANDLER))
692 size += sprintf(buf + size, " invalid ");
693 else if (status & ACPI_EVENT_FLAG_ENABLED)
694 size += sprintf(buf + size, " enabled ");
695 else if (status & ACPI_EVENT_FLAG_WAKE_ENABLED)
696 size += sprintf(buf + size, " wake_enabled");
698 size += sprintf(buf + size, " disabled ");
699 if (status & ACPI_EVENT_FLAG_MASKED)
700 size += sprintf(buf + size, " masked ");
702 size += sprintf(buf + size, " unmasked");
705 size += sprintf(buf + size, "\n");
706 return result ? result : size;
710 * counter_set() sets the specified counter.
711 * setting the total "sci" file to any value clears all counters.
712 * enable/disable/clear a gpe/fixed event in user space.
714 static ssize_t counter_set(struct kobject *kobj,
715 struct kobj_attribute *attr, const char *buf,
718 int index = attr - counter_attrs;
719 acpi_event_status status;
724 if (index == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI) {
726 for (i = 0; i < num_counters; ++i)
727 all_counters[i].count = 0;
729 acpi_irq_handled = 0;
730 acpi_irq_not_handled = 0;
734 /* show the event status for both GPEs and Fixed Events */
735 result = get_status(index, &status, &handle);
739 if (!(status & ACPI_EVENT_FLAG_HAS_HANDLER)) {
740 printk(KERN_WARNING PREFIX
741 "Can not change Invalid GPE/Fixed Event status\n");
745 if (index < num_gpes) {
746 if (!strcmp(buf, "disable\n") &&
747 (status & ACPI_EVENT_FLAG_ENABLED))
748 result = acpi_disable_gpe(handle, index);
749 else if (!strcmp(buf, "enable\n") &&
750 !(status & ACPI_EVENT_FLAG_ENABLED))
751 result = acpi_enable_gpe(handle, index);
752 else if (!strcmp(buf, "clear\n") &&
753 (status & ACPI_EVENT_FLAG_STATUS_SET))
754 result = acpi_clear_gpe(handle, index);
755 else if (!strcmp(buf, "mask\n"))
756 result = acpi_mask_gpe(handle, index, TRUE);
757 else if (!strcmp(buf, "unmask\n"))
758 result = acpi_mask_gpe(handle, index, FALSE);
759 else if (!kstrtoul(buf, 0, &tmp))
760 all_counters[index].count = tmp;
763 } else if (index < num_gpes + ACPI_NUM_FIXED_EVENTS) {
764 int event = index - num_gpes;
765 if (!strcmp(buf, "disable\n") &&
766 (status & ACPI_EVENT_FLAG_ENABLE_SET))
767 result = acpi_disable_event(event, ACPI_NOT_ISR);
768 else if (!strcmp(buf, "enable\n") &&
769 !(status & ACPI_EVENT_FLAG_ENABLE_SET))
770 result = acpi_enable_event(event, ACPI_NOT_ISR);
771 else if (!strcmp(buf, "clear\n") &&
772 (status & ACPI_EVENT_FLAG_STATUS_SET))
773 result = acpi_clear_event(event);
774 else if (!kstrtoul(buf, 0, &tmp))
775 all_counters[index].count = tmp;
779 all_counters[index].count = strtoul(buf, NULL, 0);
781 if (ACPI_FAILURE(result))
784 return result ? result : size;
788 * A Quirk Mechanism for GPE Flooding Prevention:
790 * Quirks may be needed to prevent GPE flooding on a specific GPE. The
791 * flooding typically cannot be detected and automatically prevented by
792 * ACPI_GPE_DISPATCH_NONE check because there is a _Lxx/_Exx prepared in
793 * the AML tables. This normally indicates a feature gap in Linux, thus
794 * instead of providing endless quirk tables, we provide a boot parameter
795 * for those who want this quirk. For example, if the users want to prevent
796 * the GPE flooding for GPE 00, they need to specify the following boot
799 * The masking status can be modified by the following runtime controlling
801 * echo unmask > /sys/firmware/acpi/interrupts/gpe00
803 #define ACPI_MASKABLE_GPE_MAX 0x100
804 static DECLARE_BITMAP(acpi_masked_gpes_map, ACPI_MASKABLE_GPE_MAX) __initdata;
806 static int __init acpi_gpe_set_masked_gpes(char *val)
810 if (kstrtou8(val, 0, &gpe))
812 set_bit(gpe, acpi_masked_gpes_map);
816 __setup("acpi_mask_gpe=", acpi_gpe_set_masked_gpes);
818 void __init acpi_gpe_apply_masked_gpes(void)
824 for_each_set_bit(gpe, acpi_masked_gpes_map, ACPI_MASKABLE_GPE_MAX) {
825 status = acpi_get_gpe_device(gpe, &handle);
826 if (ACPI_SUCCESS(status)) {
827 pr_info("Masking GPE 0x%x.\n", gpe);
828 (void)acpi_mask_gpe(handle, gpe, TRUE);
833 void acpi_irq_stats_init(void)
841 num_gpes = acpi_current_gpe_count;
842 num_counters = num_gpes + ACPI_NUM_FIXED_EVENTS + NUM_COUNTERS_EXTRA;
844 all_attrs = kcalloc(num_counters + 1, sizeof(struct attribute *),
846 if (all_attrs == NULL)
849 all_counters = kcalloc(num_counters, sizeof(struct event_counter),
851 if (all_counters == NULL)
854 status = acpi_install_global_event_handler(acpi_global_event_handler, NULL);
855 if (ACPI_FAILURE(status))
858 counter_attrs = kcalloc(num_counters, sizeof(struct kobj_attribute),
860 if (counter_attrs == NULL)
863 for (i = 0; i < num_counters; ++i) {
868 sprintf(buffer, "gpe%02X", i);
869 else if (i == num_gpes + ACPI_EVENT_PMTIMER)
870 sprintf(buffer, "ff_pmtimer");
871 else if (i == num_gpes + ACPI_EVENT_GLOBAL)
872 sprintf(buffer, "ff_gbl_lock");
873 else if (i == num_gpes + ACPI_EVENT_POWER_BUTTON)
874 sprintf(buffer, "ff_pwr_btn");
875 else if (i == num_gpes + ACPI_EVENT_SLEEP_BUTTON)
876 sprintf(buffer, "ff_slp_btn");
877 else if (i == num_gpes + ACPI_EVENT_RTC)
878 sprintf(buffer, "ff_rt_clk");
879 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_GPE)
880 sprintf(buffer, "gpe_all");
881 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI)
882 sprintf(buffer, "sci");
883 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_SCI_NOT)
884 sprintf(buffer, "sci_not");
885 else if (i == num_gpes + ACPI_NUM_FIXED_EVENTS + COUNT_ERROR)
886 sprintf(buffer, "error");
888 sprintf(buffer, "bug%02X", i);
890 name = kstrdup(buffer, GFP_KERNEL);
894 sysfs_attr_init(&counter_attrs[i].attr);
895 counter_attrs[i].attr.name = name;
896 counter_attrs[i].attr.mode = 0644;
897 counter_attrs[i].show = counter_show;
898 counter_attrs[i].store = counter_set;
900 all_attrs[i] = &counter_attrs[i].attr;
903 interrupt_stats_attr_group.attrs = all_attrs;
904 if (!sysfs_create_group(acpi_kobj, &interrupt_stats_attr_group))
908 delete_gpe_attr_array();
912 static void __exit interrupt_stats_exit(void)
914 sysfs_remove_group(acpi_kobj, &interrupt_stats_attr_group);
916 delete_gpe_attr_array();
922 acpi_show_profile(struct kobject *kobj, struct kobj_attribute *attr,
925 return sprintf(buf, "%d\n", acpi_gbl_FADT.preferred_profile);
928 static const struct kobj_attribute pm_profile_attr =
929 __ATTR(pm_profile, S_IRUGO, acpi_show_profile, NULL);
931 static ssize_t hotplug_enabled_show(struct kobject *kobj,
932 struct kobj_attribute *attr, char *buf)
934 struct acpi_hotplug_profile *hotplug = to_acpi_hotplug_profile(kobj);
936 return sprintf(buf, "%d\n", hotplug->enabled);
939 static ssize_t hotplug_enabled_store(struct kobject *kobj,
940 struct kobj_attribute *attr,
941 const char *buf, size_t size)
943 struct acpi_hotplug_profile *hotplug = to_acpi_hotplug_profile(kobj);
946 if (kstrtouint(buf, 10, &val) || val > 1)
949 acpi_scan_hotplug_enabled(hotplug, val);
953 static struct kobj_attribute hotplug_enabled_attr =
954 __ATTR(enabled, S_IRUGO | S_IWUSR, hotplug_enabled_show,
955 hotplug_enabled_store);
957 static struct attribute *hotplug_profile_attrs[] = {
958 &hotplug_enabled_attr.attr,
962 static struct kobj_type acpi_hotplug_profile_ktype = {
963 .sysfs_ops = &kobj_sysfs_ops,
964 .default_attrs = hotplug_profile_attrs,
967 void acpi_sysfs_add_hotplug_profile(struct acpi_hotplug_profile *hotplug,
975 error = kobject_init_and_add(&hotplug->kobj,
976 &acpi_hotplug_profile_ktype, hotplug_kobj, "%s", name);
978 kobject_put(&hotplug->kobj);
982 kobject_uevent(&hotplug->kobj, KOBJ_ADD);
986 pr_err(PREFIX "Unable to add hotplug profile '%s'\n", name);
989 static ssize_t force_remove_show(struct kobject *kobj,
990 struct kobj_attribute *attr, char *buf)
992 return sprintf(buf, "%d\n", 0);
995 static ssize_t force_remove_store(struct kobject *kobj,
996 struct kobj_attribute *attr,
997 const char *buf, size_t size)
1002 ret = strtobool(buf, &val);
1007 pr_err("Enabling force_remove is not supported anymore. Please report to
[email protected] if you depend on this functionality\n");
1013 static const struct kobj_attribute force_remove_attr =
1014 __ATTR(force_remove, S_IRUGO | S_IWUSR, force_remove_show,
1015 force_remove_store);
1017 int __init acpi_sysfs_init(void)
1021 result = acpi_tables_sysfs_init();
1025 hotplug_kobj = kobject_create_and_add("hotplug", acpi_kobj);
1029 result = sysfs_create_file(hotplug_kobj, &force_remove_attr.attr);
1033 result = sysfs_create_file(acpi_kobj, &pm_profile_attr.attr);