1 // SPDX-License-Identifier: GPL-2.0-only
3 * drivers/acpi/device_sysfs.c - ACPI device sysfs attributes and modalias.
5 * Copyright (C) 2015, Intel Corp.
6 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
7 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
9 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
14 #include <linux/acpi.h>
15 #include <linux/device.h>
16 #include <linux/export.h>
17 #include <linux/nls.h>
21 static ssize_t
acpi_object_path(acpi_handle handle
, char *buf
)
23 struct acpi_buffer path
= {ACPI_ALLOCATE_BUFFER
, NULL
};
26 result
= acpi_get_name(handle
, ACPI_FULL_PATHNAME
, &path
);
30 result
= sprintf(buf
, "%s\n", (char *)path
.pointer
);
35 struct acpi_data_node_attr
{
36 struct attribute attr
;
37 ssize_t (*show
)(struct acpi_data_node
*, char *);
38 ssize_t (*store
)(struct acpi_data_node
*, const char *, size_t count
);
41 #define DATA_NODE_ATTR(_name) \
42 static struct acpi_data_node_attr data_node_##_name = \
43 __ATTR(_name, 0444, data_node_show_##_name, NULL)
45 static ssize_t
data_node_show_path(struct acpi_data_node
*dn
, char *buf
)
47 return dn
->handle
? acpi_object_path(dn
->handle
, buf
) : 0;
52 static struct attribute
*acpi_data_node_default_attrs
[] = {
57 #define to_data_node(k) container_of(k, struct acpi_data_node, kobj)
58 #define to_attr(a) container_of(a, struct acpi_data_node_attr, attr)
60 static ssize_t
acpi_data_node_attr_show(struct kobject
*kobj
,
61 struct attribute
*attr
, char *buf
)
63 struct acpi_data_node
*dn
= to_data_node(kobj
);
64 struct acpi_data_node_attr
*dn_attr
= to_attr(attr
);
66 return dn_attr
->show
? dn_attr
->show(dn
, buf
) : -ENXIO
;
69 static const struct sysfs_ops acpi_data_node_sysfs_ops
= {
70 .show
= acpi_data_node_attr_show
,
73 static void acpi_data_node_release(struct kobject
*kobj
)
75 struct acpi_data_node
*dn
= to_data_node(kobj
);
76 complete(&dn
->kobj_done
);
79 static struct kobj_type acpi_data_node_ktype
= {
80 .sysfs_ops
= &acpi_data_node_sysfs_ops
,
81 .default_attrs
= acpi_data_node_default_attrs
,
82 .release
= acpi_data_node_release
,
85 static void acpi_expose_nondev_subnodes(struct kobject
*kobj
,
86 struct acpi_device_data
*data
)
88 struct list_head
*list
= &data
->subnodes
;
89 struct acpi_data_node
*dn
;
94 list_for_each_entry(dn
, list
, sibling
) {
97 init_completion(&dn
->kobj_done
);
98 ret
= kobject_init_and_add(&dn
->kobj
, &acpi_data_node_ktype
,
99 kobj
, "%s", dn
->name
);
101 acpi_expose_nondev_subnodes(&dn
->kobj
, &dn
->data
);
103 acpi_handle_err(dn
->handle
, "Failed to expose (%d)\n", ret
);
107 static void acpi_hide_nondev_subnodes(struct acpi_device_data
*data
)
109 struct list_head
*list
= &data
->subnodes
;
110 struct acpi_data_node
*dn
;
112 if (list_empty(list
))
115 list_for_each_entry_reverse(dn
, list
, sibling
) {
116 acpi_hide_nondev_subnodes(&dn
->data
);
117 kobject_put(&dn
->kobj
);
122 * create_pnp_modalias - Create hid/cid(s) string for modalias and uevent
123 * @acpi_dev: ACPI device object.
124 * @modalias: Buffer to print into.
125 * @size: Size of the buffer.
127 * Creates hid/cid(s) string needed for modalias and uevent
128 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
129 * char *modalias: "acpi:IBM0001:ACPI0001"
130 * Return: 0: no _HID and no _CID
131 * -EINVAL: output error
132 * -ENOMEM: output is truncated
134 static int create_pnp_modalias(struct acpi_device
*acpi_dev
, char *modalias
,
139 struct acpi_hardware_id
*id
;
141 /* Avoid unnecessarily loading modules for non present devices. */
142 if (!acpi_device_is_present(acpi_dev
))
146 * Since we skip ACPI_DT_NAMESPACE_HID from the modalias below, 0 should
147 * be returned if ACPI_DT_NAMESPACE_HID is the only ACPI/PNP ID in the
151 list_for_each_entry(id
, &acpi_dev
->pnp
.ids
, list
)
152 if (strcmp(id
->id
, ACPI_DT_NAMESPACE_HID
))
158 len
= snprintf(modalias
, size
, "acpi:");
164 list_for_each_entry(id
, &acpi_dev
->pnp
.ids
, list
) {
165 if (!strcmp(id
->id
, ACPI_DT_NAMESPACE_HID
))
168 count
= snprintf(&modalias
[len
], size
, "%s:", id
->id
);
178 modalias
[len
] = '\0';
183 * create_of_modalias - Creates DT compatible string for modalias and uevent
184 * @acpi_dev: ACPI device object.
185 * @modalias: Buffer to print into.
186 * @size: Size of the buffer.
188 * Expose DT compatible modalias as of:NnameTCcompatible. This function should
189 * only be called for devices having ACPI_DT_NAMESPACE_HID in their list of
192 static int create_of_modalias(struct acpi_device
*acpi_dev
, char *modalias
,
195 struct acpi_buffer buf
= { ACPI_ALLOCATE_BUFFER
};
196 const union acpi_object
*of_compatible
, *obj
;
202 status
= acpi_get_name(acpi_dev
->handle
, ACPI_SINGLE_NAME
, &buf
);
203 if (ACPI_FAILURE(status
))
206 /* DT strings are all in lower case */
207 for (c
= buf
.pointer
; *c
!= '\0'; c
++)
210 len
= snprintf(modalias
, size
, "of:N%sT", (char *)buf
.pointer
);
211 ACPI_FREE(buf
.pointer
);
216 of_compatible
= acpi_dev
->data
.of_compatible
;
217 if (of_compatible
->type
== ACPI_TYPE_PACKAGE
) {
218 nval
= of_compatible
->package
.count
;
219 obj
= of_compatible
->package
.elements
;
220 } else { /* Must be ACPI_TYPE_STRING. */
224 for (i
= 0; i
< nval
; i
++, obj
++) {
225 count
= snprintf(&modalias
[len
], size
, "C%s",
226 obj
->string
.pointer
);
236 modalias
[len
] = '\0';
240 int __acpi_device_uevent_modalias(struct acpi_device
*adev
,
241 struct kobj_uevent_env
*env
)
248 if (list_empty(&adev
->pnp
.ids
))
251 if (add_uevent_var(env
, "MODALIAS="))
254 len
= create_pnp_modalias(adev
, &env
->buf
[env
->buflen
- 1],
255 sizeof(env
->buf
) - env
->buflen
);
260 if (!adev
->data
.of_compatible
)
263 if (len
> 0 && add_uevent_var(env
, "MODALIAS="))
266 len
= create_of_modalias(adev
, &env
->buf
[env
->buflen
- 1],
267 sizeof(env
->buf
) - env
->buflen
);
277 * acpi_device_uevent_modalias - uevent modalias for ACPI-enumerated devices.
279 * Create the uevent modalias field for ACPI-enumerated devices.
281 * Because other buses do not support ACPI HIDs & CIDs, e.g. for a device with
282 * hid:IBM0001 and cid:ACPI0001 you get: "acpi:IBM0001:ACPI0001".
284 int acpi_device_uevent_modalias(struct device
*dev
, struct kobj_uevent_env
*env
)
286 return __acpi_device_uevent_modalias(acpi_companion_match(dev
), env
);
288 EXPORT_SYMBOL_GPL(acpi_device_uevent_modalias
);
290 static int __acpi_device_modalias(struct acpi_device
*adev
, char *buf
, int size
)
297 if (list_empty(&adev
->pnp
.ids
))
300 len
= create_pnp_modalias(adev
, buf
, size
- 1);
303 } else if (len
> 0) {
307 if (!adev
->data
.of_compatible
)
310 count
= create_of_modalias(adev
, buf
+ len
, size
- 1);
313 } else if (count
> 0) {
322 * acpi_device_modalias - modalias sysfs attribute for ACPI-enumerated devices.
324 * Create the modalias sysfs attribute for ACPI-enumerated devices.
326 * Because other buses do not support ACPI HIDs & CIDs, e.g. for a device with
327 * hid:IBM0001 and cid:ACPI0001 you get: "acpi:IBM0001:ACPI0001".
329 int acpi_device_modalias(struct device
*dev
, char *buf
, int size
)
331 return __acpi_device_modalias(acpi_companion_match(dev
), buf
, size
);
333 EXPORT_SYMBOL_GPL(acpi_device_modalias
);
336 acpi_device_modalias_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
338 return __acpi_device_modalias(to_acpi_device(dev
), buf
, 1024);
340 static DEVICE_ATTR(modalias
, 0444, acpi_device_modalias_show
, NULL
);
342 static ssize_t
real_power_state_show(struct device
*dev
,
343 struct device_attribute
*attr
, char *buf
)
345 struct acpi_device
*adev
= to_acpi_device(dev
);
349 ret
= acpi_device_get_power(adev
, &state
);
353 return sprintf(buf
, "%s\n", acpi_power_state_string(state
));
356 static DEVICE_ATTR_RO(real_power_state
);
358 static ssize_t
power_state_show(struct device
*dev
,
359 struct device_attribute
*attr
, char *buf
)
361 struct acpi_device
*adev
= to_acpi_device(dev
);
363 return sprintf(buf
, "%s\n", acpi_power_state_string(adev
->power
.state
));
366 static DEVICE_ATTR_RO(power_state
);
369 acpi_eject_store(struct device
*d
, struct device_attribute
*attr
,
370 const char *buf
, size_t count
)
372 struct acpi_device
*acpi_device
= to_acpi_device(d
);
373 acpi_object_type not_used
;
376 if (!count
|| buf
[0] != '1')
379 if ((!acpi_device
->handler
|| !acpi_device
->handler
->hotplug
.enabled
)
380 && !acpi_device
->driver
)
383 status
= acpi_get_type(acpi_device
->handle
, ¬_used
);
384 if (ACPI_FAILURE(status
) || !acpi_device
->flags
.ejectable
)
387 get_device(&acpi_device
->dev
);
388 status
= acpi_hotplug_schedule(acpi_device
, ACPI_OST_EC_OSPM_EJECT
);
389 if (ACPI_SUCCESS(status
))
392 put_device(&acpi_device
->dev
);
393 acpi_evaluate_ost(acpi_device
->handle
, ACPI_OST_EC_OSPM_EJECT
,
394 ACPI_OST_SC_NON_SPECIFIC_FAILURE
, NULL
);
395 return status
== AE_NO_MEMORY
? -ENOMEM
: -EAGAIN
;
398 static DEVICE_ATTR(eject
, 0200, NULL
, acpi_eject_store
);
401 acpi_device_hid_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
403 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
405 return sprintf(buf
, "%s\n", acpi_device_hid(acpi_dev
));
407 static DEVICE_ATTR(hid
, 0444, acpi_device_hid_show
, NULL
);
409 static ssize_t
acpi_device_uid_show(struct device
*dev
,
410 struct device_attribute
*attr
, char *buf
)
412 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
414 return sprintf(buf
, "%s\n", acpi_dev
->pnp
.unique_id
);
416 static DEVICE_ATTR(uid
, 0444, acpi_device_uid_show
, NULL
);
418 static ssize_t
acpi_device_adr_show(struct device
*dev
,
419 struct device_attribute
*attr
, char *buf
)
421 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
423 if (acpi_dev
->pnp
.bus_address
> U32_MAX
)
424 return sprintf(buf
, "0x%016llx\n", acpi_dev
->pnp
.bus_address
);
426 return sprintf(buf
, "0x%08llx\n", acpi_dev
->pnp
.bus_address
);
428 static DEVICE_ATTR(adr
, 0444, acpi_device_adr_show
, NULL
);
430 static ssize_t
acpi_device_path_show(struct device
*dev
,
431 struct device_attribute
*attr
, char *buf
)
433 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
435 return acpi_object_path(acpi_dev
->handle
, buf
);
437 static DEVICE_ATTR(path
, 0444, acpi_device_path_show
, NULL
);
439 /* sysfs file that shows description text from the ACPI _STR method */
440 static ssize_t
description_show(struct device
*dev
,
441 struct device_attribute
*attr
,
443 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
446 if (acpi_dev
->pnp
.str_obj
== NULL
)
450 * The _STR object contains a Unicode identifier for a device.
451 * We need to convert to utf-8 so it can be displayed.
453 result
= utf16s_to_utf8s(
454 (wchar_t *)acpi_dev
->pnp
.str_obj
->buffer
.pointer
,
455 acpi_dev
->pnp
.str_obj
->buffer
.length
,
456 UTF16_LITTLE_ENDIAN
, buf
,
459 buf
[result
++] = '\n';
463 static DEVICE_ATTR_RO(description
);
466 acpi_device_sun_show(struct device
*dev
, struct device_attribute
*attr
,
468 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
470 unsigned long long sun
;
472 status
= acpi_evaluate_integer(acpi_dev
->handle
, "_SUN", NULL
, &sun
);
473 if (ACPI_FAILURE(status
))
476 return sprintf(buf
, "%llu\n", sun
);
478 static DEVICE_ATTR(sun
, 0444, acpi_device_sun_show
, NULL
);
481 acpi_device_hrv_show(struct device
*dev
, struct device_attribute
*attr
,
483 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
485 unsigned long long hrv
;
487 status
= acpi_evaluate_integer(acpi_dev
->handle
, "_HRV", NULL
, &hrv
);
488 if (ACPI_FAILURE(status
))
491 return sprintf(buf
, "%llu\n", hrv
);
493 static DEVICE_ATTR(hrv
, 0444, acpi_device_hrv_show
, NULL
);
495 static ssize_t
status_show(struct device
*dev
, struct device_attribute
*attr
,
497 struct acpi_device
*acpi_dev
= to_acpi_device(dev
);
499 unsigned long long sta
;
501 status
= acpi_evaluate_integer(acpi_dev
->handle
, "_STA", NULL
, &sta
);
502 if (ACPI_FAILURE(status
))
505 return sprintf(buf
, "%llu\n", sta
);
507 static DEVICE_ATTR_RO(status
);
510 * acpi_device_setup_files - Create sysfs attributes of an ACPI device.
511 * @dev: ACPI device object.
513 int acpi_device_setup_files(struct acpi_device
*dev
)
515 struct acpi_buffer buffer
= {ACPI_ALLOCATE_BUFFER
, NULL
};
520 * Devices gotten from FADT don't have a "path" attribute
523 result
= device_create_file(&dev
->dev
, &dev_attr_path
);
528 if (!list_empty(&dev
->pnp
.ids
)) {
529 result
= device_create_file(&dev
->dev
, &dev_attr_hid
);
533 result
= device_create_file(&dev
->dev
, &dev_attr_modalias
);
539 * If device has _STR, 'description' file is created
541 if (acpi_has_method(dev
->handle
, "_STR")) {
542 status
= acpi_evaluate_object(dev
->handle
, "_STR",
544 if (ACPI_FAILURE(status
))
545 buffer
.pointer
= NULL
;
546 dev
->pnp
.str_obj
= buffer
.pointer
;
547 result
= device_create_file(&dev
->dev
, &dev_attr_description
);
552 if (dev
->pnp
.type
.bus_address
)
553 result
= device_create_file(&dev
->dev
, &dev_attr_adr
);
554 if (dev
->pnp
.unique_id
)
555 result
= device_create_file(&dev
->dev
, &dev_attr_uid
);
557 if (acpi_has_method(dev
->handle
, "_SUN")) {
558 result
= device_create_file(&dev
->dev
, &dev_attr_sun
);
563 if (acpi_has_method(dev
->handle
, "_HRV")) {
564 result
= device_create_file(&dev
->dev
, &dev_attr_hrv
);
569 if (acpi_has_method(dev
->handle
, "_STA")) {
570 result
= device_create_file(&dev
->dev
, &dev_attr_status
);
576 * If device has _EJ0, 'eject' file is created that is used to trigger
577 * hot-removal function from userland.
579 if (acpi_has_method(dev
->handle
, "_EJ0")) {
580 result
= device_create_file(&dev
->dev
, &dev_attr_eject
);
585 if (dev
->flags
.power_manageable
) {
586 result
= device_create_file(&dev
->dev
, &dev_attr_power_state
);
590 if (dev
->power
.flags
.power_resources
)
591 result
= device_create_file(&dev
->dev
,
592 &dev_attr_real_power_state
);
595 acpi_expose_nondev_subnodes(&dev
->dev
.kobj
, &dev
->data
);
602 * acpi_device_remove_files - Remove sysfs attributes of an ACPI device.
603 * @dev: ACPI device object.
605 void acpi_device_remove_files(struct acpi_device
*dev
)
607 acpi_hide_nondev_subnodes(&dev
->data
);
609 if (dev
->flags
.power_manageable
) {
610 device_remove_file(&dev
->dev
, &dev_attr_power_state
);
611 if (dev
->power
.flags
.power_resources
)
612 device_remove_file(&dev
->dev
,
613 &dev_attr_real_power_state
);
617 * If device has _STR, remove 'description' file
619 if (acpi_has_method(dev
->handle
, "_STR")) {
620 kfree(dev
->pnp
.str_obj
);
621 device_remove_file(&dev
->dev
, &dev_attr_description
);
624 * If device has _EJ0, remove 'eject' file.
626 if (acpi_has_method(dev
->handle
, "_EJ0"))
627 device_remove_file(&dev
->dev
, &dev_attr_eject
);
629 if (acpi_has_method(dev
->handle
, "_SUN"))
630 device_remove_file(&dev
->dev
, &dev_attr_sun
);
632 if (acpi_has_method(dev
->handle
, "_HRV"))
633 device_remove_file(&dev
->dev
, &dev_attr_hrv
);
635 if (dev
->pnp
.unique_id
)
636 device_remove_file(&dev
->dev
, &dev_attr_uid
);
637 if (dev
->pnp
.type
.bus_address
)
638 device_remove_file(&dev
->dev
, &dev_attr_adr
);
639 device_remove_file(&dev
->dev
, &dev_attr_modalias
);
640 device_remove_file(&dev
->dev
, &dev_attr_hid
);
641 if (acpi_has_method(dev
->handle
, "_STA"))
642 device_remove_file(&dev
->dev
, &dev_attr_status
);
644 device_remove_file(&dev
->dev
, &dev_attr_path
);