blob: 2442b5834d57faa90a06c4a6edc91dad68afe85b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassdd6ab882014-02-26 15:59:18 -07002/*
3 * Device manager
4 *
5 * Copyright (c) 2013 Google, Inc
6 *
7 * (C) Copyright 2012
8 * Pavel Herrmann <morpheus.ibis@gmail.com>
Simon Glassdd6ab882014-02-26 15:59:18 -07009 */
10
11#include <common.h>
Simon Glass63334482019-11-14 12:57:39 -070012#include <cpu_func.h>
Vignesh R0dff3702016-07-06 09:58:55 +053013#include <asm/io.h>
Philipp Tomsich9cf03b02018-01-08 13:59:18 +010014#include <clk.h>
Simon Glassdb6f0202014-07-23 06:55:12 -060015#include <fdtdec.h>
Stefan Roeseadc09052015-09-02 07:41:12 +020016#include <fdt_support.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070017#include <malloc.h>
18#include <dm/device.h>
19#include <dm/device-internal.h>
20#include <dm/lists.h>
Mario Six1f1c1ec2018-01-15 11:07:20 +010021#include <dm/of_access.h>
Masahiro Yamadaf8efa632015-08-27 12:44:29 +090022#include <dm/pinctrl.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070023#include <dm/platdata.h>
Simon Glass322b2902017-05-18 20:09:05 -060024#include <dm/read.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070025#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>
Peng Fan6fba32d2018-07-27 10:20:38 +080030#include <power-domain.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070031
Simon Glassdb6f0202014-07-23 06:55:12 -060032DECLARE_GLOBAL_DATA_PTR;
33
Stephen Warren8c93df12016-05-11 15:26:24 -060034static int device_bind_common(struct udevice *parent, const struct driver *drv,
35 const char *name, void *platdata,
Simon Glassb0cf4b32017-05-17 17:18:11 -060036 ulong driver_data, ofnode node,
Simon Glassafbf9b82016-07-04 11:58:18 -060037 uint of_platdata_size, struct udevice **devp)
Simon Glassdd6ab882014-02-26 15:59:18 -070038{
Heiko Schocherb74fcb42014-05-22 12:43:05 +020039 struct udevice *dev;
Simon Glassdd6ab882014-02-26 15:59:18 -070040 struct uclass *uc;
Przemyslaw Marczakd850e672015-04-15 13:07:18 +020041 int size, ret = 0;
Simon Glassdd6ab882014-02-26 15:59:18 -070042
Masahiro Yamadae1cc1f02015-08-27 12:44:28 +090043 if (devp)
44 *devp = NULL;
Simon Glassdd6ab882014-02-26 15:59:18 -070045 if (!name)
46 return -EINVAL;
47
48 ret = uclass_get(drv->id, &uc);
Simon Glass43313de2015-08-30 16:55:16 -060049 if (ret) {
50 debug("Missing uclass for driver %s\n", drv->name);
Simon Glassdd6ab882014-02-26 15:59:18 -070051 return ret;
Simon Glass43313de2015-08-30 16:55:16 -060052 }
Simon Glassdd6ab882014-02-26 15:59:18 -070053
Heiko Schocherb74fcb42014-05-22 12:43:05 +020054 dev = calloc(1, sizeof(struct udevice));
Simon Glassdd6ab882014-02-26 15:59:18 -070055 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);
Masahiro Yamada029bfca2015-07-25 21:52:37 +090061#ifdef CONFIG_DEVRES
Masahiro Yamada8b15b162015-07-25 21:52:35 +090062 INIT_LIST_HEAD(&dev->devres_head);
Masahiro Yamada029bfca2015-07-25 21:52:37 +090063#endif
Simon Glassdd6ab882014-02-26 15:59:18 -070064 dev->platdata = platdata;
Stephen Warren8c93df12016-05-11 15:26:24 -060065 dev->driver_data = driver_data;
Simon Glassdd6ab882014-02-26 15:59:18 -070066 dev->name = name;
Simon Glassb0cf4b32017-05-17 17:18:11 -060067 dev->node = node;
Simon Glassdd6ab882014-02-26 15:59:18 -070068 dev->parent = parent;
69 dev->driver = drv;
70 dev->uclass = uc;
Simon Glassdb6f0202014-07-23 06:55:12 -060071
Simon Glassdb6f0202014-07-23 06:55:12 -060072 dev->seq = -1;
Simon Glass0ccb0972015-01-25 08:27:05 -070073 dev->req_seq = -1;
Jean-Jacques Hiblota5da3002018-12-07 14:50:39 +010074 if (CONFIG_IS_ENABLED(DM_SEQ_ALIAS) &&
75 (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS)) {
Simon Glass1bd3deb2015-02-27 22:06:30 -070076 /*
Stefan Roese9d4ce6b2016-03-16 09:58:01 +010077 * 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 */
Jean-Jacques Hiblota5da3002018-12-07 14:50:39 +010083 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
84 if (uc->uc_drv->name && ofnode_valid(node))
Simon Glass322b2902017-05-18 20:09:05 -060085 dev_read_alias_seq(dev, &dev->req_seq);
Thomas Fitzsimmonsf327ecb2019-09-06 07:51:18 -040086#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
Jean-Jacques Hiblota5da3002018-12-07 14:50:39 +010091 } else {
92 dev->req_seq = uclass_find_next_free_req_seq(drv->id);
Simon Glass0ccb0972015-01-25 08:27:05 -070093 }
Simon Glassdb6f0202014-07-23 06:55:12 -060094 }
Simon Glass1bd3deb2015-02-27 22:06:30 -070095
Simon Glassafbf9b82016-07-04 11:58:18 -060096 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 }
Simon Glassba750492015-01-25 08:27:00 -0700119 }
120 }
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200121
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 }
Simon Glass11b61732015-01-25 08:27:01 -0700131
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200132 if (parent) {
133 size = parent->driver->per_child_platdata_auto_alloc_size;
Simon Glass57f95402015-01-25 08:27:02 -0700134 if (!size) {
135 size = parent->uclass->uc_drv->
136 per_child_platdata_auto_alloc_size;
137 }
Simon Glass11b61732015-01-25 08:27:01 -0700138 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;
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200143 goto fail_alloc3;
Simon Glass11b61732015-01-25 08:27:01 -0700144 }
145 }
146 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700147
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)
Simon Glass4ebe01b2015-01-25 08:26:59 -0700154 goto fail_uclass_bind;
Simon Glassdd6ab882014-02-26 15:59:18 -0700155
156 /* if we fail to bind we remove device from successors and free it */
157 if (drv->bind) {
158 ret = drv->bind(dev);
Simon Glass4ebe01b2015-01-25 08:26:59 -0700159 if (ret)
Simon Glassdd6ab882014-02-26 15:59:18 -0700160 goto fail_bind;
Simon Glassdd6ab882014-02-26 15:59:18 -0700161 }
Simon Glassa4a51a02015-01-25 08:27:03 -0700162 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 }
Simon Glass286863d2016-01-05 09:30:59 -0700167 if (uc->uc_drv->post_bind) {
168 ret = uc->uc_drv->post_bind(dev);
169 if (ret)
170 goto fail_uclass_post_bind;
171 }
Simon Glassa4a51a02015-01-25 08:27:03 -0700172
Simon Glassdd6ab882014-02-26 15:59:18 -0700173 if (parent)
Masahiro Yamadaf70f39f2017-09-29 12:31:20 +0900174 pr_debug("Bound device %s to %s\n", dev->name, parent->name);
Masahiro Yamadae1cc1f02015-08-27 12:44:28 +0900175 if (devp)
176 *devp = dev;
Simon Glassdd6ab882014-02-26 15:59:18 -0700177
Masahiro Yamadabdbb5dd2015-07-25 21:52:34 +0900178 dev->flags |= DM_FLAG_BOUND;
179
Simon Glassdd6ab882014-02-26 15:59:18 -0700180 return 0;
181
Simon Glass286863d2016-01-05 09:30:59 -0700182fail_uclass_post_bind:
183 /* There is no child unbind() method, so no clean-up required */
Simon Glassa4a51a02015-01-25 08:27:03 -0700184fail_child_post_bind:
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900185 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glasse70a4f42015-02-27 22:06:33 -0700186 if (drv->unbind && drv->unbind(dev)) {
187 dm_warn("unbind() method failed on dev '%s' on error path\n",
188 dev->name);
189 }
Simon Glassa4a51a02015-01-25 08:27:03 -0700190 }
191
Simon Glassdd6ab882014-02-26 15:59:18 -0700192fail_bind:
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900193 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glasse70a4f42015-02-27 22:06:33 -0700194 if (uclass_unbind_device(dev)) {
195 dm_warn("Failed to unbind dev '%s' on error path\n",
196 dev->name);
197 }
Simon Glass4ebe01b2015-01-25 08:26:59 -0700198 }
199fail_uclass_bind:
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900200 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glasse70a4f42015-02-27 22:06:33 -0700201 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 }
Simon Glass11b61732015-01-25 08:27:01 -0700206 }
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200207fail_alloc3:
208 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
209 free(dev->uclass_platdata);
210 dev->uclass_platdata = NULL;
211 }
Simon Glass11b61732015-01-25 08:27:01 -0700212fail_alloc2:
Simon Glassba750492015-01-25 08:27:00 -0700213 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
214 free(dev->platdata);
215 dev->platdata = NULL;
216 }
217fail_alloc1:
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900218 devres_release_all(dev);
219
Simon Glassdd6ab882014-02-26 15:59:18 -0700220 free(dev);
Simon Glass4ebe01b2015-01-25 08:26:59 -0700221
Simon Glassdd6ab882014-02-26 15:59:18 -0700222 return ret;
223}
224
Stephen Warren8c93df12016-05-11 15:26:24 -0600225int device_bind_with_driver_data(struct udevice *parent,
226 const struct driver *drv, const char *name,
Simon Glass322b2902017-05-18 20:09:05 -0600227 ulong driver_data, ofnode node,
Stephen Warren8c93df12016-05-11 15:26:24 -0600228 struct udevice **devp)
229{
Simon Glass322b2902017-05-18 20:09:05 -0600230 return device_bind_common(parent, drv, name, NULL, driver_data, node,
231 0, devp);
Stephen Warren8c93df12016-05-11 15:26:24 -0600232}
233
234int device_bind(struct udevice *parent, const struct driver *drv,
235 const char *name, void *platdata, int of_offset,
236 struct udevice **devp)
237{
Simon Glassb0cf4b32017-05-17 17:18:11 -0600238 return device_bind_common(parent, drv, name, platdata, 0,
239 offset_to_ofnode(of_offset), 0, devp);
Stephen Warren8c93df12016-05-11 15:26:24 -0600240}
241
Simon Glass9eb151e2018-06-11 13:07:15 -0600242int 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
Simon Glassfef72b72014-07-23 06:55:03 -0600250int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
251 const struct driver_info *info, struct udevice **devp)
Simon Glassdd6ab882014-02-26 15:59:18 -0700252{
253 struct driver *drv;
Simon Glassafbf9b82016-07-04 11:58:18 -0600254 uint platdata_size = 0;
Simon Glassdd6ab882014-02-26 15:59:18 -0700255
256 drv = lists_driver_lookup_name(info->name);
257 if (!drv)
258 return -ENOENT;
Simon Glassfef72b72014-07-23 06:55:03 -0600259 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
260 return -EPERM;
Simon Glassdd6ab882014-02-26 15:59:18 -0700261
Simon Glassafbf9b82016-07-04 11:58:18 -0600262#if CONFIG_IS_ENABLED(OF_PLATDATA)
263 platdata_size = info->platdata_size;
264#endif
265 return device_bind_common(parent, drv, info->name,
Simon Glass322b2902017-05-18 20:09:05 -0600266 (void *)info->platdata, 0, ofnode_null(), platdata_size,
267 devp);
Simon Glassdd6ab882014-02-26 15:59:18 -0700268}
269
Simon Glass825d3f92015-03-25 12:21:53 -0600270static void *alloc_priv(int size, uint flags)
271{
272 void *priv;
273
274 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
Faiz Abbas03020a92017-09-19 16:53:50 +0530275 size = ROUND(size, ARCH_DMA_MINALIGN);
Simon Glass825d3f92015-03-25 12:21:53 -0600276 priv = memalign(ARCH_DMA_MINALIGN, size);
Simon Glass27bc9b12017-04-04 13:00:19 -0600277 if (priv) {
Simon Glass825d3f92015-03-25 12:21:53 -0600278 memset(priv, '\0', size);
Simon Glass27bc9b12017-04-04 13:00:19 -0600279
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 }
Simon Glass825d3f92015-03-25 12:21:53 -0600307 } else {
308 priv = calloc(1, size);
309 }
310
311 return priv;
312}
313
Simon Glass6142d752016-01-25 14:58:42 -0700314int device_probe(struct udevice *dev)
Simon Glassdd6ab882014-02-26 15:59:18 -0700315{
Simon Glassa626dff2015-03-25 12:21:54 -0600316 const struct driver *drv;
Simon Glassdd6ab882014-02-26 15:59:18 -0700317 int size = 0;
318 int ret;
Simon Glassdb6f0202014-07-23 06:55:12 -0600319 int seq;
Simon Glassdd6ab882014-02-26 15:59:18 -0700320
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
Bin Meng82cdd782015-08-24 01:14:02 -0700330 /* Allocate private data if requested and not reentered */
331 if (drv->priv_auto_alloc_size && !dev->priv) {
Simon Glass825d3f92015-03-25 12:21:53 -0600332 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
Simon Glassdd6ab882014-02-26 15:59:18 -0700333 if (!dev->priv) {
334 ret = -ENOMEM;
335 goto fail;
336 }
337 }
Bin Meng82cdd782015-08-24 01:14:02 -0700338 /* Allocate private data if requested and not reentered */
Simon Glassdd6ab882014-02-26 15:59:18 -0700339 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
Bin Meng82cdd782015-08-24 01:14:02 -0700340 if (size && !dev->uclass_priv) {
Simon Glass7ebd13d2018-10-01 12:22:05 -0600341 dev->uclass_priv = alloc_priv(size,
342 dev->uclass->uc_drv->flags);
Simon Glassdd6ab882014-02-26 15:59:18 -0700343 if (!dev->uclass_priv) {
344 ret = -ENOMEM;
345 goto fail;
346 }
347 }
348
349 /* Ensure all parents are probed */
350 if (dev->parent) {
Simon Glass60d971b2014-07-23 06:55:20 -0600351 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassc23b4282015-01-25 08:27:06 -0700352 if (!size) {
353 size = dev->parent->uclass->uc_drv->
354 per_child_auto_alloc_size;
355 }
Bin Meng82cdd782015-08-24 01:14:02 -0700356 if (size && !dev->parent_priv) {
Simon Glass825d3f92015-03-25 12:21:53 -0600357 dev->parent_priv = alloc_priv(size, drv->flags);
Simon Glass60d971b2014-07-23 06:55:20 -0600358 if (!dev->parent_priv) {
359 ret = -ENOMEM;
360 goto fail;
361 }
362 }
363
Simon Glassdd6ab882014-02-26 15:59:18 -0700364 ret = device_probe(dev->parent);
365 if (ret)
366 goto fail;
Bin Meng82cdd782015-08-24 01:14:02 -0700367
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;
Simon Glassdd6ab882014-02-26 15:59:18 -0700376 }
Simon Glassdb6f0202014-07-23 06:55:12 -0600377
378 seq = uclass_resolve_seq(dev);
379 if (seq < 0) {
380 ret = seq;
381 goto fail;
382 }
383 dev->seq = seq;
Simon Glassdd6ab882014-02-26 15:59:18 -0700384
Simon Glass8b04e732015-03-25 12:21:56 -0600385 dev->flags |= DM_FLAG_ACTIVATED;
386
Simon Glassbb53bda2015-09-12 08:45:19 -0600387 /*
388 * Process pinctrl for everything except the root device, and
Simon Glass27ce9622016-01-21 19:43:25 -0700389 * 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.
Simon Glassbb53bda2015-09-12 08:45:19 -0600392 */
Simon Glass27ce9622016-01-21 19:43:25 -0700393 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
Simon Glassbb53bda2015-09-12 08:45:19 -0600394 pinctrl_select_state(dev, "default");
Masahiro Yamadaf8efa632015-08-27 12:44:29 +0900395
Anatolij Gustschin63a34672019-07-14 21:11:01 +0200396 if (CONFIG_IS_ENABLED(POWER_DOMAIN) && dev->parent &&
Lokesh Vutlac10e52b2019-09-27 13:48:12 +0530397 (device_get_uclass_id(dev) != UCLASS_POWER_DOMAIN) &&
398 !(drv->flags & DM_FLAG_DEFAULT_PD_CTRL_OFF)) {
Peng Fand2201112019-09-17 09:29:22 +0000399 ret = dev_power_domain_on(dev);
400 if (ret)
401 goto fail;
Peng Fan6fba32d2018-07-27 10:20:38 +0800402 }
403
Simon Glass9c1f3822015-03-05 12:25:22 -0700404 ret = uclass_pre_probe_device(dev);
Simon Glass5104b982015-01-25 08:27:10 -0700405 if (ret)
406 goto fail;
407
Simon Glassd45560d2014-07-23 06:55:21 -0600408 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
Simon Glassa91e48b2019-09-25 08:55:53 -0600414 if (drv->ofdata_to_platdata &&
415 (CONFIG_IS_ENABLED(OF_PLATDATA) || dev_has_of_node(dev))) {
Simon Glassdd6ab882014-02-26 15:59:18 -0700416 ret = drv->ofdata_to_platdata(dev);
417 if (ret)
418 goto fail;
419 }
420
Bin Meng513cf402019-07-05 09:23:16 -0700421 /* 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 */
Jean-Jacques Hiblot9601f322019-10-22 14:00:06 +0200427 ret = clk_set_defaults(dev, 0);
Bin Meng513cf402019-07-05 09:23:16 -0700428 if (ret)
429 goto fail;
430 }
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100431
Simon Glassdd6ab882014-02-26 15:59:18 -0700432 if (drv->probe) {
433 ret = drv->probe(dev);
Simon Glass9046dec2019-12-29 21:19:16 -0700434 if (ret)
Simon Glassdd6ab882014-02-26 15:59:18 -0700435 goto fail;
436 }
437
Simon Glassdd6ab882014-02-26 15:59:18 -0700438 ret = uclass_post_probe_device(dev);
Simon Glass8b04e732015-03-25 12:21:56 -0600439 if (ret)
Simon Glassdd6ab882014-02-26 15:59:18 -0700440 goto fail_uclass;
Simon Glassdd6ab882014-02-26 15:59:18 -0700441
Peng Fan7cf58dd2016-03-12 13:17:38 +0800442 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
443 pinctrl_select_state(dev, "default");
444
Simon Glassdd6ab882014-02-26 15:59:18 -0700445 return 0;
446fail_uclass:
Stefan Roese80b5bc92017-03-20 12:51:48 +0100447 if (device_remove(dev, DM_REMOVE_NORMAL)) {
Simon Glassdd6ab882014-02-26 15:59:18 -0700448 dm_warn("%s: Device '%s' failed to remove on error path\n",
449 __func__, dev->name);
450 }
451fail:
Simon Glass8b04e732015-03-25 12:21:56 -0600452 dev->flags &= ~DM_FLAG_ACTIVATED;
453
Simon Glassdb6f0202014-07-23 06:55:12 -0600454 dev->seq = -1;
Simon Glassdd6ab882014-02-26 15:59:18 -0700455 device_free(dev);
456
457 return ret;
458}
459
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600460void *dev_get_platdata(const struct udevice *dev)
Simon Glassdd6ab882014-02-26 15:59:18 -0700461{
462 if (!dev) {
Simon Glassdf1e0722014-12-10 08:55:56 -0700463 dm_warn("%s: null device\n", __func__);
Simon Glassdd6ab882014-02-26 15:59:18 -0700464 return NULL;
465 }
466
467 return dev->platdata;
468}
469
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600470void *dev_get_parent_platdata(const struct udevice *dev)
Simon Glass11b61732015-01-25 08:27:01 -0700471{
472 if (!dev) {
Simon Glasscdfc5052015-07-06 16:47:40 -0600473 dm_warn("%s: null device\n", __func__);
Simon Glass11b61732015-01-25 08:27:01 -0700474 return NULL;
475 }
476
477 return dev->parent_platdata;
478}
479
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600480void *dev_get_uclass_platdata(const struct udevice *dev)
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200481{
482 if (!dev) {
Simon Glasscdfc5052015-07-06 16:47:40 -0600483 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200484 return NULL;
485 }
486
487 return dev->uclass_platdata;
488}
489
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600490void *dev_get_priv(const struct udevice *dev)
Simon Glassdd6ab882014-02-26 15:59:18 -0700491{
492 if (!dev) {
Simon Glassdf1e0722014-12-10 08:55:56 -0700493 dm_warn("%s: null device\n", __func__);
Simon Glassdd6ab882014-02-26 15:59:18 -0700494 return NULL;
495 }
496
497 return dev->priv;
498}
Simon Glass48d4e292014-07-23 06:55:19 -0600499
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600500void *dev_get_uclass_priv(const struct udevice *dev)
Simon Glassde0977b2015-03-05 12:25:20 -0700501{
502 if (!dev) {
503 dm_warn("%s: null device\n", __func__);
504 return NULL;
505 }
506
507 return dev->uclass_priv;
508}
509
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600510void *dev_get_parent_priv(const struct udevice *dev)
Simon Glass60d971b2014-07-23 06:55:20 -0600511{
512 if (!dev) {
Simon Glassdf1e0722014-12-10 08:55:56 -0700513 dm_warn("%s: null device\n", __func__);
Simon Glass60d971b2014-07-23 06:55:20 -0600514 return NULL;
515 }
516
517 return dev->parent_priv;
518}
519
Simon Glass48d4e292014-07-23 06:55:19 -0600520static 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
Marek Vasut7f18c342019-08-31 18:03:28 +0200535#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Mario Six3bedfbe2018-06-26 08:46:50 +0200536/**
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 */
545static 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}
Marek Vasut7f18c342019-08-31 18:03:28 +0200562#endif
Mario Six3bedfbe2018-06-26 08:46:50 +0200563
Simon Glass48d4e292014-07-23 06:55:19 -0600564int 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
Lokesh Vutlafa45a082019-09-04 16:01:26 +0530576int 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
Simon Glass48d4e292014-07-23 06:55:19 -0600587int 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
607int 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
625int 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) {
Simon Glassdd79d6e2017-01-17 16:52:55 -0700633 if (dev_of_offset(dev) == of_offset) {
Simon Glass48d4e292014-07-23 06:55:19 -0600634 *devp = dev;
635 return 0;
636 }
637 }
638
639 return -ENODEV;
640}
641
Simon Glass861bc9f2015-06-23 15:38:38 -0600642int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass48d4e292014-07-23 06:55:19 -0600643 struct udevice **devp)
644{
645 struct udevice *dev;
646 int ret;
647
648 *devp = NULL;
Simon Glass861bc9f2015-06-23 15:38:38 -0600649 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass48d4e292014-07-23 06:55:19 -0600650 return device_get_device_tail(dev, ret, devp);
651}
Simon Glass44da7352014-10-13 23:41:49 -0600652
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200653static struct udevice *_device_find_global_by_ofnode(struct udevice *parent,
654 ofnode ofnode)
Simon Glassae2efac2015-06-23 15:38:37 -0600655{
656 struct udevice *dev, *found;
657
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200658 if (ofnode_equal(dev_ofnode(parent), ofnode))
Simon Glassae2efac2015-06-23 15:38:37 -0600659 return parent;
660
661 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200662 found = _device_find_global_by_ofnode(dev, ofnode);
Simon Glassae2efac2015-06-23 15:38:37 -0600663 if (found)
664 return found;
665 }
666
667 return NULL;
668}
669
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200670int 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
677int device_get_global_by_ofnode(ofnode ofnode, struct udevice **devp)
Simon Glassae2efac2015-06-23 15:38:37 -0600678{
679 struct udevice *dev;
680
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200681 dev = _device_find_global_by_ofnode(gd->dm_root, ofnode);
Simon Glassae2efac2015-06-23 15:38:37 -0600682 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
683}
684
Simon Glass44da7352014-10-13 23:41:49 -0600685int 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
697int 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}
Simon Glass70c3a0e2014-11-11 10:46:18 -0700711
Simon Glassb775e872018-10-01 12:22:07 -0600712int 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
Simon Glassa11341a2018-11-18 08:14:31 -0700730int 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
747int 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
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600764struct udevice *dev_get_parent(const struct udevice *child)
Simon Glass43f488a2014-11-11 10:46:19 -0700765{
766 return child->parent;
767}
768
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600769ulong dev_get_driver_data(const struct udevice *dev)
Simon Glass70c3a0e2014-11-11 10:46:18 -0700770{
Simon Glass46227bd2015-03-25 12:21:55 -0600771 return dev->driver_data;
Simon Glass70c3a0e2014-11-11 10:46:18 -0700772}
Simon Glass98fd5d12015-01-25 08:27:04 -0700773
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600774const void *dev_get_driver_ops(const struct udevice *dev)
Przemyslaw Marczakd3ef0d72015-04-15 13:07:24 +0200775{
776 if (!dev || !dev->driver->ops)
777 return NULL;
778
779 return dev->driver->ops;
780}
781
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600782enum uclass_id device_get_uclass_id(const struct udevice *dev)
Simon Glass98fd5d12015-01-25 08:27:04 -0700783{
784 return dev->uclass->uc_drv->id;
785}
Peng Fan99b72352015-02-10 14:46:32 +0800786
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600787const char *dev_get_uclass_name(const struct udevice *dev)
Przemyslaw Marczak5ed2e422015-04-15 13:07:25 +0200788{
789 if (!dev)
790 return NULL;
791
792 return dev->uclass->uc_drv->name;
793}
794
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600795bool device_has_children(const struct udevice *dev)
Simon Glass40f829a2015-03-25 12:21:57 -0600796{
797 return !list_empty(&dev->child_head);
798}
799
800bool 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
814bool 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}
Simon Glasse3b23e22015-07-30 13:40:39 -0600822
Simon Glass7760ba22016-05-01 13:52:23 -0600823void device_set_name_alloced(struct udevice *dev)
824{
Simon Glass2d4c7dc2016-07-04 11:58:15 -0600825 dev->flags |= DM_FLAG_NAME_ALLOCED;
Simon Glass7760ba22016-05-01 13:52:23 -0600826}
827
Simon Glasse3b23e22015-07-30 13:40:39 -0600828int device_set_name(struct udevice *dev, const char *name)
829{
830 name = strdup(name);
831 if (!name)
832 return -ENOMEM;
833 dev->name = name;
Simon Glass7760ba22016-05-01 13:52:23 -0600834 device_set_name_alloced(dev);
Simon Glasse3b23e22015-07-30 13:40:39 -0600835
836 return 0;
837}
Mugunthan V N4666bd92016-04-28 15:36:02 +0530838
Marek Vasut7f18c342019-08-31 18:03:28 +0200839#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass54cbcc82017-05-18 20:08:57 -0600840bool device_is_compatible(struct udevice *dev, const char *compat)
Mugunthan V N4666bd92016-04-28 15:36:02 +0530841{
Masahiro Yamada9349bcc2018-04-19 12:14:02 +0900842 return ofnode_device_is_compatible(dev_ofnode(dev), compat);
Mugunthan V N4666bd92016-04-28 15:36:02 +0530843}
844
845bool 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}
Mario Six3bedfbe2018-06-26 08:46:50 +0200851
852int 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
882int 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
Bin Meng9a9b0742018-10-10 22:06:58 -0700900 return lists_bind_fdt(parent, node, NULL, false);
Mario Six3bedfbe2018-06-26 08:46:50 +0200901}
Marek Vasut7f18c342019-08-31 18:03:28 +0200902#endif