blob: f0c23053ebbb03ce14454d1dbef8ce2b6cce5df8 [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
Simon Glassa8d8f162019-12-29 21:19:18 -0700349 /* Allocate parent data for this child */
Simon Glassdd6ab882014-02-26 15:59:18 -0700350 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 }
Simon Glassa8d8f162019-12-29 21:19:18 -0700363 }
364
365 if (drv->ofdata_to_platdata &&
366 (CONFIG_IS_ENABLED(OF_PLATDATA) || dev_has_of_node(dev))) {
367 ret = drv->ofdata_to_platdata(dev);
368 if (ret)
369 goto fail;
370 }
Simon Glass60d971b2014-07-23 06:55:20 -0600371
Simon Glassa8d8f162019-12-29 21:19:18 -0700372 /* Ensure all parents are probed */
373 if (dev->parent) {
Simon Glassdd6ab882014-02-26 15:59:18 -0700374 ret = device_probe(dev->parent);
375 if (ret)
376 goto fail;
Bin Meng82cdd782015-08-24 01:14:02 -0700377
378 /*
379 * The device might have already been probed during
380 * the call to device_probe() on its parent device
381 * (e.g. PCI bridge devices). Test the flags again
382 * so that we don't mess up the device.
383 */
384 if (dev->flags & DM_FLAG_ACTIVATED)
385 return 0;
Simon Glassdd6ab882014-02-26 15:59:18 -0700386 }
Simon Glassdb6f0202014-07-23 06:55:12 -0600387
388 seq = uclass_resolve_seq(dev);
389 if (seq < 0) {
390 ret = seq;
391 goto fail;
392 }
393 dev->seq = seq;
Simon Glassdd6ab882014-02-26 15:59:18 -0700394
Simon Glass8b04e732015-03-25 12:21:56 -0600395 dev->flags |= DM_FLAG_ACTIVATED;
396
Simon Glassbb53bda2015-09-12 08:45:19 -0600397 /*
398 * Process pinctrl for everything except the root device, and
Simon Glass27ce9622016-01-21 19:43:25 -0700399 * continue regardless of the result of pinctrl. Don't process pinctrl
400 * settings for pinctrl devices since the device may not yet be
401 * probed.
Simon Glassbb53bda2015-09-12 08:45:19 -0600402 */
Simon Glass27ce9622016-01-21 19:43:25 -0700403 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
Simon Glassbb53bda2015-09-12 08:45:19 -0600404 pinctrl_select_state(dev, "default");
Masahiro Yamadaf8efa632015-08-27 12:44:29 +0900405
Anatolij Gustschin63a34672019-07-14 21:11:01 +0200406 if (CONFIG_IS_ENABLED(POWER_DOMAIN) && dev->parent &&
Lokesh Vutlac10e52b2019-09-27 13:48:12 +0530407 (device_get_uclass_id(dev) != UCLASS_POWER_DOMAIN) &&
408 !(drv->flags & DM_FLAG_DEFAULT_PD_CTRL_OFF)) {
Peng Fand2201112019-09-17 09:29:22 +0000409 ret = dev_power_domain_on(dev);
410 if (ret)
411 goto fail;
Peng Fan6fba32d2018-07-27 10:20:38 +0800412 }
413
Simon Glass9c1f3822015-03-05 12:25:22 -0700414 ret = uclass_pre_probe_device(dev);
Simon Glass5104b982015-01-25 08:27:10 -0700415 if (ret)
416 goto fail;
417
Simon Glassd45560d2014-07-23 06:55:21 -0600418 if (dev->parent && dev->parent->driver->child_pre_probe) {
419 ret = dev->parent->driver->child_pre_probe(dev);
420 if (ret)
421 goto fail;
422 }
423
Bin Meng513cf402019-07-05 09:23:16 -0700424 /* Only handle devices that have a valid ofnode */
425 if (dev_of_valid(dev)) {
426 /*
427 * Process 'assigned-{clocks/clock-parents/clock-rates}'
428 * properties
429 */
Jean-Jacques Hiblot9601f322019-10-22 14:00:06 +0200430 ret = clk_set_defaults(dev, 0);
Bin Meng513cf402019-07-05 09:23:16 -0700431 if (ret)
432 goto fail;
433 }
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100434
Simon Glassdd6ab882014-02-26 15:59:18 -0700435 if (drv->probe) {
436 ret = drv->probe(dev);
Simon Glass9046dec2019-12-29 21:19:16 -0700437 if (ret)
Simon Glassdd6ab882014-02-26 15:59:18 -0700438 goto fail;
439 }
440
Simon Glassdd6ab882014-02-26 15:59:18 -0700441 ret = uclass_post_probe_device(dev);
Simon Glass8b04e732015-03-25 12:21:56 -0600442 if (ret)
Simon Glassdd6ab882014-02-26 15:59:18 -0700443 goto fail_uclass;
Simon Glassdd6ab882014-02-26 15:59:18 -0700444
Peng Fan7cf58dd2016-03-12 13:17:38 +0800445 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
446 pinctrl_select_state(dev, "default");
447
Simon Glassdd6ab882014-02-26 15:59:18 -0700448 return 0;
449fail_uclass:
Stefan Roese80b5bc92017-03-20 12:51:48 +0100450 if (device_remove(dev, DM_REMOVE_NORMAL)) {
Simon Glassdd6ab882014-02-26 15:59:18 -0700451 dm_warn("%s: Device '%s' failed to remove on error path\n",
452 __func__, dev->name);
453 }
454fail:
Simon Glass8b04e732015-03-25 12:21:56 -0600455 dev->flags &= ~DM_FLAG_ACTIVATED;
456
Simon Glassdb6f0202014-07-23 06:55:12 -0600457 dev->seq = -1;
Simon Glassdd6ab882014-02-26 15:59:18 -0700458 device_free(dev);
459
460 return ret;
461}
462
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600463void *dev_get_platdata(const struct udevice *dev)
Simon Glassdd6ab882014-02-26 15:59:18 -0700464{
465 if (!dev) {
Simon Glassdf1e0722014-12-10 08:55:56 -0700466 dm_warn("%s: null device\n", __func__);
Simon Glassdd6ab882014-02-26 15:59:18 -0700467 return NULL;
468 }
469
470 return dev->platdata;
471}
472
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600473void *dev_get_parent_platdata(const struct udevice *dev)
Simon Glass11b61732015-01-25 08:27:01 -0700474{
475 if (!dev) {
Simon Glasscdfc5052015-07-06 16:47:40 -0600476 dm_warn("%s: null device\n", __func__);
Simon Glass11b61732015-01-25 08:27:01 -0700477 return NULL;
478 }
479
480 return dev->parent_platdata;
481}
482
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600483void *dev_get_uclass_platdata(const struct udevice *dev)
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200484{
485 if (!dev) {
Simon Glasscdfc5052015-07-06 16:47:40 -0600486 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200487 return NULL;
488 }
489
490 return dev->uclass_platdata;
491}
492
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600493void *dev_get_priv(const struct udevice *dev)
Simon Glassdd6ab882014-02-26 15:59:18 -0700494{
495 if (!dev) {
Simon Glassdf1e0722014-12-10 08:55:56 -0700496 dm_warn("%s: null device\n", __func__);
Simon Glassdd6ab882014-02-26 15:59:18 -0700497 return NULL;
498 }
499
500 return dev->priv;
501}
Simon Glass48d4e292014-07-23 06:55:19 -0600502
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600503void *dev_get_uclass_priv(const struct udevice *dev)
Simon Glassde0977b2015-03-05 12:25:20 -0700504{
505 if (!dev) {
506 dm_warn("%s: null device\n", __func__);
507 return NULL;
508 }
509
510 return dev->uclass_priv;
511}
512
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600513void *dev_get_parent_priv(const struct udevice *dev)
Simon Glass60d971b2014-07-23 06:55:20 -0600514{
515 if (!dev) {
Simon Glassdf1e0722014-12-10 08:55:56 -0700516 dm_warn("%s: null device\n", __func__);
Simon Glass60d971b2014-07-23 06:55:20 -0600517 return NULL;
518 }
519
520 return dev->parent_priv;
521}
522
Simon Glass48d4e292014-07-23 06:55:19 -0600523static int device_get_device_tail(struct udevice *dev, int ret,
524 struct udevice **devp)
525{
526 if (ret)
527 return ret;
528
529 ret = device_probe(dev);
530 if (ret)
531 return ret;
532
533 *devp = dev;
534
535 return 0;
536}
537
Marek Vasut7f18c342019-08-31 18:03:28 +0200538#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Mario Six3bedfbe2018-06-26 08:46:50 +0200539/**
540 * device_find_by_ofnode() - Return device associated with given ofnode
541 *
542 * The returned device is *not* activated.
543 *
544 * @node: The ofnode for which a associated device should be looked up
545 * @devp: Pointer to structure to hold the found device
546 * Return: 0 if OK, -ve on error
547 */
548static int device_find_by_ofnode(ofnode node, struct udevice **devp)
549{
550 struct uclass *uc;
551 struct udevice *dev;
552 int ret;
553
554 list_for_each_entry(uc, &gd->uclass_root, sibling_node) {
555 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node,
556 &dev);
557 if (!ret || dev) {
558 *devp = dev;
559 return 0;
560 }
561 }
562
563 return -ENODEV;
564}
Marek Vasut7f18c342019-08-31 18:03:28 +0200565#endif
Mario Six3bedfbe2018-06-26 08:46:50 +0200566
Simon Glass48d4e292014-07-23 06:55:19 -0600567int device_get_child(struct udevice *parent, int index, struct udevice **devp)
568{
569 struct udevice *dev;
570
571 list_for_each_entry(dev, &parent->child_head, sibling_node) {
572 if (!index--)
573 return device_get_device_tail(dev, 0, devp);
574 }
575
576 return -ENODEV;
577}
578
Lokesh Vutlafa45a082019-09-04 16:01:26 +0530579int device_get_child_count(struct udevice *parent)
580{
581 struct udevice *dev;
582 int count = 0;
583
584 list_for_each_entry(dev, &parent->child_head, sibling_node)
585 count++;
586
587 return count;
588}
589
Simon Glass48d4e292014-07-23 06:55:19 -0600590int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
591 bool find_req_seq, struct udevice **devp)
592{
593 struct udevice *dev;
594
595 *devp = NULL;
596 if (seq_or_req_seq == -1)
597 return -ENODEV;
598
599 list_for_each_entry(dev, &parent->child_head, sibling_node) {
600 if ((find_req_seq ? dev->req_seq : dev->seq) ==
601 seq_or_req_seq) {
602 *devp = dev;
603 return 0;
604 }
605 }
606
607 return -ENODEV;
608}
609
610int device_get_child_by_seq(struct udevice *parent, int seq,
611 struct udevice **devp)
612{
613 struct udevice *dev;
614 int ret;
615
616 *devp = NULL;
617 ret = device_find_child_by_seq(parent, seq, false, &dev);
618 if (ret == -ENODEV) {
619 /*
620 * We didn't find it in probed devices. See if there is one
621 * that will request this seq if probed.
622 */
623 ret = device_find_child_by_seq(parent, seq, true, &dev);
624 }
625 return device_get_device_tail(dev, ret, devp);
626}
627
628int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
629 struct udevice **devp)
630{
631 struct udevice *dev;
632
633 *devp = NULL;
634
635 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Simon Glassdd79d6e2017-01-17 16:52:55 -0700636 if (dev_of_offset(dev) == of_offset) {
Simon Glass48d4e292014-07-23 06:55:19 -0600637 *devp = dev;
638 return 0;
639 }
640 }
641
642 return -ENODEV;
643}
644
Simon Glass861bc9f2015-06-23 15:38:38 -0600645int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass48d4e292014-07-23 06:55:19 -0600646 struct udevice **devp)
647{
648 struct udevice *dev;
649 int ret;
650
651 *devp = NULL;
Simon Glass861bc9f2015-06-23 15:38:38 -0600652 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass48d4e292014-07-23 06:55:19 -0600653 return device_get_device_tail(dev, ret, devp);
654}
Simon Glass44da7352014-10-13 23:41:49 -0600655
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200656static struct udevice *_device_find_global_by_ofnode(struct udevice *parent,
657 ofnode ofnode)
Simon Glassae2efac2015-06-23 15:38:37 -0600658{
659 struct udevice *dev, *found;
660
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200661 if (ofnode_equal(dev_ofnode(parent), ofnode))
Simon Glassae2efac2015-06-23 15:38:37 -0600662 return parent;
663
664 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200665 found = _device_find_global_by_ofnode(dev, ofnode);
Simon Glassae2efac2015-06-23 15:38:37 -0600666 if (found)
667 return found;
668 }
669
670 return NULL;
671}
672
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200673int device_find_global_by_ofnode(ofnode ofnode, struct udevice **devp)
674{
675 *devp = _device_find_global_by_ofnode(gd->dm_root, ofnode);
676
677 return *devp ? 0 : -ENOENT;
678}
679
680int device_get_global_by_ofnode(ofnode ofnode, struct udevice **devp)
Simon Glassae2efac2015-06-23 15:38:37 -0600681{
682 struct udevice *dev;
683
Jean-Jacques Hiblota7b0d6a2018-08-09 16:17:44 +0200684 dev = _device_find_global_by_ofnode(gd->dm_root, ofnode);
Simon Glassae2efac2015-06-23 15:38:37 -0600685 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
686}
687
Simon Glass44da7352014-10-13 23:41:49 -0600688int device_find_first_child(struct udevice *parent, struct udevice **devp)
689{
690 if (list_empty(&parent->child_head)) {
691 *devp = NULL;
692 } else {
693 *devp = list_first_entry(&parent->child_head, struct udevice,
694 sibling_node);
695 }
696
697 return 0;
698}
699
700int device_find_next_child(struct udevice **devp)
701{
702 struct udevice *dev = *devp;
703 struct udevice *parent = dev->parent;
704
705 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
706 *devp = NULL;
707 } else {
708 *devp = list_entry(dev->sibling_node.next, struct udevice,
709 sibling_node);
710 }
711
712 return 0;
713}
Simon Glass70c3a0e2014-11-11 10:46:18 -0700714
Simon Glassb775e872018-10-01 12:22:07 -0600715int device_find_first_inactive_child(struct udevice *parent,
716 enum uclass_id uclass_id,
717 struct udevice **devp)
718{
719 struct udevice *dev;
720
721 *devp = NULL;
722 list_for_each_entry(dev, &parent->child_head, sibling_node) {
723 if (!device_active(dev) &&
724 device_get_uclass_id(dev) == uclass_id) {
725 *devp = dev;
726 return 0;
727 }
728 }
729
730 return -ENODEV;
731}
732
Simon Glassa11341a2018-11-18 08:14:31 -0700733int device_find_first_child_by_uclass(struct udevice *parent,
734 enum uclass_id uclass_id,
735 struct udevice **devp)
736{
737 struct udevice *dev;
738
739 *devp = NULL;
740 list_for_each_entry(dev, &parent->child_head, sibling_node) {
741 if (device_get_uclass_id(dev) == uclass_id) {
742 *devp = dev;
743 return 0;
744 }
745 }
746
747 return -ENODEV;
748}
749
750int device_find_child_by_name(struct udevice *parent, const char *name,
751 struct udevice **devp)
752{
753 struct udevice *dev;
754
755 *devp = NULL;
756
757 list_for_each_entry(dev, &parent->child_head, sibling_node) {
758 if (!strcmp(dev->name, name)) {
759 *devp = dev;
760 return 0;
761 }
762 }
763
764 return -ENODEV;
765}
766
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600767struct udevice *dev_get_parent(const struct udevice *child)
Simon Glass43f488a2014-11-11 10:46:19 -0700768{
769 return child->parent;
770}
771
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600772ulong dev_get_driver_data(const struct udevice *dev)
Simon Glass70c3a0e2014-11-11 10:46:18 -0700773{
Simon Glass46227bd2015-03-25 12:21:55 -0600774 return dev->driver_data;
Simon Glass70c3a0e2014-11-11 10:46:18 -0700775}
Simon Glass98fd5d12015-01-25 08:27:04 -0700776
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600777const void *dev_get_driver_ops(const struct udevice *dev)
Przemyslaw Marczakd3ef0d72015-04-15 13:07:24 +0200778{
779 if (!dev || !dev->driver->ops)
780 return NULL;
781
782 return dev->driver->ops;
783}
784
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600785enum uclass_id device_get_uclass_id(const struct udevice *dev)
Simon Glass98fd5d12015-01-25 08:27:04 -0700786{
787 return dev->uclass->uc_drv->id;
788}
Peng Fan99b72352015-02-10 14:46:32 +0800789
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600790const char *dev_get_uclass_name(const struct udevice *dev)
Przemyslaw Marczak5ed2e422015-04-15 13:07:25 +0200791{
792 if (!dev)
793 return NULL;
794
795 return dev->uclass->uc_drv->name;
796}
797
Simon Glass2e5e5ec2018-10-01 12:22:06 -0600798bool device_has_children(const struct udevice *dev)
Simon Glass40f829a2015-03-25 12:21:57 -0600799{
800 return !list_empty(&dev->child_head);
801}
802
803bool device_has_active_children(struct udevice *dev)
804{
805 struct udevice *child;
806
807 for (device_find_first_child(dev, &child);
808 child;
809 device_find_next_child(&child)) {
810 if (device_active(child))
811 return true;
812 }
813
814 return false;
815}
816
817bool device_is_last_sibling(struct udevice *dev)
818{
819 struct udevice *parent = dev->parent;
820
821 if (!parent)
822 return false;
823 return list_is_last(&dev->sibling_node, &parent->child_head);
824}
Simon Glasse3b23e22015-07-30 13:40:39 -0600825
Simon Glass7760ba22016-05-01 13:52:23 -0600826void device_set_name_alloced(struct udevice *dev)
827{
Simon Glass2d4c7dc2016-07-04 11:58:15 -0600828 dev->flags |= DM_FLAG_NAME_ALLOCED;
Simon Glass7760ba22016-05-01 13:52:23 -0600829}
830
Simon Glasse3b23e22015-07-30 13:40:39 -0600831int device_set_name(struct udevice *dev, const char *name)
832{
833 name = strdup(name);
834 if (!name)
835 return -ENOMEM;
836 dev->name = name;
Simon Glass7760ba22016-05-01 13:52:23 -0600837 device_set_name_alloced(dev);
Simon Glasse3b23e22015-07-30 13:40:39 -0600838
839 return 0;
840}
Mugunthan V N4666bd92016-04-28 15:36:02 +0530841
Marek Vasut7f18c342019-08-31 18:03:28 +0200842#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass54cbcc82017-05-18 20:08:57 -0600843bool device_is_compatible(struct udevice *dev, const char *compat)
Mugunthan V N4666bd92016-04-28 15:36:02 +0530844{
Masahiro Yamada9349bcc2018-04-19 12:14:02 +0900845 return ofnode_device_is_compatible(dev_ofnode(dev), compat);
Mugunthan V N4666bd92016-04-28 15:36:02 +0530846}
847
848bool of_machine_is_compatible(const char *compat)
849{
850 const void *fdt = gd->fdt_blob;
851
852 return !fdt_node_check_compatible(fdt, 0, compat);
853}
Mario Six3bedfbe2018-06-26 08:46:50 +0200854
855int dev_disable_by_path(const char *path)
856{
857 struct uclass *uc;
858 ofnode node = ofnode_path(path);
859 struct udevice *dev;
860 int ret = 1;
861
862 if (!of_live_active())
863 return -ENOSYS;
864
865 list_for_each_entry(uc, &gd->uclass_root, sibling_node) {
866 ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, &dev);
867 if (!ret)
868 break;
869 }
870
871 if (ret)
872 return ret;
873
874 ret = device_remove(dev, DM_REMOVE_NORMAL);
875 if (ret)
876 return ret;
877
878 ret = device_unbind(dev);
879 if (ret)
880 return ret;
881
882 return ofnode_set_enabled(node, false);
883}
884
885int dev_enable_by_path(const char *path)
886{
887 ofnode node = ofnode_path(path);
888 ofnode pnode = ofnode_get_parent(node);
889 struct udevice *parent;
890 int ret = 1;
891
892 if (!of_live_active())
893 return -ENOSYS;
894
895 ret = device_find_by_ofnode(pnode, &parent);
896 if (ret)
897 return ret;
898
899 ret = ofnode_set_enabled(node, true);
900 if (ret)
901 return ret;
902
Bin Meng9a9b0742018-10-10 22:06:58 -0700903 return lists_bind_fdt(parent, node, NULL, false);
Mario Six3bedfbe2018-06-26 08:46:50 +0200904}
Marek Vasut7f18c342019-08-31 18:03:28 +0200905#endif