Loading...
1/*
2 * ACPI device specific properties support.
3 *
4 * Copyright (C) 2014, Intel Corporation
5 * All rights reserved.
6 *
7 * Authors: Mika Westerberg <mika.westerberg@linux.intel.com>
8 * Darren Hart <dvhart@linux.intel.com>
9 * Rafael J. Wysocki <rafael.j.wysocki@intel.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/acpi.h>
17#include <linux/device.h>
18#include <linux/export.h>
19
20#include "internal.h"
21
22static int acpi_data_get_property_array(struct acpi_device_data *data,
23 const char *name,
24 acpi_object_type type,
25 const union acpi_object **obj);
26
27/* ACPI _DSD device properties UUID: daffd814-6eba-4d8c-8a91-bc9bbf4aa301 */
28static const u8 prp_uuid[16] = {
29 0x14, 0xd8, 0xff, 0xda, 0xba, 0x6e, 0x8c, 0x4d,
30 0x8a, 0x91, 0xbc, 0x9b, 0xbf, 0x4a, 0xa3, 0x01
31};
32/* ACPI _DSD data subnodes UUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */
33static const u8 ads_uuid[16] = {
34 0xe6, 0xe3, 0xb8, 0xdb, 0x86, 0x58, 0xa6, 0x4b,
35 0x87, 0x95, 0x13, 0x19, 0xf5, 0x2a, 0x96, 0x6b
36};
37
38static bool acpi_enumerate_nondev_subnodes(acpi_handle scope,
39 const union acpi_object *desc,
40 struct acpi_device_data *data);
41static bool acpi_extract_properties(const union acpi_object *desc,
42 struct acpi_device_data *data);
43
44static bool acpi_nondev_subnode_ok(acpi_handle scope,
45 const union acpi_object *link,
46 struct list_head *list)
47{
48 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
49 struct acpi_data_node *dn;
50 acpi_handle handle;
51 acpi_status status;
52
53 dn = kzalloc(sizeof(*dn), GFP_KERNEL);
54 if (!dn)
55 return false;
56
57 dn->name = link->package.elements[0].string.pointer;
58 dn->fwnode.type = FWNODE_ACPI_DATA;
59 INIT_LIST_HEAD(&dn->data.subnodes);
60
61 status = acpi_get_handle(scope, link->package.elements[1].string.pointer,
62 &handle);
63 if (ACPI_FAILURE(status))
64 goto fail;
65
66 status = acpi_evaluate_object_typed(handle, NULL, NULL, &buf,
67 ACPI_TYPE_PACKAGE);
68 if (ACPI_FAILURE(status))
69 goto fail;
70
71 if (acpi_extract_properties(buf.pointer, &dn->data))
72 dn->handle = handle;
73
74 /*
75 * The scope for the subnode object lookup is the one of the namespace
76 * node (device) containing the object that has returned the package.
77 * That is, it's the scope of that object's parent.
78 */
79 status = acpi_get_parent(handle, &scope);
80 if (ACPI_SUCCESS(status)
81 && acpi_enumerate_nondev_subnodes(scope, buf.pointer, &dn->data))
82 dn->handle = handle;
83
84 if (dn->handle) {
85 dn->data.pointer = buf.pointer;
86 list_add_tail(&dn->sibling, list);
87 return true;
88 }
89
90 acpi_handle_debug(handle, "Invalid properties/subnodes data, skipping\n");
91
92 fail:
93 ACPI_FREE(buf.pointer);
94 kfree(dn);
95 return false;
96}
97
98static int acpi_add_nondev_subnodes(acpi_handle scope,
99 const union acpi_object *links,
100 struct list_head *list)
101{
102 bool ret = false;
103 int i;
104
105 for (i = 0; i < links->package.count; i++) {
106 const union acpi_object *link;
107
108 link = &links->package.elements[i];
109 /* Only two elements allowed, both must be strings. */
110 if (link->package.count == 2
111 && link->package.elements[0].type == ACPI_TYPE_STRING
112 && link->package.elements[1].type == ACPI_TYPE_STRING
113 && acpi_nondev_subnode_ok(scope, link, list))
114 ret = true;
115 }
116
117 return ret;
118}
119
120static bool acpi_enumerate_nondev_subnodes(acpi_handle scope,
121 const union acpi_object *desc,
122 struct acpi_device_data *data)
123{
124 int i;
125
126 /* Look for the ACPI data subnodes UUID. */
127 for (i = 0; i < desc->package.count; i += 2) {
128 const union acpi_object *uuid, *links;
129
130 uuid = &desc->package.elements[i];
131 links = &desc->package.elements[i + 1];
132
133 /*
134 * The first element must be a UUID and the second one must be
135 * a package.
136 */
137 if (uuid->type != ACPI_TYPE_BUFFER || uuid->buffer.length != 16
138 || links->type != ACPI_TYPE_PACKAGE)
139 break;
140
141 if (memcmp(uuid->buffer.pointer, ads_uuid, sizeof(ads_uuid)))
142 continue;
143
144 return acpi_add_nondev_subnodes(scope, links, &data->subnodes);
145 }
146
147 return false;
148}
149
150static bool acpi_property_value_ok(const union acpi_object *value)
151{
152 int j;
153
154 /*
155 * The value must be an integer, a string, a reference, or a package
156 * whose every element must be an integer, a string, or a reference.
157 */
158 switch (value->type) {
159 case ACPI_TYPE_INTEGER:
160 case ACPI_TYPE_STRING:
161 case ACPI_TYPE_LOCAL_REFERENCE:
162 return true;
163
164 case ACPI_TYPE_PACKAGE:
165 for (j = 0; j < value->package.count; j++)
166 switch (value->package.elements[j].type) {
167 case ACPI_TYPE_INTEGER:
168 case ACPI_TYPE_STRING:
169 case ACPI_TYPE_LOCAL_REFERENCE:
170 continue;
171
172 default:
173 return false;
174 }
175
176 return true;
177 }
178 return false;
179}
180
181static bool acpi_properties_format_valid(const union acpi_object *properties)
182{
183 int i;
184
185 for (i = 0; i < properties->package.count; i++) {
186 const union acpi_object *property;
187
188 property = &properties->package.elements[i];
189 /*
190 * Only two elements allowed, the first one must be a string and
191 * the second one has to satisfy certain conditions.
192 */
193 if (property->package.count != 2
194 || property->package.elements[0].type != ACPI_TYPE_STRING
195 || !acpi_property_value_ok(&property->package.elements[1]))
196 return false;
197 }
198 return true;
199}
200
201static void acpi_init_of_compatible(struct acpi_device *adev)
202{
203 const union acpi_object *of_compatible;
204 int ret;
205
206 ret = acpi_data_get_property_array(&adev->data, "compatible",
207 ACPI_TYPE_STRING, &of_compatible);
208 if (ret) {
209 ret = acpi_dev_get_property(adev, "compatible",
210 ACPI_TYPE_STRING, &of_compatible);
211 if (ret) {
212 if (adev->parent
213 && adev->parent->flags.of_compatible_ok)
214 goto out;
215
216 return;
217 }
218 }
219 adev->data.of_compatible = of_compatible;
220
221 out:
222 adev->flags.of_compatible_ok = 1;
223}
224
225static bool acpi_extract_properties(const union acpi_object *desc,
226 struct acpi_device_data *data)
227{
228 int i;
229
230 if (desc->package.count % 2)
231 return false;
232
233 /* Look for the device properties UUID. */
234 for (i = 0; i < desc->package.count; i += 2) {
235 const union acpi_object *uuid, *properties;
236
237 uuid = &desc->package.elements[i];
238 properties = &desc->package.elements[i + 1];
239
240 /*
241 * The first element must be a UUID and the second one must be
242 * a package.
243 */
244 if (uuid->type != ACPI_TYPE_BUFFER || uuid->buffer.length != 16
245 || properties->type != ACPI_TYPE_PACKAGE)
246 break;
247
248 if (memcmp(uuid->buffer.pointer, prp_uuid, sizeof(prp_uuid)))
249 continue;
250
251 /*
252 * We found the matching UUID. Now validate the format of the
253 * package immediately following it.
254 */
255 if (!acpi_properties_format_valid(properties))
256 break;
257
258 data->properties = properties;
259 return true;
260 }
261
262 return false;
263}
264
265void acpi_init_properties(struct acpi_device *adev)
266{
267 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
268 struct acpi_hardware_id *hwid;
269 acpi_status status;
270 bool acpi_of = false;
271
272 INIT_LIST_HEAD(&adev->data.subnodes);
273
274 /*
275 * Check if ACPI_DT_NAMESPACE_HID is present and inthat case we fill in
276 * Device Tree compatible properties for this device.
277 */
278 list_for_each_entry(hwid, &adev->pnp.ids, list) {
279 if (!strcmp(hwid->id, ACPI_DT_NAMESPACE_HID)) {
280 acpi_of = true;
281 break;
282 }
283 }
284
285 status = acpi_evaluate_object_typed(adev->handle, "_DSD", NULL, &buf,
286 ACPI_TYPE_PACKAGE);
287 if (ACPI_FAILURE(status))
288 goto out;
289
290 if (acpi_extract_properties(buf.pointer, &adev->data)) {
291 adev->data.pointer = buf.pointer;
292 if (acpi_of)
293 acpi_init_of_compatible(adev);
294 }
295 if (acpi_enumerate_nondev_subnodes(adev->handle, buf.pointer, &adev->data))
296 adev->data.pointer = buf.pointer;
297
298 if (!adev->data.pointer) {
299 acpi_handle_debug(adev->handle, "Invalid _DSD data, skipping\n");
300 ACPI_FREE(buf.pointer);
301 }
302
303 out:
304 if (acpi_of && !adev->flags.of_compatible_ok)
305 acpi_handle_info(adev->handle,
306 ACPI_DT_NAMESPACE_HID " requires 'compatible' property\n");
307}
308
309static void acpi_destroy_nondev_subnodes(struct list_head *list)
310{
311 struct acpi_data_node *dn, *next;
312
313 if (list_empty(list))
314 return;
315
316 list_for_each_entry_safe_reverse(dn, next, list, sibling) {
317 acpi_destroy_nondev_subnodes(&dn->data.subnodes);
318 wait_for_completion(&dn->kobj_done);
319 list_del(&dn->sibling);
320 ACPI_FREE((void *)dn->data.pointer);
321 kfree(dn);
322 }
323}
324
325void acpi_free_properties(struct acpi_device *adev)
326{
327 acpi_destroy_nondev_subnodes(&adev->data.subnodes);
328 ACPI_FREE((void *)adev->data.pointer);
329 adev->data.of_compatible = NULL;
330 adev->data.pointer = NULL;
331 adev->data.properties = NULL;
332}
333
334/**
335 * acpi_data_get_property - return an ACPI property with given name
336 * @data: ACPI device deta object to get the property from
337 * @name: Name of the property
338 * @type: Expected property type
339 * @obj: Location to store the property value (if not %NULL)
340 *
341 * Look up a property with @name and store a pointer to the resulting ACPI
342 * object at the location pointed to by @obj if found.
343 *
344 * Callers must not attempt to free the returned objects. These objects will be
345 * freed by the ACPI core automatically during the removal of @data.
346 *
347 * Return: %0 if property with @name has been found (success),
348 * %-EINVAL if the arguments are invalid,
349 * %-EINVAL if the property doesn't exist,
350 * %-EPROTO if the property value type doesn't match @type.
351 */
352static int acpi_data_get_property(struct acpi_device_data *data,
353 const char *name, acpi_object_type type,
354 const union acpi_object **obj)
355{
356 const union acpi_object *properties;
357 int i;
358
359 if (!data || !name)
360 return -EINVAL;
361
362 if (!data->pointer || !data->properties)
363 return -EINVAL;
364
365 properties = data->properties;
366 for (i = 0; i < properties->package.count; i++) {
367 const union acpi_object *propname, *propvalue;
368 const union acpi_object *property;
369
370 property = &properties->package.elements[i];
371
372 propname = &property->package.elements[0];
373 propvalue = &property->package.elements[1];
374
375 if (!strcmp(name, propname->string.pointer)) {
376 if (type != ACPI_TYPE_ANY && propvalue->type != type)
377 return -EPROTO;
378 if (obj)
379 *obj = propvalue;
380
381 return 0;
382 }
383 }
384 return -EINVAL;
385}
386
387/**
388 * acpi_dev_get_property - return an ACPI property with given name.
389 * @adev: ACPI device to get the property from.
390 * @name: Name of the property.
391 * @type: Expected property type.
392 * @obj: Location to store the property value (if not %NULL).
393 */
394int acpi_dev_get_property(struct acpi_device *adev, const char *name,
395 acpi_object_type type, const union acpi_object **obj)
396{
397 return adev ? acpi_data_get_property(&adev->data, name, type, obj) : -EINVAL;
398}
399EXPORT_SYMBOL_GPL(acpi_dev_get_property);
400
401static struct acpi_device_data *acpi_device_data_of_node(struct fwnode_handle *fwnode)
402{
403 if (fwnode->type == FWNODE_ACPI) {
404 struct acpi_device *adev = to_acpi_device_node(fwnode);
405 return &adev->data;
406 } else if (fwnode->type == FWNODE_ACPI_DATA) {
407 struct acpi_data_node *dn = to_acpi_data_node(fwnode);
408 return &dn->data;
409 }
410 return NULL;
411}
412
413/**
414 * acpi_node_prop_get - return an ACPI property with given name.
415 * @fwnode: Firmware node to get the property from.
416 * @propname: Name of the property.
417 * @valptr: Location to store a pointer to the property value (if not %NULL).
418 */
419int acpi_node_prop_get(struct fwnode_handle *fwnode, const char *propname,
420 void **valptr)
421{
422 return acpi_data_get_property(acpi_device_data_of_node(fwnode),
423 propname, ACPI_TYPE_ANY,
424 (const union acpi_object **)valptr);
425}
426
427/**
428 * acpi_data_get_property_array - return an ACPI array property with given name
429 * @adev: ACPI data object to get the property from
430 * @name: Name of the property
431 * @type: Expected type of array elements
432 * @obj: Location to store a pointer to the property value (if not NULL)
433 *
434 * Look up an array property with @name and store a pointer to the resulting
435 * ACPI object at the location pointed to by @obj if found.
436 *
437 * Callers must not attempt to free the returned objects. Those objects will be
438 * freed by the ACPI core automatically during the removal of @data.
439 *
440 * Return: %0 if array property (package) with @name has been found (success),
441 * %-EINVAL if the arguments are invalid,
442 * %-EINVAL if the property doesn't exist,
443 * %-EPROTO if the property is not a package or the type of its elements
444 * doesn't match @type.
445 */
446static int acpi_data_get_property_array(struct acpi_device_data *data,
447 const char *name,
448 acpi_object_type type,
449 const union acpi_object **obj)
450{
451 const union acpi_object *prop;
452 int ret, i;
453
454 ret = acpi_data_get_property(data, name, ACPI_TYPE_PACKAGE, &prop);
455 if (ret)
456 return ret;
457
458 if (type != ACPI_TYPE_ANY) {
459 /* Check that all elements are of correct type. */
460 for (i = 0; i < prop->package.count; i++)
461 if (prop->package.elements[i].type != type)
462 return -EPROTO;
463 }
464 if (obj)
465 *obj = prop;
466
467 return 0;
468}
469
470/**
471 * acpi_data_get_property_reference - returns handle to the referenced object
472 * @data: ACPI device data object containing the property
473 * @propname: Name of the property
474 * @index: Index of the reference to return
475 * @args: Location to store the returned reference with optional arguments
476 *
477 * Find property with @name, verifify that it is a package containing at least
478 * one object reference and if so, store the ACPI device object pointer to the
479 * target object in @args->adev. If the reference includes arguments, store
480 * them in the @args->args[] array.
481 *
482 * If there's more than one reference in the property value package, @index is
483 * used to select the one to return.
484 *
485 * Return: %0 on success, negative error code on failure.
486 */
487static int acpi_data_get_property_reference(struct acpi_device_data *data,
488 const char *propname, size_t index,
489 struct acpi_reference_args *args)
490{
491 const union acpi_object *element, *end;
492 const union acpi_object *obj;
493 struct acpi_device *device;
494 int ret, idx = 0;
495
496 ret = acpi_data_get_property(data, propname, ACPI_TYPE_ANY, &obj);
497 if (ret)
498 return ret;
499
500 /*
501 * The simplest case is when the value is a single reference. Just
502 * return that reference then.
503 */
504 if (obj->type == ACPI_TYPE_LOCAL_REFERENCE) {
505 if (index)
506 return -EINVAL;
507
508 ret = acpi_bus_get_device(obj->reference.handle, &device);
509 if (ret)
510 return ret;
511
512 args->adev = device;
513 args->nargs = 0;
514 return 0;
515 }
516
517 /*
518 * If it is not a single reference, then it is a package of
519 * references followed by number of ints as follows:
520 *
521 * Package () { REF, INT, REF, INT, INT }
522 *
523 * The index argument is then used to determine which reference
524 * the caller wants (along with the arguments).
525 */
526 if (obj->type != ACPI_TYPE_PACKAGE || index >= obj->package.count)
527 return -EPROTO;
528
529 element = obj->package.elements;
530 end = element + obj->package.count;
531
532 while (element < end) {
533 u32 nargs, i;
534
535 if (element->type != ACPI_TYPE_LOCAL_REFERENCE)
536 return -EPROTO;
537
538 ret = acpi_bus_get_device(element->reference.handle, &device);
539 if (ret)
540 return -ENODEV;
541
542 element++;
543 nargs = 0;
544
545 /* assume following integer elements are all args */
546 for (i = 0; element + i < end; i++) {
547 int type = element[i].type;
548
549 if (type == ACPI_TYPE_INTEGER)
550 nargs++;
551 else if (type == ACPI_TYPE_LOCAL_REFERENCE)
552 break;
553 else
554 return -EPROTO;
555 }
556
557 if (idx++ == index) {
558 args->adev = device;
559 args->nargs = nargs;
560 for (i = 0; i < nargs; i++)
561 args->args[i] = element[i].integer.value;
562
563 return 0;
564 }
565
566 element += nargs;
567 }
568
569 return -EPROTO;
570}
571
572/**
573 * acpi_node_get_property_reference - get a handle to the referenced object.
574 * @fwnode: Firmware node to get the property from.
575 * @propname: Name of the property.
576 * @index: Index of the reference to return.
577 * @args: Location to store the returned reference with optional arguments.
578 */
579int acpi_node_get_property_reference(struct fwnode_handle *fwnode,
580 const char *name, size_t index,
581 struct acpi_reference_args *args)
582{
583 struct acpi_device_data *data = acpi_device_data_of_node(fwnode);
584
585 return data ? acpi_data_get_property_reference(data, name, index, args) : -EINVAL;
586}
587EXPORT_SYMBOL_GPL(acpi_node_get_property_reference);
588
589static int acpi_data_prop_read_single(struct acpi_device_data *data,
590 const char *propname,
591 enum dev_prop_type proptype, void *val)
592{
593 const union acpi_object *obj;
594 int ret;
595
596 if (!val)
597 return -EINVAL;
598
599 if (proptype >= DEV_PROP_U8 && proptype <= DEV_PROP_U64) {
600 ret = acpi_data_get_property(data, propname, ACPI_TYPE_INTEGER, &obj);
601 if (ret)
602 return ret;
603
604 switch (proptype) {
605 case DEV_PROP_U8:
606 if (obj->integer.value > U8_MAX)
607 return -EOVERFLOW;
608 *(u8 *)val = obj->integer.value;
609 break;
610 case DEV_PROP_U16:
611 if (obj->integer.value > U16_MAX)
612 return -EOVERFLOW;
613 *(u16 *)val = obj->integer.value;
614 break;
615 case DEV_PROP_U32:
616 if (obj->integer.value > U32_MAX)
617 return -EOVERFLOW;
618 *(u32 *)val = obj->integer.value;
619 break;
620 default:
621 *(u64 *)val = obj->integer.value;
622 break;
623 }
624 } else if (proptype == DEV_PROP_STRING) {
625 ret = acpi_data_get_property(data, propname, ACPI_TYPE_STRING, &obj);
626 if (ret)
627 return ret;
628
629 *(char **)val = obj->string.pointer;
630 } else {
631 ret = -EINVAL;
632 }
633 return ret;
634}
635
636int acpi_dev_prop_read_single(struct acpi_device *adev, const char *propname,
637 enum dev_prop_type proptype, void *val)
638{
639 return adev ? acpi_data_prop_read_single(&adev->data, propname, proptype, val) : -EINVAL;
640}
641
642static int acpi_copy_property_array_u8(const union acpi_object *items, u8 *val,
643 size_t nval)
644{
645 int i;
646
647 for (i = 0; i < nval; i++) {
648 if (items[i].type != ACPI_TYPE_INTEGER)
649 return -EPROTO;
650 if (items[i].integer.value > U8_MAX)
651 return -EOVERFLOW;
652
653 val[i] = items[i].integer.value;
654 }
655 return 0;
656}
657
658static int acpi_copy_property_array_u16(const union acpi_object *items,
659 u16 *val, size_t nval)
660{
661 int i;
662
663 for (i = 0; i < nval; i++) {
664 if (items[i].type != ACPI_TYPE_INTEGER)
665 return -EPROTO;
666 if (items[i].integer.value > U16_MAX)
667 return -EOVERFLOW;
668
669 val[i] = items[i].integer.value;
670 }
671 return 0;
672}
673
674static int acpi_copy_property_array_u32(const union acpi_object *items,
675 u32 *val, size_t nval)
676{
677 int i;
678
679 for (i = 0; i < nval; i++) {
680 if (items[i].type != ACPI_TYPE_INTEGER)
681 return -EPROTO;
682 if (items[i].integer.value > U32_MAX)
683 return -EOVERFLOW;
684
685 val[i] = items[i].integer.value;
686 }
687 return 0;
688}
689
690static int acpi_copy_property_array_u64(const union acpi_object *items,
691 u64 *val, size_t nval)
692{
693 int i;
694
695 for (i = 0; i < nval; i++) {
696 if (items[i].type != ACPI_TYPE_INTEGER)
697 return -EPROTO;
698
699 val[i] = items[i].integer.value;
700 }
701 return 0;
702}
703
704static int acpi_copy_property_array_string(const union acpi_object *items,
705 char **val, size_t nval)
706{
707 int i;
708
709 for (i = 0; i < nval; i++) {
710 if (items[i].type != ACPI_TYPE_STRING)
711 return -EPROTO;
712
713 val[i] = items[i].string.pointer;
714 }
715 return 0;
716}
717
718static int acpi_data_prop_read(struct acpi_device_data *data,
719 const char *propname,
720 enum dev_prop_type proptype,
721 void *val, size_t nval)
722{
723 const union acpi_object *obj;
724 const union acpi_object *items;
725 int ret;
726
727 if (val && nval == 1) {
728 ret = acpi_data_prop_read_single(data, propname, proptype, val);
729 if (!ret)
730 return ret;
731 }
732
733 ret = acpi_data_get_property_array(data, propname, ACPI_TYPE_ANY, &obj);
734 if (ret)
735 return ret;
736
737 if (!val)
738 return obj->package.count;
739
740 if (nval > obj->package.count)
741 return -EOVERFLOW;
742 else if (nval <= 0)
743 return -EINVAL;
744
745 items = obj->package.elements;
746
747 switch (proptype) {
748 case DEV_PROP_U8:
749 ret = acpi_copy_property_array_u8(items, (u8 *)val, nval);
750 break;
751 case DEV_PROP_U16:
752 ret = acpi_copy_property_array_u16(items, (u16 *)val, nval);
753 break;
754 case DEV_PROP_U32:
755 ret = acpi_copy_property_array_u32(items, (u32 *)val, nval);
756 break;
757 case DEV_PROP_U64:
758 ret = acpi_copy_property_array_u64(items, (u64 *)val, nval);
759 break;
760 case DEV_PROP_STRING:
761 ret = acpi_copy_property_array_string(items, (char **)val, nval);
762 break;
763 default:
764 ret = -EINVAL;
765 break;
766 }
767 return ret;
768}
769
770int acpi_dev_prop_read(struct acpi_device *adev, const char *propname,
771 enum dev_prop_type proptype, void *val, size_t nval)
772{
773 return adev ? acpi_data_prop_read(&adev->data, propname, proptype, val, nval) : -EINVAL;
774}
775
776/**
777 * acpi_node_prop_read - retrieve the value of an ACPI property with given name.
778 * @fwnode: Firmware node to get the property from.
779 * @propname: Name of the property.
780 * @proptype: Expected property type.
781 * @val: Location to store the property value (if not %NULL).
782 * @nval: Size of the array pointed to by @val.
783 *
784 * If @val is %NULL, return the number of array elements comprising the value
785 * of the property. Otherwise, read at most @nval values to the array at the
786 * location pointed to by @val.
787 */
788int acpi_node_prop_read(struct fwnode_handle *fwnode, const char *propname,
789 enum dev_prop_type proptype, void *val, size_t nval)
790{
791 return acpi_data_prop_read(acpi_device_data_of_node(fwnode),
792 propname, proptype, val, nval);
793}
794
795/**
796 * acpi_get_next_subnode - Return the next child node handle for a device.
797 * @dev: Device to find the next child node for.
798 * @child: Handle to one of the device's child nodes or a null handle.
799 */
800struct fwnode_handle *acpi_get_next_subnode(struct device *dev,
801 struct fwnode_handle *child)
802{
803 struct acpi_device *adev = ACPI_COMPANION(dev);
804 struct list_head *head, *next;
805
806 if (!adev)
807 return NULL;
808
809 if (!child || child->type == FWNODE_ACPI) {
810 head = &adev->children;
811 if (list_empty(head))
812 goto nondev;
813
814 if (child) {
815 adev = to_acpi_device_node(child);
816 next = adev->node.next;
817 if (next == head) {
818 child = NULL;
819 adev = ACPI_COMPANION(dev);
820 goto nondev;
821 }
822 adev = list_entry(next, struct acpi_device, node);
823 } else {
824 adev = list_first_entry(head, struct acpi_device, node);
825 }
826 return acpi_fwnode_handle(adev);
827 }
828
829 nondev:
830 if (!child || child->type == FWNODE_ACPI_DATA) {
831 struct acpi_data_node *dn;
832
833 head = &adev->data.subnodes;
834 if (list_empty(head))
835 return NULL;
836
837 if (child) {
838 dn = to_acpi_data_node(child);
839 next = dn->sibling.next;
840 if (next == head)
841 return NULL;
842
843 dn = list_entry(next, struct acpi_data_node, sibling);
844 } else {
845 dn = list_first_entry(head, struct acpi_data_node, sibling);
846 }
847 return &dn->fwnode;
848 }
849 return NULL;
850}
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * ACPI device specific properties support.
4 *
5 * Copyright (C) 2014, Intel Corporation
6 * All rights reserved.
7 *
8 * Authors: Mika Westerberg <mika.westerberg@linux.intel.com>
9 * Darren Hart <dvhart@linux.intel.com>
10 * Rafael J. Wysocki <rafael.j.wysocki@intel.com>
11 */
12
13#include <linux/acpi.h>
14#include <linux/device.h>
15#include <linux/export.h>
16
17#include "internal.h"
18
19static int acpi_data_get_property_array(const struct acpi_device_data *data,
20 const char *name,
21 acpi_object_type type,
22 const union acpi_object **obj);
23
24/*
25 * The GUIDs here are made equivalent to each other in order to avoid extra
26 * complexity in the properties handling code, with the caveat that the
27 * kernel will accept certain combinations of GUID and properties that are
28 * not defined without a warning. For instance if any of the properties
29 * from different GUID appear in a property list of another, it will be
30 * accepted by the kernel. Firmware validation tools should catch these.
31 */
32static const guid_t prp_guids[] = {
33 /* ACPI _DSD device properties GUID: daffd814-6eba-4d8c-8a91-bc9bbf4aa301 */
34 GUID_INIT(0xdaffd814, 0x6eba, 0x4d8c,
35 0x8a, 0x91, 0xbc, 0x9b, 0xbf, 0x4a, 0xa3, 0x01),
36 /* Hotplug in D3 GUID: 6211e2c0-58a3-4af3-90e1-927a4e0c55a4 */
37 GUID_INIT(0x6211e2c0, 0x58a3, 0x4af3,
38 0x90, 0xe1, 0x92, 0x7a, 0x4e, 0x0c, 0x55, 0xa4),
39 /* External facing port GUID: efcc06cc-73ac-4bc3-bff0-76143807c389 */
40 GUID_INIT(0xefcc06cc, 0x73ac, 0x4bc3,
41 0xbf, 0xf0, 0x76, 0x14, 0x38, 0x07, 0xc3, 0x89),
42 /* Thunderbolt GUID for IMR_VALID: c44d002f-69f9-4e7d-a904-a7baabdf43f7 */
43 GUID_INIT(0xc44d002f, 0x69f9, 0x4e7d,
44 0xa9, 0x04, 0xa7, 0xba, 0xab, 0xdf, 0x43, 0xf7),
45 /* Thunderbolt GUID for WAKE_SUPPORTED: 6c501103-c189-4296-ba72-9bf5a26ebe5d */
46 GUID_INIT(0x6c501103, 0xc189, 0x4296,
47 0xba, 0x72, 0x9b, 0xf5, 0xa2, 0x6e, 0xbe, 0x5d),
48};
49
50/* ACPI _DSD data subnodes GUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */
51static const guid_t ads_guid =
52 GUID_INIT(0xdbb8e3e6, 0x5886, 0x4ba6,
53 0x87, 0x95, 0x13, 0x19, 0xf5, 0x2a, 0x96, 0x6b);
54
55static bool acpi_enumerate_nondev_subnodes(acpi_handle scope,
56 const union acpi_object *desc,
57 struct acpi_device_data *data,
58 struct fwnode_handle *parent);
59static bool acpi_extract_properties(const union acpi_object *desc,
60 struct acpi_device_data *data);
61
62static bool acpi_nondev_subnode_extract(const union acpi_object *desc,
63 acpi_handle handle,
64 const union acpi_object *link,
65 struct list_head *list,
66 struct fwnode_handle *parent)
67{
68 struct acpi_data_node *dn;
69 bool result;
70
71 dn = kzalloc(sizeof(*dn), GFP_KERNEL);
72 if (!dn)
73 return false;
74
75 dn->name = link->package.elements[0].string.pointer;
76 dn->fwnode.ops = &acpi_data_fwnode_ops;
77 dn->parent = parent;
78 INIT_LIST_HEAD(&dn->data.properties);
79 INIT_LIST_HEAD(&dn->data.subnodes);
80
81 result = acpi_extract_properties(desc, &dn->data);
82
83 if (handle) {
84 acpi_handle scope;
85 acpi_status status;
86
87 /*
88 * The scope for the subnode object lookup is the one of the
89 * namespace node (device) containing the object that has
90 * returned the package. That is, it's the scope of that
91 * object's parent.
92 */
93 status = acpi_get_parent(handle, &scope);
94 if (ACPI_SUCCESS(status)
95 && acpi_enumerate_nondev_subnodes(scope, desc, &dn->data,
96 &dn->fwnode))
97 result = true;
98 } else if (acpi_enumerate_nondev_subnodes(NULL, desc, &dn->data,
99 &dn->fwnode)) {
100 result = true;
101 }
102
103 if (result) {
104 dn->handle = handle;
105 dn->data.pointer = desc;
106 list_add_tail(&dn->sibling, list);
107 return true;
108 }
109
110 kfree(dn);
111 acpi_handle_debug(handle, "Invalid properties/subnodes data, skipping\n");
112 return false;
113}
114
115static bool acpi_nondev_subnode_data_ok(acpi_handle handle,
116 const union acpi_object *link,
117 struct list_head *list,
118 struct fwnode_handle *parent)
119{
120 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
121 acpi_status status;
122
123 status = acpi_evaluate_object_typed(handle, NULL, NULL, &buf,
124 ACPI_TYPE_PACKAGE);
125 if (ACPI_FAILURE(status))
126 return false;
127
128 if (acpi_nondev_subnode_extract(buf.pointer, handle, link, list,
129 parent))
130 return true;
131
132 ACPI_FREE(buf.pointer);
133 return false;
134}
135
136static bool acpi_nondev_subnode_ok(acpi_handle scope,
137 const union acpi_object *link,
138 struct list_head *list,
139 struct fwnode_handle *parent)
140{
141 acpi_handle handle;
142 acpi_status status;
143
144 if (!scope)
145 return false;
146
147 status = acpi_get_handle(scope, link->package.elements[1].string.pointer,
148 &handle);
149 if (ACPI_FAILURE(status))
150 return false;
151
152 return acpi_nondev_subnode_data_ok(handle, link, list, parent);
153}
154
155static int acpi_add_nondev_subnodes(acpi_handle scope,
156 const union acpi_object *links,
157 struct list_head *list,
158 struct fwnode_handle *parent)
159{
160 bool ret = false;
161 int i;
162
163 for (i = 0; i < links->package.count; i++) {
164 const union acpi_object *link, *desc;
165 acpi_handle handle;
166 bool result;
167
168 link = &links->package.elements[i];
169 /* Only two elements allowed. */
170 if (link->package.count != 2)
171 continue;
172
173 /* The first one must be a string. */
174 if (link->package.elements[0].type != ACPI_TYPE_STRING)
175 continue;
176
177 /* The second one may be a string, a reference or a package. */
178 switch (link->package.elements[1].type) {
179 case ACPI_TYPE_STRING:
180 result = acpi_nondev_subnode_ok(scope, link, list,
181 parent);
182 break;
183 case ACPI_TYPE_LOCAL_REFERENCE:
184 handle = link->package.elements[1].reference.handle;
185 result = acpi_nondev_subnode_data_ok(handle, link, list,
186 parent);
187 break;
188 case ACPI_TYPE_PACKAGE:
189 desc = &link->package.elements[1];
190 result = acpi_nondev_subnode_extract(desc, NULL, link,
191 list, parent);
192 break;
193 default:
194 result = false;
195 break;
196 }
197 ret = ret || result;
198 }
199
200 return ret;
201}
202
203static bool acpi_enumerate_nondev_subnodes(acpi_handle scope,
204 const union acpi_object *desc,
205 struct acpi_device_data *data,
206 struct fwnode_handle *parent)
207{
208 int i;
209
210 /* Look for the ACPI data subnodes GUID. */
211 for (i = 0; i < desc->package.count; i += 2) {
212 const union acpi_object *guid, *links;
213
214 guid = &desc->package.elements[i];
215 links = &desc->package.elements[i + 1];
216
217 /*
218 * The first element must be a GUID and the second one must be
219 * a package.
220 */
221 if (guid->type != ACPI_TYPE_BUFFER ||
222 guid->buffer.length != 16 ||
223 links->type != ACPI_TYPE_PACKAGE)
224 break;
225
226 if (!guid_equal((guid_t *)guid->buffer.pointer, &ads_guid))
227 continue;
228
229 return acpi_add_nondev_subnodes(scope, links, &data->subnodes,
230 parent);
231 }
232
233 return false;
234}
235
236static bool acpi_property_value_ok(const union acpi_object *value)
237{
238 int j;
239
240 /*
241 * The value must be an integer, a string, a reference, or a package
242 * whose every element must be an integer, a string, or a reference.
243 */
244 switch (value->type) {
245 case ACPI_TYPE_INTEGER:
246 case ACPI_TYPE_STRING:
247 case ACPI_TYPE_LOCAL_REFERENCE:
248 return true;
249
250 case ACPI_TYPE_PACKAGE:
251 for (j = 0; j < value->package.count; j++)
252 switch (value->package.elements[j].type) {
253 case ACPI_TYPE_INTEGER:
254 case ACPI_TYPE_STRING:
255 case ACPI_TYPE_LOCAL_REFERENCE:
256 continue;
257
258 default:
259 return false;
260 }
261
262 return true;
263 }
264 return false;
265}
266
267static bool acpi_properties_format_valid(const union acpi_object *properties)
268{
269 int i;
270
271 for (i = 0; i < properties->package.count; i++) {
272 const union acpi_object *property;
273
274 property = &properties->package.elements[i];
275 /*
276 * Only two elements allowed, the first one must be a string and
277 * the second one has to satisfy certain conditions.
278 */
279 if (property->package.count != 2
280 || property->package.elements[0].type != ACPI_TYPE_STRING
281 || !acpi_property_value_ok(&property->package.elements[1]))
282 return false;
283 }
284 return true;
285}
286
287static void acpi_init_of_compatible(struct acpi_device *adev)
288{
289 const union acpi_object *of_compatible;
290 int ret;
291
292 ret = acpi_data_get_property_array(&adev->data, "compatible",
293 ACPI_TYPE_STRING, &of_compatible);
294 if (ret) {
295 ret = acpi_dev_get_property(adev, "compatible",
296 ACPI_TYPE_STRING, &of_compatible);
297 if (ret) {
298 if (adev->parent
299 && adev->parent->flags.of_compatible_ok)
300 goto out;
301
302 return;
303 }
304 }
305 adev->data.of_compatible = of_compatible;
306
307 out:
308 adev->flags.of_compatible_ok = 1;
309}
310
311static bool acpi_is_property_guid(const guid_t *guid)
312{
313 int i;
314
315 for (i = 0; i < ARRAY_SIZE(prp_guids); i++) {
316 if (guid_equal(guid, &prp_guids[i]))
317 return true;
318 }
319
320 return false;
321}
322
323struct acpi_device_properties *
324acpi_data_add_props(struct acpi_device_data *data, const guid_t *guid,
325 const union acpi_object *properties)
326{
327 struct acpi_device_properties *props;
328
329 props = kzalloc(sizeof(*props), GFP_KERNEL);
330 if (props) {
331 INIT_LIST_HEAD(&props->list);
332 props->guid = guid;
333 props->properties = properties;
334 list_add_tail(&props->list, &data->properties);
335 }
336
337 return props;
338}
339
340static bool acpi_extract_properties(const union acpi_object *desc,
341 struct acpi_device_data *data)
342{
343 int i;
344
345 if (desc->package.count % 2)
346 return false;
347
348 /* Look for the device properties GUID. */
349 for (i = 0; i < desc->package.count; i += 2) {
350 const union acpi_object *guid, *properties;
351
352 guid = &desc->package.elements[i];
353 properties = &desc->package.elements[i + 1];
354
355 /*
356 * The first element must be a GUID and the second one must be
357 * a package.
358 */
359 if (guid->type != ACPI_TYPE_BUFFER ||
360 guid->buffer.length != 16 ||
361 properties->type != ACPI_TYPE_PACKAGE)
362 break;
363
364 if (!acpi_is_property_guid((guid_t *)guid->buffer.pointer))
365 continue;
366
367 /*
368 * We found the matching GUID. Now validate the format of the
369 * package immediately following it.
370 */
371 if (!acpi_properties_format_valid(properties))
372 continue;
373
374 acpi_data_add_props(data, (const guid_t *)guid->buffer.pointer,
375 properties);
376 }
377
378 return !list_empty(&data->properties);
379}
380
381void acpi_init_properties(struct acpi_device *adev)
382{
383 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
384 struct acpi_hardware_id *hwid;
385 acpi_status status;
386 bool acpi_of = false;
387
388 INIT_LIST_HEAD(&adev->data.properties);
389 INIT_LIST_HEAD(&adev->data.subnodes);
390
391 if (!adev->handle)
392 return;
393
394 /*
395 * Check if ACPI_DT_NAMESPACE_HID is present and inthat case we fill in
396 * Device Tree compatible properties for this device.
397 */
398 list_for_each_entry(hwid, &adev->pnp.ids, list) {
399 if (!strcmp(hwid->id, ACPI_DT_NAMESPACE_HID)) {
400 acpi_of = true;
401 break;
402 }
403 }
404
405 status = acpi_evaluate_object_typed(adev->handle, "_DSD", NULL, &buf,
406 ACPI_TYPE_PACKAGE);
407 if (ACPI_FAILURE(status))
408 goto out;
409
410 if (acpi_extract_properties(buf.pointer, &adev->data)) {
411 adev->data.pointer = buf.pointer;
412 if (acpi_of)
413 acpi_init_of_compatible(adev);
414 }
415 if (acpi_enumerate_nondev_subnodes(adev->handle, buf.pointer,
416 &adev->data, acpi_fwnode_handle(adev)))
417 adev->data.pointer = buf.pointer;
418
419 if (!adev->data.pointer) {
420 acpi_handle_debug(adev->handle, "Invalid _DSD data, skipping\n");
421 ACPI_FREE(buf.pointer);
422 }
423
424 out:
425 if (acpi_of && !adev->flags.of_compatible_ok)
426 acpi_handle_info(adev->handle,
427 ACPI_DT_NAMESPACE_HID " requires 'compatible' property\n");
428
429 if (!adev->data.pointer)
430 acpi_extract_apple_properties(adev);
431}
432
433static void acpi_destroy_nondev_subnodes(struct list_head *list)
434{
435 struct acpi_data_node *dn, *next;
436
437 if (list_empty(list))
438 return;
439
440 list_for_each_entry_safe_reverse(dn, next, list, sibling) {
441 acpi_destroy_nondev_subnodes(&dn->data.subnodes);
442 wait_for_completion(&dn->kobj_done);
443 list_del(&dn->sibling);
444 ACPI_FREE((void *)dn->data.pointer);
445 kfree(dn);
446 }
447}
448
449void acpi_free_properties(struct acpi_device *adev)
450{
451 struct acpi_device_properties *props, *tmp;
452
453 acpi_destroy_nondev_subnodes(&adev->data.subnodes);
454 ACPI_FREE((void *)adev->data.pointer);
455 adev->data.of_compatible = NULL;
456 adev->data.pointer = NULL;
457 list_for_each_entry_safe(props, tmp, &adev->data.properties, list) {
458 list_del(&props->list);
459 kfree(props);
460 }
461}
462
463/**
464 * acpi_data_get_property - return an ACPI property with given name
465 * @data: ACPI device deta object to get the property from
466 * @name: Name of the property
467 * @type: Expected property type
468 * @obj: Location to store the property value (if not %NULL)
469 *
470 * Look up a property with @name and store a pointer to the resulting ACPI
471 * object at the location pointed to by @obj if found.
472 *
473 * Callers must not attempt to free the returned objects. These objects will be
474 * freed by the ACPI core automatically during the removal of @data.
475 *
476 * Return: %0 if property with @name has been found (success),
477 * %-EINVAL if the arguments are invalid,
478 * %-EINVAL if the property doesn't exist,
479 * %-EPROTO if the property value type doesn't match @type.
480 */
481static int acpi_data_get_property(const struct acpi_device_data *data,
482 const char *name, acpi_object_type type,
483 const union acpi_object **obj)
484{
485 const struct acpi_device_properties *props;
486
487 if (!data || !name)
488 return -EINVAL;
489
490 if (!data->pointer || list_empty(&data->properties))
491 return -EINVAL;
492
493 list_for_each_entry(props, &data->properties, list) {
494 const union acpi_object *properties;
495 unsigned int i;
496
497 properties = props->properties;
498 for (i = 0; i < properties->package.count; i++) {
499 const union acpi_object *propname, *propvalue;
500 const union acpi_object *property;
501
502 property = &properties->package.elements[i];
503
504 propname = &property->package.elements[0];
505 propvalue = &property->package.elements[1];
506
507 if (!strcmp(name, propname->string.pointer)) {
508 if (type != ACPI_TYPE_ANY &&
509 propvalue->type != type)
510 return -EPROTO;
511 if (obj)
512 *obj = propvalue;
513
514 return 0;
515 }
516 }
517 }
518 return -EINVAL;
519}
520
521/**
522 * acpi_dev_get_property - return an ACPI property with given name.
523 * @adev: ACPI device to get the property from.
524 * @name: Name of the property.
525 * @type: Expected property type.
526 * @obj: Location to store the property value (if not %NULL).
527 */
528int acpi_dev_get_property(const struct acpi_device *adev, const char *name,
529 acpi_object_type type, const union acpi_object **obj)
530{
531 return adev ? acpi_data_get_property(&adev->data, name, type, obj) : -EINVAL;
532}
533EXPORT_SYMBOL_GPL(acpi_dev_get_property);
534
535static const struct acpi_device_data *
536acpi_device_data_of_node(const struct fwnode_handle *fwnode)
537{
538 if (is_acpi_device_node(fwnode)) {
539 const struct acpi_device *adev = to_acpi_device_node(fwnode);
540 return &adev->data;
541 } else if (is_acpi_data_node(fwnode)) {
542 const struct acpi_data_node *dn = to_acpi_data_node(fwnode);
543 return &dn->data;
544 }
545 return NULL;
546}
547
548/**
549 * acpi_node_prop_get - return an ACPI property with given name.
550 * @fwnode: Firmware node to get the property from.
551 * @propname: Name of the property.
552 * @valptr: Location to store a pointer to the property value (if not %NULL).
553 */
554int acpi_node_prop_get(const struct fwnode_handle *fwnode,
555 const char *propname, void **valptr)
556{
557 return acpi_data_get_property(acpi_device_data_of_node(fwnode),
558 propname, ACPI_TYPE_ANY,
559 (const union acpi_object **)valptr);
560}
561
562/**
563 * acpi_data_get_property_array - return an ACPI array property with given name
564 * @adev: ACPI data object to get the property from
565 * @name: Name of the property
566 * @type: Expected type of array elements
567 * @obj: Location to store a pointer to the property value (if not NULL)
568 *
569 * Look up an array property with @name and store a pointer to the resulting
570 * ACPI object at the location pointed to by @obj if found.
571 *
572 * Callers must not attempt to free the returned objects. Those objects will be
573 * freed by the ACPI core automatically during the removal of @data.
574 *
575 * Return: %0 if array property (package) with @name has been found (success),
576 * %-EINVAL if the arguments are invalid,
577 * %-EINVAL if the property doesn't exist,
578 * %-EPROTO if the property is not a package or the type of its elements
579 * doesn't match @type.
580 */
581static int acpi_data_get_property_array(const struct acpi_device_data *data,
582 const char *name,
583 acpi_object_type type,
584 const union acpi_object **obj)
585{
586 const union acpi_object *prop;
587 int ret, i;
588
589 ret = acpi_data_get_property(data, name, ACPI_TYPE_PACKAGE, &prop);
590 if (ret)
591 return ret;
592
593 if (type != ACPI_TYPE_ANY) {
594 /* Check that all elements are of correct type. */
595 for (i = 0; i < prop->package.count; i++)
596 if (prop->package.elements[i].type != type)
597 return -EPROTO;
598 }
599 if (obj)
600 *obj = prop;
601
602 return 0;
603}
604
605static struct fwnode_handle *
606acpi_fwnode_get_named_child_node(const struct fwnode_handle *fwnode,
607 const char *childname)
608{
609 char name[ACPI_PATH_SEGMENT_LENGTH];
610 struct fwnode_handle *child;
611 struct acpi_buffer path;
612 acpi_status status;
613
614 path.length = sizeof(name);
615 path.pointer = name;
616
617 fwnode_for_each_child_node(fwnode, child) {
618 if (is_acpi_data_node(child)) {
619 if (acpi_data_node_match(child, childname))
620 return child;
621 continue;
622 }
623
624 status = acpi_get_name(ACPI_HANDLE_FWNODE(child),
625 ACPI_SINGLE_NAME, &path);
626 if (ACPI_FAILURE(status))
627 break;
628
629 if (!strncmp(name, childname, ACPI_NAMESEG_SIZE))
630 return child;
631 }
632
633 return NULL;
634}
635
636/**
637 * __acpi_node_get_property_reference - returns handle to the referenced object
638 * @fwnode: Firmware node to get the property from
639 * @propname: Name of the property
640 * @index: Index of the reference to return
641 * @num_args: Maximum number of arguments after each reference
642 * @args: Location to store the returned reference with optional arguments
643 *
644 * Find property with @name, verifify that it is a package containing at least
645 * one object reference and if so, store the ACPI device object pointer to the
646 * target object in @args->adev. If the reference includes arguments, store
647 * them in the @args->args[] array.
648 *
649 * If there's more than one reference in the property value package, @index is
650 * used to select the one to return.
651 *
652 * It is possible to leave holes in the property value set like in the
653 * example below:
654 *
655 * Package () {
656 * "cs-gpios",
657 * Package () {
658 * ^GPIO, 19, 0, 0,
659 * ^GPIO, 20, 0, 0,
660 * 0,
661 * ^GPIO, 21, 0, 0,
662 * }
663 * }
664 *
665 * Calling this function with index %2 or index %3 return %-ENOENT. If the
666 * property does not contain any more values %-ENOENT is returned. The NULL
667 * entry must be single integer and preferably contain value %0.
668 *
669 * Return: %0 on success, negative error code on failure.
670 */
671int __acpi_node_get_property_reference(const struct fwnode_handle *fwnode,
672 const char *propname, size_t index, size_t num_args,
673 struct fwnode_reference_args *args)
674{
675 const union acpi_object *element, *end;
676 const union acpi_object *obj;
677 const struct acpi_device_data *data;
678 struct acpi_device *device;
679 int ret, idx = 0;
680
681 data = acpi_device_data_of_node(fwnode);
682 if (!data)
683 return -ENOENT;
684
685 ret = acpi_data_get_property(data, propname, ACPI_TYPE_ANY, &obj);
686 if (ret)
687 return ret == -EINVAL ? -ENOENT : -EINVAL;
688
689 /*
690 * The simplest case is when the value is a single reference. Just
691 * return that reference then.
692 */
693 if (obj->type == ACPI_TYPE_LOCAL_REFERENCE) {
694 if (index)
695 return -EINVAL;
696
697 ret = acpi_bus_get_device(obj->reference.handle, &device);
698 if (ret)
699 return ret == -ENODEV ? -EINVAL : ret;
700
701 args->fwnode = acpi_fwnode_handle(device);
702 args->nargs = 0;
703 return 0;
704 }
705
706 /*
707 * If it is not a single reference, then it is a package of
708 * references followed by number of ints as follows:
709 *
710 * Package () { REF, INT, REF, INT, INT }
711 *
712 * The index argument is then used to determine which reference
713 * the caller wants (along with the arguments).
714 */
715 if (obj->type != ACPI_TYPE_PACKAGE)
716 return -EINVAL;
717 if (index >= obj->package.count)
718 return -ENOENT;
719
720 element = obj->package.elements;
721 end = element + obj->package.count;
722
723 while (element < end) {
724 u32 nargs, i;
725
726 if (element->type == ACPI_TYPE_LOCAL_REFERENCE) {
727 struct fwnode_handle *ref_fwnode;
728
729 ret = acpi_bus_get_device(element->reference.handle,
730 &device);
731 if (ret)
732 return -EINVAL;
733
734 nargs = 0;
735 element++;
736
737 /*
738 * Find the referred data extension node under the
739 * referred device node.
740 */
741 for (ref_fwnode = acpi_fwnode_handle(device);
742 element < end && element->type == ACPI_TYPE_STRING;
743 element++) {
744 ref_fwnode = acpi_fwnode_get_named_child_node(
745 ref_fwnode, element->string.pointer);
746 if (!ref_fwnode)
747 return -EINVAL;
748 }
749
750 /* assume following integer elements are all args */
751 for (i = 0; element + i < end && i < num_args; i++) {
752 int type = element[i].type;
753
754 if (type == ACPI_TYPE_INTEGER)
755 nargs++;
756 else if (type == ACPI_TYPE_LOCAL_REFERENCE)
757 break;
758 else
759 return -EINVAL;
760 }
761
762 if (nargs > NR_FWNODE_REFERENCE_ARGS)
763 return -EINVAL;
764
765 if (idx == index) {
766 args->fwnode = ref_fwnode;
767 args->nargs = nargs;
768 for (i = 0; i < nargs; i++)
769 args->args[i] = element[i].integer.value;
770
771 return 0;
772 }
773
774 element += nargs;
775 } else if (element->type == ACPI_TYPE_INTEGER) {
776 if (idx == index)
777 return -ENOENT;
778 element++;
779 } else {
780 return -EINVAL;
781 }
782
783 idx++;
784 }
785
786 return -ENOENT;
787}
788EXPORT_SYMBOL_GPL(__acpi_node_get_property_reference);
789
790static int acpi_data_prop_read_single(const struct acpi_device_data *data,
791 const char *propname,
792 enum dev_prop_type proptype, void *val)
793{
794 const union acpi_object *obj;
795 int ret;
796
797 if (!val)
798 return -EINVAL;
799
800 if (proptype >= DEV_PROP_U8 && proptype <= DEV_PROP_U64) {
801 ret = acpi_data_get_property(data, propname, ACPI_TYPE_INTEGER, &obj);
802 if (ret)
803 return ret;
804
805 switch (proptype) {
806 case DEV_PROP_U8:
807 if (obj->integer.value > U8_MAX)
808 return -EOVERFLOW;
809 *(u8 *)val = obj->integer.value;
810 break;
811 case DEV_PROP_U16:
812 if (obj->integer.value > U16_MAX)
813 return -EOVERFLOW;
814 *(u16 *)val = obj->integer.value;
815 break;
816 case DEV_PROP_U32:
817 if (obj->integer.value > U32_MAX)
818 return -EOVERFLOW;
819 *(u32 *)val = obj->integer.value;
820 break;
821 default:
822 *(u64 *)val = obj->integer.value;
823 break;
824 }
825 } else if (proptype == DEV_PROP_STRING) {
826 ret = acpi_data_get_property(data, propname, ACPI_TYPE_STRING, &obj);
827 if (ret)
828 return ret;
829
830 *(char **)val = obj->string.pointer;
831
832 return 1;
833 } else {
834 ret = -EINVAL;
835 }
836 return ret;
837}
838
839int acpi_dev_prop_read_single(struct acpi_device *adev, const char *propname,
840 enum dev_prop_type proptype, void *val)
841{
842 int ret;
843
844 if (!adev)
845 return -EINVAL;
846
847 ret = acpi_data_prop_read_single(&adev->data, propname, proptype, val);
848 if (ret < 0 || proptype != ACPI_TYPE_STRING)
849 return ret;
850 return 0;
851}
852
853static int acpi_copy_property_array_u8(const union acpi_object *items, u8 *val,
854 size_t nval)
855{
856 int i;
857
858 for (i = 0; i < nval; i++) {
859 if (items[i].type != ACPI_TYPE_INTEGER)
860 return -EPROTO;
861 if (items[i].integer.value > U8_MAX)
862 return -EOVERFLOW;
863
864 val[i] = items[i].integer.value;
865 }
866 return 0;
867}
868
869static int acpi_copy_property_array_u16(const union acpi_object *items,
870 u16 *val, size_t nval)
871{
872 int i;
873
874 for (i = 0; i < nval; i++) {
875 if (items[i].type != ACPI_TYPE_INTEGER)
876 return -EPROTO;
877 if (items[i].integer.value > U16_MAX)
878 return -EOVERFLOW;
879
880 val[i] = items[i].integer.value;
881 }
882 return 0;
883}
884
885static int acpi_copy_property_array_u32(const union acpi_object *items,
886 u32 *val, size_t nval)
887{
888 int i;
889
890 for (i = 0; i < nval; i++) {
891 if (items[i].type != ACPI_TYPE_INTEGER)
892 return -EPROTO;
893 if (items[i].integer.value > U32_MAX)
894 return -EOVERFLOW;
895
896 val[i] = items[i].integer.value;
897 }
898 return 0;
899}
900
901static int acpi_copy_property_array_u64(const union acpi_object *items,
902 u64 *val, size_t nval)
903{
904 int i;
905
906 for (i = 0; i < nval; i++) {
907 if (items[i].type != ACPI_TYPE_INTEGER)
908 return -EPROTO;
909
910 val[i] = items[i].integer.value;
911 }
912 return 0;
913}
914
915static int acpi_copy_property_array_string(const union acpi_object *items,
916 char **val, size_t nval)
917{
918 int i;
919
920 for (i = 0; i < nval; i++) {
921 if (items[i].type != ACPI_TYPE_STRING)
922 return -EPROTO;
923
924 val[i] = items[i].string.pointer;
925 }
926 return nval;
927}
928
929static int acpi_data_prop_read(const struct acpi_device_data *data,
930 const char *propname,
931 enum dev_prop_type proptype,
932 void *val, size_t nval)
933{
934 const union acpi_object *obj;
935 const union acpi_object *items;
936 int ret;
937
938 if (val && nval == 1) {
939 ret = acpi_data_prop_read_single(data, propname, proptype, val);
940 if (ret >= 0)
941 return ret;
942 }
943
944 ret = acpi_data_get_property_array(data, propname, ACPI_TYPE_ANY, &obj);
945 if (ret)
946 return ret;
947
948 if (!val)
949 return obj->package.count;
950
951 if (proptype != DEV_PROP_STRING && nval > obj->package.count)
952 return -EOVERFLOW;
953 else if (nval <= 0)
954 return -EINVAL;
955
956 items = obj->package.elements;
957
958 switch (proptype) {
959 case DEV_PROP_U8:
960 ret = acpi_copy_property_array_u8(items, (u8 *)val, nval);
961 break;
962 case DEV_PROP_U16:
963 ret = acpi_copy_property_array_u16(items, (u16 *)val, nval);
964 break;
965 case DEV_PROP_U32:
966 ret = acpi_copy_property_array_u32(items, (u32 *)val, nval);
967 break;
968 case DEV_PROP_U64:
969 ret = acpi_copy_property_array_u64(items, (u64 *)val, nval);
970 break;
971 case DEV_PROP_STRING:
972 ret = acpi_copy_property_array_string(
973 items, (char **)val,
974 min_t(u32, nval, obj->package.count));
975 break;
976 default:
977 ret = -EINVAL;
978 break;
979 }
980 return ret;
981}
982
983int acpi_dev_prop_read(const struct acpi_device *adev, const char *propname,
984 enum dev_prop_type proptype, void *val, size_t nval)
985{
986 return adev ? acpi_data_prop_read(&adev->data, propname, proptype, val, nval) : -EINVAL;
987}
988
989/**
990 * acpi_node_prop_read - retrieve the value of an ACPI property with given name.
991 * @fwnode: Firmware node to get the property from.
992 * @propname: Name of the property.
993 * @proptype: Expected property type.
994 * @val: Location to store the property value (if not %NULL).
995 * @nval: Size of the array pointed to by @val.
996 *
997 * If @val is %NULL, return the number of array elements comprising the value
998 * of the property. Otherwise, read at most @nval values to the array at the
999 * location pointed to by @val.
1000 */
1001int acpi_node_prop_read(const struct fwnode_handle *fwnode,
1002 const char *propname, enum dev_prop_type proptype,
1003 void *val, size_t nval)
1004{
1005 return acpi_data_prop_read(acpi_device_data_of_node(fwnode),
1006 propname, proptype, val, nval);
1007}
1008
1009/**
1010 * acpi_get_next_subnode - Return the next child node handle for a fwnode
1011 * @fwnode: Firmware node to find the next child node for.
1012 * @child: Handle to one of the device's child nodes or a null handle.
1013 */
1014struct fwnode_handle *acpi_get_next_subnode(const struct fwnode_handle *fwnode,
1015 struct fwnode_handle *child)
1016{
1017 const struct acpi_device *adev = to_acpi_device_node(fwnode);
1018 const struct list_head *head;
1019 struct list_head *next;
1020
1021 if (!child || is_acpi_device_node(child)) {
1022 struct acpi_device *child_adev;
1023
1024 if (adev)
1025 head = &adev->children;
1026 else
1027 goto nondev;
1028
1029 if (list_empty(head))
1030 goto nondev;
1031
1032 if (child) {
1033 adev = to_acpi_device_node(child);
1034 next = adev->node.next;
1035 if (next == head) {
1036 child = NULL;
1037 goto nondev;
1038 }
1039 child_adev = list_entry(next, struct acpi_device, node);
1040 } else {
1041 child_adev = list_first_entry(head, struct acpi_device,
1042 node);
1043 }
1044 return acpi_fwnode_handle(child_adev);
1045 }
1046
1047 nondev:
1048 if (!child || is_acpi_data_node(child)) {
1049 const struct acpi_data_node *data = to_acpi_data_node(fwnode);
1050 struct acpi_data_node *dn;
1051
1052 /*
1053 * We can have a combination of device and data nodes, e.g. with
1054 * hierarchical _DSD properties. Make sure the adev pointer is
1055 * restored before going through data nodes, otherwise we will
1056 * be looking for data_nodes below the last device found instead
1057 * of the common fwnode shared by device_nodes and data_nodes.
1058 */
1059 adev = to_acpi_device_node(fwnode);
1060 if (adev)
1061 head = &adev->data.subnodes;
1062 else if (data)
1063 head = &data->data.subnodes;
1064 else
1065 return NULL;
1066
1067 if (list_empty(head))
1068 return NULL;
1069
1070 if (child) {
1071 dn = to_acpi_data_node(child);
1072 next = dn->sibling.next;
1073 if (next == head)
1074 return NULL;
1075
1076 dn = list_entry(next, struct acpi_data_node, sibling);
1077 } else {
1078 dn = list_first_entry(head, struct acpi_data_node, sibling);
1079 }
1080 return &dn->fwnode;
1081 }
1082 return NULL;
1083}
1084
1085/**
1086 * acpi_node_get_parent - Return parent fwnode of this fwnode
1087 * @fwnode: Firmware node whose parent to get
1088 *
1089 * Returns parent node of an ACPI device or data firmware node or %NULL if
1090 * not available.
1091 */
1092struct fwnode_handle *acpi_node_get_parent(const struct fwnode_handle *fwnode)
1093{
1094 if (is_acpi_data_node(fwnode)) {
1095 /* All data nodes have parent pointer so just return that */
1096 return to_acpi_data_node(fwnode)->parent;
1097 } else if (is_acpi_device_node(fwnode)) {
1098 acpi_handle handle, parent_handle;
1099
1100 handle = to_acpi_device_node(fwnode)->handle;
1101 if (ACPI_SUCCESS(acpi_get_parent(handle, &parent_handle))) {
1102 struct acpi_device *adev;
1103
1104 if (!acpi_bus_get_device(parent_handle, &adev))
1105 return acpi_fwnode_handle(adev);
1106 }
1107 }
1108
1109 return NULL;
1110}
1111
1112/*
1113 * Return true if the node is an ACPI graph node. Called on either ports
1114 * or endpoints.
1115 */
1116static bool is_acpi_graph_node(struct fwnode_handle *fwnode,
1117 const char *str)
1118{
1119 unsigned int len = strlen(str);
1120 const char *name;
1121
1122 if (!len || !is_acpi_data_node(fwnode))
1123 return false;
1124
1125 name = to_acpi_data_node(fwnode)->name;
1126
1127 return (fwnode_property_present(fwnode, "reg") &&
1128 !strncmp(name, str, len) && name[len] == '@') ||
1129 fwnode_property_present(fwnode, str);
1130}
1131
1132/**
1133 * acpi_graph_get_next_endpoint - Get next endpoint ACPI firmware node
1134 * @fwnode: Pointer to the parent firmware node
1135 * @prev: Previous endpoint node or %NULL to get the first
1136 *
1137 * Looks up next endpoint ACPI firmware node below a given @fwnode. Returns
1138 * %NULL if there is no next endpoint or in case of error. In case of success
1139 * the next endpoint is returned.
1140 */
1141static struct fwnode_handle *acpi_graph_get_next_endpoint(
1142 const struct fwnode_handle *fwnode, struct fwnode_handle *prev)
1143{
1144 struct fwnode_handle *port = NULL;
1145 struct fwnode_handle *endpoint;
1146
1147 if (!prev) {
1148 do {
1149 port = fwnode_get_next_child_node(fwnode, port);
1150 /*
1151 * The names of the port nodes begin with "port@"
1152 * followed by the number of the port node and they also
1153 * have a "reg" property that also has the number of the
1154 * port node. For compatibility reasons a node is also
1155 * recognised as a port node from the "port" property.
1156 */
1157 if (is_acpi_graph_node(port, "port"))
1158 break;
1159 } while (port);
1160 } else {
1161 port = fwnode_get_parent(prev);
1162 }
1163
1164 if (!port)
1165 return NULL;
1166
1167 endpoint = fwnode_get_next_child_node(port, prev);
1168 while (!endpoint) {
1169 port = fwnode_get_next_child_node(fwnode, port);
1170 if (!port)
1171 break;
1172 if (is_acpi_graph_node(port, "port"))
1173 endpoint = fwnode_get_next_child_node(port, NULL);
1174 }
1175
1176 /*
1177 * The names of the endpoint nodes begin with "endpoint@" followed by
1178 * the number of the endpoint node and they also have a "reg" property
1179 * that also has the number of the endpoint node. For compatibility
1180 * reasons a node is also recognised as an endpoint node from the
1181 * "endpoint" property.
1182 */
1183 if (!is_acpi_graph_node(endpoint, "endpoint"))
1184 return NULL;
1185
1186 return endpoint;
1187}
1188
1189/**
1190 * acpi_graph_get_child_prop_value - Return a child with a given property value
1191 * @fwnode: device fwnode
1192 * @prop_name: The name of the property to look for
1193 * @val: the desired property value
1194 *
1195 * Return the port node corresponding to a given port number. Returns
1196 * the child node on success, NULL otherwise.
1197 */
1198static struct fwnode_handle *acpi_graph_get_child_prop_value(
1199 const struct fwnode_handle *fwnode, const char *prop_name,
1200 unsigned int val)
1201{
1202 struct fwnode_handle *child;
1203
1204 fwnode_for_each_child_node(fwnode, child) {
1205 u32 nr;
1206
1207 if (fwnode_property_read_u32(child, prop_name, &nr))
1208 continue;
1209
1210 if (val == nr)
1211 return child;
1212 }
1213
1214 return NULL;
1215}
1216
1217
1218/**
1219 * acpi_graph_get_remote_endpoint - Parses and returns remote end of an endpoint
1220 * @fwnode: Endpoint firmware node pointing to a remote device
1221 * @endpoint: Firmware node of remote endpoint is filled here if not %NULL
1222 *
1223 * Returns the remote endpoint corresponding to @__fwnode. NULL on error.
1224 */
1225static struct fwnode_handle *
1226acpi_graph_get_remote_endpoint(const struct fwnode_handle *__fwnode)
1227{
1228 struct fwnode_handle *fwnode;
1229 unsigned int port_nr, endpoint_nr;
1230 struct fwnode_reference_args args;
1231 int ret;
1232
1233 memset(&args, 0, sizeof(args));
1234 ret = acpi_node_get_property_reference(__fwnode, "remote-endpoint", 0,
1235 &args);
1236 if (ret)
1237 return NULL;
1238
1239 /* Direct endpoint reference? */
1240 if (!is_acpi_device_node(args.fwnode))
1241 return args.nargs ? NULL : args.fwnode;
1242
1243 /*
1244 * Always require two arguments with the reference: port and
1245 * endpoint indices.
1246 */
1247 if (args.nargs != 2)
1248 return NULL;
1249
1250 fwnode = args.fwnode;
1251 port_nr = args.args[0];
1252 endpoint_nr = args.args[1];
1253
1254 fwnode = acpi_graph_get_child_prop_value(fwnode, "port", port_nr);
1255
1256 return acpi_graph_get_child_prop_value(fwnode, "endpoint", endpoint_nr);
1257}
1258
1259static bool acpi_fwnode_device_is_available(const struct fwnode_handle *fwnode)
1260{
1261 if (!is_acpi_device_node(fwnode))
1262 return false;
1263
1264 return acpi_device_is_present(to_acpi_device_node(fwnode));
1265}
1266
1267static bool acpi_fwnode_property_present(const struct fwnode_handle *fwnode,
1268 const char *propname)
1269{
1270 return !acpi_node_prop_get(fwnode, propname, NULL);
1271}
1272
1273static int
1274acpi_fwnode_property_read_int_array(const struct fwnode_handle *fwnode,
1275 const char *propname,
1276 unsigned int elem_size, void *val,
1277 size_t nval)
1278{
1279 enum dev_prop_type type;
1280
1281 switch (elem_size) {
1282 case sizeof(u8):
1283 type = DEV_PROP_U8;
1284 break;
1285 case sizeof(u16):
1286 type = DEV_PROP_U16;
1287 break;
1288 case sizeof(u32):
1289 type = DEV_PROP_U32;
1290 break;
1291 case sizeof(u64):
1292 type = DEV_PROP_U64;
1293 break;
1294 default:
1295 return -ENXIO;
1296 }
1297
1298 return acpi_node_prop_read(fwnode, propname, type, val, nval);
1299}
1300
1301static int
1302acpi_fwnode_property_read_string_array(const struct fwnode_handle *fwnode,
1303 const char *propname, const char **val,
1304 size_t nval)
1305{
1306 return acpi_node_prop_read(fwnode, propname, DEV_PROP_STRING,
1307 val, nval);
1308}
1309
1310static int
1311acpi_fwnode_get_reference_args(const struct fwnode_handle *fwnode,
1312 const char *prop, const char *nargs_prop,
1313 unsigned int args_count, unsigned int index,
1314 struct fwnode_reference_args *args)
1315{
1316 return __acpi_node_get_property_reference(fwnode, prop, index,
1317 args_count, args);
1318}
1319
1320static struct fwnode_handle *
1321acpi_fwnode_get_parent(struct fwnode_handle *fwnode)
1322{
1323 return acpi_node_get_parent(fwnode);
1324}
1325
1326static int acpi_fwnode_graph_parse_endpoint(const struct fwnode_handle *fwnode,
1327 struct fwnode_endpoint *endpoint)
1328{
1329 struct fwnode_handle *port_fwnode = fwnode_get_parent(fwnode);
1330
1331 endpoint->local_fwnode = fwnode;
1332
1333 if (fwnode_property_read_u32(port_fwnode, "reg", &endpoint->port))
1334 fwnode_property_read_u32(port_fwnode, "port", &endpoint->port);
1335 if (fwnode_property_read_u32(fwnode, "reg", &endpoint->id))
1336 fwnode_property_read_u32(fwnode, "endpoint", &endpoint->id);
1337
1338 return 0;
1339}
1340
1341static const void *
1342acpi_fwnode_device_get_match_data(const struct fwnode_handle *fwnode,
1343 const struct device *dev)
1344{
1345 return acpi_device_get_match_data(dev);
1346}
1347
1348#define DECLARE_ACPI_FWNODE_OPS(ops) \
1349 const struct fwnode_operations ops = { \
1350 .device_is_available = acpi_fwnode_device_is_available, \
1351 .device_get_match_data = acpi_fwnode_device_get_match_data, \
1352 .property_present = acpi_fwnode_property_present, \
1353 .property_read_int_array = \
1354 acpi_fwnode_property_read_int_array, \
1355 .property_read_string_array = \
1356 acpi_fwnode_property_read_string_array, \
1357 .get_parent = acpi_node_get_parent, \
1358 .get_next_child_node = acpi_get_next_subnode, \
1359 .get_named_child_node = acpi_fwnode_get_named_child_node, \
1360 .get_reference_args = acpi_fwnode_get_reference_args, \
1361 .graph_get_next_endpoint = \
1362 acpi_graph_get_next_endpoint, \
1363 .graph_get_remote_endpoint = \
1364 acpi_graph_get_remote_endpoint, \
1365 .graph_get_port_parent = acpi_fwnode_get_parent, \
1366 .graph_parse_endpoint = acpi_fwnode_graph_parse_endpoint, \
1367 }; \
1368 EXPORT_SYMBOL_GPL(ops)
1369
1370DECLARE_ACPI_FWNODE_OPS(acpi_device_fwnode_ops);
1371DECLARE_ACPI_FWNODE_OPS(acpi_data_fwnode_ops);
1372const struct fwnode_operations acpi_static_fwnode_ops;
1373
1374bool is_acpi_device_node(const struct fwnode_handle *fwnode)
1375{
1376 return !IS_ERR_OR_NULL(fwnode) &&
1377 fwnode->ops == &acpi_device_fwnode_ops;
1378}
1379EXPORT_SYMBOL(is_acpi_device_node);
1380
1381bool is_acpi_data_node(const struct fwnode_handle *fwnode)
1382{
1383 return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &acpi_data_fwnode_ops;
1384}
1385EXPORT_SYMBOL(is_acpi_data_node);