4 * Copyright (c) 2013 Google, Inc
9 * SPDX-License-Identifier: GPL-2.0+
15 #include <dm/device.h>
16 #include <dm/device-internal.h>
18 #include <dm/platdata.h>
19 #include <dm/uclass.h>
20 #include <dm/uclass-internal.h>
22 #include <linux/err.h>
23 #include <linux/list.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 int device_bind(struct udevice *parent, struct driver *drv, const char *name,
28 void *platdata, int of_offset, struct udevice **devp)
38 ret = uclass_get(drv->id, &uc);
42 dev = calloc(1, sizeof(struct udevice));
46 INIT_LIST_HEAD(&dev->sibling_node);
47 INIT_LIST_HEAD(&dev->child_head);
48 INIT_LIST_HEAD(&dev->uclass_node);
49 dev->platdata = platdata;
51 dev->of_offset = of_offset;
58 #ifdef CONFIG_OF_CONTROL
60 * Some devices, such as a SPI bus, I2C bus and serial ports are
61 * numbered using aliases.
63 * This is just a 'requested' sequence, and will be
64 * resolved (and ->seq updated) when the device is probed.
66 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
67 if (uc->uc_drv->name && of_offset != -1) {
68 fdtdec_get_alias_seq(gd->fdt_blob, uc->uc_drv->name,
69 of_offset, &dev->req_seq);
73 if (!dev->platdata && drv->platdata_auto_alloc_size) {
74 dev->flags |= DM_FLAG_ALLOC_PDATA;
75 dev->platdata = calloc(1, drv->platdata_auto_alloc_size);
82 int size = parent->driver->per_child_platdata_auto_alloc_size;
85 size = parent->uclass->uc_drv->
86 per_child_platdata_auto_alloc_size;
89 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
90 dev->parent_platdata = calloc(1, size);
91 if (!dev->parent_platdata) {
98 /* put dev into parent's successor list */
100 list_add_tail(&dev->sibling_node, &parent->child_head);
102 ret = uclass_bind_device(dev);
104 goto fail_uclass_bind;
106 /* if we fail to bind we remove device from successors and free it */
108 ret = drv->bind(dev);
112 if (parent && parent->driver->child_post_bind) {
113 ret = parent->driver->child_post_bind(dev);
115 goto fail_child_post_bind;
119 dm_dbg("Bound device %s to %s\n", dev->name, parent->name);
124 fail_child_post_bind:
125 if (drv->unbind && drv->unbind(dev)) {
126 dm_warn("unbind() method failed on dev '%s' on error path\n",
131 if (uclass_unbind_device(dev)) {
132 dm_warn("Failed to unbind dev '%s' on error path\n",
136 list_del(&dev->sibling_node);
137 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
138 free(dev->parent_platdata);
139 dev->parent_platdata = NULL;
142 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
144 dev->platdata = NULL;
152 int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
153 const struct driver_info *info, struct udevice **devp)
157 drv = lists_driver_lookup_name(info->name);
160 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
163 return device_bind(parent, drv, info->name, (void *)info->platdata,
167 int device_probe_child(struct udevice *dev, void *parent_priv)
177 if (dev->flags & DM_FLAG_ACTIVATED)
183 /* Allocate private data if requested */
184 if (drv->priv_auto_alloc_size) {
185 dev->priv = calloc(1, drv->priv_auto_alloc_size);
191 /* Allocate private data if requested */
192 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
194 dev->uclass_priv = calloc(1, size);
195 if (!dev->uclass_priv) {
201 /* Ensure all parents are probed */
203 size = dev->parent->driver->per_child_auto_alloc_size;
205 size = dev->parent->uclass->uc_drv->
206 per_child_auto_alloc_size;
209 dev->parent_priv = calloc(1, size);
210 if (!dev->parent_priv) {
215 memcpy(dev->parent_priv, parent_priv, size);
218 ret = device_probe(dev->parent);
223 seq = uclass_resolve_seq(dev);
230 ret = uclass_pre_probe_child(dev);
234 if (dev->parent && dev->parent->driver->child_pre_probe) {
235 ret = dev->parent->driver->child_pre_probe(dev);
240 if (drv->ofdata_to_platdata && dev->of_offset >= 0) {
241 ret = drv->ofdata_to_platdata(dev);
247 ret = drv->probe(dev);
252 dev->flags |= DM_FLAG_ACTIVATED;
254 ret = uclass_post_probe_device(dev);
256 dev->flags &= ~DM_FLAG_ACTIVATED;
262 if (device_remove(dev)) {
263 dm_warn("%s: Device '%s' failed to remove on error path\n",
264 __func__, dev->name);
273 int device_probe(struct udevice *dev)
275 return device_probe_child(dev, NULL);
278 void *dev_get_platdata(struct udevice *dev)
281 dm_warn("%s: null device\n", __func__);
285 return dev->platdata;
288 void *dev_get_parent_platdata(struct udevice *dev)
291 dm_warn("%s: null device", __func__);
295 return dev->parent_platdata;
298 void *dev_get_priv(struct udevice *dev)
301 dm_warn("%s: null device\n", __func__);
308 void *dev_get_parentdata(struct udevice *dev)
311 dm_warn("%s: null device\n", __func__);
315 return dev->parent_priv;
318 static int device_get_device_tail(struct udevice *dev, int ret,
319 struct udevice **devp)
324 ret = device_probe(dev);
333 int device_get_child(struct udevice *parent, int index, struct udevice **devp)
337 list_for_each_entry(dev, &parent->child_head, sibling_node) {
339 return device_get_device_tail(dev, 0, devp);
345 int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
346 bool find_req_seq, struct udevice **devp)
351 if (seq_or_req_seq == -1)
354 list_for_each_entry(dev, &parent->child_head, sibling_node) {
355 if ((find_req_seq ? dev->req_seq : dev->seq) ==
365 int device_get_child_by_seq(struct udevice *parent, int seq,
366 struct udevice **devp)
372 ret = device_find_child_by_seq(parent, seq, false, &dev);
373 if (ret == -ENODEV) {
375 * We didn't find it in probed devices. See if there is one
376 * that will request this seq if probed.
378 ret = device_find_child_by_seq(parent, seq, true, &dev);
380 return device_get_device_tail(dev, ret, devp);
383 int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
384 struct udevice **devp)
390 list_for_each_entry(dev, &parent->child_head, sibling_node) {
391 if (dev->of_offset == of_offset) {
400 int device_get_child_by_of_offset(struct udevice *parent, int seq,
401 struct udevice **devp)
407 ret = device_find_child_by_of_offset(parent, seq, &dev);
408 return device_get_device_tail(dev, ret, devp);
411 int device_find_first_child(struct udevice *parent, struct udevice **devp)
413 if (list_empty(&parent->child_head)) {
416 *devp = list_first_entry(&parent->child_head, struct udevice,
423 int device_find_next_child(struct udevice **devp)
425 struct udevice *dev = *devp;
426 struct udevice *parent = dev->parent;
428 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
431 *devp = list_entry(dev->sibling_node.next, struct udevice,
438 struct udevice *dev_get_parent(struct udevice *child)
440 return child->parent;
443 ulong dev_get_of_data(struct udevice *dev)
445 return dev->of_id->data;
448 enum uclass_id device_get_uclass_id(struct udevice *dev)
450 return dev->uclass->uc_drv->id;