1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (c) 2013 Google, Inc
17 #include <fdt_support.h>
19 #include <asm/cache.h>
20 #include <dm/device.h>
21 #include <dm/device-internal.h>
23 #include <dm/of_access.h>
24 #include <dm/pinctrl.h>
25 #include <dm/platdata.h>
27 #include <dm/uclass.h>
28 #include <dm/uclass-internal.h>
30 #include <linux/err.h>
31 #include <linux/list.h>
32 #include <power-domain.h>
34 DECLARE_GLOBAL_DATA_PTR;
36 static int device_bind_common(struct udevice *parent, const struct driver *drv,
37 const char *name, void *platdata,
38 ulong driver_data, ofnode node,
39 uint of_platdata_size, struct udevice **devp)
50 ret = uclass_get(drv->id, &uc);
52 debug("Missing uclass for driver %s\n", drv->name);
56 dev = calloc(1, sizeof(struct udevice));
60 INIT_LIST_HEAD(&dev->sibling_node);
61 INIT_LIST_HEAD(&dev->child_head);
62 INIT_LIST_HEAD(&dev->uclass_node);
64 INIT_LIST_HEAD(&dev->devres_head);
66 dev->platdata = platdata;
67 dev->driver_data = driver_data;
76 if (CONFIG_IS_ENABLED(DM_SEQ_ALIAS) &&
77 (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS)) {
79 * Some devices, such as a SPI bus, I2C bus and serial ports
80 * are numbered using aliases.
82 * This is just a 'requested' sequence, and will be
83 * resolved (and ->seq updated) when the device is probed.
85 if (CONFIG_IS_ENABLED(OF_CONTROL) &&
86 !CONFIG_IS_ENABLED(OF_PLATDATA)) {
87 if (uc->uc_drv->name && ofnode_valid(node))
88 dev_read_alias_seq(dev, &dev->req_seq);
89 #if CONFIG_IS_ENABLED(OF_PRIOR_STAGE)
90 if (dev->req_seq == -1)
92 uclass_find_next_free_req_seq(drv->id);
95 dev->req_seq = uclass_find_next_free_req_seq(drv->id);
99 if (drv->platdata_auto_alloc_size) {
100 bool alloc = !platdata;
102 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
103 if (of_platdata_size) {
104 dev->flags |= DM_FLAG_OF_PLATDATA;
105 if (of_platdata_size <
106 drv->platdata_auto_alloc_size)
111 dev->flags |= DM_FLAG_ALLOC_PDATA;
112 dev->platdata = calloc(1,
113 drv->platdata_auto_alloc_size);
114 if (!dev->platdata) {
118 if (CONFIG_IS_ENABLED(OF_PLATDATA) && platdata) {
119 memcpy(dev->platdata, platdata,
125 size = uc->uc_drv->per_device_platdata_auto_alloc_size;
127 dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA;
128 dev->uclass_platdata = calloc(1, size);
129 if (!dev->uclass_platdata) {
136 size = parent->driver->per_child_platdata_auto_alloc_size;
138 size = parent->uclass->uc_drv->
139 per_child_platdata_auto_alloc_size;
142 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
143 dev->parent_platdata = calloc(1, size);
144 if (!dev->parent_platdata) {
149 /* put dev into parent's successor list */
150 list_add_tail(&dev->sibling_node, &parent->child_head);
153 ret = uclass_bind_device(dev);
155 goto fail_uclass_bind;
157 /* if we fail to bind we remove device from successors and free it */
159 ret = drv->bind(dev);
163 if (parent && parent->driver->child_post_bind) {
164 ret = parent->driver->child_post_bind(dev);
166 goto fail_child_post_bind;
168 if (uc->uc_drv->post_bind) {
169 ret = uc->uc_drv->post_bind(dev);
171 goto fail_uclass_post_bind;
175 pr_debug("Bound device %s to %s\n", dev->name, parent->name);
179 dev->flags |= DM_FLAG_BOUND;
183 fail_uclass_post_bind:
184 /* There is no child unbind() method, so no clean-up required */
185 fail_child_post_bind:
186 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
187 if (drv->unbind && drv->unbind(dev)) {
188 dm_warn("unbind() method failed on dev '%s' on error path\n",
194 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
195 if (uclass_unbind_device(dev)) {
196 dm_warn("Failed to unbind dev '%s' on error path\n",
201 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
202 list_del(&dev->sibling_node);
203 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
204 free(dev->parent_platdata);
205 dev->parent_platdata = NULL;
209 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
210 free(dev->uclass_platdata);
211 dev->uclass_platdata = NULL;
214 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
216 dev->platdata = NULL;
219 devres_release_all(dev);
226 int device_bind_with_driver_data(struct udevice *parent,
227 const struct driver *drv, const char *name,
228 ulong driver_data, ofnode node,
229 struct udevice **devp)
231 return device_bind_common(parent, drv, name, NULL, driver_data, node,
235 int device_bind(struct udevice *parent, const struct driver *drv,
236 const char *name, void *platdata, int of_offset,
237 struct udevice **devp)
239 return device_bind_common(parent, drv, name, platdata, 0,
240 offset_to_ofnode(of_offset), 0, devp);
243 int device_bind_ofnode(struct udevice *parent, const struct driver *drv,
244 const char *name, void *platdata, ofnode node,
245 struct udevice **devp)
247 return device_bind_common(parent, drv, name, platdata, 0, node, 0,
251 int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
252 struct driver_info *info, struct udevice **devp)
255 uint platdata_size = 0;
258 drv = lists_driver_lookup_name(info->name);
261 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
264 #if CONFIG_IS_ENABLED(OF_PLATDATA)
265 platdata_size = info->platdata_size;
267 ret = device_bind_common(parent, drv, info->name,
268 (void *)info->platdata, 0, ofnode_null(),
269 platdata_size, devp);
272 #if CONFIG_IS_ENABLED(OF_PLATDATA)
279 int device_reparent(struct udevice *dev, struct udevice *new_parent)
281 struct udevice *pos, *n;
286 list_for_each_entry_safe(pos, n, &dev->parent->child_head,
288 if (pos->driver != dev->driver)
291 list_del(&dev->sibling_node);
292 list_add_tail(&dev->sibling_node, &new_parent->child_head);
293 dev->parent = new_parent;
301 static void *alloc_priv(int size, uint flags)
305 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
306 size = ROUND(size, ARCH_DMA_MINALIGN);
307 priv = memalign(ARCH_DMA_MINALIGN, size);
309 memset(priv, '\0', size);
312 * Ensure that the zero bytes are flushed to memory.
313 * This prevents problems if the driver uses this as
314 * both an input and an output buffer:
316 * 1. Zeroes written to buffer (here) and sit in the
318 * 2. Driver issues a read command to DMA
319 * 3. CPU runs out of cache space and evicts some cache
320 * data in the buffer, writing zeroes to RAM from
323 * 5. Buffer now has some DMA data and some zeroes
324 * 6. Data being read is now incorrect
326 * To prevent this, ensure that the cache is clean
327 * within this range at the start. The driver can then
328 * use normal flush-after-write, invalidate-before-read
334 #ifndef CONFIG_MICROBLAZE
335 flush_dcache_range((ulong)priv, (ulong)priv + size);
339 priv = calloc(1, size);
345 int device_ofdata_to_platdata(struct udevice *dev)
347 const struct driver *drv;
354 if (dev->flags & DM_FLAG_PLATDATA_VALID)
357 /* Ensure all parents have ofdata */
359 ret = device_ofdata_to_platdata(dev->parent);
364 * The device might have already been probed during
365 * the call to device_probe() on its parent device
366 * (e.g. PCI bridge devices). Test the flags again
367 * so that we don't mess up the device.
369 if (dev->flags & DM_FLAG_PLATDATA_VALID)
376 /* Allocate private data if requested and not reentered */
377 if (drv->priv_auto_alloc_size && !dev->priv) {
378 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
384 /* Allocate private data if requested and not reentered */
385 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
386 if (size && !dev->uclass_priv) {
387 dev->uclass_priv = alloc_priv(size,
388 dev->uclass->uc_drv->flags);
389 if (!dev->uclass_priv) {
395 /* Allocate parent data for this child */
397 size = dev->parent->driver->per_child_auto_alloc_size;
399 size = dev->parent->uclass->uc_drv->
400 per_child_auto_alloc_size;
402 if (size && !dev->parent_priv) {
403 dev->parent_priv = alloc_priv(size, drv->flags);
404 if (!dev->parent_priv) {
411 if (drv->ofdata_to_platdata &&
412 (CONFIG_IS_ENABLED(OF_PLATDATA) || dev_has_of_node(dev))) {
413 ret = drv->ofdata_to_platdata(dev);
418 dev->flags |= DM_FLAG_PLATDATA_VALID;
427 int device_probe(struct udevice *dev)
429 const struct driver *drv;
436 if (dev->flags & DM_FLAG_ACTIVATED)
442 ret = device_ofdata_to_platdata(dev);
446 /* Ensure all parents are probed */
448 ret = device_probe(dev->parent);
453 * The device might have already been probed during
454 * the call to device_probe() on its parent device
455 * (e.g. PCI bridge devices). Test the flags again
456 * so that we don't mess up the device.
458 if (dev->flags & DM_FLAG_ACTIVATED)
462 seq = uclass_resolve_seq(dev);
469 dev->flags |= DM_FLAG_ACTIVATED;
472 * Process pinctrl for everything except the root device, and
473 * continue regardless of the result of pinctrl. Don't process pinctrl
474 * settings for pinctrl devices since the device may not yet be
477 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
478 pinctrl_select_state(dev, "default");
480 if (CONFIG_IS_ENABLED(POWER_DOMAIN) && dev->parent &&
481 (device_get_uclass_id(dev) != UCLASS_POWER_DOMAIN) &&
482 !(drv->flags & DM_FLAG_DEFAULT_PD_CTRL_OFF)) {
483 ret = dev_power_domain_on(dev);
488 ret = uclass_pre_probe_device(dev);
492 if (dev->parent && dev->parent->driver->child_pre_probe) {
493 ret = dev->parent->driver->child_pre_probe(dev);
498 /* Only handle devices that have a valid ofnode */
499 if (dev_of_valid(dev)) {
501 * Process 'assigned-{clocks/clock-parents/clock-rates}'
504 ret = clk_set_defaults(dev, 0);
510 ret = drv->probe(dev);
515 ret = uclass_post_probe_device(dev);
519 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
520 pinctrl_select_state(dev, "default");
524 if (device_remove(dev, DM_REMOVE_NORMAL)) {
525 dm_warn("%s: Device '%s' failed to remove on error path\n",
526 __func__, dev->name);
529 dev->flags &= ~DM_FLAG_ACTIVATED;
537 void *dev_get_platdata(const struct udevice *dev)
540 dm_warn("%s: null device\n", __func__);
544 return dev->platdata;
547 void *dev_get_parent_platdata(const struct udevice *dev)
550 dm_warn("%s: null device\n", __func__);
554 return dev->parent_platdata;
557 void *dev_get_uclass_platdata(const struct udevice *dev)
560 dm_warn("%s: null device\n", __func__);
564 return dev->uclass_platdata;
567 void *dev_get_priv(const struct udevice *dev)
570 dm_warn("%s: null device\n", __func__);
577 void *dev_get_uclass_priv(const struct udevice *dev)
580 dm_warn("%s: null device\n", __func__);
584 return dev->uclass_priv;
587 void *dev_get_parent_priv(const struct udevice *dev)
590 dm_warn("%s: null device\n", __func__);
594 return dev->parent_priv;
597 static int device_get_device_tail(struct udevice *dev, int ret,
598 struct udevice **devp)
603 ret = device_probe(dev);
612 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
614 * device_find_by_ofnode() - Return device associated with given ofnode
616 * The returned device is *not* activated.
618 * @node: The ofnode for which a associated device should be looked up
619 * @devp: Pointer to structure to hold the found device
620 * Return: 0 if OK, -ve on error
622 static int device_find_by_ofnode(ofnode node, struct udevice **devp)
628 list_for_each_entry(uc, &gd->uclass_root, sibling_node) {
629 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node,
641 int device_get_child(const struct udevice *parent, int index,
642 struct udevice **devp)
646 list_for_each_entry(dev, &parent->child_head, sibling_node) {
648 return device_get_device_tail(dev, 0, devp);
654 int device_get_child_count(const struct udevice *parent)
659 list_for_each_entry(dev, &parent->child_head, sibling_node)
665 int device_find_child_by_seq(const struct udevice *parent, int seq_or_req_seq,
666 bool find_req_seq, struct udevice **devp)
671 if (seq_or_req_seq == -1)
674 list_for_each_entry(dev, &parent->child_head, sibling_node) {
675 if ((find_req_seq ? dev->req_seq : dev->seq) ==
685 int device_get_child_by_seq(const struct udevice *parent, int seq,
686 struct udevice **devp)
692 ret = device_find_child_by_seq(parent, seq, false, &dev);
693 if (ret == -ENODEV) {
695 * We didn't find it in probed devices. See if there is one
696 * that will request this seq if probed.
698 ret = device_find_child_by_seq(parent, seq, true, &dev);
700 return device_get_device_tail(dev, ret, devp);
703 int device_find_child_by_of_offset(const struct udevice *parent, int of_offset,
704 struct udevice **devp)
710 list_for_each_entry(dev, &parent->child_head, sibling_node) {
711 if (dev_of_offset(dev) == of_offset) {
720 int device_get_child_by_of_offset(const struct udevice *parent, int node,
721 struct udevice **devp)
727 ret = device_find_child_by_of_offset(parent, node, &dev);
728 return device_get_device_tail(dev, ret, devp);
731 static struct udevice *_device_find_global_by_ofnode(struct udevice *parent,
734 struct udevice *dev, *found;
736 if (ofnode_equal(dev_ofnode(parent), ofnode))
739 list_for_each_entry(dev, &parent->child_head, sibling_node) {
740 found = _device_find_global_by_ofnode(dev, ofnode);
748 int device_find_global_by_ofnode(ofnode ofnode, struct udevice **devp)
750 *devp = _device_find_global_by_ofnode(gd->dm_root, ofnode);
752 return *devp ? 0 : -ENOENT;
755 int device_get_global_by_ofnode(ofnode ofnode, struct udevice **devp)
759 dev = _device_find_global_by_ofnode(gd->dm_root, ofnode);
760 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
763 #if CONFIG_IS_ENABLED(OF_PLATDATA)
764 int device_get_by_driver_info(const struct driver_info *info,
765 struct udevice **devp)
771 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
775 int device_find_first_child(const struct udevice *parent, struct udevice **devp)
777 if (list_empty(&parent->child_head)) {
780 *devp = list_first_entry(&parent->child_head, struct udevice,
787 int device_find_next_child(struct udevice **devp)
789 struct udevice *dev = *devp;
790 struct udevice *parent = dev->parent;
792 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
795 *devp = list_entry(dev->sibling_node.next, struct udevice,
802 int device_find_first_inactive_child(const struct udevice *parent,
803 enum uclass_id uclass_id,
804 struct udevice **devp)
809 list_for_each_entry(dev, &parent->child_head, sibling_node) {
810 if (!device_active(dev) &&
811 device_get_uclass_id(dev) == uclass_id) {
820 int device_find_first_child_by_uclass(const struct udevice *parent,
821 enum uclass_id uclass_id,
822 struct udevice **devp)
827 list_for_each_entry(dev, &parent->child_head, sibling_node) {
828 if (device_get_uclass_id(dev) == uclass_id) {
837 int device_find_child_by_name(const struct udevice *parent, const char *name,
838 struct udevice **devp)
844 list_for_each_entry(dev, &parent->child_head, sibling_node) {
845 if (!strcmp(dev->name, name)) {
854 int device_first_child_err(struct udevice *parent, struct udevice **devp)
858 device_find_first_child(parent, &dev);
862 return device_get_device_tail(dev, 0, devp);
865 int device_next_child_err(struct udevice **devp)
867 struct udevice *dev = *devp;
869 device_find_next_child(&dev);
873 return device_get_device_tail(dev, 0, devp);
876 int device_first_child_ofdata_err(struct udevice *parent, struct udevice **devp)
881 device_find_first_child(parent, &dev);
885 ret = device_ofdata_to_platdata(dev);
894 int device_next_child_ofdata_err(struct udevice **devp)
896 struct udevice *dev = *devp;
899 device_find_next_child(&dev);
903 ret = device_ofdata_to_platdata(dev);
912 struct udevice *dev_get_parent(const struct udevice *child)
914 return child->parent;
917 ulong dev_get_driver_data(const struct udevice *dev)
919 return dev->driver_data;
922 const void *dev_get_driver_ops(const struct udevice *dev)
924 if (!dev || !dev->driver->ops)
927 return dev->driver->ops;
930 enum uclass_id device_get_uclass_id(const struct udevice *dev)
932 return dev->uclass->uc_drv->id;
935 const char *dev_get_uclass_name(const struct udevice *dev)
940 return dev->uclass->uc_drv->name;
943 bool device_has_children(const struct udevice *dev)
945 return !list_empty(&dev->child_head);
948 bool device_has_active_children(const struct udevice *dev)
950 struct udevice *child;
952 for (device_find_first_child(dev, &child);
954 device_find_next_child(&child)) {
955 if (device_active(child))
962 bool device_is_last_sibling(const struct udevice *dev)
964 struct udevice *parent = dev->parent;
968 return list_is_last(&dev->sibling_node, &parent->child_head);
971 void device_set_name_alloced(struct udevice *dev)
973 dev->flags |= DM_FLAG_NAME_ALLOCED;
976 int device_set_name(struct udevice *dev, const char *name)
982 device_set_name_alloced(dev);
987 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
988 bool device_is_compatible(const struct udevice *dev, const char *compat)
990 return ofnode_device_is_compatible(dev_ofnode(dev), compat);
993 bool of_machine_is_compatible(const char *compat)
995 const void *fdt = gd->fdt_blob;
997 return !fdt_node_check_compatible(fdt, 0, compat);
1000 int dev_disable_by_path(const char *path)
1003 ofnode node = ofnode_path(path);
1004 struct udevice *dev;
1007 if (!of_live_active())
1010 list_for_each_entry(uc, &gd->uclass_root, sibling_node) {
1011 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, &dev);
1019 ret = device_remove(dev, DM_REMOVE_NORMAL);
1023 ret = device_unbind(dev);
1027 return ofnode_set_enabled(node, false);
1030 int dev_enable_by_path(const char *path)
1032 ofnode node = ofnode_path(path);
1033 ofnode pnode = ofnode_get_parent(node);
1034 struct udevice *parent;
1037 if (!of_live_active())
1040 ret = device_find_by_ofnode(pnode, &parent);
1044 ret = ofnode_set_enabled(node, true);
1048 return lists_bind_fdt(parent, node, NULL, false);