blob: f9b5fa230a861b6c775c627938876c038cb936f1 [file] [log] [blame]
Mika Westerbergffdcd952014-10-21 13:33:55 +02001/*
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
Sakari Ailus99a85462017-07-21 14:39:34 +030022static int acpi_data_get_property_array(const struct acpi_device_data *data,
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +020023 const char *name,
24 acpi_object_type type,
25 const union acpi_object **obj);
26
Andy Shevchenko3689d3d2017-07-19 21:28:57 +030027/* ACPI _DSD device properties GUID: daffd814-6eba-4d8c-8a91-bc9bbf4aa301 */
28static const guid_t prp_guid =
29 GUID_INIT(0xdaffd814, 0x6eba, 0x4d8c,
30 0x8a, 0x91, 0xbc, 0x9b, 0xbf, 0x4a, 0xa3, 0x01);
31/* ACPI _DSD data subnodes GUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */
32static const guid_t ads_guid =
33 GUID_INIT(0xdbb8e3e6, 0x5886, 0x4ba6,
34 0x87, 0x95, 0x13, 0x19, 0xf5, 0x2a, 0x96, 0x6b);
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020035
36static bool acpi_enumerate_nondev_subnodes(acpi_handle scope,
37 const union acpi_object *desc,
Mika Westerbergdfa672f2017-03-28 10:52:16 +030038 struct acpi_device_data *data,
39 struct fwnode_handle *parent);
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020040static bool acpi_extract_properties(const union acpi_object *desc,
41 struct acpi_device_data *data);
42
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010043static bool acpi_nondev_subnode_extract(const union acpi_object *desc,
44 acpi_handle handle,
45 const union acpi_object *link,
Mika Westerbergdfa672f2017-03-28 10:52:16 +030046 struct list_head *list,
47 struct fwnode_handle *parent)
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020048{
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020049 struct acpi_data_node *dn;
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010050 bool result;
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020051
52 dn = kzalloc(sizeof(*dn), GFP_KERNEL);
53 if (!dn)
54 return false;
55
56 dn->name = link->package.elements[0].string.pointer;
Sakari Ailusdb3e50f2017-07-21 14:39:31 +030057 dn->fwnode.ops = &acpi_data_fwnode_ops;
Mika Westerbergdfa672f2017-03-28 10:52:16 +030058 dn->parent = parent;
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020059 INIT_LIST_HEAD(&dn->data.subnodes);
60
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010061 result = acpi_extract_properties(desc, &dn->data);
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020062
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010063 if (handle) {
64 acpi_handle scope;
65 acpi_status status;
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020066
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010067 /*
68 * The scope for the subnode object lookup is the one of the
69 * namespace node (device) containing the object that has
70 * returned the package. That is, it's the scope of that
71 * object's parent.
72 */
73 status = acpi_get_parent(handle, &scope);
74 if (ACPI_SUCCESS(status)
Mika Westerbergdfa672f2017-03-28 10:52:16 +030075 && acpi_enumerate_nondev_subnodes(scope, desc, &dn->data,
76 &dn->fwnode))
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010077 result = true;
Mika Westerbergdfa672f2017-03-28 10:52:16 +030078 } else if (acpi_enumerate_nondev_subnodes(NULL, desc, &dn->data,
79 &dn->fwnode)) {
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010080 result = true;
81 }
82
83 if (result) {
Rafael J. Wysocki263b4c12015-08-27 04:37:19 +020084 dn->handle = handle;
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010085 dn->data.pointer = desc;
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020086 list_add_tail(&dn->sibling, list);
87 return true;
88 }
89
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020090 kfree(dn);
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010091 acpi_handle_debug(handle, "Invalid properties/subnodes data, skipping\n");
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +020092 return false;
93}
94
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010095static bool acpi_nondev_subnode_data_ok(acpi_handle handle,
96 const union acpi_object *link,
Mika Westerbergdfa672f2017-03-28 10:52:16 +030097 struct list_head *list,
98 struct fwnode_handle *parent)
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +010099{
100 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
101 acpi_status status;
102
103 status = acpi_evaluate_object_typed(handle, NULL, NULL, &buf,
104 ACPI_TYPE_PACKAGE);
105 if (ACPI_FAILURE(status))
106 return false;
107
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300108 if (acpi_nondev_subnode_extract(buf.pointer, handle, link, list,
109 parent))
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +0100110 return true;
111
112 ACPI_FREE(buf.pointer);
113 return false;
114}
115
116static bool acpi_nondev_subnode_ok(acpi_handle scope,
117 const union acpi_object *link,
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300118 struct list_head *list,
119 struct fwnode_handle *parent)
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +0100120{
121 acpi_handle handle;
122 acpi_status status;
123
124 if (!scope)
125 return false;
126
127 status = acpi_get_handle(scope, link->package.elements[1].string.pointer,
128 &handle);
129 if (ACPI_FAILURE(status))
130 return false;
131
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300132 return acpi_nondev_subnode_data_ok(handle, link, list, parent);
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +0100133}
134
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200135static int acpi_add_nondev_subnodes(acpi_handle scope,
136 const union acpi_object *links,
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300137 struct list_head *list,
138 struct fwnode_handle *parent)
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200139{
140 bool ret = false;
141 int i;
142
143 for (i = 0; i < links->package.count; i++) {
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +0100144 const union acpi_object *link, *desc;
145 acpi_handle handle;
146 bool result;
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200147
148 link = &links->package.elements[i];
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +0100149 /* Only two elements allowed. */
150 if (link->package.count != 2)
151 continue;
152
153 /* The first one must be a string. */
154 if (link->package.elements[0].type != ACPI_TYPE_STRING)
155 continue;
156
157 /* The second one may be a string, a reference or a package. */
158 switch (link->package.elements[1].type) {
159 case ACPI_TYPE_STRING:
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300160 result = acpi_nondev_subnode_ok(scope, link, list,
161 parent);
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +0100162 break;
163 case ACPI_TYPE_LOCAL_REFERENCE:
164 handle = link->package.elements[1].reference.handle;
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300165 result = acpi_nondev_subnode_data_ok(handle, link, list,
166 parent);
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +0100167 break;
168 case ACPI_TYPE_PACKAGE:
169 desc = &link->package.elements[1];
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300170 result = acpi_nondev_subnode_extract(desc, NULL, link,
171 list, parent);
Rafael J. Wysocki99db5ff2016-11-22 00:02:19 +0100172 break;
173 default:
174 result = false;
175 break;
176 }
177 ret = ret || result;
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200178 }
179
180 return ret;
181}
182
183static bool acpi_enumerate_nondev_subnodes(acpi_handle scope,
184 const union acpi_object *desc,
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300185 struct acpi_device_data *data,
186 struct fwnode_handle *parent)
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200187{
188 int i;
189
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300190 /* Look for the ACPI data subnodes GUID. */
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200191 for (i = 0; i < desc->package.count; i += 2) {
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300192 const union acpi_object *guid, *links;
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200193
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300194 guid = &desc->package.elements[i];
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200195 links = &desc->package.elements[i + 1];
196
197 /*
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300198 * The first element must be a GUID and the second one must be
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200199 * a package.
200 */
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300201 if (guid->type != ACPI_TYPE_BUFFER ||
202 guid->buffer.length != 16 ||
203 links->type != ACPI_TYPE_PACKAGE)
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200204 break;
205
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300206 if (!guid_equal((guid_t *)guid->buffer.pointer, &ads_guid))
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200207 continue;
208
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300209 return acpi_add_nondev_subnodes(scope, links, &data->subnodes,
210 parent);
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200211 }
212
213 return false;
214}
Mika Westerbergffdcd952014-10-21 13:33:55 +0200215
216static bool acpi_property_value_ok(const union acpi_object *value)
217{
218 int j;
219
220 /*
221 * The value must be an integer, a string, a reference, or a package
222 * whose every element must be an integer, a string, or a reference.
223 */
224 switch (value->type) {
225 case ACPI_TYPE_INTEGER:
226 case ACPI_TYPE_STRING:
227 case ACPI_TYPE_LOCAL_REFERENCE:
228 return true;
229
230 case ACPI_TYPE_PACKAGE:
231 for (j = 0; j < value->package.count; j++)
232 switch (value->package.elements[j].type) {
233 case ACPI_TYPE_INTEGER:
234 case ACPI_TYPE_STRING:
235 case ACPI_TYPE_LOCAL_REFERENCE:
236 continue;
237
238 default:
239 return false;
240 }
241
242 return true;
243 }
244 return false;
245}
246
247static bool acpi_properties_format_valid(const union acpi_object *properties)
248{
249 int i;
250
251 for (i = 0; i < properties->package.count; i++) {
252 const union acpi_object *property;
253
254 property = &properties->package.elements[i];
255 /*
256 * Only two elements allowed, the first one must be a string and
257 * the second one has to satisfy certain conditions.
258 */
259 if (property->package.count != 2
260 || property->package.elements[0].type != ACPI_TYPE_STRING
261 || !acpi_property_value_ok(&property->package.elements[1]))
262 return false;
263 }
264 return true;
265}
266
Mika Westerberg733e6252014-10-21 13:33:56 +0200267static void acpi_init_of_compatible(struct acpi_device *adev)
268{
269 const union acpi_object *of_compatible;
Mika Westerberg733e6252014-10-21 13:33:56 +0200270 int ret;
271
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200272 ret = acpi_data_get_property_array(&adev->data, "compatible",
273 ACPI_TYPE_STRING, &of_compatible);
Rafael J. Wysocki5c53b262015-05-05 15:43:07 +0200274 if (ret) {
275 ret = acpi_dev_get_property(adev, "compatible",
276 ACPI_TYPE_STRING, &of_compatible);
277 if (ret) {
278 if (adev->parent
279 && adev->parent->flags.of_compatible_ok)
280 goto out;
281
282 return;
283 }
284 }
285 adev->data.of_compatible = of_compatible;
286
287 out:
288 adev->flags.of_compatible_ok = 1;
289}
290
Rafael J. Wysockibd8191c2015-08-27 04:35:14 +0200291static bool acpi_extract_properties(const union acpi_object *desc,
292 struct acpi_device_data *data)
Rafael J. Wysocki5c53b262015-05-05 15:43:07 +0200293{
Rafael J. Wysocki5c53b262015-05-05 15:43:07 +0200294 int i;
295
Mika Westerbergffdcd952014-10-21 13:33:55 +0200296 if (desc->package.count % 2)
Rafael J. Wysockibd8191c2015-08-27 04:35:14 +0200297 return false;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200298
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300299 /* Look for the device properties GUID. */
Mika Westerbergffdcd952014-10-21 13:33:55 +0200300 for (i = 0; i < desc->package.count; i += 2) {
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300301 const union acpi_object *guid, *properties;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200302
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300303 guid = &desc->package.elements[i];
Mika Westerbergffdcd952014-10-21 13:33:55 +0200304 properties = &desc->package.elements[i + 1];
305
306 /*
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300307 * The first element must be a GUID and the second one must be
Mika Westerbergffdcd952014-10-21 13:33:55 +0200308 * a package.
309 */
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300310 if (guid->type != ACPI_TYPE_BUFFER ||
311 guid->buffer.length != 16 ||
312 properties->type != ACPI_TYPE_PACKAGE)
Mika Westerbergffdcd952014-10-21 13:33:55 +0200313 break;
314
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300315 if (!guid_equal((guid_t *)guid->buffer.pointer, &prp_guid))
Mika Westerbergffdcd952014-10-21 13:33:55 +0200316 continue;
317
318 /*
Andy Shevchenko3689d3d2017-07-19 21:28:57 +0300319 * We found the matching GUID. Now validate the format of the
Mika Westerbergffdcd952014-10-21 13:33:55 +0200320 * package immediately following it.
321 */
322 if (!acpi_properties_format_valid(properties))
323 break;
324
Rafael J. Wysockibd8191c2015-08-27 04:35:14 +0200325 data->properties = properties;
326 return true;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200327 }
328
Rafael J. Wysockibd8191c2015-08-27 04:35:14 +0200329 return false;
330}
331
332void acpi_init_properties(struct acpi_device *adev)
333{
334 struct acpi_buffer buf = { ACPI_ALLOCATE_BUFFER };
335 struct acpi_hardware_id *hwid;
336 acpi_status status;
337 bool acpi_of = false;
338
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200339 INIT_LIST_HEAD(&adev->data.subnodes);
340
Lukas Wunner75fc70e2017-08-01 14:10:41 +0200341 if (!adev->handle)
342 return;
343
Rafael J. Wysockibd8191c2015-08-27 04:35:14 +0200344 /*
345 * Check if ACPI_DT_NAMESPACE_HID is present and inthat case we fill in
346 * Device Tree compatible properties for this device.
347 */
348 list_for_each_entry(hwid, &adev->pnp.ids, list) {
349 if (!strcmp(hwid->id, ACPI_DT_NAMESPACE_HID)) {
350 acpi_of = true;
351 break;
352 }
353 }
354
355 status = acpi_evaluate_object_typed(adev->handle, "_DSD", NULL, &buf,
356 ACPI_TYPE_PACKAGE);
357 if (ACPI_FAILURE(status))
358 goto out;
359
360 if (acpi_extract_properties(buf.pointer, &adev->data)) {
361 adev->data.pointer = buf.pointer;
362 if (acpi_of)
363 acpi_init_of_compatible(adev);
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200364 }
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300365 if (acpi_enumerate_nondev_subnodes(adev->handle, buf.pointer,
366 &adev->data, acpi_fwnode_handle(adev)))
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200367 adev->data.pointer = buf.pointer;
368
369 if (!adev->data.pointer) {
Rafael J. Wysockibd8191c2015-08-27 04:35:14 +0200370 acpi_handle_debug(adev->handle, "Invalid _DSD data, skipping\n");
371 ACPI_FREE(buf.pointer);
372 }
Rafael J. Wysocki5c53b262015-05-05 15:43:07 +0200373
374 out:
375 if (acpi_of && !adev->flags.of_compatible_ok)
376 acpi_handle_info(adev->handle,
Rafael J. Wysockiee892092015-05-22 04:24:34 +0200377 ACPI_DT_NAMESPACE_HID " requires 'compatible' property\n");
Lukas Wunner899596e2017-08-01 14:10:41 +0200378
379 if (!adev->data.pointer)
380 acpi_extract_apple_properties(adev);
Mika Westerbergffdcd952014-10-21 13:33:55 +0200381}
382
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200383static void acpi_destroy_nondev_subnodes(struct list_head *list)
384{
385 struct acpi_data_node *dn, *next;
386
387 if (list_empty(list))
388 return;
389
390 list_for_each_entry_safe_reverse(dn, next, list, sibling) {
391 acpi_destroy_nondev_subnodes(&dn->data.subnodes);
Rafael J. Wysocki263b4c12015-08-27 04:37:19 +0200392 wait_for_completion(&dn->kobj_done);
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200393 list_del(&dn->sibling);
394 ACPI_FREE((void *)dn->data.pointer);
395 kfree(dn);
396 }
397}
398
Mika Westerbergffdcd952014-10-21 13:33:55 +0200399void acpi_free_properties(struct acpi_device *adev)
400{
Rafael J. Wysocki445b0eb2015-08-27 04:36:14 +0200401 acpi_destroy_nondev_subnodes(&adev->data.subnodes);
Mika Westerbergffdcd952014-10-21 13:33:55 +0200402 ACPI_FREE((void *)adev->data.pointer);
Mika Westerberg733e6252014-10-21 13:33:56 +0200403 adev->data.of_compatible = NULL;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200404 adev->data.pointer = NULL;
405 adev->data.properties = NULL;
406}
407
408/**
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200409 * acpi_data_get_property - return an ACPI property with given name
410 * @data: ACPI device deta object to get the property from
Mika Westerbergffdcd952014-10-21 13:33:55 +0200411 * @name: Name of the property
412 * @type: Expected property type
413 * @obj: Location to store the property value (if not %NULL)
414 *
415 * Look up a property with @name and store a pointer to the resulting ACPI
416 * object at the location pointed to by @obj if found.
417 *
418 * Callers must not attempt to free the returned objects. These objects will be
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200419 * freed by the ACPI core automatically during the removal of @data.
Mika Westerbergffdcd952014-10-21 13:33:55 +0200420 *
421 * Return: %0 if property with @name has been found (success),
422 * %-EINVAL if the arguments are invalid,
Andy Shevchenko3c60f112015-11-30 17:11:35 +0200423 * %-EINVAL if the property doesn't exist,
Mika Westerbergffdcd952014-10-21 13:33:55 +0200424 * %-EPROTO if the property value type doesn't match @type.
425 */
Sakari Ailus99a85462017-07-21 14:39:34 +0300426static int acpi_data_get_property(const struct acpi_device_data *data,
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200427 const char *name, acpi_object_type type,
428 const union acpi_object **obj)
Mika Westerbergffdcd952014-10-21 13:33:55 +0200429{
430 const union acpi_object *properties;
431 int i;
432
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200433 if (!data || !name)
Mika Westerbergffdcd952014-10-21 13:33:55 +0200434 return -EINVAL;
435
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200436 if (!data->pointer || !data->properties)
Andy Shevchenko3c60f112015-11-30 17:11:35 +0200437 return -EINVAL;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200438
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200439 properties = data->properties;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200440 for (i = 0; i < properties->package.count; i++) {
441 const union acpi_object *propname, *propvalue;
442 const union acpi_object *property;
443
444 property = &properties->package.elements[i];
445
446 propname = &property->package.elements[0];
447 propvalue = &property->package.elements[1];
448
449 if (!strcmp(name, propname->string.pointer)) {
450 if (type != ACPI_TYPE_ANY && propvalue->type != type)
451 return -EPROTO;
Andy Shevchenko3c60f112015-11-30 17:11:35 +0200452 if (obj)
Mika Westerbergffdcd952014-10-21 13:33:55 +0200453 *obj = propvalue;
454
455 return 0;
456 }
457 }
Andy Shevchenko3c60f112015-11-30 17:11:35 +0200458 return -EINVAL;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200459}
Mika Westerbergffdcd952014-10-21 13:33:55 +0200460
461/**
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200462 * acpi_dev_get_property - return an ACPI property with given name.
463 * @adev: ACPI device to get the property from.
464 * @name: Name of the property.
465 * @type: Expected property type.
466 * @obj: Location to store the property value (if not %NULL).
467 */
Sakari Ailus99a85462017-07-21 14:39:34 +0300468int acpi_dev_get_property(const struct acpi_device *adev, const char *name,
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200469 acpi_object_type type, const union acpi_object **obj)
470{
471 return adev ? acpi_data_get_property(&adev->data, name, type, obj) : -EINVAL;
472}
473EXPORT_SYMBOL_GPL(acpi_dev_get_property);
474
Sakari Ailus99a85462017-07-21 14:39:34 +0300475static const struct acpi_device_data *
476acpi_device_data_of_node(const struct fwnode_handle *fwnode)
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200477{
Sakari Ailusdb3e50f2017-07-21 14:39:31 +0300478 if (is_acpi_device_node(fwnode)) {
Sakari Ailus99a85462017-07-21 14:39:34 +0300479 const struct acpi_device *adev = to_acpi_device_node(fwnode);
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200480 return &adev->data;
Sakari Ailusdb3e50f2017-07-21 14:39:31 +0300481 } else if (is_acpi_data_node(fwnode)) {
Sakari Ailus99a85462017-07-21 14:39:34 +0300482 const struct acpi_data_node *dn = to_acpi_data_node(fwnode);
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200483 return &dn->data;
484 }
485 return NULL;
486}
487
488/**
489 * acpi_node_prop_get - return an ACPI property with given name.
490 * @fwnode: Firmware node to get the property from.
491 * @propname: Name of the property.
492 * @valptr: Location to store a pointer to the property value (if not %NULL).
493 */
Sakari Ailus99a85462017-07-21 14:39:34 +0300494int acpi_node_prop_get(const struct fwnode_handle *fwnode,
495 const char *propname, void **valptr)
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200496{
497 return acpi_data_get_property(acpi_device_data_of_node(fwnode),
498 propname, ACPI_TYPE_ANY,
499 (const union acpi_object **)valptr);
500}
501
502/**
503 * acpi_data_get_property_array - return an ACPI array property with given name
504 * @adev: ACPI data object to get the property from
Mika Westerbergffdcd952014-10-21 13:33:55 +0200505 * @name: Name of the property
506 * @type: Expected type of array elements
507 * @obj: Location to store a pointer to the property value (if not NULL)
508 *
509 * Look up an array property with @name and store a pointer to the resulting
510 * ACPI object at the location pointed to by @obj if found.
511 *
512 * Callers must not attempt to free the returned objects. Those objects will be
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200513 * freed by the ACPI core automatically during the removal of @data.
Mika Westerbergffdcd952014-10-21 13:33:55 +0200514 *
515 * Return: %0 if array property (package) with @name has been found (success),
516 * %-EINVAL if the arguments are invalid,
Andy Shevchenko3c60f112015-11-30 17:11:35 +0200517 * %-EINVAL if the property doesn't exist,
Mika Westerbergffdcd952014-10-21 13:33:55 +0200518 * %-EPROTO if the property is not a package or the type of its elements
519 * doesn't match @type.
520 */
Sakari Ailus99a85462017-07-21 14:39:34 +0300521static int acpi_data_get_property_array(const struct acpi_device_data *data,
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200522 const char *name,
523 acpi_object_type type,
524 const union acpi_object **obj)
Mika Westerbergffdcd952014-10-21 13:33:55 +0200525{
526 const union acpi_object *prop;
527 int ret, i;
528
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200529 ret = acpi_data_get_property(data, name, ACPI_TYPE_PACKAGE, &prop);
Mika Westerbergffdcd952014-10-21 13:33:55 +0200530 if (ret)
531 return ret;
532
533 if (type != ACPI_TYPE_ANY) {
534 /* Check that all elements are of correct type. */
535 for (i = 0; i < prop->package.count; i++)
536 if (prop->package.elements[i].type != type)
537 return -EPROTO;
538 }
539 if (obj)
540 *obj = prop;
541
542 return 0;
543}
Mika Westerbergffdcd952014-10-21 13:33:55 +0200544
545/**
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300546 * __acpi_node_get_property_reference - returns handle to the referenced object
547 * @fwnode: Firmware node to get the property from
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200548 * @propname: Name of the property
Mika Westerbergffdcd952014-10-21 13:33:55 +0200549 * @index: Index of the reference to return
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300550 * @num_args: Maximum number of arguments after each reference
Mika Westerbergffdcd952014-10-21 13:33:55 +0200551 * @args: Location to store the returned reference with optional arguments
552 *
553 * Find property with @name, verifify that it is a package containing at least
554 * one object reference and if so, store the ACPI device object pointer to the
Rafael J. Wysocki60ba0322014-11-05 00:29:07 +0100555 * target object in @args->adev. If the reference includes arguments, store
556 * them in the @args->args[] array.
Mika Westerbergffdcd952014-10-21 13:33:55 +0200557 *
Rafael J. Wysocki60ba0322014-11-05 00:29:07 +0100558 * If there's more than one reference in the property value package, @index is
559 * used to select the one to return.
Mika Westerbergffdcd952014-10-21 13:33:55 +0200560 *
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300561 * It is possible to leave holes in the property value set like in the
562 * example below:
563 *
564 * Package () {
565 * "cs-gpios",
566 * Package () {
567 * ^GPIO, 19, 0, 0,
568 * ^GPIO, 20, 0, 0,
569 * 0,
570 * ^GPIO, 21, 0, 0,
571 * }
572 * }
573 *
Sakari Ailusc343bc22017-09-26 12:08:27 +0300574 * Calling this function with index %2 or index %3 return %-ENOENT. If the
575 * property does not contain any more values %-ENOENT is returned. The NULL
576 * entry must be single integer and preferably contain value %0.
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300577 *
Mika Westerbergffdcd952014-10-21 13:33:55 +0200578 * Return: %0 on success, negative error code on failure.
579 */
Sakari Ailus99a85462017-07-21 14:39:34 +0300580int __acpi_node_get_property_reference(const struct fwnode_handle *fwnode,
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300581 const char *propname, size_t index, size_t num_args,
582 struct acpi_reference_args *args)
Mika Westerbergffdcd952014-10-21 13:33:55 +0200583{
584 const union acpi_object *element, *end;
585 const union acpi_object *obj;
Sakari Ailus99a85462017-07-21 14:39:34 +0300586 const struct acpi_device_data *data;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200587 struct acpi_device *device;
588 int ret, idx = 0;
589
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300590 data = acpi_device_data_of_node(fwnode);
591 if (!data)
Sakari Ailusc343bc22017-09-26 12:08:27 +0300592 return -ENOENT;
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300593
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200594 ret = acpi_data_get_property(data, propname, ACPI_TYPE_ANY, &obj);
Mika Westerbergffdcd952014-10-21 13:33:55 +0200595 if (ret)
Sakari Ailus51858a22017-10-11 11:06:13 +0300596 return ret == -EINVAL ? -ENOENT : -EINVAL;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200597
598 /*
599 * The simplest case is when the value is a single reference. Just
600 * return that reference then.
601 */
602 if (obj->type == ACPI_TYPE_LOCAL_REFERENCE) {
Rafael J. Wysocki60ba0322014-11-05 00:29:07 +0100603 if (index)
Mika Westerbergffdcd952014-10-21 13:33:55 +0200604 return -EINVAL;
605
606 ret = acpi_bus_get_device(obj->reference.handle, &device);
607 if (ret)
Sakari Ailus51858a22017-10-11 11:06:13 +0300608 return ret == -ENODEV ? -EINVAL : ret;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200609
610 args->adev = device;
611 args->nargs = 0;
612 return 0;
613 }
614
615 /*
616 * If it is not a single reference, then it is a package of
617 * references followed by number of ints as follows:
618 *
619 * Package () { REF, INT, REF, INT, INT }
620 *
621 * The index argument is then used to determine which reference
622 * the caller wants (along with the arguments).
623 */
Sakari Ailus51858a22017-10-11 11:06:13 +0300624 if (obj->type != ACPI_TYPE_PACKAGE)
625 return -EINVAL;
626 if (index >= obj->package.count)
627 return -ENOENT;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200628
629 element = obj->package.elements;
630 end = element + obj->package.count;
631
632 while (element < end) {
633 u32 nargs, i;
634
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300635 if (element->type == ACPI_TYPE_LOCAL_REFERENCE) {
636 ret = acpi_bus_get_device(element->reference.handle,
637 &device);
638 if (ret)
Sakari Ailusc343bc22017-09-26 12:08:27 +0300639 return -EINVAL;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200640
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300641 nargs = 0;
642 element++;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200643
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300644 /* assume following integer elements are all args */
645 for (i = 0; element + i < end && i < num_args; i++) {
646 int type = element[i].type;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200647
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300648 if (type == ACPI_TYPE_INTEGER)
649 nargs++;
650 else if (type == ACPI_TYPE_LOCAL_REFERENCE)
651 break;
652 else
Sakari Ailusc343bc22017-09-26 12:08:27 +0300653 return -EINVAL;
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300654 }
Mika Westerbergffdcd952014-10-21 13:33:55 +0200655
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300656 if (nargs > MAX_ACPI_REFERENCE_ARGS)
Sakari Ailusc343bc22017-09-26 12:08:27 +0300657 return -EINVAL;
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300658
659 if (idx == index) {
660 args->adev = device;
661 args->nargs = nargs;
662 for (i = 0; i < nargs; i++)
663 args->args[i] = element[i].integer.value;
664
665 return 0;
666 }
667
668 element += nargs;
669 } else if (element->type == ACPI_TYPE_INTEGER) {
670 if (idx == index)
671 return -ENOENT;
672 element++;
673 } else {
Sakari Ailusc343bc22017-09-26 12:08:27 +0300674 return -EINVAL;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200675 }
676
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300677 idx++;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200678 }
679
Sakari Ailusc343bc22017-09-26 12:08:27 +0300680 return -ENOENT;
Mika Westerbergffdcd952014-10-21 13:33:55 +0200681}
Mika Westerbergb60e4ea2016-09-29 16:39:41 +0300682EXPORT_SYMBOL_GPL(__acpi_node_get_property_reference);
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100683
Sakari Ailus99a85462017-07-21 14:39:34 +0300684static int acpi_data_prop_read_single(const struct acpi_device_data *data,
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200685 const char *propname,
686 enum dev_prop_type proptype, void *val)
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100687{
688 const union acpi_object *obj;
689 int ret;
690
691 if (!val)
692 return -EINVAL;
693
694 if (proptype >= DEV_PROP_U8 && proptype <= DEV_PROP_U64) {
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200695 ret = acpi_data_get_property(data, propname, ACPI_TYPE_INTEGER, &obj);
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100696 if (ret)
697 return ret;
698
699 switch (proptype) {
700 case DEV_PROP_U8:
701 if (obj->integer.value > U8_MAX)
702 return -EOVERFLOW;
703 *(u8 *)val = obj->integer.value;
704 break;
705 case DEV_PROP_U16:
706 if (obj->integer.value > U16_MAX)
707 return -EOVERFLOW;
708 *(u16 *)val = obj->integer.value;
709 break;
710 case DEV_PROP_U32:
711 if (obj->integer.value > U32_MAX)
712 return -EOVERFLOW;
713 *(u32 *)val = obj->integer.value;
714 break;
715 default:
716 *(u64 *)val = obj->integer.value;
717 break;
718 }
719 } else if (proptype == DEV_PROP_STRING) {
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200720 ret = acpi_data_get_property(data, propname, ACPI_TYPE_STRING, &obj);
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100721 if (ret)
722 return ret;
723
724 *(char **)val = obj->string.pointer;
Sakari Ailusb0b027c2017-03-28 15:22:19 +0300725
726 return 1;
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100727 } else {
728 ret = -EINVAL;
729 }
730 return ret;
731}
732
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200733int acpi_dev_prop_read_single(struct acpi_device *adev, const char *propname,
734 enum dev_prop_type proptype, void *val)
735{
Sakari Ailusb0b027c2017-03-28 15:22:19 +0300736 int ret;
737
738 if (!adev)
739 return -EINVAL;
740
741 ret = acpi_data_prop_read_single(&adev->data, propname, proptype, val);
742 if (ret < 0 || proptype != ACPI_TYPE_STRING)
743 return ret;
744 return 0;
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200745}
746
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100747static int acpi_copy_property_array_u8(const union acpi_object *items, u8 *val,
748 size_t nval)
749{
750 int i;
751
752 for (i = 0; i < nval; i++) {
753 if (items[i].type != ACPI_TYPE_INTEGER)
754 return -EPROTO;
755 if (items[i].integer.value > U8_MAX)
756 return -EOVERFLOW;
757
758 val[i] = items[i].integer.value;
759 }
760 return 0;
761}
762
763static int acpi_copy_property_array_u16(const union acpi_object *items,
764 u16 *val, size_t nval)
765{
766 int i;
767
768 for (i = 0; i < nval; i++) {
769 if (items[i].type != ACPI_TYPE_INTEGER)
770 return -EPROTO;
771 if (items[i].integer.value > U16_MAX)
772 return -EOVERFLOW;
773
774 val[i] = items[i].integer.value;
775 }
776 return 0;
777}
778
779static int acpi_copy_property_array_u32(const union acpi_object *items,
780 u32 *val, size_t nval)
781{
782 int i;
783
784 for (i = 0; i < nval; i++) {
785 if (items[i].type != ACPI_TYPE_INTEGER)
786 return -EPROTO;
787 if (items[i].integer.value > U32_MAX)
788 return -EOVERFLOW;
789
790 val[i] = items[i].integer.value;
791 }
792 return 0;
793}
794
795static int acpi_copy_property_array_u64(const union acpi_object *items,
796 u64 *val, size_t nval)
797{
798 int i;
799
800 for (i = 0; i < nval; i++) {
801 if (items[i].type != ACPI_TYPE_INTEGER)
802 return -EPROTO;
803
804 val[i] = items[i].integer.value;
805 }
806 return 0;
807}
808
809static int acpi_copy_property_array_string(const union acpi_object *items,
810 char **val, size_t nval)
811{
812 int i;
813
814 for (i = 0; i < nval; i++) {
815 if (items[i].type != ACPI_TYPE_STRING)
816 return -EPROTO;
817
818 val[i] = items[i].string.pointer;
819 }
Sakari Ailusb0b027c2017-03-28 15:22:19 +0300820 return nval;
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100821}
822
Sakari Ailus99a85462017-07-21 14:39:34 +0300823static int acpi_data_prop_read(const struct acpi_device_data *data,
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200824 const char *propname,
825 enum dev_prop_type proptype,
826 void *val, size_t nval)
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100827{
828 const union acpi_object *obj;
829 const union acpi_object *items;
830 int ret;
831
832 if (val && nval == 1) {
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200833 ret = acpi_data_prop_read_single(data, propname, proptype, val);
Sakari Ailusb0b027c2017-03-28 15:22:19 +0300834 if (ret >= 0)
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100835 return ret;
836 }
837
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200838 ret = acpi_data_get_property_array(data, propname, ACPI_TYPE_ANY, &obj);
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100839 if (ret)
840 return ret;
841
842 if (!val)
843 return obj->package.count;
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100844
Sakari Ailusb0b027c2017-03-28 15:22:19 +0300845 if (proptype != DEV_PROP_STRING && nval > obj->package.count)
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100846 return -EOVERFLOW;
Andy Shevchenko7dc59dc2015-08-10 19:56:48 +0300847 else if (nval <= 0)
848 return -EINVAL;
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100849
850 items = obj->package.elements;
Andy Shevchenko7dc59dc2015-08-10 19:56:48 +0300851
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100852 switch (proptype) {
853 case DEV_PROP_U8:
854 ret = acpi_copy_property_array_u8(items, (u8 *)val, nval);
855 break;
856 case DEV_PROP_U16:
857 ret = acpi_copy_property_array_u16(items, (u16 *)val, nval);
858 break;
859 case DEV_PROP_U32:
860 ret = acpi_copy_property_array_u32(items, (u32 *)val, nval);
861 break;
862 case DEV_PROP_U64:
863 ret = acpi_copy_property_array_u64(items, (u64 *)val, nval);
864 break;
865 case DEV_PROP_STRING:
Sakari Ailusb0b027c2017-03-28 15:22:19 +0300866 ret = acpi_copy_property_array_string(
867 items, (char **)val,
868 min_t(u32, nval, obj->package.count));
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100869 break;
870 default:
871 ret = -EINVAL;
872 break;
873 }
874 return ret;
875}
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200876
Sakari Ailus99a85462017-07-21 14:39:34 +0300877int acpi_dev_prop_read(const struct acpi_device *adev, const char *propname,
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200878 enum dev_prop_type proptype, void *val, size_t nval)
879{
880 return adev ? acpi_data_prop_read(&adev->data, propname, proptype, val, nval) : -EINVAL;
881}
882
883/**
884 * acpi_node_prop_read - retrieve the value of an ACPI property with given name.
885 * @fwnode: Firmware node to get the property from.
886 * @propname: Name of the property.
887 * @proptype: Expected property type.
888 * @val: Location to store the property value (if not %NULL).
889 * @nval: Size of the array pointed to by @val.
890 *
891 * If @val is %NULL, return the number of array elements comprising the value
892 * of the property. Otherwise, read at most @nval values to the array at the
893 * location pointed to by @val.
894 */
Sakari Ailus99a85462017-07-21 14:39:34 +0300895int acpi_node_prop_read(const struct fwnode_handle *fwnode,
896 const char *propname, enum dev_prop_type proptype,
897 void *val, size_t nval)
Rafael J. Wysocki3a7a2ab2015-08-27 04:40:05 +0200898{
899 return acpi_data_prop_read(acpi_device_data_of_node(fwnode),
900 propname, proptype, val, nval);
901}
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200902
903/**
Mika Westerberg34055192017-03-28 10:52:18 +0300904 * acpi_get_next_subnode - Return the next child node handle for a fwnode
905 * @fwnode: Firmware node to find the next child node for.
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200906 * @child: Handle to one of the device's child nodes or a null handle.
907 */
Sakari Ailus37ba9832017-07-21 14:39:36 +0300908struct fwnode_handle *acpi_get_next_subnode(const struct fwnode_handle *fwnode,
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200909 struct fwnode_handle *child)
910{
Sakari Ailus01c1da22017-07-21 14:39:32 +0300911 const struct acpi_device *adev = to_acpi_device_node(fwnode);
Sakari Ailus01c1da22017-07-21 14:39:32 +0300912 const struct list_head *head;
913 struct list_head *next;
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200914
Sakari Ailusdb3e50f2017-07-21 14:39:31 +0300915 if (!child || is_acpi_device_node(child)) {
Sakari Ailus0c0bceb2017-09-08 12:24:41 +0300916 struct acpi_device *child_adev;
917
Mika Westerberg34055192017-03-28 10:52:18 +0300918 if (adev)
919 head = &adev->children;
920 else
921 goto nondev;
922
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200923 if (list_empty(head))
924 goto nondev;
925
926 if (child) {
Sakari Ailus0c0bceb2017-09-08 12:24:41 +0300927 adev = to_acpi_device_node(child);
928 next = adev->node.next;
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200929 if (next == head) {
930 child = NULL;
931 goto nondev;
932 }
Sakari Ailus01c1da22017-07-21 14:39:32 +0300933 child_adev = list_entry(next, struct acpi_device, node);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200934 } else {
Sakari Ailus01c1da22017-07-21 14:39:32 +0300935 child_adev = list_first_entry(head, struct acpi_device,
936 node);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200937 }
Sakari Ailus01c1da22017-07-21 14:39:32 +0300938 return acpi_fwnode_handle(child_adev);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200939 }
940
941 nondev:
Sakari Ailusdb3e50f2017-07-21 14:39:31 +0300942 if (!child || is_acpi_data_node(child)) {
Sakari Ailus01c1da22017-07-21 14:39:32 +0300943 const struct acpi_data_node *data = to_acpi_data_node(fwnode);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200944 struct acpi_data_node *dn;
945
Sakari Ailus0c0bceb2017-09-08 12:24:41 +0300946 if (adev)
947 head = &adev->data.subnodes;
Mika Westerberg34055192017-03-28 10:52:18 +0300948 else if (data)
949 head = &data->data.subnodes;
950 else
951 return NULL;
952
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200953 if (list_empty(head))
954 return NULL;
955
956 if (child) {
957 dn = to_acpi_data_node(child);
958 next = dn->sibling.next;
959 if (next == head)
960 return NULL;
961
962 dn = list_entry(next, struct acpi_data_node, sibling);
963 } else {
964 dn = list_first_entry(head, struct acpi_data_node, sibling);
965 }
966 return &dn->fwnode;
967 }
968 return NULL;
969}
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300970
971/**
972 * acpi_node_get_parent - Return parent fwnode of this fwnode
973 * @fwnode: Firmware node whose parent to get
974 *
975 * Returns parent node of an ACPI device or data firmware node or %NULL if
976 * not available.
977 */
Sakari Ailus37ba9832017-07-21 14:39:36 +0300978struct fwnode_handle *acpi_node_get_parent(const struct fwnode_handle *fwnode)
Mika Westerbergdfa672f2017-03-28 10:52:16 +0300979{
980 if (is_acpi_data_node(fwnode)) {
981 /* All data nodes have parent pointer so just return that */
982 return to_acpi_data_node(fwnode)->parent;
983 } else if (is_acpi_device_node(fwnode)) {
984 acpi_handle handle, parent_handle;
985
986 handle = to_acpi_device_node(fwnode)->handle;
987 if (ACPI_SUCCESS(acpi_get_parent(handle, &parent_handle))) {
988 struct acpi_device *adev;
989
990 if (!acpi_bus_get_device(parent_handle, &adev))
991 return acpi_fwnode_handle(adev);
992 }
993 }
994
995 return NULL;
996}
Mika Westerberg79389a82017-03-28 10:52:20 +0300997
998/**
999 * acpi_graph_get_next_endpoint - Get next endpoint ACPI firmware node
1000 * @fwnode: Pointer to the parent firmware node
1001 * @prev: Previous endpoint node or %NULL to get the first
1002 *
1003 * Looks up next endpoint ACPI firmware node below a given @fwnode. Returns
1004 * %NULL if there is no next endpoint, ERR_PTR() in case of error. In case
1005 * of success the next endpoint is returned.
1006 */
Sakari Ailus37ba9832017-07-21 14:39:36 +03001007struct fwnode_handle *acpi_graph_get_next_endpoint(
1008 const struct fwnode_handle *fwnode, struct fwnode_handle *prev)
Mika Westerberg79389a82017-03-28 10:52:20 +03001009{
1010 struct fwnode_handle *port = NULL;
1011 struct fwnode_handle *endpoint;
1012
1013 if (!prev) {
1014 do {
1015 port = fwnode_get_next_child_node(fwnode, port);
1016 /* Ports must have port property */
1017 if (fwnode_property_present(port, "port"))
1018 break;
1019 } while (port);
1020 } else {
1021 port = fwnode_get_parent(prev);
1022 }
1023
1024 if (!port)
1025 return NULL;
1026
1027 endpoint = fwnode_get_next_child_node(port, prev);
1028 while (!endpoint) {
1029 port = fwnode_get_next_child_node(fwnode, port);
1030 if (!port)
1031 break;
1032 if (fwnode_property_present(port, "port"))
1033 endpoint = fwnode_get_next_child_node(port, NULL);
1034 }
1035
1036 if (endpoint) {
1037 /* Endpoints must have "endpoint" property */
1038 if (!fwnode_property_present(endpoint, "endpoint"))
1039 return ERR_PTR(-EPROTO);
1040 }
1041
1042 return endpoint;
1043}
1044
1045/**
1046 * acpi_graph_get_child_prop_value - Return a child with a given property value
1047 * @fwnode: device fwnode
1048 * @prop_name: The name of the property to look for
1049 * @val: the desired property value
1050 *
1051 * Return the port node corresponding to a given port number. Returns
1052 * the child node on success, NULL otherwise.
1053 */
1054static struct fwnode_handle *acpi_graph_get_child_prop_value(
Sakari Ailus37ba9832017-07-21 14:39:36 +03001055 const struct fwnode_handle *fwnode, const char *prop_name,
1056 unsigned int val)
Mika Westerberg79389a82017-03-28 10:52:20 +03001057{
1058 struct fwnode_handle *child;
1059
1060 fwnode_for_each_child_node(fwnode, child) {
1061 u32 nr;
1062
Sakari Ailusb5212f52017-08-22 23:39:58 +03001063 if (fwnode_property_read_u32(child, prop_name, &nr))
Mika Westerberg79389a82017-03-28 10:52:20 +03001064 continue;
1065
1066 if (val == nr)
1067 return child;
1068 }
1069
1070 return NULL;
1071}
1072
1073
1074/**
1075 * acpi_graph_get_remote_enpoint - Parses and returns remote end of an endpoint
1076 * @fwnode: Endpoint firmware node pointing to a remote device
1077 * @parent: Firmware node of remote port parent is filled here if not %NULL
1078 * @port: Firmware node of remote port is filled here if not %NULL
1079 * @endpoint: Firmware node of remote endpoint is filled here if not %NULL
1080 *
1081 * Function parses remote end of ACPI firmware remote endpoint and fills in
1082 * fields requested by the caller. Returns %0 in case of success and
1083 * negative errno otherwise.
1084 */
Sakari Ailus37ba9832017-07-21 14:39:36 +03001085int acpi_graph_get_remote_endpoint(const struct fwnode_handle *__fwnode,
Mika Westerberg79389a82017-03-28 10:52:20 +03001086 struct fwnode_handle **parent,
1087 struct fwnode_handle **port,
1088 struct fwnode_handle **endpoint)
1089{
Sakari Ailus37ba9832017-07-21 14:39:36 +03001090 struct fwnode_handle *fwnode;
Mika Westerberg79389a82017-03-28 10:52:20 +03001091 unsigned int port_nr, endpoint_nr;
1092 struct acpi_reference_args args;
1093 int ret;
1094
1095 memset(&args, 0, sizeof(args));
Sakari Ailus37ba9832017-07-21 14:39:36 +03001096 ret = acpi_node_get_property_reference(__fwnode, "remote-endpoint", 0,
Mika Westerberg79389a82017-03-28 10:52:20 +03001097 &args);
1098 if (ret)
1099 return ret;
1100
1101 /*
1102 * Always require two arguments with the reference: port and
1103 * endpoint indices.
1104 */
1105 if (args.nargs != 2)
1106 return -EPROTO;
1107
1108 fwnode = acpi_fwnode_handle(args.adev);
1109 port_nr = args.args[0];
1110 endpoint_nr = args.args[1];
1111
1112 if (parent)
1113 *parent = fwnode;
1114
1115 if (!port && !endpoint)
1116 return 0;
1117
1118 fwnode = acpi_graph_get_child_prop_value(fwnode, "port", port_nr);
1119 if (!fwnode)
1120 return -EPROTO;
1121
1122 if (port)
1123 *port = fwnode;
1124
1125 if (!endpoint)
1126 return 0;
1127
1128 fwnode = acpi_graph_get_child_prop_value(fwnode, "endpoint",
1129 endpoint_nr);
1130 if (!fwnode)
1131 return -EPROTO;
1132
1133 *endpoint = fwnode;
1134
1135 return 0;
1136}
Sakari Ailus37081842017-06-06 12:37:37 +03001137
Sakari Ailus37ba9832017-07-21 14:39:36 +03001138static bool acpi_fwnode_device_is_available(const struct fwnode_handle *fwnode)
Sakari Ailus2294b3a2017-06-06 12:37:39 +03001139{
1140 if (!is_acpi_device_node(fwnode))
1141 return false;
1142
1143 return acpi_device_is_present(to_acpi_device_node(fwnode));
1144}
1145
Sakari Ailus37ba9832017-07-21 14:39:36 +03001146static bool acpi_fwnode_property_present(const struct fwnode_handle *fwnode,
Sakari Ailus37081842017-06-06 12:37:37 +03001147 const char *propname)
1148{
1149 return !acpi_node_prop_get(fwnode, propname, NULL);
1150}
1151
Sakari Ailus37ba9832017-07-21 14:39:36 +03001152static int
1153acpi_fwnode_property_read_int_array(const struct fwnode_handle *fwnode,
1154 const char *propname,
1155 unsigned int elem_size, void *val,
1156 size_t nval)
Sakari Ailus37081842017-06-06 12:37:37 +03001157{
1158 enum dev_prop_type type;
1159
1160 switch (elem_size) {
1161 case sizeof(u8):
1162 type = DEV_PROP_U8;
1163 break;
1164 case sizeof(u16):
1165 type = DEV_PROP_U16;
1166 break;
1167 case sizeof(u32):
1168 type = DEV_PROP_U32;
1169 break;
1170 case sizeof(u64):
1171 type = DEV_PROP_U64;
1172 break;
1173 default:
1174 return -ENXIO;
1175 }
1176
1177 return acpi_node_prop_read(fwnode, propname, type, val, nval);
1178}
1179
Sakari Ailus37ba9832017-07-21 14:39:36 +03001180static int
1181acpi_fwnode_property_read_string_array(const struct fwnode_handle *fwnode,
1182 const char *propname, const char **val,
1183 size_t nval)
Sakari Ailus37081842017-06-06 12:37:37 +03001184{
1185 return acpi_node_prop_read(fwnode, propname, DEV_PROP_STRING,
1186 val, nval);
1187}
1188
1189static struct fwnode_handle *
Sakari Ailus37ba9832017-07-21 14:39:36 +03001190acpi_fwnode_get_named_child_node(const struct fwnode_handle *fwnode,
Sakari Ailus37081842017-06-06 12:37:37 +03001191 const char *childname)
1192{
1193 struct fwnode_handle *child;
1194
1195 /*
1196 * Find first matching named child node of this fwnode.
1197 * For ACPI this will be a data only sub-node.
1198 */
1199 fwnode_for_each_child_node(fwnode, child)
1200 if (acpi_data_node_match(child, childname))
1201 return child;
1202
1203 return NULL;
1204}
1205
Sakari Ailus3e3119d2017-07-21 15:11:49 +03001206static int
1207acpi_fwnode_get_reference_args(const struct fwnode_handle *fwnode,
1208 const char *prop, const char *nargs_prop,
1209 unsigned int args_count, unsigned int index,
1210 struct fwnode_reference_args *args)
1211{
1212 struct acpi_reference_args acpi_args;
1213 unsigned int i;
1214 int ret;
1215
1216 ret = __acpi_node_get_property_reference(fwnode, prop, index,
1217 args_count, &acpi_args);
1218 if (ret < 0)
1219 return ret;
1220 if (!args)
1221 return 0;
1222
1223 args->nargs = acpi_args.nargs;
1224 args->fwnode = acpi_fwnode_handle(acpi_args.adev);
1225
1226 for (i = 0; i < NR_FWNODE_REFERENCE_ARGS; i++)
1227 args->args[i] = i < acpi_args.nargs ? acpi_args.args[i] : 0;
1228
1229 return 0;
1230}
1231
Sakari Ailus3b27d002017-06-06 12:37:38 +03001232static struct fwnode_handle *
Sakari Ailus37ba9832017-07-21 14:39:36 +03001233acpi_fwnode_graph_get_next_endpoint(const struct fwnode_handle *fwnode,
Sakari Ailus3b27d002017-06-06 12:37:38 +03001234 struct fwnode_handle *prev)
1235{
1236 struct fwnode_handle *endpoint;
1237
1238 endpoint = acpi_graph_get_next_endpoint(fwnode, prev);
1239 if (IS_ERR(endpoint))
1240 return NULL;
1241
1242 return endpoint;
1243}
1244
1245static struct fwnode_handle *
Sakari Ailus37ba9832017-07-21 14:39:36 +03001246acpi_fwnode_graph_get_remote_endpoint(const struct fwnode_handle *fwnode)
Sakari Ailus3b27d002017-06-06 12:37:38 +03001247{
1248 struct fwnode_handle *endpoint = NULL;
1249
1250 acpi_graph_get_remote_endpoint(fwnode, NULL, NULL, &endpoint);
1251
1252 return endpoint;
1253}
1254
Sakari Ailus37ba9832017-07-21 14:39:36 +03001255static struct fwnode_handle *
1256acpi_fwnode_get_parent(struct fwnode_handle *fwnode)
1257{
1258 return acpi_node_get_parent(fwnode);
1259}
1260
1261static int acpi_fwnode_graph_parse_endpoint(const struct fwnode_handle *fwnode,
Sakari Ailus3b27d002017-06-06 12:37:38 +03001262 struct fwnode_endpoint *endpoint)
1263{
1264 struct fwnode_handle *port_fwnode = fwnode_get_parent(fwnode);
1265
1266 endpoint->local_fwnode = fwnode;
1267
1268 fwnode_property_read_u32(port_fwnode, "port", &endpoint->port);
1269 fwnode_property_read_u32(fwnode, "endpoint", &endpoint->id);
1270
1271 return 0;
1272}
1273
Sinan Kaya146b4db2017-12-13 02:20:51 -05001274static void *
1275acpi_fwnode_device_get_match_data(const struct fwnode_handle *fwnode,
1276 const struct device *dev)
1277{
Andy Shevchenko29d53252018-02-09 17:38:35 +02001278 return acpi_device_get_match_data(dev);
Sinan Kaya146b4db2017-12-13 02:20:51 -05001279}
1280
Sakari Ailusdb3e50f2017-07-21 14:39:31 +03001281#define DECLARE_ACPI_FWNODE_OPS(ops) \
1282 const struct fwnode_operations ops = { \
1283 .device_is_available = acpi_fwnode_device_is_available, \
Sinan Kaya146b4db2017-12-13 02:20:51 -05001284 .device_get_match_data = acpi_fwnode_device_get_match_data, \
Sakari Ailusdb3e50f2017-07-21 14:39:31 +03001285 .property_present = acpi_fwnode_property_present, \
1286 .property_read_int_array = \
1287 acpi_fwnode_property_read_int_array, \
1288 .property_read_string_array = \
1289 acpi_fwnode_property_read_string_array, \
1290 .get_parent = acpi_node_get_parent, \
1291 .get_next_child_node = acpi_get_next_subnode, \
1292 .get_named_child_node = acpi_fwnode_get_named_child_node, \
Sakari Ailus3e3119d2017-07-21 15:11:49 +03001293 .get_reference_args = acpi_fwnode_get_reference_args, \
Sakari Ailusdb3e50f2017-07-21 14:39:31 +03001294 .graph_get_next_endpoint = \
1295 acpi_fwnode_graph_get_next_endpoint, \
1296 .graph_get_remote_endpoint = \
1297 acpi_fwnode_graph_get_remote_endpoint, \
Sakari Ailus37ba9832017-07-21 14:39:36 +03001298 .graph_get_port_parent = acpi_fwnode_get_parent, \
Sakari Ailusdb3e50f2017-07-21 14:39:31 +03001299 .graph_parse_endpoint = acpi_fwnode_graph_parse_endpoint, \
1300 }; \
1301 EXPORT_SYMBOL_GPL(ops)
1302
1303DECLARE_ACPI_FWNODE_OPS(acpi_device_fwnode_ops);
1304DECLARE_ACPI_FWNODE_OPS(acpi_data_fwnode_ops);
1305const struct fwnode_operations acpi_static_fwnode_ops;
John Hubbard9e987b72017-09-15 17:35:27 -07001306
1307bool is_acpi_device_node(const struct fwnode_handle *fwnode)
1308{
1309 return !IS_ERR_OR_NULL(fwnode) &&
1310 fwnode->ops == &acpi_device_fwnode_ops;
1311}
1312EXPORT_SYMBOL(is_acpi_device_node);
1313
1314bool is_acpi_data_node(const struct fwnode_handle *fwnode)
1315{
1316 return !IS_ERR_OR_NULL(fwnode) && fwnode->ops == &acpi_data_fwnode_ops;
1317}
1318EXPORT_SYMBOL(is_acpi_data_node);