blob: 51b1b44e5b0a0834942fbce69e74a0ff9592fcec [file] [log] [blame]
Simon Glass6494d702014-02-26 15:59:18 -07001/*
2 * Device manager
3 *
4 * Copyright (c) 2013 Google, Inc
5 *
6 * (C) Copyright 2012
7 * Pavel Herrmann <morpheus.ibis@gmail.com>
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12#include <common.h>
Simon Glass5a66a8f2014-07-23 06:55:12 -060013#include <fdtdec.h>
Simon Glass6494d702014-02-26 15:59:18 -070014#include <malloc.h>
15#include <dm/device.h>
16#include <dm/device-internal.h>
17#include <dm/lists.h>
18#include <dm/platdata.h>
19#include <dm/uclass.h>
20#include <dm/uclass-internal.h>
21#include <dm/util.h>
22#include <linux/err.h>
23#include <linux/list.h>
24
Simon Glass5a66a8f2014-07-23 06:55:12 -060025DECLARE_GLOBAL_DATA_PTR;
26
Simon Glass34792532015-03-25 12:21:54 -060027int device_bind(struct udevice *parent, const struct driver *drv,
28 const char *name, void *platdata, int of_offset,
29 struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -070030{
Heiko Schocher54c5d082014-05-22 12:43:05 +020031 struct udevice *dev;
Simon Glass6494d702014-02-26 15:59:18 -070032 struct uclass *uc;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020033 int size, ret = 0;
Simon Glass6494d702014-02-26 15:59:18 -070034
35 *devp = NULL;
36 if (!name)
37 return -EINVAL;
38
39 ret = uclass_get(drv->id, &uc);
40 if (ret)
41 return ret;
42
Heiko Schocher54c5d082014-05-22 12:43:05 +020043 dev = calloc(1, sizeof(struct udevice));
Simon Glass6494d702014-02-26 15:59:18 -070044 if (!dev)
45 return -ENOMEM;
46
47 INIT_LIST_HEAD(&dev->sibling_node);
48 INIT_LIST_HEAD(&dev->child_head);
49 INIT_LIST_HEAD(&dev->uclass_node);
50 dev->platdata = platdata;
51 dev->name = name;
52 dev->of_offset = of_offset;
53 dev->parent = parent;
54 dev->driver = drv;
55 dev->uclass = uc;
Simon Glass5a66a8f2014-07-23 06:55:12 -060056
Simon Glass5a66a8f2014-07-23 06:55:12 -060057 dev->seq = -1;
Simon Glass91cbd792014-09-17 09:02:38 -060058 dev->req_seq = -1;
Simon Glass36fa61d2015-02-27 22:06:30 -070059 if (IS_ENABLED(CONFIG_OF_CONTROL) && IS_ENABLED(CONFIG_DM_SEQ_ALIAS)) {
60 /*
61 * Some devices, such as a SPI bus, I2C bus and serial ports
62 * are numbered using aliases.
63 *
64 * This is just a 'requested' sequence, and will be
65 * resolved (and ->seq updated) when the device is probed.
66 */
67 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
68 if (uc->uc_drv->name && of_offset != -1) {
69 fdtdec_get_alias_seq(gd->fdt_blob,
70 uc->uc_drv->name, of_offset,
71 &dev->req_seq);
72 }
Simon Glass9cc36a22015-01-25 08:27:05 -070073 }
74 }
Simon Glass36fa61d2015-02-27 22:06:30 -070075
Simon Glassf8a85442015-01-25 08:27:00 -070076 if (!dev->platdata && drv->platdata_auto_alloc_size) {
Simon Glass6494d702014-02-26 15:59:18 -070077 dev->flags |= DM_FLAG_ALLOC_PDATA;
Simon Glassf8a85442015-01-25 08:27:00 -070078 dev->platdata = calloc(1, drv->platdata_auto_alloc_size);
79 if (!dev->platdata) {
80 ret = -ENOMEM;
81 goto fail_alloc1;
82 }
83 }
Simon Glasscdc133b2015-01-25 08:27:01 -070084
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020085 size = uc->uc_drv->per_device_platdata_auto_alloc_size;
86 if (size) {
87 dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA;
88 dev->uclass_platdata = calloc(1, size);
89 if (!dev->uclass_platdata) {
90 ret = -ENOMEM;
91 goto fail_alloc2;
92 }
93 }
94
95 if (parent) {
96 size = parent->driver->per_child_platdata_auto_alloc_size;
Simon Glassba8da9d2015-01-25 08:27:02 -070097 if (!size) {
98 size = parent->uclass->uc_drv->
99 per_child_platdata_auto_alloc_size;
100 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700101 if (size) {
102 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
103 dev->parent_platdata = calloc(1, size);
104 if (!dev->parent_platdata) {
105 ret = -ENOMEM;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200106 goto fail_alloc3;
Simon Glasscdc133b2015-01-25 08:27:01 -0700107 }
108 }
109 }
Simon Glass6494d702014-02-26 15:59:18 -0700110
111 /* put dev into parent's successor list */
112 if (parent)
113 list_add_tail(&dev->sibling_node, &parent->child_head);
114
115 ret = uclass_bind_device(dev);
116 if (ret)
Simon Glass72ebfe82015-01-25 08:26:59 -0700117 goto fail_uclass_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700118
119 /* if we fail to bind we remove device from successors and free it */
120 if (drv->bind) {
121 ret = drv->bind(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700122 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700123 goto fail_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700124 }
Simon Glass0118ce72015-01-25 08:27:03 -0700125 if (parent && parent->driver->child_post_bind) {
126 ret = parent->driver->child_post_bind(dev);
127 if (ret)
128 goto fail_child_post_bind;
129 }
130
Simon Glass6494d702014-02-26 15:59:18 -0700131 if (parent)
132 dm_dbg("Bound device %s to %s\n", dev->name, parent->name);
133 *devp = dev;
134
135 return 0;
136
Simon Glass0118ce72015-01-25 08:27:03 -0700137fail_child_post_bind:
Masahiro Yamadaf0f932d2015-04-24 17:28:40 +0900138 if (IS_ENABLED(CONFIG_DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700139 if (drv->unbind && drv->unbind(dev)) {
140 dm_warn("unbind() method failed on dev '%s' on error path\n",
141 dev->name);
142 }
Simon Glass0118ce72015-01-25 08:27:03 -0700143 }
144
Simon Glass6494d702014-02-26 15:59:18 -0700145fail_bind:
Masahiro Yamadaf0f932d2015-04-24 17:28:40 +0900146 if (IS_ENABLED(CONFIG_DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700147 if (uclass_unbind_device(dev)) {
148 dm_warn("Failed to unbind dev '%s' on error path\n",
149 dev->name);
150 }
Simon Glass72ebfe82015-01-25 08:26:59 -0700151 }
152fail_uclass_bind:
Masahiro Yamadaf0f932d2015-04-24 17:28:40 +0900153 if (IS_ENABLED(CONFIG_DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700154 list_del(&dev->sibling_node);
155 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
156 free(dev->parent_platdata);
157 dev->parent_platdata = NULL;
158 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700159 }
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200160fail_alloc3:
161 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
162 free(dev->uclass_platdata);
163 dev->uclass_platdata = NULL;
164 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700165fail_alloc2:
Simon Glassf8a85442015-01-25 08:27:00 -0700166 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
167 free(dev->platdata);
168 dev->platdata = NULL;
169 }
170fail_alloc1:
Simon Glass6494d702014-02-26 15:59:18 -0700171 free(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700172
Simon Glass6494d702014-02-26 15:59:18 -0700173 return ret;
174}
175
Simon Glass00606d72014-07-23 06:55:03 -0600176int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
177 const struct driver_info *info, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -0700178{
179 struct driver *drv;
180
181 drv = lists_driver_lookup_name(info->name);
182 if (!drv)
183 return -ENOENT;
Simon Glass00606d72014-07-23 06:55:03 -0600184 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
185 return -EPERM;
Simon Glass6494d702014-02-26 15:59:18 -0700186
187 return device_bind(parent, drv, info->name, (void *)info->platdata,
188 -1, devp);
189}
190
Simon Glass2c03c462015-03-25 12:21:53 -0600191static void *alloc_priv(int size, uint flags)
192{
193 void *priv;
194
195 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
196 priv = memalign(ARCH_DMA_MINALIGN, size);
197 if (priv)
198 memset(priv, '\0', size);
199 } else {
200 priv = calloc(1, size);
201 }
202
203 return priv;
204}
205
Simon Glassaccd4b12014-10-13 23:41:50 -0600206int device_probe_child(struct udevice *dev, void *parent_priv)
Simon Glass6494d702014-02-26 15:59:18 -0700207{
Simon Glass34792532015-03-25 12:21:54 -0600208 const struct driver *drv;
Simon Glass6494d702014-02-26 15:59:18 -0700209 int size = 0;
210 int ret;
Simon Glass5a66a8f2014-07-23 06:55:12 -0600211 int seq;
Simon Glass6494d702014-02-26 15:59:18 -0700212
213 if (!dev)
214 return -EINVAL;
215
216 if (dev->flags & DM_FLAG_ACTIVATED)
217 return 0;
218
219 drv = dev->driver;
220 assert(drv);
221
Simon Glassf8a85442015-01-25 08:27:00 -0700222 /* Allocate private data if requested */
Simon Glass6494d702014-02-26 15:59:18 -0700223 if (drv->priv_auto_alloc_size) {
Simon Glass2c03c462015-03-25 12:21:53 -0600224 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
Simon Glass6494d702014-02-26 15:59:18 -0700225 if (!dev->priv) {
226 ret = -ENOMEM;
227 goto fail;
228 }
229 }
230 /* Allocate private data if requested */
Simon Glass6494d702014-02-26 15:59:18 -0700231 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
232 if (size) {
233 dev->uclass_priv = calloc(1, size);
234 if (!dev->uclass_priv) {
235 ret = -ENOMEM;
236 goto fail;
237 }
238 }
239
240 /* Ensure all parents are probed */
241 if (dev->parent) {
Simon Glasse59f4582014-07-23 06:55:20 -0600242 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassdac8db22015-01-25 08:27:06 -0700243 if (!size) {
244 size = dev->parent->uclass->uc_drv->
245 per_child_auto_alloc_size;
246 }
Simon Glasse59f4582014-07-23 06:55:20 -0600247 if (size) {
Simon Glass2c03c462015-03-25 12:21:53 -0600248 dev->parent_priv = alloc_priv(size, drv->flags);
Simon Glasse59f4582014-07-23 06:55:20 -0600249 if (!dev->parent_priv) {
250 ret = -ENOMEM;
251 goto fail;
252 }
Simon Glassaccd4b12014-10-13 23:41:50 -0600253 if (parent_priv)
254 memcpy(dev->parent_priv, parent_priv, size);
Simon Glasse59f4582014-07-23 06:55:20 -0600255 }
256
Simon Glass6494d702014-02-26 15:59:18 -0700257 ret = device_probe(dev->parent);
258 if (ret)
259 goto fail;
260 }
261
Simon Glass5a66a8f2014-07-23 06:55:12 -0600262 seq = uclass_resolve_seq(dev);
263 if (seq < 0) {
264 ret = seq;
265 goto fail;
266 }
267 dev->seq = seq;
268
Simon Glass206d4d22015-03-25 12:21:56 -0600269 dev->flags |= DM_FLAG_ACTIVATED;
270
Simon Glass02c07b32015-03-05 12:25:22 -0700271 ret = uclass_pre_probe_device(dev);
Simon Glass83c7e432015-01-25 08:27:10 -0700272 if (ret)
273 goto fail;
274
Simon Glassa327dee2014-07-23 06:55:21 -0600275 if (dev->parent && dev->parent->driver->child_pre_probe) {
276 ret = dev->parent->driver->child_pre_probe(dev);
277 if (ret)
278 goto fail;
279 }
280
Simon Glass6494d702014-02-26 15:59:18 -0700281 if (drv->ofdata_to_platdata && dev->of_offset >= 0) {
282 ret = drv->ofdata_to_platdata(dev);
283 if (ret)
284 goto fail;
285 }
286
287 if (drv->probe) {
288 ret = drv->probe(dev);
Simon Glass02eeb1b2015-03-05 12:25:21 -0700289 if (ret) {
290 dev->flags &= ~DM_FLAG_ACTIVATED;
Simon Glass6494d702014-02-26 15:59:18 -0700291 goto fail;
Simon Glass02eeb1b2015-03-05 12:25:21 -0700292 }
Simon Glass6494d702014-02-26 15:59:18 -0700293 }
294
Simon Glass6494d702014-02-26 15:59:18 -0700295 ret = uclass_post_probe_device(dev);
Simon Glass206d4d22015-03-25 12:21:56 -0600296 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700297 goto fail_uclass;
Simon Glass6494d702014-02-26 15:59:18 -0700298
299 return 0;
300fail_uclass:
301 if (device_remove(dev)) {
302 dm_warn("%s: Device '%s' failed to remove on error path\n",
303 __func__, dev->name);
304 }
305fail:
Simon Glass206d4d22015-03-25 12:21:56 -0600306 dev->flags &= ~DM_FLAG_ACTIVATED;
307
Simon Glass5a66a8f2014-07-23 06:55:12 -0600308 dev->seq = -1;
Simon Glass6494d702014-02-26 15:59:18 -0700309 device_free(dev);
310
311 return ret;
312}
313
Simon Glassaccd4b12014-10-13 23:41:50 -0600314int device_probe(struct udevice *dev)
315{
316 return device_probe_child(dev, NULL);
317}
318
Heiko Schocher54c5d082014-05-22 12:43:05 +0200319void *dev_get_platdata(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700320{
321 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700322 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700323 return NULL;
324 }
325
326 return dev->platdata;
327}
328
Simon Glasscdc133b2015-01-25 08:27:01 -0700329void *dev_get_parent_platdata(struct udevice *dev)
330{
331 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600332 dm_warn("%s: null device\n", __func__);
Simon Glasscdc133b2015-01-25 08:27:01 -0700333 return NULL;
334 }
335
336 return dev->parent_platdata;
337}
338
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200339void *dev_get_uclass_platdata(struct udevice *dev)
340{
341 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600342 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200343 return NULL;
344 }
345
346 return dev->uclass_platdata;
347}
348
Heiko Schocher54c5d082014-05-22 12:43:05 +0200349void *dev_get_priv(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700350{
351 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700352 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700353 return NULL;
354 }
355
356 return dev->priv;
357}
Simon Glass997c87b2014-07-23 06:55:19 -0600358
Simon Glasse564f052015-03-05 12:25:20 -0700359void *dev_get_uclass_priv(struct udevice *dev)
360{
361 if (!dev) {
362 dm_warn("%s: null device\n", __func__);
363 return NULL;
364 }
365
366 return dev->uclass_priv;
367}
368
Simon Glasse59f4582014-07-23 06:55:20 -0600369void *dev_get_parentdata(struct udevice *dev)
370{
371 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700372 dm_warn("%s: null device\n", __func__);
Simon Glasse59f4582014-07-23 06:55:20 -0600373 return NULL;
374 }
375
376 return dev->parent_priv;
377}
378
Simon Glass997c87b2014-07-23 06:55:19 -0600379static int device_get_device_tail(struct udevice *dev, int ret,
380 struct udevice **devp)
381{
382 if (ret)
383 return ret;
384
385 ret = device_probe(dev);
386 if (ret)
387 return ret;
388
389 *devp = dev;
390
391 return 0;
392}
393
394int device_get_child(struct udevice *parent, int index, struct udevice **devp)
395{
396 struct udevice *dev;
397
398 list_for_each_entry(dev, &parent->child_head, sibling_node) {
399 if (!index--)
400 return device_get_device_tail(dev, 0, devp);
401 }
402
403 return -ENODEV;
404}
405
406int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
407 bool find_req_seq, struct udevice **devp)
408{
409 struct udevice *dev;
410
411 *devp = NULL;
412 if (seq_or_req_seq == -1)
413 return -ENODEV;
414
415 list_for_each_entry(dev, &parent->child_head, sibling_node) {
416 if ((find_req_seq ? dev->req_seq : dev->seq) ==
417 seq_or_req_seq) {
418 *devp = dev;
419 return 0;
420 }
421 }
422
423 return -ENODEV;
424}
425
426int device_get_child_by_seq(struct udevice *parent, int seq,
427 struct udevice **devp)
428{
429 struct udevice *dev;
430 int ret;
431
432 *devp = NULL;
433 ret = device_find_child_by_seq(parent, seq, false, &dev);
434 if (ret == -ENODEV) {
435 /*
436 * We didn't find it in probed devices. See if there is one
437 * that will request this seq if probed.
438 */
439 ret = device_find_child_by_seq(parent, seq, true, &dev);
440 }
441 return device_get_device_tail(dev, ret, devp);
442}
443
444int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
445 struct udevice **devp)
446{
447 struct udevice *dev;
448
449 *devp = NULL;
450
451 list_for_each_entry(dev, &parent->child_head, sibling_node) {
452 if (dev->of_offset == of_offset) {
453 *devp = dev;
454 return 0;
455 }
456 }
457
458 return -ENODEV;
459}
460
Simon Glass132f9bf2015-06-23 15:38:38 -0600461int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass997c87b2014-07-23 06:55:19 -0600462 struct udevice **devp)
463{
464 struct udevice *dev;
465 int ret;
466
467 *devp = NULL;
Simon Glass132f9bf2015-06-23 15:38:38 -0600468 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass997c87b2014-07-23 06:55:19 -0600469 return device_get_device_tail(dev, ret, devp);
470}
Simon Glassa8981d42014-10-13 23:41:49 -0600471
Simon Glass26930472015-06-23 15:38:37 -0600472static struct udevice *_device_find_global_by_of_offset(struct udevice *parent,
473 int of_offset)
474{
475 struct udevice *dev, *found;
476
477 if (parent->of_offset == of_offset)
478 return parent;
479
480 list_for_each_entry(dev, &parent->child_head, sibling_node) {
481 found = _device_find_global_by_of_offset(dev, of_offset);
482 if (found)
483 return found;
484 }
485
486 return NULL;
487}
488
489int device_get_global_by_of_offset(int of_offset, struct udevice **devp)
490{
491 struct udevice *dev;
492
493 dev = _device_find_global_by_of_offset(gd->dm_root, of_offset);
494 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
495}
496
Simon Glassa8981d42014-10-13 23:41:49 -0600497int device_find_first_child(struct udevice *parent, struct udevice **devp)
498{
499 if (list_empty(&parent->child_head)) {
500 *devp = NULL;
501 } else {
502 *devp = list_first_entry(&parent->child_head, struct udevice,
503 sibling_node);
504 }
505
506 return 0;
507}
508
509int device_find_next_child(struct udevice **devp)
510{
511 struct udevice *dev = *devp;
512 struct udevice *parent = dev->parent;
513
514 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
515 *devp = NULL;
516 } else {
517 *devp = list_entry(dev->sibling_node.next, struct udevice,
518 sibling_node);
519 }
520
521 return 0;
522}
Simon Glass2ef249b2014-11-11 10:46:18 -0700523
Simon Glass479728c2014-11-11 10:46:19 -0700524struct udevice *dev_get_parent(struct udevice *child)
525{
526 return child->parent;
527}
528
Simon Glass39de8432015-03-25 12:21:55 -0600529ulong dev_get_driver_data(struct udevice *dev)
Simon Glass2ef249b2014-11-11 10:46:18 -0700530{
Simon Glass39de8432015-03-25 12:21:55 -0600531 return dev->driver_data;
Simon Glass2ef249b2014-11-11 10:46:18 -0700532}
Simon Glassb3670532015-01-25 08:27:04 -0700533
Przemyslaw Marczakcc73d372015-04-15 13:07:24 +0200534const void *dev_get_driver_ops(struct udevice *dev)
535{
536 if (!dev || !dev->driver->ops)
537 return NULL;
538
539 return dev->driver->ops;
540}
541
Simon Glassb3670532015-01-25 08:27:04 -0700542enum uclass_id device_get_uclass_id(struct udevice *dev)
543{
544 return dev->uclass->uc_drv->id;
545}
Peng Fanc9cac3f2015-02-10 14:46:32 +0800546
Przemyslaw Marczakf9c370d2015-04-15 13:07:25 +0200547const char *dev_get_uclass_name(struct udevice *dev)
548{
549 if (!dev)
550 return NULL;
551
552 return dev->uclass->uc_drv->name;
553}
554
Peng Fanc9cac3f2015-02-10 14:46:32 +0800555#ifdef CONFIG_OF_CONTROL
556fdt_addr_t dev_get_addr(struct udevice *dev)
557{
558 return fdtdec_get_addr(gd->fdt_blob, dev->of_offset, "reg");
559}
560#else
561fdt_addr_t dev_get_addr(struct udevice *dev)
562{
563 return FDT_ADDR_T_NONE;
564}
565#endif
Simon Glassc5785672015-03-25 12:21:57 -0600566
567bool device_has_children(struct udevice *dev)
568{
569 return !list_empty(&dev->child_head);
570}
571
572bool device_has_active_children(struct udevice *dev)
573{
574 struct udevice *child;
575
576 for (device_find_first_child(dev, &child);
577 child;
578 device_find_next_child(&child)) {
579 if (device_active(child))
580 return true;
581 }
582
583 return false;
584}
585
586bool device_is_last_sibling(struct udevice *dev)
587{
588 struct udevice *parent = dev->parent;
589
590 if (!parent)
591 return false;
592 return list_is_last(&dev->sibling_node, &parent->child_head);
593}