blob: 940a153c5830aadd57367da88314cbf11e390d02 [file] [log] [blame]
Simon Glassdd6ab882014-02-26 15:59:18 -07001/*
2 * Device manager
3 *
4 * Copyright (c) 2013 Google, Inc
5 *
6 * (C) Copyright 2012
7 * Pavel Herrmann <morpheus.ibis@gmail.com>
8 *
9 * SPDX-License-Identifier: GPL-2.0+
10 */
11
12#include <common.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>
30
Simon Glassdb6f0202014-07-23 06:55:12 -060031DECLARE_GLOBAL_DATA_PTR;
32
Stephen Warren8c93df12016-05-11 15:26:24 -060033static int device_bind_common(struct udevice *parent, const struct driver *drv,
34 const char *name, void *platdata,
Simon Glassb0cf4b32017-05-17 17:18:11 -060035 ulong driver_data, ofnode node,
Simon Glassafbf9b82016-07-04 11:58:18 -060036 uint of_platdata_size, struct udevice **devp)
Simon Glassdd6ab882014-02-26 15:59:18 -070037{
Heiko Schocherb74fcb42014-05-22 12:43:05 +020038 struct udevice *dev;
Simon Glassdd6ab882014-02-26 15:59:18 -070039 struct uclass *uc;
Przemyslaw Marczakd850e672015-04-15 13:07:18 +020040 int size, ret = 0;
Simon Glassdd6ab882014-02-26 15:59:18 -070041
Masahiro Yamadae1cc1f02015-08-27 12:44:28 +090042 if (devp)
43 *devp = NULL;
Simon Glassdd6ab882014-02-26 15:59:18 -070044 if (!name)
45 return -EINVAL;
46
47 ret = uclass_get(drv->id, &uc);
Simon Glass43313de2015-08-30 16:55:16 -060048 if (ret) {
49 debug("Missing uclass for driver %s\n", drv->name);
Simon Glassdd6ab882014-02-26 15:59:18 -070050 return ret;
Simon Glass43313de2015-08-30 16:55:16 -060051 }
Simon Glassdd6ab882014-02-26 15:59:18 -070052
Heiko Schocherb74fcb42014-05-22 12:43:05 +020053 dev = calloc(1, sizeof(struct udevice));
Simon Glassdd6ab882014-02-26 15:59:18 -070054 if (!dev)
55 return -ENOMEM;
56
57 INIT_LIST_HEAD(&dev->sibling_node);
58 INIT_LIST_HEAD(&dev->child_head);
59 INIT_LIST_HEAD(&dev->uclass_node);
Masahiro Yamada029bfca2015-07-25 21:52:37 +090060#ifdef CONFIG_DEVRES
Masahiro Yamada8b15b162015-07-25 21:52:35 +090061 INIT_LIST_HEAD(&dev->devres_head);
Masahiro Yamada029bfca2015-07-25 21:52:37 +090062#endif
Simon Glassdd6ab882014-02-26 15:59:18 -070063 dev->platdata = platdata;
Stephen Warren8c93df12016-05-11 15:26:24 -060064 dev->driver_data = driver_data;
Simon Glassdd6ab882014-02-26 15:59:18 -070065 dev->name = name;
Simon Glassb0cf4b32017-05-17 17:18:11 -060066 dev->node = node;
Simon Glassdd6ab882014-02-26 15:59:18 -070067 dev->parent = parent;
68 dev->driver = drv;
69 dev->uclass = uc;
Simon Glassdb6f0202014-07-23 06:55:12 -060070
Simon Glassdb6f0202014-07-23 06:55:12 -060071 dev->seq = -1;
Simon Glass0ccb0972015-01-25 08:27:05 -070072 dev->req_seq = -1;
Nathan Rossi7fa6ff42016-01-08 03:00:45 +100073 if (CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_SEQ_ALIAS)) {
Simon Glass1bd3deb2015-02-27 22:06:30 -070074 /*
Stefan Roese9d4ce6b2016-03-16 09:58:01 +010075 * Some devices, such as a SPI bus, I2C bus and serial ports
76 * are numbered using aliases.
77 *
78 * This is just a 'requested' sequence, and will be
79 * resolved (and ->seq updated) when the device is probed.
80 */
Simon Glass1bd3deb2015-02-27 22:06:30 -070081 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
Simon Glassb0cf4b32017-05-17 17:18:11 -060082 if (uc->uc_drv->name && ofnode_valid(node)) {
Simon Glass322b2902017-05-18 20:09:05 -060083 dev_read_alias_seq(dev, &dev->req_seq);
Simon Glass1bd3deb2015-02-27 22:06:30 -070084 }
Simon Glass0ccb0972015-01-25 08:27:05 -070085 }
Simon Glassdb6f0202014-07-23 06:55:12 -060086 }
Simon Glass1bd3deb2015-02-27 22:06:30 -070087
Simon Glassafbf9b82016-07-04 11:58:18 -060088 if (drv->platdata_auto_alloc_size) {
89 bool alloc = !platdata;
90
91 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
92 if (of_platdata_size) {
93 dev->flags |= DM_FLAG_OF_PLATDATA;
94 if (of_platdata_size <
95 drv->platdata_auto_alloc_size)
96 alloc = true;
97 }
98 }
99 if (alloc) {
100 dev->flags |= DM_FLAG_ALLOC_PDATA;
101 dev->platdata = calloc(1,
102 drv->platdata_auto_alloc_size);
103 if (!dev->platdata) {
104 ret = -ENOMEM;
105 goto fail_alloc1;
106 }
107 if (CONFIG_IS_ENABLED(OF_PLATDATA) && platdata) {
108 memcpy(dev->platdata, platdata,
109 of_platdata_size);
110 }
Simon Glassba750492015-01-25 08:27:00 -0700111 }
112 }
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200113
114 size = uc->uc_drv->per_device_platdata_auto_alloc_size;
115 if (size) {
116 dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA;
117 dev->uclass_platdata = calloc(1, size);
118 if (!dev->uclass_platdata) {
119 ret = -ENOMEM;
120 goto fail_alloc2;
121 }
122 }
Simon Glass11b61732015-01-25 08:27:01 -0700123
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200124 if (parent) {
125 size = parent->driver->per_child_platdata_auto_alloc_size;
Simon Glass57f95402015-01-25 08:27:02 -0700126 if (!size) {
127 size = parent->uclass->uc_drv->
128 per_child_platdata_auto_alloc_size;
129 }
Simon Glass11b61732015-01-25 08:27:01 -0700130 if (size) {
131 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
132 dev->parent_platdata = calloc(1, size);
133 if (!dev->parent_platdata) {
134 ret = -ENOMEM;
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200135 goto fail_alloc3;
Simon Glass11b61732015-01-25 08:27:01 -0700136 }
137 }
138 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700139
140 /* put dev into parent's successor list */
141 if (parent)
142 list_add_tail(&dev->sibling_node, &parent->child_head);
143
144 ret = uclass_bind_device(dev);
145 if (ret)
Simon Glass4ebe01b2015-01-25 08:26:59 -0700146 goto fail_uclass_bind;
Simon Glassdd6ab882014-02-26 15:59:18 -0700147
148 /* if we fail to bind we remove device from successors and free it */
149 if (drv->bind) {
150 ret = drv->bind(dev);
Simon Glass4ebe01b2015-01-25 08:26:59 -0700151 if (ret)
Simon Glassdd6ab882014-02-26 15:59:18 -0700152 goto fail_bind;
Simon Glassdd6ab882014-02-26 15:59:18 -0700153 }
Simon Glassa4a51a02015-01-25 08:27:03 -0700154 if (parent && parent->driver->child_post_bind) {
155 ret = parent->driver->child_post_bind(dev);
156 if (ret)
157 goto fail_child_post_bind;
158 }
Simon Glass286863d2016-01-05 09:30:59 -0700159 if (uc->uc_drv->post_bind) {
160 ret = uc->uc_drv->post_bind(dev);
161 if (ret)
162 goto fail_uclass_post_bind;
163 }
Simon Glassa4a51a02015-01-25 08:27:03 -0700164
Simon Glassdd6ab882014-02-26 15:59:18 -0700165 if (parent)
Masahiro Yamadaf70f39f2017-09-29 12:31:20 +0900166 pr_debug("Bound device %s to %s\n", dev->name, parent->name);
Masahiro Yamadae1cc1f02015-08-27 12:44:28 +0900167 if (devp)
168 *devp = dev;
Simon Glassdd6ab882014-02-26 15:59:18 -0700169
Masahiro Yamadabdbb5dd2015-07-25 21:52:34 +0900170 dev->flags |= DM_FLAG_BOUND;
171
Simon Glassdd6ab882014-02-26 15:59:18 -0700172 return 0;
173
Simon Glass286863d2016-01-05 09:30:59 -0700174fail_uclass_post_bind:
175 /* There is no child unbind() method, so no clean-up required */
Simon Glassa4a51a02015-01-25 08:27:03 -0700176fail_child_post_bind:
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900177 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glasse70a4f42015-02-27 22:06:33 -0700178 if (drv->unbind && drv->unbind(dev)) {
179 dm_warn("unbind() method failed on dev '%s' on error path\n",
180 dev->name);
181 }
Simon Glassa4a51a02015-01-25 08:27:03 -0700182 }
183
Simon Glassdd6ab882014-02-26 15:59:18 -0700184fail_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 (uclass_unbind_device(dev)) {
187 dm_warn("Failed to unbind dev '%s' on error path\n",
188 dev->name);
189 }
Simon Glass4ebe01b2015-01-25 08:26:59 -0700190 }
191fail_uclass_bind:
Masahiro Yamada04aa00d2015-08-12 07:31:52 +0900192 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glasse70a4f42015-02-27 22:06:33 -0700193 list_del(&dev->sibling_node);
194 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
195 free(dev->parent_platdata);
196 dev->parent_platdata = NULL;
197 }
Simon Glass11b61732015-01-25 08:27:01 -0700198 }
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200199fail_alloc3:
200 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
201 free(dev->uclass_platdata);
202 dev->uclass_platdata = NULL;
203 }
Simon Glass11b61732015-01-25 08:27:01 -0700204fail_alloc2:
Simon Glassba750492015-01-25 08:27:00 -0700205 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
206 free(dev->platdata);
207 dev->platdata = NULL;
208 }
209fail_alloc1:
Masahiro Yamada8b15b162015-07-25 21:52:35 +0900210 devres_release_all(dev);
211
Simon Glassdd6ab882014-02-26 15:59:18 -0700212 free(dev);
Simon Glass4ebe01b2015-01-25 08:26:59 -0700213
Simon Glassdd6ab882014-02-26 15:59:18 -0700214 return ret;
215}
216
Stephen Warren8c93df12016-05-11 15:26:24 -0600217int device_bind_with_driver_data(struct udevice *parent,
218 const struct driver *drv, const char *name,
Simon Glass322b2902017-05-18 20:09:05 -0600219 ulong driver_data, ofnode node,
Stephen Warren8c93df12016-05-11 15:26:24 -0600220 struct udevice **devp)
221{
Simon Glass322b2902017-05-18 20:09:05 -0600222 return device_bind_common(parent, drv, name, NULL, driver_data, node,
223 0, devp);
Stephen Warren8c93df12016-05-11 15:26:24 -0600224}
225
226int device_bind(struct udevice *parent, const struct driver *drv,
227 const char *name, void *platdata, int of_offset,
228 struct udevice **devp)
229{
Simon Glassb0cf4b32017-05-17 17:18:11 -0600230 return device_bind_common(parent, drv, name, platdata, 0,
231 offset_to_ofnode(of_offset), 0, devp);
Stephen Warren8c93df12016-05-11 15:26:24 -0600232}
233
Simon Glassfef72b72014-07-23 06:55:03 -0600234int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
235 const struct driver_info *info, struct udevice **devp)
Simon Glassdd6ab882014-02-26 15:59:18 -0700236{
237 struct driver *drv;
Simon Glassafbf9b82016-07-04 11:58:18 -0600238 uint platdata_size = 0;
Simon Glassdd6ab882014-02-26 15:59:18 -0700239
240 drv = lists_driver_lookup_name(info->name);
241 if (!drv)
242 return -ENOENT;
Simon Glassfef72b72014-07-23 06:55:03 -0600243 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
244 return -EPERM;
Simon Glassdd6ab882014-02-26 15:59:18 -0700245
Simon Glassafbf9b82016-07-04 11:58:18 -0600246#if CONFIG_IS_ENABLED(OF_PLATDATA)
247 platdata_size = info->platdata_size;
248#endif
249 return device_bind_common(parent, drv, info->name,
Simon Glass322b2902017-05-18 20:09:05 -0600250 (void *)info->platdata, 0, ofnode_null(), platdata_size,
251 devp);
Simon Glassdd6ab882014-02-26 15:59:18 -0700252}
253
Simon Glass825d3f92015-03-25 12:21:53 -0600254static void *alloc_priv(int size, uint flags)
255{
256 void *priv;
257
258 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
Faiz Abbas03020a92017-09-19 16:53:50 +0530259 size = ROUND(size, ARCH_DMA_MINALIGN);
Simon Glass825d3f92015-03-25 12:21:53 -0600260 priv = memalign(ARCH_DMA_MINALIGN, size);
Simon Glass27bc9b12017-04-04 13:00:19 -0600261 if (priv) {
Simon Glass825d3f92015-03-25 12:21:53 -0600262 memset(priv, '\0', size);
Simon Glass27bc9b12017-04-04 13:00:19 -0600263
264 /*
265 * Ensure that the zero bytes are flushed to memory.
266 * This prevents problems if the driver uses this as
267 * both an input and an output buffer:
268 *
269 * 1. Zeroes written to buffer (here) and sit in the
270 * cache
271 * 2. Driver issues a read command to DMA
272 * 3. CPU runs out of cache space and evicts some cache
273 * data in the buffer, writing zeroes to RAM from
274 * the memset() above
275 * 4. DMA completes
276 * 5. Buffer now has some DMA data and some zeroes
277 * 6. Data being read is now incorrect
278 *
279 * To prevent this, ensure that the cache is clean
280 * within this range at the start. The driver can then
281 * use normal flush-after-write, invalidate-before-read
282 * procedures.
283 *
284 * TODO(sjg@chromium.org): Drop this microblaze
285 * exception.
286 */
287#ifndef CONFIG_MICROBLAZE
288 flush_dcache_range((ulong)priv, (ulong)priv + size);
289#endif
290 }
Simon Glass825d3f92015-03-25 12:21:53 -0600291 } else {
292 priv = calloc(1, size);
293 }
294
295 return priv;
296}
297
Simon Glass6142d752016-01-25 14:58:42 -0700298int device_probe(struct udevice *dev)
Simon Glassdd6ab882014-02-26 15:59:18 -0700299{
Simon Glassa626dff2015-03-25 12:21:54 -0600300 const struct driver *drv;
Simon Glassdd6ab882014-02-26 15:59:18 -0700301 int size = 0;
302 int ret;
Simon Glassdb6f0202014-07-23 06:55:12 -0600303 int seq;
Simon Glassdd6ab882014-02-26 15:59:18 -0700304
305 if (!dev)
306 return -EINVAL;
307
308 if (dev->flags & DM_FLAG_ACTIVATED)
309 return 0;
310
311 drv = dev->driver;
312 assert(drv);
313
Bin Meng82cdd782015-08-24 01:14:02 -0700314 /* Allocate private data if requested and not reentered */
315 if (drv->priv_auto_alloc_size && !dev->priv) {
Simon Glass825d3f92015-03-25 12:21:53 -0600316 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
Simon Glassdd6ab882014-02-26 15:59:18 -0700317 if (!dev->priv) {
318 ret = -ENOMEM;
319 goto fail;
320 }
321 }
Bin Meng82cdd782015-08-24 01:14:02 -0700322 /* Allocate private data if requested and not reentered */
Simon Glassdd6ab882014-02-26 15:59:18 -0700323 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
Bin Meng82cdd782015-08-24 01:14:02 -0700324 if (size && !dev->uclass_priv) {
Simon Glassdd6ab882014-02-26 15:59:18 -0700325 dev->uclass_priv = calloc(1, size);
326 if (!dev->uclass_priv) {
327 ret = -ENOMEM;
328 goto fail;
329 }
330 }
331
332 /* Ensure all parents are probed */
333 if (dev->parent) {
Simon Glass60d971b2014-07-23 06:55:20 -0600334 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassc23b4282015-01-25 08:27:06 -0700335 if (!size) {
336 size = dev->parent->uclass->uc_drv->
337 per_child_auto_alloc_size;
338 }
Bin Meng82cdd782015-08-24 01:14:02 -0700339 if (size && !dev->parent_priv) {
Simon Glass825d3f92015-03-25 12:21:53 -0600340 dev->parent_priv = alloc_priv(size, drv->flags);
Simon Glass60d971b2014-07-23 06:55:20 -0600341 if (!dev->parent_priv) {
342 ret = -ENOMEM;
343 goto fail;
344 }
345 }
346
Simon Glassdd6ab882014-02-26 15:59:18 -0700347 ret = device_probe(dev->parent);
348 if (ret)
349 goto fail;
Bin Meng82cdd782015-08-24 01:14:02 -0700350
351 /*
352 * The device might have already been probed during
353 * the call to device_probe() on its parent device
354 * (e.g. PCI bridge devices). Test the flags again
355 * so that we don't mess up the device.
356 */
357 if (dev->flags & DM_FLAG_ACTIVATED)
358 return 0;
Simon Glassdd6ab882014-02-26 15:59:18 -0700359 }
Simon Glassdb6f0202014-07-23 06:55:12 -0600360
361 seq = uclass_resolve_seq(dev);
362 if (seq < 0) {
363 ret = seq;
364 goto fail;
365 }
366 dev->seq = seq;
Simon Glassdd6ab882014-02-26 15:59:18 -0700367
Simon Glass8b04e732015-03-25 12:21:56 -0600368 dev->flags |= DM_FLAG_ACTIVATED;
369
Simon Glassbb53bda2015-09-12 08:45:19 -0600370 /*
371 * Process pinctrl for everything except the root device, and
Simon Glass27ce9622016-01-21 19:43:25 -0700372 * continue regardless of the result of pinctrl. Don't process pinctrl
373 * settings for pinctrl devices since the device may not yet be
374 * probed.
Simon Glassbb53bda2015-09-12 08:45:19 -0600375 */
Simon Glass27ce9622016-01-21 19:43:25 -0700376 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
Simon Glassbb53bda2015-09-12 08:45:19 -0600377 pinctrl_select_state(dev, "default");
Masahiro Yamadaf8efa632015-08-27 12:44:29 +0900378
Simon Glass9c1f3822015-03-05 12:25:22 -0700379 ret = uclass_pre_probe_device(dev);
Simon Glass5104b982015-01-25 08:27:10 -0700380 if (ret)
381 goto fail;
382
Simon Glassd45560d2014-07-23 06:55:21 -0600383 if (dev->parent && dev->parent->driver->child_pre_probe) {
384 ret = dev->parent->driver->child_pre_probe(dev);
385 if (ret)
386 goto fail;
387 }
388
Simon Glass322b2902017-05-18 20:09:05 -0600389 if (drv->ofdata_to_platdata && dev_has_of_node(dev)) {
Simon Glassdd6ab882014-02-26 15:59:18 -0700390 ret = drv->ofdata_to_platdata(dev);
391 if (ret)
392 goto fail;
393 }
394
Philipp Tomsich9cf03b02018-01-08 13:59:18 +0100395 /* Process 'assigned-{clocks/clock-parents/clock-rates}' properties */
396 ret = clk_set_defaults(dev);
397 if (ret)
398 goto fail;
399
Simon Glassdd6ab882014-02-26 15:59:18 -0700400 if (drv->probe) {
401 ret = drv->probe(dev);
Simon Glassd02009d2015-03-05 12:25:21 -0700402 if (ret) {
403 dev->flags &= ~DM_FLAG_ACTIVATED;
Simon Glassdd6ab882014-02-26 15:59:18 -0700404 goto fail;
Simon Glassd02009d2015-03-05 12:25:21 -0700405 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700406 }
407
Simon Glassdd6ab882014-02-26 15:59:18 -0700408 ret = uclass_post_probe_device(dev);
Simon Glass8b04e732015-03-25 12:21:56 -0600409 if (ret)
Simon Glassdd6ab882014-02-26 15:59:18 -0700410 goto fail_uclass;
Simon Glassdd6ab882014-02-26 15:59:18 -0700411
Peng Fan7cf58dd2016-03-12 13:17:38 +0800412 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
413 pinctrl_select_state(dev, "default");
414
Simon Glassdd6ab882014-02-26 15:59:18 -0700415 return 0;
416fail_uclass:
Stefan Roese80b5bc92017-03-20 12:51:48 +0100417 if (device_remove(dev, DM_REMOVE_NORMAL)) {
Simon Glassdd6ab882014-02-26 15:59:18 -0700418 dm_warn("%s: Device '%s' failed to remove on error path\n",
419 __func__, dev->name);
420 }
421fail:
Simon Glass8b04e732015-03-25 12:21:56 -0600422 dev->flags &= ~DM_FLAG_ACTIVATED;
423
Simon Glassdb6f0202014-07-23 06:55:12 -0600424 dev->seq = -1;
Simon Glassdd6ab882014-02-26 15:59:18 -0700425 device_free(dev);
426
427 return ret;
428}
429
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200430void *dev_get_platdata(struct udevice *dev)
Simon Glassdd6ab882014-02-26 15:59:18 -0700431{
432 if (!dev) {
Simon Glassdf1e0722014-12-10 08:55:56 -0700433 dm_warn("%s: null device\n", __func__);
Simon Glassdd6ab882014-02-26 15:59:18 -0700434 return NULL;
435 }
436
437 return dev->platdata;
438}
439
Simon Glass11b61732015-01-25 08:27:01 -0700440void *dev_get_parent_platdata(struct udevice *dev)
441{
442 if (!dev) {
Simon Glasscdfc5052015-07-06 16:47:40 -0600443 dm_warn("%s: null device\n", __func__);
Simon Glass11b61732015-01-25 08:27:01 -0700444 return NULL;
445 }
446
447 return dev->parent_platdata;
448}
449
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200450void *dev_get_uclass_platdata(struct udevice *dev)
451{
452 if (!dev) {
Simon Glasscdfc5052015-07-06 16:47:40 -0600453 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczakd850e672015-04-15 13:07:18 +0200454 return NULL;
455 }
456
457 return dev->uclass_platdata;
458}
459
Heiko Schocherb74fcb42014-05-22 12:43:05 +0200460void *dev_get_priv(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->priv;
468}
Simon Glass48d4e292014-07-23 06:55:19 -0600469
Simon Glassde0977b2015-03-05 12:25:20 -0700470void *dev_get_uclass_priv(struct udevice *dev)
471{
472 if (!dev) {
473 dm_warn("%s: null device\n", __func__);
474 return NULL;
475 }
476
477 return dev->uclass_priv;
478}
479
Simon Glassde44acf2015-09-28 23:32:01 -0600480void *dev_get_parent_priv(struct udevice *dev)
Simon Glass60d971b2014-07-23 06:55:20 -0600481{
482 if (!dev) {
Simon Glassdf1e0722014-12-10 08:55:56 -0700483 dm_warn("%s: null device\n", __func__);
Simon Glass60d971b2014-07-23 06:55:20 -0600484 return NULL;
485 }
486
487 return dev->parent_priv;
488}
489
Simon Glass48d4e292014-07-23 06:55:19 -0600490static int device_get_device_tail(struct udevice *dev, int ret,
491 struct udevice **devp)
492{
493 if (ret)
494 return ret;
495
496 ret = device_probe(dev);
497 if (ret)
498 return ret;
499
500 *devp = dev;
501
502 return 0;
503}
504
505int device_get_child(struct udevice *parent, int index, struct udevice **devp)
506{
507 struct udevice *dev;
508
509 list_for_each_entry(dev, &parent->child_head, sibling_node) {
510 if (!index--)
511 return device_get_device_tail(dev, 0, devp);
512 }
513
514 return -ENODEV;
515}
516
517int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
518 bool find_req_seq, struct udevice **devp)
519{
520 struct udevice *dev;
521
522 *devp = NULL;
523 if (seq_or_req_seq == -1)
524 return -ENODEV;
525
526 list_for_each_entry(dev, &parent->child_head, sibling_node) {
527 if ((find_req_seq ? dev->req_seq : dev->seq) ==
528 seq_or_req_seq) {
529 *devp = dev;
530 return 0;
531 }
532 }
533
534 return -ENODEV;
535}
536
537int device_get_child_by_seq(struct udevice *parent, int seq,
538 struct udevice **devp)
539{
540 struct udevice *dev;
541 int ret;
542
543 *devp = NULL;
544 ret = device_find_child_by_seq(parent, seq, false, &dev);
545 if (ret == -ENODEV) {
546 /*
547 * We didn't find it in probed devices. See if there is one
548 * that will request this seq if probed.
549 */
550 ret = device_find_child_by_seq(parent, seq, true, &dev);
551 }
552 return device_get_device_tail(dev, ret, devp);
553}
554
555int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
556 struct udevice **devp)
557{
558 struct udevice *dev;
559
560 *devp = NULL;
561
562 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Simon Glassdd79d6e2017-01-17 16:52:55 -0700563 if (dev_of_offset(dev) == of_offset) {
Simon Glass48d4e292014-07-23 06:55:19 -0600564 *devp = dev;
565 return 0;
566 }
567 }
568
569 return -ENODEV;
570}
571
Simon Glass861bc9f2015-06-23 15:38:38 -0600572int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass48d4e292014-07-23 06:55:19 -0600573 struct udevice **devp)
574{
575 struct udevice *dev;
576 int ret;
577
578 *devp = NULL;
Simon Glass861bc9f2015-06-23 15:38:38 -0600579 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass48d4e292014-07-23 06:55:19 -0600580 return device_get_device_tail(dev, ret, devp);
581}
Simon Glass44da7352014-10-13 23:41:49 -0600582
Simon Glassae2efac2015-06-23 15:38:37 -0600583static struct udevice *_device_find_global_by_of_offset(struct udevice *parent,
584 int of_offset)
585{
586 struct udevice *dev, *found;
587
Simon Glassdd79d6e2017-01-17 16:52:55 -0700588 if (dev_of_offset(parent) == of_offset)
Simon Glassae2efac2015-06-23 15:38:37 -0600589 return parent;
590
591 list_for_each_entry(dev, &parent->child_head, sibling_node) {
592 found = _device_find_global_by_of_offset(dev, of_offset);
593 if (found)
594 return found;
595 }
596
597 return NULL;
598}
599
600int device_get_global_by_of_offset(int of_offset, struct udevice **devp)
601{
602 struct udevice *dev;
603
604 dev = _device_find_global_by_of_offset(gd->dm_root, of_offset);
605 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
606}
607
Simon Glass44da7352014-10-13 23:41:49 -0600608int device_find_first_child(struct udevice *parent, struct udevice **devp)
609{
610 if (list_empty(&parent->child_head)) {
611 *devp = NULL;
612 } else {
613 *devp = list_first_entry(&parent->child_head, struct udevice,
614 sibling_node);
615 }
616
617 return 0;
618}
619
620int device_find_next_child(struct udevice **devp)
621{
622 struct udevice *dev = *devp;
623 struct udevice *parent = dev->parent;
624
625 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
626 *devp = NULL;
627 } else {
628 *devp = list_entry(dev->sibling_node.next, struct udevice,
629 sibling_node);
630 }
631
632 return 0;
633}
Simon Glass70c3a0e2014-11-11 10:46:18 -0700634
Simon Glass43f488a2014-11-11 10:46:19 -0700635struct udevice *dev_get_parent(struct udevice *child)
636{
637 return child->parent;
638}
639
Simon Glass46227bd2015-03-25 12:21:55 -0600640ulong dev_get_driver_data(struct udevice *dev)
Simon Glass70c3a0e2014-11-11 10:46:18 -0700641{
Simon Glass46227bd2015-03-25 12:21:55 -0600642 return dev->driver_data;
Simon Glass70c3a0e2014-11-11 10:46:18 -0700643}
Simon Glass98fd5d12015-01-25 08:27:04 -0700644
Przemyslaw Marczakd3ef0d72015-04-15 13:07:24 +0200645const void *dev_get_driver_ops(struct udevice *dev)
646{
647 if (!dev || !dev->driver->ops)
648 return NULL;
649
650 return dev->driver->ops;
651}
652
Simon Glass98fd5d12015-01-25 08:27:04 -0700653enum uclass_id device_get_uclass_id(struct udevice *dev)
654{
655 return dev->uclass->uc_drv->id;
656}
Peng Fan99b72352015-02-10 14:46:32 +0800657
Przemyslaw Marczak5ed2e422015-04-15 13:07:25 +0200658const char *dev_get_uclass_name(struct udevice *dev)
659{
660 if (!dev)
661 return NULL;
662
663 return dev->uclass->uc_drv->name;
664}
665
Simon Glass40f829a2015-03-25 12:21:57 -0600666bool device_has_children(struct udevice *dev)
667{
668 return !list_empty(&dev->child_head);
669}
670
671bool device_has_active_children(struct udevice *dev)
672{
673 struct udevice *child;
674
675 for (device_find_first_child(dev, &child);
676 child;
677 device_find_next_child(&child)) {
678 if (device_active(child))
679 return true;
680 }
681
682 return false;
683}
684
685bool device_is_last_sibling(struct udevice *dev)
686{
687 struct udevice *parent = dev->parent;
688
689 if (!parent)
690 return false;
691 return list_is_last(&dev->sibling_node, &parent->child_head);
692}
Simon Glasse3b23e22015-07-30 13:40:39 -0600693
Simon Glass7760ba22016-05-01 13:52:23 -0600694void device_set_name_alloced(struct udevice *dev)
695{
Simon Glass2d4c7dc2016-07-04 11:58:15 -0600696 dev->flags |= DM_FLAG_NAME_ALLOCED;
Simon Glass7760ba22016-05-01 13:52:23 -0600697}
698
Simon Glasse3b23e22015-07-30 13:40:39 -0600699int device_set_name(struct udevice *dev, const char *name)
700{
701 name = strdup(name);
702 if (!name)
703 return -ENOMEM;
704 dev->name = name;
Simon Glass7760ba22016-05-01 13:52:23 -0600705 device_set_name_alloced(dev);
Simon Glasse3b23e22015-07-30 13:40:39 -0600706
707 return 0;
708}
Mugunthan V N4666bd92016-04-28 15:36:02 +0530709
Simon Glass54cbcc82017-05-18 20:08:57 -0600710bool device_is_compatible(struct udevice *dev, const char *compat)
Mugunthan V N4666bd92016-04-28 15:36:02 +0530711{
712 const void *fdt = gd->fdt_blob;
Mario Six1f1c1ec2018-01-15 11:07:20 +0100713 ofnode node = dev_ofnode(dev);
Mugunthan V N4666bd92016-04-28 15:36:02 +0530714
Mario Six1f1c1ec2018-01-15 11:07:20 +0100715 if (ofnode_is_np(node))
716 return of_device_is_compatible(ofnode_to_np(node), compat, NULL, NULL);
717 else
718 return !fdt_node_check_compatible(fdt, ofnode_to_offset(node), compat);
Mugunthan V N4666bd92016-04-28 15:36:02 +0530719}
720
721bool of_machine_is_compatible(const char *compat)
722{
723 const void *fdt = gd->fdt_blob;
724
725 return !fdt_node_check_compatible(fdt, 0, compat);
726}