Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 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 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 22 | static 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 | |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 27 | /* ACPI _DSD device properties UUID: daffd814-6eba-4d8c-8a91-bc9bbf4aa301 */ |
| 28 | static const u8 prp_uuid[16] = { |
| 29 | 0x14, 0xd8, 0xff, 0xda, 0xba, 0x6e, 0x8c, 0x4d, |
| 30 | 0x8a, 0x91, 0xbc, 0x9b, 0xbf, 0x4a, 0xa3, 0x01 |
| 31 | }; |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 32 | /* ACPI _DSD data subnodes UUID: dbb8e3e6-5886-4ba6-8795-1319f52a966b */ |
| 33 | static 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 | |
| 38 | static bool acpi_enumerate_nondev_subnodes(acpi_handle scope, |
| 39 | const union acpi_object *desc, |
| 40 | struct acpi_device_data *data); |
| 41 | static bool acpi_extract_properties(const union acpi_object *desc, |
| 42 | struct acpi_device_data *data); |
| 43 | |
| 44 | static 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)) |
Rafael J. Wysocki | 263b4c1 | 2015-08-27 04:37:19 +0200 | [diff] [blame] | 72 | dn->handle = handle; |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 73 | |
Rafael J. Wysocki | 205ad97 | 2015-10-20 18:32:27 +0200 | [diff] [blame] | 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)) |
Rafael J. Wysocki | 263b4c1 | 2015-08-27 04:37:19 +0200 | [diff] [blame] | 82 | dn->handle = handle; |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 83 | |
Rafael J. Wysocki | 263b4c1 | 2015-08-27 04:37:19 +0200 | [diff] [blame] | 84 | if (dn->handle) { |
| 85 | dn->data.pointer = buf.pointer; |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 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 | |
| 98 | static 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 | |
| 120 | static 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 | } |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 149 | |
| 150 | static 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 | |
| 181 | static 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 | |
Mika Westerberg | 733e625 | 2014-10-21 13:33:56 +0200 | [diff] [blame] | 201 | static void acpi_init_of_compatible(struct acpi_device *adev) |
| 202 | { |
| 203 | const union acpi_object *of_compatible; |
Mika Westerberg | 733e625 | 2014-10-21 13:33:56 +0200 | [diff] [blame] | 204 | int ret; |
| 205 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 206 | ret = acpi_data_get_property_array(&adev->data, "compatible", |
| 207 | ACPI_TYPE_STRING, &of_compatible); |
Rafael J. Wysocki | 5c53b26 | 2015-05-05 15:43:07 +0200 | [diff] [blame] | 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 | |
Rafael J. Wysocki | bd8191c | 2015-08-27 04:35:14 +0200 | [diff] [blame] | 225 | static bool acpi_extract_properties(const union acpi_object *desc, |
| 226 | struct acpi_device_data *data) |
Rafael J. Wysocki | 5c53b26 | 2015-05-05 15:43:07 +0200 | [diff] [blame] | 227 | { |
Rafael J. Wysocki | 5c53b26 | 2015-05-05 15:43:07 +0200 | [diff] [blame] | 228 | int i; |
| 229 | |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 230 | if (desc->package.count % 2) |
Rafael J. Wysocki | bd8191c | 2015-08-27 04:35:14 +0200 | [diff] [blame] | 231 | return false; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 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 | |
Rafael J. Wysocki | bd8191c | 2015-08-27 04:35:14 +0200 | [diff] [blame] | 258 | data->properties = properties; |
| 259 | return true; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 260 | } |
| 261 | |
Rafael J. Wysocki | bd8191c | 2015-08-27 04:35:14 +0200 | [diff] [blame] | 262 | return false; |
| 263 | } |
| 264 | |
| 265 | void 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 | |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 272 | INIT_LIST_HEAD(&adev->data.subnodes); |
| 273 | |
Rafael J. Wysocki | bd8191c | 2015-08-27 04:35:14 +0200 | [diff] [blame] | 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); |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 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) { |
Rafael J. Wysocki | bd8191c | 2015-08-27 04:35:14 +0200 | [diff] [blame] | 299 | acpi_handle_debug(adev->handle, "Invalid _DSD data, skipping\n"); |
| 300 | ACPI_FREE(buf.pointer); |
| 301 | } |
Rafael J. Wysocki | 5c53b26 | 2015-05-05 15:43:07 +0200 | [diff] [blame] | 302 | |
| 303 | out: |
| 304 | if (acpi_of && !adev->flags.of_compatible_ok) |
| 305 | acpi_handle_info(adev->handle, |
Rafael J. Wysocki | ee89209 | 2015-05-22 04:24:34 +0200 | [diff] [blame] | 306 | ACPI_DT_NAMESPACE_HID " requires 'compatible' property\n"); |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 307 | } |
| 308 | |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 309 | static 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); |
Rafael J. Wysocki | 263b4c1 | 2015-08-27 04:37:19 +0200 | [diff] [blame] | 318 | wait_for_completion(&dn->kobj_done); |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 319 | list_del(&dn->sibling); |
| 320 | ACPI_FREE((void *)dn->data.pointer); |
| 321 | kfree(dn); |
| 322 | } |
| 323 | } |
| 324 | |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 325 | void acpi_free_properties(struct acpi_device *adev) |
| 326 | { |
Rafael J. Wysocki | 445b0eb | 2015-08-27 04:36:14 +0200 | [diff] [blame] | 327 | acpi_destroy_nondev_subnodes(&adev->data.subnodes); |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 328 | ACPI_FREE((void *)adev->data.pointer); |
Mika Westerberg | 733e625 | 2014-10-21 13:33:56 +0200 | [diff] [blame] | 329 | adev->data.of_compatible = NULL; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 330 | adev->data.pointer = NULL; |
| 331 | adev->data.properties = NULL; |
| 332 | } |
| 333 | |
| 334 | /** |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 335 | * acpi_data_get_property - return an ACPI property with given name |
| 336 | * @data: ACPI device deta object to get the property from |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 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 |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 345 | * freed by the ACPI core automatically during the removal of @data. |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 346 | * |
| 347 | * Return: %0 if property with @name has been found (success), |
| 348 | * %-EINVAL if the arguments are invalid, |
Andy Shevchenko | 3c60f11 | 2015-11-30 17:11:35 +0200 | [diff] [blame] | 349 | * %-EINVAL if the property doesn't exist, |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 350 | * %-EPROTO if the property value type doesn't match @type. |
| 351 | */ |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 352 | static int acpi_data_get_property(struct acpi_device_data *data, |
| 353 | const char *name, acpi_object_type type, |
| 354 | const union acpi_object **obj) |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 355 | { |
| 356 | const union acpi_object *properties; |
| 357 | int i; |
| 358 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 359 | if (!data || !name) |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 360 | return -EINVAL; |
| 361 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 362 | if (!data->pointer || !data->properties) |
Andy Shevchenko | 3c60f11 | 2015-11-30 17:11:35 +0200 | [diff] [blame] | 363 | return -EINVAL; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 364 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 365 | properties = data->properties; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 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; |
Andy Shevchenko | 3c60f11 | 2015-11-30 17:11:35 +0200 | [diff] [blame] | 378 | if (obj) |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 379 | *obj = propvalue; |
| 380 | |
| 381 | return 0; |
| 382 | } |
| 383 | } |
Andy Shevchenko | 3c60f11 | 2015-11-30 17:11:35 +0200 | [diff] [blame] | 384 | return -EINVAL; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 385 | } |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 386 | |
| 387 | /** |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 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 | */ |
| 394 | int 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 | } |
| 399 | EXPORT_SYMBOL_GPL(acpi_dev_get_property); |
| 400 | |
| 401 | static 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 | */ |
| 419 | int 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 |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 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 |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 438 | * freed by the ACPI core automatically during the removal of @data. |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 439 | * |
| 440 | * Return: %0 if array property (package) with @name has been found (success), |
| 441 | * %-EINVAL if the arguments are invalid, |
Andy Shevchenko | 3c60f11 | 2015-11-30 17:11:35 +0200 | [diff] [blame] | 442 | * %-EINVAL if the property doesn't exist, |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 443 | * %-EPROTO if the property is not a package or the type of its elements |
| 444 | * doesn't match @type. |
| 445 | */ |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 446 | static 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) |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 450 | { |
| 451 | const union acpi_object *prop; |
| 452 | int ret, i; |
| 453 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 454 | ret = acpi_data_get_property(data, name, ACPI_TYPE_PACKAGE, &prop); |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 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 | } |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 469 | |
| 470 | /** |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 471 | * __acpi_node_get_property_reference - returns handle to the referenced object |
| 472 | * @fwnode: Firmware node to get the property from |
Rafael J. Wysocki | 504a337 | 2015-08-27 04:42:33 +0200 | [diff] [blame] | 473 | * @propname: Name of the property |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 474 | * @index: Index of the reference to return |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 475 | * @num_args: Maximum number of arguments after each reference |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 476 | * @args: Location to store the returned reference with optional arguments |
| 477 | * |
| 478 | * Find property with @name, verifify that it is a package containing at least |
| 479 | * one object reference and if so, store the ACPI device object pointer to the |
Rafael J. Wysocki | 60ba032 | 2014-11-05 00:29:07 +0100 | [diff] [blame] | 480 | * target object in @args->adev. If the reference includes arguments, store |
| 481 | * them in the @args->args[] array. |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 482 | * |
Rafael J. Wysocki | 60ba032 | 2014-11-05 00:29:07 +0100 | [diff] [blame] | 483 | * If there's more than one reference in the property value package, @index is |
| 484 | * used to select the one to return. |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 485 | * |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 486 | * It is possible to leave holes in the property value set like in the |
| 487 | * example below: |
| 488 | * |
| 489 | * Package () { |
| 490 | * "cs-gpios", |
| 491 | * Package () { |
| 492 | * ^GPIO, 19, 0, 0, |
| 493 | * ^GPIO, 20, 0, 0, |
| 494 | * 0, |
| 495 | * ^GPIO, 21, 0, 0, |
| 496 | * } |
| 497 | * } |
| 498 | * |
| 499 | * Calling this function with index %2 return %-ENOENT and with index %3 |
| 500 | * returns the last entry. If the property does not contain any more values |
| 501 | * %-ENODATA is returned. The NULL entry must be single integer and |
| 502 | * preferably contain value %0. |
| 503 | * |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 504 | * Return: %0 on success, negative error code on failure. |
| 505 | */ |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 506 | int __acpi_node_get_property_reference(struct fwnode_handle *fwnode, |
| 507 | const char *propname, size_t index, size_t num_args, |
| 508 | struct acpi_reference_args *args) |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 509 | { |
| 510 | const union acpi_object *element, *end; |
| 511 | const union acpi_object *obj; |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 512 | struct acpi_device_data *data; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 513 | struct acpi_device *device; |
| 514 | int ret, idx = 0; |
| 515 | |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 516 | data = acpi_device_data_of_node(fwnode); |
| 517 | if (!data) |
| 518 | return -EINVAL; |
| 519 | |
Rafael J. Wysocki | 504a337 | 2015-08-27 04:42:33 +0200 | [diff] [blame] | 520 | ret = acpi_data_get_property(data, propname, ACPI_TYPE_ANY, &obj); |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 521 | if (ret) |
| 522 | return ret; |
| 523 | |
| 524 | /* |
| 525 | * The simplest case is when the value is a single reference. Just |
| 526 | * return that reference then. |
| 527 | */ |
| 528 | if (obj->type == ACPI_TYPE_LOCAL_REFERENCE) { |
Rafael J. Wysocki | 60ba032 | 2014-11-05 00:29:07 +0100 | [diff] [blame] | 529 | if (index) |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 530 | return -EINVAL; |
| 531 | |
| 532 | ret = acpi_bus_get_device(obj->reference.handle, &device); |
| 533 | if (ret) |
| 534 | return ret; |
| 535 | |
| 536 | args->adev = device; |
| 537 | args->nargs = 0; |
| 538 | return 0; |
| 539 | } |
| 540 | |
| 541 | /* |
| 542 | * If it is not a single reference, then it is a package of |
| 543 | * references followed by number of ints as follows: |
| 544 | * |
| 545 | * Package () { REF, INT, REF, INT, INT } |
| 546 | * |
| 547 | * The index argument is then used to determine which reference |
| 548 | * the caller wants (along with the arguments). |
| 549 | */ |
| 550 | if (obj->type != ACPI_TYPE_PACKAGE || index >= obj->package.count) |
| 551 | return -EPROTO; |
| 552 | |
| 553 | element = obj->package.elements; |
| 554 | end = element + obj->package.count; |
| 555 | |
| 556 | while (element < end) { |
| 557 | u32 nargs, i; |
| 558 | |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 559 | if (element->type == ACPI_TYPE_LOCAL_REFERENCE) { |
| 560 | ret = acpi_bus_get_device(element->reference.handle, |
| 561 | &device); |
| 562 | if (ret) |
| 563 | return -ENODEV; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 564 | |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 565 | nargs = 0; |
| 566 | element++; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 567 | |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 568 | /* assume following integer elements are all args */ |
| 569 | for (i = 0; element + i < end && i < num_args; i++) { |
| 570 | int type = element[i].type; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 571 | |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 572 | if (type == ACPI_TYPE_INTEGER) |
| 573 | nargs++; |
| 574 | else if (type == ACPI_TYPE_LOCAL_REFERENCE) |
| 575 | break; |
| 576 | else |
| 577 | return -EPROTO; |
| 578 | } |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 579 | |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 580 | if (nargs > MAX_ACPI_REFERENCE_ARGS) |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 581 | return -EPROTO; |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 582 | |
| 583 | if (idx == index) { |
| 584 | args->adev = device; |
| 585 | args->nargs = nargs; |
| 586 | for (i = 0; i < nargs; i++) |
| 587 | args->args[i] = element[i].integer.value; |
| 588 | |
| 589 | return 0; |
| 590 | } |
| 591 | |
| 592 | element += nargs; |
| 593 | } else if (element->type == ACPI_TYPE_INTEGER) { |
| 594 | if (idx == index) |
| 595 | return -ENOENT; |
| 596 | element++; |
| 597 | } else { |
| 598 | return -EPROTO; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 599 | } |
| 600 | |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 601 | idx++; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 602 | } |
| 603 | |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 604 | return -ENODATA; |
Mika Westerberg | ffdcd95 | 2014-10-21 13:33:55 +0200 | [diff] [blame] | 605 | } |
Mika Westerberg | b60e4ea | 2016-09-29 16:39:41 +0300 | [diff] [blame] | 606 | EXPORT_SYMBOL_GPL(__acpi_node_get_property_reference); |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 607 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 608 | static int acpi_data_prop_read_single(struct acpi_device_data *data, |
| 609 | const char *propname, |
| 610 | enum dev_prop_type proptype, void *val) |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 611 | { |
| 612 | const union acpi_object *obj; |
| 613 | int ret; |
| 614 | |
| 615 | if (!val) |
| 616 | return -EINVAL; |
| 617 | |
| 618 | if (proptype >= DEV_PROP_U8 && proptype <= DEV_PROP_U64) { |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 619 | ret = acpi_data_get_property(data, propname, ACPI_TYPE_INTEGER, &obj); |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 620 | if (ret) |
| 621 | return ret; |
| 622 | |
| 623 | switch (proptype) { |
| 624 | case DEV_PROP_U8: |
| 625 | if (obj->integer.value > U8_MAX) |
| 626 | return -EOVERFLOW; |
| 627 | *(u8 *)val = obj->integer.value; |
| 628 | break; |
| 629 | case DEV_PROP_U16: |
| 630 | if (obj->integer.value > U16_MAX) |
| 631 | return -EOVERFLOW; |
| 632 | *(u16 *)val = obj->integer.value; |
| 633 | break; |
| 634 | case DEV_PROP_U32: |
| 635 | if (obj->integer.value > U32_MAX) |
| 636 | return -EOVERFLOW; |
| 637 | *(u32 *)val = obj->integer.value; |
| 638 | break; |
| 639 | default: |
| 640 | *(u64 *)val = obj->integer.value; |
| 641 | break; |
| 642 | } |
| 643 | } else if (proptype == DEV_PROP_STRING) { |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 644 | ret = acpi_data_get_property(data, propname, ACPI_TYPE_STRING, &obj); |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 645 | if (ret) |
| 646 | return ret; |
| 647 | |
| 648 | *(char **)val = obj->string.pointer; |
| 649 | } else { |
| 650 | ret = -EINVAL; |
| 651 | } |
| 652 | return ret; |
| 653 | } |
| 654 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 655 | int acpi_dev_prop_read_single(struct acpi_device *adev, const char *propname, |
| 656 | enum dev_prop_type proptype, void *val) |
| 657 | { |
| 658 | return adev ? acpi_data_prop_read_single(&adev->data, propname, proptype, val) : -EINVAL; |
| 659 | } |
| 660 | |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 661 | static int acpi_copy_property_array_u8(const union acpi_object *items, u8 *val, |
| 662 | size_t nval) |
| 663 | { |
| 664 | int i; |
| 665 | |
| 666 | for (i = 0; i < nval; i++) { |
| 667 | if (items[i].type != ACPI_TYPE_INTEGER) |
| 668 | return -EPROTO; |
| 669 | if (items[i].integer.value > U8_MAX) |
| 670 | return -EOVERFLOW; |
| 671 | |
| 672 | val[i] = items[i].integer.value; |
| 673 | } |
| 674 | return 0; |
| 675 | } |
| 676 | |
| 677 | static int acpi_copy_property_array_u16(const union acpi_object *items, |
| 678 | u16 *val, size_t nval) |
| 679 | { |
| 680 | int i; |
| 681 | |
| 682 | for (i = 0; i < nval; i++) { |
| 683 | if (items[i].type != ACPI_TYPE_INTEGER) |
| 684 | return -EPROTO; |
| 685 | if (items[i].integer.value > U16_MAX) |
| 686 | return -EOVERFLOW; |
| 687 | |
| 688 | val[i] = items[i].integer.value; |
| 689 | } |
| 690 | return 0; |
| 691 | } |
| 692 | |
| 693 | static int acpi_copy_property_array_u32(const union acpi_object *items, |
| 694 | u32 *val, size_t nval) |
| 695 | { |
| 696 | int i; |
| 697 | |
| 698 | for (i = 0; i < nval; i++) { |
| 699 | if (items[i].type != ACPI_TYPE_INTEGER) |
| 700 | return -EPROTO; |
| 701 | if (items[i].integer.value > U32_MAX) |
| 702 | return -EOVERFLOW; |
| 703 | |
| 704 | val[i] = items[i].integer.value; |
| 705 | } |
| 706 | return 0; |
| 707 | } |
| 708 | |
| 709 | static int acpi_copy_property_array_u64(const union acpi_object *items, |
| 710 | u64 *val, size_t nval) |
| 711 | { |
| 712 | int i; |
| 713 | |
| 714 | for (i = 0; i < nval; i++) { |
| 715 | if (items[i].type != ACPI_TYPE_INTEGER) |
| 716 | return -EPROTO; |
| 717 | |
| 718 | val[i] = items[i].integer.value; |
| 719 | } |
| 720 | return 0; |
| 721 | } |
| 722 | |
| 723 | static int acpi_copy_property_array_string(const union acpi_object *items, |
| 724 | char **val, size_t nval) |
| 725 | { |
| 726 | int i; |
| 727 | |
| 728 | for (i = 0; i < nval; i++) { |
| 729 | if (items[i].type != ACPI_TYPE_STRING) |
| 730 | return -EPROTO; |
| 731 | |
| 732 | val[i] = items[i].string.pointer; |
| 733 | } |
| 734 | return 0; |
| 735 | } |
| 736 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 737 | static int acpi_data_prop_read(struct acpi_device_data *data, |
| 738 | const char *propname, |
| 739 | enum dev_prop_type proptype, |
| 740 | void *val, size_t nval) |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 741 | { |
| 742 | const union acpi_object *obj; |
| 743 | const union acpi_object *items; |
| 744 | int ret; |
| 745 | |
| 746 | if (val && nval == 1) { |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 747 | ret = acpi_data_prop_read_single(data, propname, proptype, val); |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 748 | if (!ret) |
| 749 | return ret; |
| 750 | } |
| 751 | |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 752 | ret = acpi_data_get_property_array(data, propname, ACPI_TYPE_ANY, &obj); |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 753 | if (ret) |
| 754 | return ret; |
| 755 | |
| 756 | if (!val) |
| 757 | return obj->package.count; |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 758 | |
| 759 | if (nval > obj->package.count) |
| 760 | return -EOVERFLOW; |
Andy Shevchenko | 7dc59dc | 2015-08-10 19:56:48 +0300 | [diff] [blame] | 761 | else if (nval <= 0) |
| 762 | return -EINVAL; |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 763 | |
| 764 | items = obj->package.elements; |
Andy Shevchenko | 7dc59dc | 2015-08-10 19:56:48 +0300 | [diff] [blame] | 765 | |
Rafael J. Wysocki | b31384f | 2014-11-04 01:28:56 +0100 | [diff] [blame] | 766 | switch (proptype) { |
| 767 | case DEV_PROP_U8: |
| 768 | ret = acpi_copy_property_array_u8(items, (u8 *)val, nval); |
| 769 | break; |
| 770 | case DEV_PROP_U16: |
| 771 | ret = acpi_copy_property_array_u16(items, (u16 *)val, nval); |
| 772 | break; |
| 773 | case DEV_PROP_U32: |
| 774 | ret = acpi_copy_property_array_u32(items, (u32 *)val, nval); |
| 775 | break; |
| 776 | case DEV_PROP_U64: |
| 777 | ret = acpi_copy_property_array_u64(items, (u64 *)val, nval); |
| 778 | break; |
| 779 | case DEV_PROP_STRING: |
| 780 | ret = acpi_copy_property_array_string(items, (char **)val, nval); |
| 781 | break; |
| 782 | default: |
| 783 | ret = -EINVAL; |
| 784 | break; |
| 785 | } |
| 786 | return ret; |
| 787 | } |
Rafael J. Wysocki | 3a7a2ab | 2015-08-27 04:40:05 +0200 | [diff] [blame] | 788 | |
| 789 | int acpi_dev_prop_read(struct acpi_device *adev, const char *propname, |
| 790 | enum dev_prop_type proptype, void *val, size_t nval) |
| 791 | { |
| 792 | return adev ? acpi_data_prop_read(&adev->data, propname, proptype, val, nval) : -EINVAL; |
| 793 | } |
| 794 | |
| 795 | /** |
| 796 | * acpi_node_prop_read - retrieve the value of an ACPI property with given name. |
| 797 | * @fwnode: Firmware node to get the property from. |
| 798 | * @propname: Name of the property. |
| 799 | * @proptype: Expected property type. |
| 800 | * @val: Location to store the property value (if not %NULL). |
| 801 | * @nval: Size of the array pointed to by @val. |
| 802 | * |
| 803 | * If @val is %NULL, return the number of array elements comprising the value |
| 804 | * of the property. Otherwise, read at most @nval values to the array at the |
| 805 | * location pointed to by @val. |
| 806 | */ |
| 807 | int acpi_node_prop_read(struct fwnode_handle *fwnode, const char *propname, |
| 808 | enum dev_prop_type proptype, void *val, size_t nval) |
| 809 | { |
| 810 | return acpi_data_prop_read(acpi_device_data_of_node(fwnode), |
| 811 | propname, proptype, val, nval); |
| 812 | } |
Rafael J. Wysocki | 504a337 | 2015-08-27 04:42:33 +0200 | [diff] [blame] | 813 | |
| 814 | /** |
| 815 | * acpi_get_next_subnode - Return the next child node handle for a device. |
| 816 | * @dev: Device to find the next child node for. |
| 817 | * @child: Handle to one of the device's child nodes or a null handle. |
| 818 | */ |
| 819 | struct fwnode_handle *acpi_get_next_subnode(struct device *dev, |
| 820 | struct fwnode_handle *child) |
| 821 | { |
| 822 | struct acpi_device *adev = ACPI_COMPANION(dev); |
| 823 | struct list_head *head, *next; |
| 824 | |
| 825 | if (!adev) |
| 826 | return NULL; |
| 827 | |
| 828 | if (!child || child->type == FWNODE_ACPI) { |
| 829 | head = &adev->children; |
| 830 | if (list_empty(head)) |
| 831 | goto nondev; |
| 832 | |
| 833 | if (child) { |
| 834 | adev = to_acpi_device_node(child); |
| 835 | next = adev->node.next; |
| 836 | if (next == head) { |
| 837 | child = NULL; |
Irina Tirdea | bf4703f | 2016-03-13 02:33:30 +0200 | [diff] [blame] | 838 | adev = ACPI_COMPANION(dev); |
Rafael J. Wysocki | 504a337 | 2015-08-27 04:42:33 +0200 | [diff] [blame] | 839 | goto nondev; |
| 840 | } |
| 841 | adev = list_entry(next, struct acpi_device, node); |
| 842 | } else { |
| 843 | adev = list_first_entry(head, struct acpi_device, node); |
| 844 | } |
| 845 | return acpi_fwnode_handle(adev); |
| 846 | } |
| 847 | |
| 848 | nondev: |
| 849 | if (!child || child->type == FWNODE_ACPI_DATA) { |
| 850 | struct acpi_data_node *dn; |
| 851 | |
| 852 | head = &adev->data.subnodes; |
| 853 | if (list_empty(head)) |
| 854 | return NULL; |
| 855 | |
| 856 | if (child) { |
| 857 | dn = to_acpi_data_node(child); |
| 858 | next = dn->sibling.next; |
| 859 | if (next == head) |
| 860 | return NULL; |
| 861 | |
| 862 | dn = list_entry(next, struct acpi_data_node, sibling); |
| 863 | } else { |
| 864 | dn = list_first_entry(head, struct acpi_data_node, sibling); |
| 865 | } |
| 866 | return &dn->fwnode; |
| 867 | } |
| 868 | return NULL; |
| 869 | } |