1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (c) 2013 Google, Inc
8 * Pavel Herrmann <morpheus.ibis@gmail.com>
16 #include <fdt_support.h>
18 #include <dm/device.h>
19 #include <dm/device-internal.h>
21 #include <dm/of_access.h>
22 #include <dm/pinctrl.h>
23 #include <dm/platdata.h>
25 #include <dm/uclass.h>
26 #include <dm/uclass-internal.h>
28 #include <linux/err.h>
29 #include <linux/list.h>
30 #include <power-domain.h>
32 DECLARE_GLOBAL_DATA_PTR;
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)
48 ret = uclass_get(drv->id, &uc);
50 debug("Missing uclass for driver %s\n", drv->name);
54 dev = calloc(1, sizeof(struct udevice));
58 INIT_LIST_HEAD(&dev->sibling_node);
59 INIT_LIST_HEAD(&dev->child_head);
60 INIT_LIST_HEAD(&dev->uclass_node);
62 INIT_LIST_HEAD(&dev->devres_head);
64 dev->platdata = platdata;
65 dev->driver_data = driver_data;
74 if (CONFIG_IS_ENABLED(DM_SEQ_ALIAS) &&
75 (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS)) {
77 * Some devices, such as a SPI bus, I2C bus and serial ports
78 * are numbered using aliases.
80 * This is just a 'requested' sequence, and will be
81 * resolved (and ->seq updated) when the device is probed.
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)
89 uclass_find_next_free_req_seq(drv->id);
92 dev->req_seq = uclass_find_next_free_req_seq(drv->id);
96 if (drv->platdata_auto_alloc_size) {
97 bool alloc = !platdata;
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)
108 dev->flags |= DM_FLAG_ALLOC_PDATA;
109 dev->platdata = calloc(1,
110 drv->platdata_auto_alloc_size);
111 if (!dev->platdata) {
115 if (CONFIG_IS_ENABLED(OF_PLATDATA) && platdata) {
116 memcpy(dev->platdata, platdata,
122 size = uc->uc_drv->per_device_platdata_auto_alloc_size;
124 dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA;
125 dev->uclass_platdata = calloc(1, size);
126 if (!dev->uclass_platdata) {
133 size = parent->driver->per_child_platdata_auto_alloc_size;
135 size = parent->uclass->uc_drv->
136 per_child_platdata_auto_alloc_size;
139 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
140 dev->parent_platdata = calloc(1, size);
141 if (!dev->parent_platdata) {
148 /* put dev into parent's successor list */
150 list_add_tail(&dev->sibling_node, &parent->child_head);
152 ret = uclass_bind_device(dev);
154 goto fail_uclass_bind;
156 /* if we fail to bind we remove device from successors and free it */
158 ret = drv->bind(dev);
162 if (parent && parent->driver->child_post_bind) {
163 ret = parent->driver->child_post_bind(dev);
165 goto fail_child_post_bind;
167 if (uc->uc_drv->post_bind) {
168 ret = uc->uc_drv->post_bind(dev);
170 goto fail_uclass_post_bind;
174 pr_debug("Bound device %s to %s\n", dev->name, parent->name);
178 dev->flags |= DM_FLAG_BOUND;
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",
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",
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;
208 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
209 free(dev->uclass_platdata);
210 dev->uclass_platdata = NULL;
213 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
215 dev->platdata = NULL;
218 devres_release_all(dev);
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)
230 return device_bind_common(parent, drv, name, NULL, driver_data, node,
234 int device_bind(struct udevice *parent, const struct driver *drv,
235 const char *name, void *platdata, int of_offset,
236 struct udevice **devp)
238 return device_bind_common(parent, drv, name, platdata, 0,
239 offset_to_ofnode(of_offset), 0, devp);
242 int device_bind_ofnode(struct udevice *parent, const struct driver *drv,
243 const char *name, void *platdata, ofnode node,
244 struct udevice **devp)
246 return device_bind_common(parent, drv, name, platdata, 0, node, 0,
250 int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
251 const struct driver_info *info, struct udevice **devp)
254 uint platdata_size = 0;
256 drv = lists_driver_lookup_name(info->name);
259 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
262 #if CONFIG_IS_ENABLED(OF_PLATDATA)
263 platdata_size = info->platdata_size;
265 return device_bind_common(parent, drv, info->name,
266 (void *)info->platdata, 0, ofnode_null(), platdata_size,
270 static void *alloc_priv(int size, uint flags)
274 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
275 size = ROUND(size, ARCH_DMA_MINALIGN);
276 priv = memalign(ARCH_DMA_MINALIGN, size);
278 memset(priv, '\0', size);
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:
285 * 1. Zeroes written to buffer (here) and sit in the
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
292 * 5. Buffer now has some DMA data and some zeroes
293 * 6. Data being read is now incorrect
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
300 * TODO(sjg@chromium.org): Drop this microblaze
303 #ifndef CONFIG_MICROBLAZE
304 flush_dcache_range((ulong)priv, (ulong)priv + size);
308 priv = calloc(1, size);
314 int device_probe(struct udevice *dev)
316 const struct driver *drv;
324 if (dev->flags & DM_FLAG_ACTIVATED)
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);
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) {
349 /* Ensure all parents are probed */
351 size = dev->parent->driver->per_child_auto_alloc_size;
353 size = dev->parent->uclass->uc_drv->
354 per_child_auto_alloc_size;
356 if (size && !dev->parent_priv) {
357 dev->parent_priv = alloc_priv(size, drv->flags);
358 if (!dev->parent_priv) {
364 ret = device_probe(dev->parent);
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.
374 if (dev->flags & DM_FLAG_ACTIVATED)
378 seq = uclass_resolve_seq(dev);
385 dev->flags |= DM_FLAG_ACTIVATED;
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
393 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
394 pinctrl_select_state(dev, "default");
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);
404 ret = uclass_pre_probe_device(dev);
408 if (dev->parent && dev->parent->driver->child_pre_probe) {
409 ret = dev->parent->driver->child_pre_probe(dev);
414 if (drv->ofdata_to_platdata &&
415 (CONFIG_IS_ENABLED(OF_PLATDATA) || dev_has_of_node(dev))) {
416 ret = drv->ofdata_to_platdata(dev);
421 /* Only handle devices that have a valid ofnode */
422 if (dev_of_valid(dev)) {
424 * Process 'assigned-{clocks/clock-parents/clock-rates}'
427 ret = clk_set_defaults(dev, 0);
433 ret = drv->probe(dev);
435 dev->flags &= ~DM_FLAG_ACTIVATED;
440 ret = uclass_post_probe_device(dev);
444 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
445 pinctrl_select_state(dev, "default");
449 if (device_remove(dev, DM_REMOVE_NORMAL)) {
450 dm_warn("%s: Device '%s' failed to remove on error path\n",
451 __func__, dev->name);
454 dev->flags &= ~DM_FLAG_ACTIVATED;
462 void *dev_get_platdata(const struct udevice *dev)
465 dm_warn("%s: null device\n", __func__);
469 return dev->platdata;
472 void *dev_get_parent_platdata(const struct udevice *dev)
475 dm_warn("%s: null device\n", __func__);
479 return dev->parent_platdata;
482 void *dev_get_uclass_platdata(const struct udevice *dev)
485 dm_warn("%s: null device\n", __func__);
489 return dev->uclass_platdata;
492 void *dev_get_priv(const struct udevice *dev)
495 dm_warn("%s: null device\n", __func__);
502 void *dev_get_uclass_priv(const struct udevice *dev)
505 dm_warn("%s: null device\n", __func__);
509 return dev->uclass_priv;
512 void *dev_get_parent_priv(const struct udevice *dev)
515 dm_warn("%s: null device\n", __func__);
519 return dev->parent_priv;
522 static int device_get_device_tail(struct udevice *dev, int ret,
523 struct udevice **devp)
528 ret = device_probe(dev);
537 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
539 * device_find_by_ofnode() - Return device associated with given ofnode
541 * The returned device is *not* activated.
543 * @node: The ofnode for which a associated device should be looked up
544 * @devp: Pointer to structure to hold the found device
545 * Return: 0 if OK, -ve on error
547 static int device_find_by_ofnode(ofnode node, struct udevice **devp)
553 list_for_each_entry(uc, &gd->uclass_root, sibling_node) {
554 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node,
566 int device_get_child(struct udevice *parent, int index, struct udevice **devp)
570 list_for_each_entry(dev, &parent->child_head, sibling_node) {
572 return device_get_device_tail(dev, 0, devp);
578 int device_get_child_count(struct udevice *parent)
583 list_for_each_entry(dev, &parent->child_head, sibling_node)
589 int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
590 bool find_req_seq, struct udevice **devp)
595 if (seq_or_req_seq == -1)
598 list_for_each_entry(dev, &parent->child_head, sibling_node) {
599 if ((find_req_seq ? dev->req_seq : dev->seq) ==
609 int device_get_child_by_seq(struct udevice *parent, int seq,
610 struct udevice **devp)
616 ret = device_find_child_by_seq(parent, seq, false, &dev);
617 if (ret == -ENODEV) {
619 * We didn't find it in probed devices. See if there is one
620 * that will request this seq if probed.
622 ret = device_find_child_by_seq(parent, seq, true, &dev);
624 return device_get_device_tail(dev, ret, devp);
627 int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
628 struct udevice **devp)
634 list_for_each_entry(dev, &parent->child_head, sibling_node) {
635 if (dev_of_offset(dev) == of_offset) {
644 int device_get_child_by_of_offset(struct udevice *parent, int node,
645 struct udevice **devp)
651 ret = device_find_child_by_of_offset(parent, node, &dev);
652 return device_get_device_tail(dev, ret, devp);
655 static struct udevice *_device_find_global_by_ofnode(struct udevice *parent,
658 struct udevice *dev, *found;
660 if (ofnode_equal(dev_ofnode(parent), ofnode))
663 list_for_each_entry(dev, &parent->child_head, sibling_node) {
664 found = _device_find_global_by_ofnode(dev, ofnode);
672 int device_find_global_by_ofnode(ofnode ofnode, struct udevice **devp)
674 *devp = _device_find_global_by_ofnode(gd->dm_root, ofnode);
676 return *devp ? 0 : -ENOENT;
679 int device_get_global_by_ofnode(ofnode ofnode, struct udevice **devp)
683 dev = _device_find_global_by_ofnode(gd->dm_root, ofnode);
684 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
687 int device_find_first_child(struct udevice *parent, struct udevice **devp)
689 if (list_empty(&parent->child_head)) {
692 *devp = list_first_entry(&parent->child_head, struct udevice,
699 int device_find_next_child(struct udevice **devp)
701 struct udevice *dev = *devp;
702 struct udevice *parent = dev->parent;
704 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
707 *devp = list_entry(dev->sibling_node.next, struct udevice,
714 int device_find_first_inactive_child(struct udevice *parent,
715 enum uclass_id uclass_id,
716 struct udevice **devp)
721 list_for_each_entry(dev, &parent->child_head, sibling_node) {
722 if (!device_active(dev) &&
723 device_get_uclass_id(dev) == uclass_id) {
732 int device_find_first_child_by_uclass(struct udevice *parent,
733 enum uclass_id uclass_id,
734 struct udevice **devp)
739 list_for_each_entry(dev, &parent->child_head, sibling_node) {
740 if (device_get_uclass_id(dev) == uclass_id) {
749 int device_find_child_by_name(struct udevice *parent, const char *name,
750 struct udevice **devp)
756 list_for_each_entry(dev, &parent->child_head, sibling_node) {
757 if (!strcmp(dev->name, name)) {
766 struct udevice *dev_get_parent(const struct udevice *child)
768 return child->parent;
771 ulong dev_get_driver_data(const struct udevice *dev)
773 return dev->driver_data;
776 const void *dev_get_driver_ops(const struct udevice *dev)
778 if (!dev || !dev->driver->ops)
781 return dev->driver->ops;
784 enum uclass_id device_get_uclass_id(const struct udevice *dev)
786 return dev->uclass->uc_drv->id;
789 const char *dev_get_uclass_name(const struct udevice *dev)
794 return dev->uclass->uc_drv->name;
797 bool device_has_children(const struct udevice *dev)
799 return !list_empty(&dev->child_head);
802 bool device_has_active_children(struct udevice *dev)
804 struct udevice *child;
806 for (device_find_first_child(dev, &child);
808 device_find_next_child(&child)) {
809 if (device_active(child))
816 bool device_is_last_sibling(struct udevice *dev)
818 struct udevice *parent = dev->parent;
822 return list_is_last(&dev->sibling_node, &parent->child_head);
825 void device_set_name_alloced(struct udevice *dev)
827 dev->flags |= DM_FLAG_NAME_ALLOCED;
830 int device_set_name(struct udevice *dev, const char *name)
836 device_set_name_alloced(dev);
841 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
842 bool device_is_compatible(struct udevice *dev, const char *compat)
844 return ofnode_device_is_compatible(dev_ofnode(dev), compat);
847 bool of_machine_is_compatible(const char *compat)
849 const void *fdt = gd->fdt_blob;
851 return !fdt_node_check_compatible(fdt, 0, compat);
854 int dev_disable_by_path(const char *path)
857 ofnode node = ofnode_path(path);
861 if (!of_live_active())
864 list_for_each_entry(uc, &gd->uclass_root, sibling_node) {
865 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, &dev);
873 ret = device_remove(dev, DM_REMOVE_NORMAL);
877 ret = device_unbind(dev);
881 return ofnode_set_enabled(node, false);
884 int dev_enable_by_path(const char *path)
886 ofnode node = ofnode_path(path);
887 ofnode pnode = ofnode_get_parent(node);
888 struct udevice *parent;
891 if (!of_live_active())
894 ret = device_find_by_ofnode(pnode, &parent);
898 ret = ofnode_set_enabled(node, true);
902 return lists_bind_fdt(parent, node, NULL, false);