dm: core: Don't clear active flag twice when probe() fails
[oweals/u-boot.git] / drivers / core / device.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Device manager
4  *
5  * Copyright (c) 2013 Google, Inc
6  *
7  * (C) Copyright 2012
8  * Pavel Herrmann <morpheus.ibis@gmail.com>
9  */
10
11 #include <common.h>
12 #include <cpu_func.h>
13 #include <asm/io.h>
14 #include <clk.h>
15 #include <fdtdec.h>
16 #include <fdt_support.h>
17 #include <malloc.h>
18 #include <dm/device.h>
19 #include <dm/device-internal.h>
20 #include <dm/lists.h>
21 #include <dm/of_access.h>
22 #include <dm/pinctrl.h>
23 #include <dm/platdata.h>
24 #include <dm/read.h>
25 #include <dm/uclass.h>
26 #include <dm/uclass-internal.h>
27 #include <dm/util.h>
28 #include <linux/err.h>
29 #include <linux/list.h>
30 #include <power-domain.h>
31
32 DECLARE_GLOBAL_DATA_PTR;
33
34 static int device_bind_common(struct udevice *parent, const struct driver *drv,
35                               const char *name, void *platdata,
36                               ulong driver_data, ofnode node,
37                               uint of_platdata_size, struct udevice **devp)
38 {
39         struct udevice *dev;
40         struct uclass *uc;
41         int size, ret = 0;
42
43         if (devp)
44                 *devp = NULL;
45         if (!name)
46                 return -EINVAL;
47
48         ret = uclass_get(drv->id, &uc);
49         if (ret) {
50                 debug("Missing uclass for driver %s\n", drv->name);
51                 return ret;
52         }
53
54         dev = calloc(1, sizeof(struct udevice));
55         if (!dev)
56                 return -ENOMEM;
57
58         INIT_LIST_HEAD(&dev->sibling_node);
59         INIT_LIST_HEAD(&dev->child_head);
60         INIT_LIST_HEAD(&dev->uclass_node);
61 #ifdef CONFIG_DEVRES
62         INIT_LIST_HEAD(&dev->devres_head);
63 #endif
64         dev->platdata = platdata;
65         dev->driver_data = driver_data;
66         dev->name = name;
67         dev->node = node;
68         dev->parent = parent;
69         dev->driver = drv;
70         dev->uclass = uc;
71
72         dev->seq = -1;
73         dev->req_seq = -1;
74         if (CONFIG_IS_ENABLED(DM_SEQ_ALIAS) &&
75             (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS)) {
76                 /*
77                  * Some devices, such as a SPI bus, I2C bus and serial ports
78                  * are numbered using aliases.
79                  *
80                  * This is just a 'requested' sequence, and will be
81                  * resolved (and ->seq updated) when the device is probed.
82                  */
83                 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
84                         if (uc->uc_drv->name && ofnode_valid(node))
85                                 dev_read_alias_seq(dev, &dev->req_seq);
86 #if CONFIG_IS_ENABLED(OF_PRIOR_STAGE)
87                         if (dev->req_seq == -1)
88                                 dev->req_seq =
89                                         uclass_find_next_free_req_seq(drv->id);
90 #endif
91                 } else {
92                         dev->req_seq = uclass_find_next_free_req_seq(drv->id);
93                 }
94         }
95
96         if (drv->platdata_auto_alloc_size) {
97                 bool alloc = !platdata;
98
99                 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
100                         if (of_platdata_size) {
101                                 dev->flags |= DM_FLAG_OF_PLATDATA;
102                                 if (of_platdata_size <
103                                                 drv->platdata_auto_alloc_size)
104                                         alloc = true;
105                         }
106                 }
107                 if (alloc) {
108                         dev->flags |= DM_FLAG_ALLOC_PDATA;
109                         dev->platdata = calloc(1,
110                                                drv->platdata_auto_alloc_size);
111                         if (!dev->platdata) {
112                                 ret = -ENOMEM;
113                                 goto fail_alloc1;
114                         }
115                         if (CONFIG_IS_ENABLED(OF_PLATDATA) && platdata) {
116                                 memcpy(dev->platdata, platdata,
117                                        of_platdata_size);
118                         }
119                 }
120         }
121
122         size = uc->uc_drv->per_device_platdata_auto_alloc_size;
123         if (size) {
124                 dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA;
125                 dev->uclass_platdata = calloc(1, size);
126                 if (!dev->uclass_platdata) {
127                         ret = -ENOMEM;
128                         goto fail_alloc2;
129                 }
130         }
131
132         if (parent) {
133                 size = parent->driver->per_child_platdata_auto_alloc_size;
134                 if (!size) {
135                         size = parent->uclass->uc_drv->
136                                         per_child_platdata_auto_alloc_size;
137                 }
138                 if (size) {
139                         dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
140                         dev->parent_platdata = calloc(1, size);
141                         if (!dev->parent_platdata) {
142                                 ret = -ENOMEM;
143                                 goto fail_alloc3;
144                         }
145                 }
146         }
147
148         /* put dev into parent's successor list */
149         if (parent)
150                 list_add_tail(&dev->sibling_node, &parent->child_head);
151
152         ret = uclass_bind_device(dev);
153         if (ret)
154                 goto fail_uclass_bind;
155
156         /* if we fail to bind we remove device from successors and free it */
157         if (drv->bind) {
158                 ret = drv->bind(dev);
159                 if (ret)
160                         goto fail_bind;
161         }
162         if (parent && parent->driver->child_post_bind) {
163                 ret = parent->driver->child_post_bind(dev);
164                 if (ret)
165                         goto fail_child_post_bind;
166         }
167         if (uc->uc_drv->post_bind) {
168                 ret = uc->uc_drv->post_bind(dev);
169                 if (ret)
170                         goto fail_uclass_post_bind;
171         }
172
173         if (parent)
174                 pr_debug("Bound device %s to %s\n", dev->name, parent->name);
175         if (devp)
176                 *devp = dev;
177
178         dev->flags |= DM_FLAG_BOUND;
179
180         return 0;
181
182 fail_uclass_post_bind:
183         /* There is no child unbind() method, so no clean-up required */
184 fail_child_post_bind:
185         if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
186                 if (drv->unbind && drv->unbind(dev)) {
187                         dm_warn("unbind() method failed on dev '%s' on error path\n",
188                                 dev->name);
189                 }
190         }
191
192 fail_bind:
193         if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
194                 if (uclass_unbind_device(dev)) {
195                         dm_warn("Failed to unbind dev '%s' on error path\n",
196                                 dev->name);
197                 }
198         }
199 fail_uclass_bind:
200         if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
201                 list_del(&dev->sibling_node);
202                 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
203                         free(dev->parent_platdata);
204                         dev->parent_platdata = NULL;
205                 }
206         }
207 fail_alloc3:
208         if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
209                 free(dev->uclass_platdata);
210                 dev->uclass_platdata = NULL;
211         }
212 fail_alloc2:
213         if (dev->flags & DM_FLAG_ALLOC_PDATA) {
214                 free(dev->platdata);
215                 dev->platdata = NULL;
216         }
217 fail_alloc1:
218         devres_release_all(dev);
219
220         free(dev);
221
222         return ret;
223 }
224
225 int device_bind_with_driver_data(struct udevice *parent,
226                                  const struct driver *drv, const char *name,
227                                  ulong driver_data, ofnode node,
228                                  struct udevice **devp)
229 {
230         return device_bind_common(parent, drv, name, NULL, driver_data, node,
231                                   0, devp);
232 }
233
234 int device_bind(struct udevice *parent, const struct driver *drv,
235                 const char *name, void *platdata, int of_offset,
236                 struct udevice **devp)
237 {
238         return device_bind_common(parent, drv, name, platdata, 0,
239                                   offset_to_ofnode(of_offset), 0, devp);
240 }
241
242 int device_bind_ofnode(struct udevice *parent, const struct driver *drv,
243                        const char *name, void *platdata, ofnode node,
244                        struct udevice **devp)
245 {
246         return device_bind_common(parent, drv, name, platdata, 0, node, 0,
247                                   devp);
248 }
249
250 int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
251                         const struct driver_info *info, struct udevice **devp)
252 {
253         struct driver *drv;
254         uint platdata_size = 0;
255
256         drv = lists_driver_lookup_name(info->name);
257         if (!drv)
258                 return -ENOENT;
259         if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
260                 return -EPERM;
261
262 #if CONFIG_IS_ENABLED(OF_PLATDATA)
263         platdata_size = info->platdata_size;
264 #endif
265         return device_bind_common(parent, drv, info->name,
266                         (void *)info->platdata, 0, ofnode_null(), platdata_size,
267                         devp);
268 }
269
270 static void *alloc_priv(int size, uint flags)
271 {
272         void *priv;
273
274         if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
275                 size = ROUND(size, ARCH_DMA_MINALIGN);
276                 priv = memalign(ARCH_DMA_MINALIGN, size);
277                 if (priv) {
278                         memset(priv, '\0', size);
279
280                         /*
281                          * Ensure that the zero bytes are flushed to memory.
282                          * This prevents problems if the driver uses this as
283                          * both an input and an output buffer:
284                          *
285                          * 1. Zeroes written to buffer (here) and sit in the
286                          *      cache
287                          * 2. Driver issues a read command to DMA
288                          * 3. CPU runs out of cache space and evicts some cache
289                          *      data in the buffer, writing zeroes to RAM from
290                          *      the memset() above
291                          * 4. DMA completes
292                          * 5. Buffer now has some DMA data and some zeroes
293                          * 6. Data being read is now incorrect
294                          *
295                          * To prevent this, ensure that the cache is clean
296                          * within this range at the start. The driver can then
297                          * use normal flush-after-write, invalidate-before-read
298                          * procedures.
299                          *
300                          * TODO(sjg@chromium.org): Drop this microblaze
301                          * exception.
302                          */
303 #ifndef CONFIG_MICROBLAZE
304                         flush_dcache_range((ulong)priv, (ulong)priv + size);
305 #endif
306                 }
307         } else {
308                 priv = calloc(1, size);
309         }
310
311         return priv;
312 }
313
314 int device_probe(struct udevice *dev)
315 {
316         const struct driver *drv;
317         int size = 0;
318         int ret;
319         int seq;
320
321         if (!dev)
322                 return -EINVAL;
323
324         if (dev->flags & DM_FLAG_ACTIVATED)
325                 return 0;
326
327         drv = dev->driver;
328         assert(drv);
329
330         /* Allocate private data if requested and not reentered */
331         if (drv->priv_auto_alloc_size && !dev->priv) {
332                 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
333                 if (!dev->priv) {
334                         ret = -ENOMEM;
335                         goto fail;
336                 }
337         }
338         /* Allocate private data if requested and not reentered */
339         size = dev->uclass->uc_drv->per_device_auto_alloc_size;
340         if (size && !dev->uclass_priv) {
341                 dev->uclass_priv = alloc_priv(size,
342                                               dev->uclass->uc_drv->flags);
343                 if (!dev->uclass_priv) {
344                         ret = -ENOMEM;
345                         goto fail;
346                 }
347         }
348
349         /* Ensure all parents are probed */
350         if (dev->parent) {
351                 size = dev->parent->driver->per_child_auto_alloc_size;
352                 if (!size) {
353                         size = dev->parent->uclass->uc_drv->
354                                         per_child_auto_alloc_size;
355                 }
356                 if (size && !dev->parent_priv) {
357                         dev->parent_priv = alloc_priv(size, drv->flags);
358                         if (!dev->parent_priv) {
359                                 ret = -ENOMEM;
360                                 goto fail;
361                         }
362                 }
363
364                 ret = device_probe(dev->parent);
365                 if (ret)
366                         goto fail;
367
368                 /*
369                  * The device might have already been probed during
370                  * the call to device_probe() on its parent device
371                  * (e.g. PCI bridge devices). Test the flags again
372                  * so that we don't mess up the device.
373                  */
374                 if (dev->flags & DM_FLAG_ACTIVATED)
375                         return 0;
376         }
377
378         seq = uclass_resolve_seq(dev);
379         if (seq < 0) {
380                 ret = seq;
381                 goto fail;
382         }
383         dev->seq = seq;
384
385         dev->flags |= DM_FLAG_ACTIVATED;
386
387         /*
388          * Process pinctrl for everything except the root device, and
389          * continue regardless of the result of pinctrl. Don't process pinctrl
390          * settings for pinctrl devices since the device may not yet be
391          * probed.
392          */
393         if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
394                 pinctrl_select_state(dev, "default");
395
396         if (CONFIG_IS_ENABLED(POWER_DOMAIN) && dev->parent &&
397             (device_get_uclass_id(dev) != UCLASS_POWER_DOMAIN) &&
398             !(drv->flags & DM_FLAG_DEFAULT_PD_CTRL_OFF)) {
399                 ret = dev_power_domain_on(dev);
400                 if (ret)
401                         goto fail;
402         }
403
404         ret = uclass_pre_probe_device(dev);
405         if (ret)
406                 goto fail;
407
408         if (dev->parent && dev->parent->driver->child_pre_probe) {
409                 ret = dev->parent->driver->child_pre_probe(dev);
410                 if (ret)
411                         goto fail;
412         }
413
414         if (drv->ofdata_to_platdata &&
415             (CONFIG_IS_ENABLED(OF_PLATDATA) || dev_has_of_node(dev))) {
416                 ret = drv->ofdata_to_platdata(dev);
417                 if (ret)
418                         goto fail;
419         }
420
421         /* Only handle devices that have a valid ofnode */
422         if (dev_of_valid(dev)) {
423                 /*
424                  * Process 'assigned-{clocks/clock-parents/clock-rates}'
425                  * properties
426                  */
427                 ret = clk_set_defaults(dev, 0);
428                 if (ret)
429                         goto fail;
430         }
431
432         if (drv->probe) {
433                 ret = drv->probe(dev);
434                 if (ret)
435                         goto fail;
436         }
437
438         ret = uclass_post_probe_device(dev);
439         if (ret)
440                 goto fail_uclass;
441
442         if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
443                 pinctrl_select_state(dev, "default");
444
445         return 0;
446 fail_uclass:
447         if (device_remove(dev, DM_REMOVE_NORMAL)) {
448                 dm_warn("%s: Device '%s' failed to remove on error path\n",
449                         __func__, dev->name);
450         }
451 fail:
452         dev->flags &= ~DM_FLAG_ACTIVATED;
453
454         dev->seq = -1;
455         device_free(dev);
456
457         return ret;
458 }
459
460 void *dev_get_platdata(const struct udevice *dev)
461 {
462         if (!dev) {
463                 dm_warn("%s: null device\n", __func__);
464                 return NULL;
465         }
466
467         return dev->platdata;
468 }
469
470 void *dev_get_parent_platdata(const struct udevice *dev)
471 {
472         if (!dev) {
473                 dm_warn("%s: null device\n", __func__);
474                 return NULL;
475         }
476
477         return dev->parent_platdata;
478 }
479
480 void *dev_get_uclass_platdata(const struct udevice *dev)
481 {
482         if (!dev) {
483                 dm_warn("%s: null device\n", __func__);
484                 return NULL;
485         }
486
487         return dev->uclass_platdata;
488 }
489
490 void *dev_get_priv(const struct udevice *dev)
491 {
492         if (!dev) {
493                 dm_warn("%s: null device\n", __func__);
494                 return NULL;
495         }
496
497         return dev->priv;
498 }
499
500 void *dev_get_uclass_priv(const struct udevice *dev)
501 {
502         if (!dev) {
503                 dm_warn("%s: null device\n", __func__);
504                 return NULL;
505         }
506
507         return dev->uclass_priv;
508 }
509
510 void *dev_get_parent_priv(const struct udevice *dev)
511 {
512         if (!dev) {
513                 dm_warn("%s: null device\n", __func__);
514                 return NULL;
515         }
516
517         return dev->parent_priv;
518 }
519
520 static int device_get_device_tail(struct udevice *dev, int ret,
521                                   struct udevice **devp)
522 {
523         if (ret)
524                 return ret;
525
526         ret = device_probe(dev);
527         if (ret)
528                 return ret;
529
530         *devp = dev;
531
532         return 0;
533 }
534
535 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
536 /**
537  * device_find_by_ofnode() - Return device associated with given ofnode
538  *
539  * The returned device is *not* activated.
540  *
541  * @node: The ofnode for which a associated device should be looked up
542  * @devp: Pointer to structure to hold the found device
543  * Return: 0 if OK, -ve on error
544  */
545 static int device_find_by_ofnode(ofnode node, struct udevice **devp)
546 {
547         struct uclass *uc;
548         struct udevice *dev;
549         int ret;
550
551         list_for_each_entry(uc, &gd->uclass_root, sibling_node) {
552                 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node,
553                                                    &dev);
554                 if (!ret || dev) {
555                         *devp = dev;
556                         return 0;
557                 }
558         }
559
560         return -ENODEV;
561 }
562 #endif
563
564 int device_get_child(struct udevice *parent, int index, struct udevice **devp)
565 {
566         struct udevice *dev;
567
568         list_for_each_entry(dev, &parent->child_head, sibling_node) {
569                 if (!index--)
570                         return device_get_device_tail(dev, 0, devp);
571         }
572
573         return -ENODEV;
574 }
575
576 int device_get_child_count(struct udevice *parent)
577 {
578         struct udevice *dev;
579         int count = 0;
580
581         list_for_each_entry(dev, &parent->child_head, sibling_node)
582                 count++;
583
584         return count;
585 }
586
587 int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
588                              bool find_req_seq, struct udevice **devp)
589 {
590         struct udevice *dev;
591
592         *devp = NULL;
593         if (seq_or_req_seq == -1)
594                 return -ENODEV;
595
596         list_for_each_entry(dev, &parent->child_head, sibling_node) {
597                 if ((find_req_seq ? dev->req_seq : dev->seq) ==
598                                 seq_or_req_seq) {
599                         *devp = dev;
600                         return 0;
601                 }
602         }
603
604         return -ENODEV;
605 }
606
607 int device_get_child_by_seq(struct udevice *parent, int seq,
608                             struct udevice **devp)
609 {
610         struct udevice *dev;
611         int ret;
612
613         *devp = NULL;
614         ret = device_find_child_by_seq(parent, seq, false, &dev);
615         if (ret == -ENODEV) {
616                 /*
617                  * We didn't find it in probed devices. See if there is one
618                  * that will request this seq if probed.
619                  */
620                 ret = device_find_child_by_seq(parent, seq, true, &dev);
621         }
622         return device_get_device_tail(dev, ret, devp);
623 }
624
625 int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
626                                    struct udevice **devp)
627 {
628         struct udevice *dev;
629
630         *devp = NULL;
631
632         list_for_each_entry(dev, &parent->child_head, sibling_node) {
633                 if (dev_of_offset(dev) == of_offset) {
634                         *devp = dev;
635                         return 0;
636                 }
637         }
638
639         return -ENODEV;
640 }
641
642 int device_get_child_by_of_offset(struct udevice *parent, int node,
643                                   struct udevice **devp)
644 {
645         struct udevice *dev;
646         int ret;
647
648         *devp = NULL;
649         ret = device_find_child_by_of_offset(parent, node, &dev);
650         return device_get_device_tail(dev, ret, devp);
651 }
652
653 static struct udevice *_device_find_global_by_ofnode(struct udevice *parent,
654                                                      ofnode ofnode)
655 {
656         struct udevice *dev, *found;
657
658         if (ofnode_equal(dev_ofnode(parent), ofnode))
659                 return parent;
660
661         list_for_each_entry(dev, &parent->child_head, sibling_node) {
662                 found = _device_find_global_by_ofnode(dev, ofnode);
663                 if (found)
664                         return found;
665         }
666
667         return NULL;
668 }
669
670 int device_find_global_by_ofnode(ofnode ofnode, struct udevice **devp)
671 {
672         *devp = _device_find_global_by_ofnode(gd->dm_root, ofnode);
673
674         return *devp ? 0 : -ENOENT;
675 }
676
677 int device_get_global_by_ofnode(ofnode ofnode, struct udevice **devp)
678 {
679         struct udevice *dev;
680
681         dev = _device_find_global_by_ofnode(gd->dm_root, ofnode);
682         return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
683 }
684
685 int device_find_first_child(struct udevice *parent, struct udevice **devp)
686 {
687         if (list_empty(&parent->child_head)) {
688                 *devp = NULL;
689         } else {
690                 *devp = list_first_entry(&parent->child_head, struct udevice,
691                                          sibling_node);
692         }
693
694         return 0;
695 }
696
697 int device_find_next_child(struct udevice **devp)
698 {
699         struct udevice *dev = *devp;
700         struct udevice *parent = dev->parent;
701
702         if (list_is_last(&dev->sibling_node, &parent->child_head)) {
703                 *devp = NULL;
704         } else {
705                 *devp = list_entry(dev->sibling_node.next, struct udevice,
706                                    sibling_node);
707         }
708
709         return 0;
710 }
711
712 int device_find_first_inactive_child(struct udevice *parent,
713                                      enum uclass_id uclass_id,
714                                      struct udevice **devp)
715 {
716         struct udevice *dev;
717
718         *devp = NULL;
719         list_for_each_entry(dev, &parent->child_head, sibling_node) {
720                 if (!device_active(dev) &&
721                     device_get_uclass_id(dev) == uclass_id) {
722                         *devp = dev;
723                         return 0;
724                 }
725         }
726
727         return -ENODEV;
728 }
729
730 int device_find_first_child_by_uclass(struct udevice *parent,
731                                       enum uclass_id uclass_id,
732                                       struct udevice **devp)
733 {
734         struct udevice *dev;
735
736         *devp = NULL;
737         list_for_each_entry(dev, &parent->child_head, sibling_node) {
738                 if (device_get_uclass_id(dev) == uclass_id) {
739                         *devp = dev;
740                         return 0;
741                 }
742         }
743
744         return -ENODEV;
745 }
746
747 int device_find_child_by_name(struct udevice *parent, const char *name,
748                               struct udevice **devp)
749 {
750         struct udevice *dev;
751
752         *devp = NULL;
753
754         list_for_each_entry(dev, &parent->child_head, sibling_node) {
755                 if (!strcmp(dev->name, name)) {
756                         *devp = dev;
757                         return 0;
758                 }
759         }
760
761         return -ENODEV;
762 }
763
764 struct udevice *dev_get_parent(const struct udevice *child)
765 {
766         return child->parent;
767 }
768
769 ulong dev_get_driver_data(const struct udevice *dev)
770 {
771         return dev->driver_data;
772 }
773
774 const void *dev_get_driver_ops(const struct udevice *dev)
775 {
776         if (!dev || !dev->driver->ops)
777                 return NULL;
778
779         return dev->driver->ops;
780 }
781
782 enum uclass_id device_get_uclass_id(const struct udevice *dev)
783 {
784         return dev->uclass->uc_drv->id;
785 }
786
787 const char *dev_get_uclass_name(const struct udevice *dev)
788 {
789         if (!dev)
790                 return NULL;
791
792         return dev->uclass->uc_drv->name;
793 }
794
795 bool device_has_children(const struct udevice *dev)
796 {
797         return !list_empty(&dev->child_head);
798 }
799
800 bool device_has_active_children(struct udevice *dev)
801 {
802         struct udevice *child;
803
804         for (device_find_first_child(dev, &child);
805              child;
806              device_find_next_child(&child)) {
807                 if (device_active(child))
808                         return true;
809         }
810
811         return false;
812 }
813
814 bool device_is_last_sibling(struct udevice *dev)
815 {
816         struct udevice *parent = dev->parent;
817
818         if (!parent)
819                 return false;
820         return list_is_last(&dev->sibling_node, &parent->child_head);
821 }
822
823 void device_set_name_alloced(struct udevice *dev)
824 {
825         dev->flags |= DM_FLAG_NAME_ALLOCED;
826 }
827
828 int device_set_name(struct udevice *dev, const char *name)
829 {
830         name = strdup(name);
831         if (!name)
832                 return -ENOMEM;
833         dev->name = name;
834         device_set_name_alloced(dev);
835
836         return 0;
837 }
838
839 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
840 bool device_is_compatible(struct udevice *dev, const char *compat)
841 {
842         return ofnode_device_is_compatible(dev_ofnode(dev), compat);
843 }
844
845 bool of_machine_is_compatible(const char *compat)
846 {
847         const void *fdt = gd->fdt_blob;
848
849         return !fdt_node_check_compatible(fdt, 0, compat);
850 }
851
852 int dev_disable_by_path(const char *path)
853 {
854         struct uclass *uc;
855         ofnode node = ofnode_path(path);
856         struct udevice *dev;
857         int ret = 1;
858
859         if (!of_live_active())
860                 return -ENOSYS;
861
862         list_for_each_entry(uc, &gd->uclass_root, sibling_node) {
863                 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, &dev);
864                 if (!ret)
865                         break;
866         }
867
868         if (ret)
869                 return ret;
870
871         ret = device_remove(dev, DM_REMOVE_NORMAL);
872         if (ret)
873                 return ret;
874
875         ret = device_unbind(dev);
876         if (ret)
877                 return ret;
878
879         return ofnode_set_enabled(node, false);
880 }
881
882 int dev_enable_by_path(const char *path)
883 {
884         ofnode node = ofnode_path(path);
885         ofnode pnode = ofnode_get_parent(node);
886         struct udevice *parent;
887         int ret = 1;
888
889         if (!of_live_active())
890                 return -ENOSYS;
891
892         ret = device_find_by_ofnode(pnode, &parent);
893         if (ret)
894                 return ret;
895
896         ret = ofnode_set_enabled(node, true);
897         if (ret)
898                 return ret;
899
900         return lists_bind_fdt(parent, node, NULL, false);
901 }
902 #endif