blob: 5463d1ffa508df95fb65f24f058ecbceb8387989 [file] [log] [blame]
Simon Glass6494d702014-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 R7c616862016-07-06 09:58:55 +053013#include <asm/io.h>
Simon Glass5a66a8f2014-07-23 06:55:12 -060014#include <fdtdec.h>
Stefan Roeseef5cd332015-09-02 07:41:12 +020015#include <fdt_support.h>
Simon Glass6494d702014-02-26 15:59:18 -070016#include <malloc.h>
17#include <dm/device.h>
18#include <dm/device-internal.h>
19#include <dm/lists.h>
Masahiro Yamadad90a5a32015-08-27 12:44:29 +090020#include <dm/pinctrl.h>
Simon Glass6494d702014-02-26 15:59:18 -070021#include <dm/platdata.h>
Simon Glass396e3432017-05-18 20:09:05 -060022#include <dm/read.h>
Simon Glass6494d702014-02-26 15:59:18 -070023#include <dm/uclass.h>
24#include <dm/uclass-internal.h>
25#include <dm/util.h>
26#include <linux/err.h>
27#include <linux/list.h>
28
Simon Glass5a66a8f2014-07-23 06:55:12 -060029DECLARE_GLOBAL_DATA_PTR;
30
Stephen Warrendaac3bf2016-05-11 15:26:24 -060031static int device_bind_common(struct udevice *parent, const struct driver *drv,
32 const char *name, void *platdata,
Simon Glass7a61b0b2017-05-17 17:18:11 -060033 ulong driver_data, ofnode node,
Simon Glass9fa28192016-07-04 11:58:18 -060034 uint of_platdata_size, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -070035{
Heiko Schocher54c5d082014-05-22 12:43:05 +020036 struct udevice *dev;
Simon Glass6494d702014-02-26 15:59:18 -070037 struct uclass *uc;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020038 int size, ret = 0;
Simon Glass6494d702014-02-26 15:59:18 -070039
Masahiro Yamadae6cabe42015-08-27 12:44:28 +090040 if (devp)
41 *devp = NULL;
Simon Glass6494d702014-02-26 15:59:18 -070042 if (!name)
43 return -EINVAL;
44
45 ret = uclass_get(drv->id, &uc);
Simon Glass3346c872015-08-30 16:55:16 -060046 if (ret) {
47 debug("Missing uclass for driver %s\n", drv->name);
Simon Glass6494d702014-02-26 15:59:18 -070048 return ret;
Simon Glass3346c872015-08-30 16:55:16 -060049 }
Simon Glass6494d702014-02-26 15:59:18 -070050
Heiko Schocher54c5d082014-05-22 12:43:05 +020051 dev = calloc(1, sizeof(struct udevice));
Simon Glass6494d702014-02-26 15:59:18 -070052 if (!dev)
53 return -ENOMEM;
54
55 INIT_LIST_HEAD(&dev->sibling_node);
56 INIT_LIST_HEAD(&dev->child_head);
57 INIT_LIST_HEAD(&dev->uclass_node);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090058#ifdef CONFIG_DEVRES
Masahiro Yamada608f26c2015-07-25 21:52:35 +090059 INIT_LIST_HEAD(&dev->devres_head);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090060#endif
Simon Glass6494d702014-02-26 15:59:18 -070061 dev->platdata = platdata;
Stephen Warrendaac3bf2016-05-11 15:26:24 -060062 dev->driver_data = driver_data;
Simon Glass6494d702014-02-26 15:59:18 -070063 dev->name = name;
Simon Glass7a61b0b2017-05-17 17:18:11 -060064 dev->node = node;
Simon Glass6494d702014-02-26 15:59:18 -070065 dev->parent = parent;
66 dev->driver = drv;
67 dev->uclass = uc;
Simon Glass5a66a8f2014-07-23 06:55:12 -060068
Simon Glass5a66a8f2014-07-23 06:55:12 -060069 dev->seq = -1;
Simon Glass91cbd792014-09-17 09:02:38 -060070 dev->req_seq = -1;
Nathan Rossi4f627c52016-01-08 03:00:45 +100071 if (CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_SEQ_ALIAS)) {
Simon Glass36fa61d2015-02-27 22:06:30 -070072 /*
Stefan Roese770eb302016-03-16 09:58:01 +010073 * Some devices, such as a SPI bus, I2C bus and serial ports
74 * are numbered using aliases.
75 *
76 * This is just a 'requested' sequence, and will be
77 * resolved (and ->seq updated) when the device is probed.
78 */
Simon Glass36fa61d2015-02-27 22:06:30 -070079 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
Simon Glass7a61b0b2017-05-17 17:18:11 -060080 if (uc->uc_drv->name && ofnode_valid(node)) {
Simon Glass396e3432017-05-18 20:09:05 -060081 dev_read_alias_seq(dev, &dev->req_seq);
Simon Glass36fa61d2015-02-27 22:06:30 -070082 }
Simon Glass9cc36a22015-01-25 08:27:05 -070083 }
84 }
Simon Glass36fa61d2015-02-27 22:06:30 -070085
Simon Glass9fa28192016-07-04 11:58:18 -060086 if (drv->platdata_auto_alloc_size) {
87 bool alloc = !platdata;
88
89 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
90 if (of_platdata_size) {
91 dev->flags |= DM_FLAG_OF_PLATDATA;
92 if (of_platdata_size <
93 drv->platdata_auto_alloc_size)
94 alloc = true;
95 }
96 }
97 if (alloc) {
98 dev->flags |= DM_FLAG_ALLOC_PDATA;
99 dev->platdata = calloc(1,
100 drv->platdata_auto_alloc_size);
101 if (!dev->platdata) {
102 ret = -ENOMEM;
103 goto fail_alloc1;
104 }
105 if (CONFIG_IS_ENABLED(OF_PLATDATA) && platdata) {
106 memcpy(dev->platdata, platdata,
107 of_platdata_size);
108 }
Simon Glassf8a85442015-01-25 08:27:00 -0700109 }
110 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700111
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200112 size = uc->uc_drv->per_device_platdata_auto_alloc_size;
113 if (size) {
114 dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA;
115 dev->uclass_platdata = calloc(1, size);
116 if (!dev->uclass_platdata) {
117 ret = -ENOMEM;
118 goto fail_alloc2;
119 }
120 }
121
122 if (parent) {
123 size = parent->driver->per_child_platdata_auto_alloc_size;
Simon Glassba8da9d2015-01-25 08:27:02 -0700124 if (!size) {
125 size = parent->uclass->uc_drv->
126 per_child_platdata_auto_alloc_size;
127 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700128 if (size) {
129 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
130 dev->parent_platdata = calloc(1, size);
131 if (!dev->parent_platdata) {
132 ret = -ENOMEM;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200133 goto fail_alloc3;
Simon Glasscdc133b2015-01-25 08:27:01 -0700134 }
135 }
136 }
Simon Glass6494d702014-02-26 15:59:18 -0700137
138 /* put dev into parent's successor list */
139 if (parent)
140 list_add_tail(&dev->sibling_node, &parent->child_head);
141
142 ret = uclass_bind_device(dev);
143 if (ret)
Simon Glass72ebfe82015-01-25 08:26:59 -0700144 goto fail_uclass_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700145
146 /* if we fail to bind we remove device from successors and free it */
147 if (drv->bind) {
148 ret = drv->bind(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700149 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700150 goto fail_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700151 }
Simon Glass0118ce72015-01-25 08:27:03 -0700152 if (parent && parent->driver->child_post_bind) {
153 ret = parent->driver->child_post_bind(dev);
154 if (ret)
155 goto fail_child_post_bind;
156 }
Simon Glass20af3c02016-01-05 09:30:59 -0700157 if (uc->uc_drv->post_bind) {
158 ret = uc->uc_drv->post_bind(dev);
159 if (ret)
160 goto fail_uclass_post_bind;
161 }
Simon Glass0118ce72015-01-25 08:27:03 -0700162
Simon Glass6494d702014-02-26 15:59:18 -0700163 if (parent)
164 dm_dbg("Bound device %s to %s\n", dev->name, parent->name);
Masahiro Yamadae6cabe42015-08-27 12:44:28 +0900165 if (devp)
166 *devp = dev;
Simon Glass6494d702014-02-26 15:59:18 -0700167
Masahiro Yamadaaed1a4d2015-07-25 21:52:34 +0900168 dev->flags |= DM_FLAG_BOUND;
169
Simon Glass6494d702014-02-26 15:59:18 -0700170 return 0;
171
Simon Glass20af3c02016-01-05 09:30:59 -0700172fail_uclass_post_bind:
173 /* There is no child unbind() method, so no clean-up required */
Simon Glass0118ce72015-01-25 08:27:03 -0700174fail_child_post_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900175 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700176 if (drv->unbind && drv->unbind(dev)) {
177 dm_warn("unbind() method failed on dev '%s' on error path\n",
178 dev->name);
179 }
Simon Glass0118ce72015-01-25 08:27:03 -0700180 }
181
Simon Glass6494d702014-02-26 15:59:18 -0700182fail_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900183 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700184 if (uclass_unbind_device(dev)) {
185 dm_warn("Failed to unbind dev '%s' on error path\n",
186 dev->name);
187 }
Simon Glass72ebfe82015-01-25 08:26:59 -0700188 }
189fail_uclass_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900190 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700191 list_del(&dev->sibling_node);
192 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
193 free(dev->parent_platdata);
194 dev->parent_platdata = NULL;
195 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700196 }
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200197fail_alloc3:
198 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
199 free(dev->uclass_platdata);
200 dev->uclass_platdata = NULL;
201 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700202fail_alloc2:
Simon Glassf8a85442015-01-25 08:27:00 -0700203 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
204 free(dev->platdata);
205 dev->platdata = NULL;
206 }
207fail_alloc1:
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900208 devres_release_all(dev);
209
Simon Glass6494d702014-02-26 15:59:18 -0700210 free(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700211
Simon Glass6494d702014-02-26 15:59:18 -0700212 return ret;
213}
214
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600215int device_bind_with_driver_data(struct udevice *parent,
216 const struct driver *drv, const char *name,
Simon Glass396e3432017-05-18 20:09:05 -0600217 ulong driver_data, ofnode node,
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600218 struct udevice **devp)
219{
Simon Glass396e3432017-05-18 20:09:05 -0600220 return device_bind_common(parent, drv, name, NULL, driver_data, node,
221 0, devp);
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600222}
223
224int device_bind(struct udevice *parent, const struct driver *drv,
225 const char *name, void *platdata, int of_offset,
226 struct udevice **devp)
227{
Simon Glass7a61b0b2017-05-17 17:18:11 -0600228 return device_bind_common(parent, drv, name, platdata, 0,
229 offset_to_ofnode(of_offset), 0, devp);
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600230}
231
Simon Glass00606d72014-07-23 06:55:03 -0600232int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
233 const struct driver_info *info, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -0700234{
235 struct driver *drv;
Simon Glass9fa28192016-07-04 11:58:18 -0600236 uint platdata_size = 0;
Simon Glass6494d702014-02-26 15:59:18 -0700237
238 drv = lists_driver_lookup_name(info->name);
239 if (!drv)
240 return -ENOENT;
Simon Glass00606d72014-07-23 06:55:03 -0600241 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
242 return -EPERM;
Simon Glass6494d702014-02-26 15:59:18 -0700243
Simon Glass9fa28192016-07-04 11:58:18 -0600244#if CONFIG_IS_ENABLED(OF_PLATDATA)
245 platdata_size = info->platdata_size;
246#endif
247 return device_bind_common(parent, drv, info->name,
Simon Glass396e3432017-05-18 20:09:05 -0600248 (void *)info->platdata, 0, ofnode_null(), platdata_size,
249 devp);
Simon Glass6494d702014-02-26 15:59:18 -0700250}
251
Simon Glass2c03c462015-03-25 12:21:53 -0600252static void *alloc_priv(int size, uint flags)
253{
254 void *priv;
255
256 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
257 priv = memalign(ARCH_DMA_MINALIGN, size);
Simon Glass5a8a8042017-04-04 13:00:19 -0600258 if (priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600259 memset(priv, '\0', size);
Simon Glass5a8a8042017-04-04 13:00:19 -0600260
261 /*
262 * Ensure that the zero bytes are flushed to memory.
263 * This prevents problems if the driver uses this as
264 * both an input and an output buffer:
265 *
266 * 1. Zeroes written to buffer (here) and sit in the
267 * cache
268 * 2. Driver issues a read command to DMA
269 * 3. CPU runs out of cache space and evicts some cache
270 * data in the buffer, writing zeroes to RAM from
271 * the memset() above
272 * 4. DMA completes
273 * 5. Buffer now has some DMA data and some zeroes
274 * 6. Data being read is now incorrect
275 *
276 * To prevent this, ensure that the cache is clean
277 * within this range at the start. The driver can then
278 * use normal flush-after-write, invalidate-before-read
279 * procedures.
280 *
281 * TODO(sjg@chromium.org): Drop this microblaze
282 * exception.
283 */
284#ifndef CONFIG_MICROBLAZE
285 flush_dcache_range((ulong)priv, (ulong)priv + size);
286#endif
287 }
Simon Glass2c03c462015-03-25 12:21:53 -0600288 } else {
289 priv = calloc(1, size);
290 }
291
292 return priv;
293}
294
Simon Glassc6db9652016-01-25 14:58:42 -0700295int device_probe(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700296{
Simon Glass34792532015-03-25 12:21:54 -0600297 const struct driver *drv;
Simon Glass6494d702014-02-26 15:59:18 -0700298 int size = 0;
299 int ret;
Simon Glass5a66a8f2014-07-23 06:55:12 -0600300 int seq;
Simon Glass6494d702014-02-26 15:59:18 -0700301
302 if (!dev)
303 return -EINVAL;
304
305 if (dev->flags & DM_FLAG_ACTIVATED)
306 return 0;
307
308 drv = dev->driver;
309 assert(drv);
310
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700311 /* Allocate private data if requested and not reentered */
312 if (drv->priv_auto_alloc_size && !dev->priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600313 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
Simon Glass6494d702014-02-26 15:59:18 -0700314 if (!dev->priv) {
315 ret = -ENOMEM;
316 goto fail;
317 }
318 }
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700319 /* Allocate private data if requested and not reentered */
Simon Glass6494d702014-02-26 15:59:18 -0700320 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700321 if (size && !dev->uclass_priv) {
Simon Glass6494d702014-02-26 15:59:18 -0700322 dev->uclass_priv = calloc(1, size);
323 if (!dev->uclass_priv) {
324 ret = -ENOMEM;
325 goto fail;
326 }
327 }
328
329 /* Ensure all parents are probed */
330 if (dev->parent) {
Simon Glasse59f4582014-07-23 06:55:20 -0600331 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassdac8db22015-01-25 08:27:06 -0700332 if (!size) {
333 size = dev->parent->uclass->uc_drv->
334 per_child_auto_alloc_size;
335 }
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700336 if (size && !dev->parent_priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600337 dev->parent_priv = alloc_priv(size, drv->flags);
Simon Glasse59f4582014-07-23 06:55:20 -0600338 if (!dev->parent_priv) {
339 ret = -ENOMEM;
340 goto fail;
341 }
342 }
343
Simon Glass6494d702014-02-26 15:59:18 -0700344 ret = device_probe(dev->parent);
345 if (ret)
346 goto fail;
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700347
348 /*
349 * The device might have already been probed during
350 * the call to device_probe() on its parent device
351 * (e.g. PCI bridge devices). Test the flags again
352 * so that we don't mess up the device.
353 */
354 if (dev->flags & DM_FLAG_ACTIVATED)
355 return 0;
Simon Glass6494d702014-02-26 15:59:18 -0700356 }
357
Simon Glass5a66a8f2014-07-23 06:55:12 -0600358 seq = uclass_resolve_seq(dev);
359 if (seq < 0) {
360 ret = seq;
361 goto fail;
362 }
363 dev->seq = seq;
364
Simon Glass206d4d22015-03-25 12:21:56 -0600365 dev->flags |= DM_FLAG_ACTIVATED;
366
Simon Glass84d26e22015-09-12 08:45:19 -0600367 /*
368 * Process pinctrl for everything except the root device, and
Simon Glass03795972016-01-21 19:43:25 -0700369 * continue regardless of the result of pinctrl. Don't process pinctrl
370 * settings for pinctrl devices since the device may not yet be
371 * probed.
Simon Glass84d26e22015-09-12 08:45:19 -0600372 */
Simon Glass03795972016-01-21 19:43:25 -0700373 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
Simon Glass84d26e22015-09-12 08:45:19 -0600374 pinctrl_select_state(dev, "default");
Masahiro Yamadad90a5a32015-08-27 12:44:29 +0900375
Simon Glass02c07b32015-03-05 12:25:22 -0700376 ret = uclass_pre_probe_device(dev);
Simon Glass83c7e432015-01-25 08:27:10 -0700377 if (ret)
378 goto fail;
379
Simon Glassa327dee2014-07-23 06:55:21 -0600380 if (dev->parent && dev->parent->driver->child_pre_probe) {
381 ret = dev->parent->driver->child_pre_probe(dev);
382 if (ret)
383 goto fail;
384 }
385
Simon Glass396e3432017-05-18 20:09:05 -0600386 if (drv->ofdata_to_platdata && dev_has_of_node(dev)) {
Simon Glass6494d702014-02-26 15:59:18 -0700387 ret = drv->ofdata_to_platdata(dev);
388 if (ret)
389 goto fail;
390 }
391
392 if (drv->probe) {
393 ret = drv->probe(dev);
Simon Glass02eeb1b2015-03-05 12:25:21 -0700394 if (ret) {
395 dev->flags &= ~DM_FLAG_ACTIVATED;
Simon Glass6494d702014-02-26 15:59:18 -0700396 goto fail;
Simon Glass02eeb1b2015-03-05 12:25:21 -0700397 }
Simon Glass6494d702014-02-26 15:59:18 -0700398 }
399
Simon Glass6494d702014-02-26 15:59:18 -0700400 ret = uclass_post_probe_device(dev);
Simon Glass206d4d22015-03-25 12:21:56 -0600401 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700402 goto fail_uclass;
Simon Glass6494d702014-02-26 15:59:18 -0700403
Peng Fanc3ab9852016-03-12 13:17:38 +0800404 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
405 pinctrl_select_state(dev, "default");
406
Simon Glass6494d702014-02-26 15:59:18 -0700407 return 0;
408fail_uclass:
Stefan Roese706865a2017-03-20 12:51:48 +0100409 if (device_remove(dev, DM_REMOVE_NORMAL)) {
Simon Glass6494d702014-02-26 15:59:18 -0700410 dm_warn("%s: Device '%s' failed to remove on error path\n",
411 __func__, dev->name);
412 }
413fail:
Simon Glass206d4d22015-03-25 12:21:56 -0600414 dev->flags &= ~DM_FLAG_ACTIVATED;
415
Simon Glass5a66a8f2014-07-23 06:55:12 -0600416 dev->seq = -1;
Simon Glass6494d702014-02-26 15:59:18 -0700417 device_free(dev);
418
419 return ret;
420}
421
Heiko Schocher54c5d082014-05-22 12:43:05 +0200422void *dev_get_platdata(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700423{
424 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700425 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700426 return NULL;
427 }
428
429 return dev->platdata;
430}
431
Simon Glasscdc133b2015-01-25 08:27:01 -0700432void *dev_get_parent_platdata(struct udevice *dev)
433{
434 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600435 dm_warn("%s: null device\n", __func__);
Simon Glasscdc133b2015-01-25 08:27:01 -0700436 return NULL;
437 }
438
439 return dev->parent_platdata;
440}
441
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200442void *dev_get_uclass_platdata(struct udevice *dev)
443{
444 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600445 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200446 return NULL;
447 }
448
449 return dev->uclass_platdata;
450}
451
Heiko Schocher54c5d082014-05-22 12:43:05 +0200452void *dev_get_priv(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700453{
454 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700455 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700456 return NULL;
457 }
458
459 return dev->priv;
460}
Simon Glass997c87b2014-07-23 06:55:19 -0600461
Simon Glasse564f052015-03-05 12:25:20 -0700462void *dev_get_uclass_priv(struct udevice *dev)
463{
464 if (!dev) {
465 dm_warn("%s: null device\n", __func__);
466 return NULL;
467 }
468
469 return dev->uclass_priv;
470}
471
Simon Glassbcbe3d12015-09-28 23:32:01 -0600472void *dev_get_parent_priv(struct udevice *dev)
Simon Glasse59f4582014-07-23 06:55:20 -0600473{
474 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700475 dm_warn("%s: null device\n", __func__);
Simon Glasse59f4582014-07-23 06:55:20 -0600476 return NULL;
477 }
478
479 return dev->parent_priv;
480}
481
Simon Glass997c87b2014-07-23 06:55:19 -0600482static int device_get_device_tail(struct udevice *dev, int ret,
483 struct udevice **devp)
484{
485 if (ret)
486 return ret;
487
488 ret = device_probe(dev);
489 if (ret)
490 return ret;
491
492 *devp = dev;
493
494 return 0;
495}
496
497int device_get_child(struct udevice *parent, int index, struct udevice **devp)
498{
499 struct udevice *dev;
500
501 list_for_each_entry(dev, &parent->child_head, sibling_node) {
502 if (!index--)
503 return device_get_device_tail(dev, 0, devp);
504 }
505
506 return -ENODEV;
507}
508
509int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
510 bool find_req_seq, struct udevice **devp)
511{
512 struct udevice *dev;
513
514 *devp = NULL;
515 if (seq_or_req_seq == -1)
516 return -ENODEV;
517
518 list_for_each_entry(dev, &parent->child_head, sibling_node) {
519 if ((find_req_seq ? dev->req_seq : dev->seq) ==
520 seq_or_req_seq) {
521 *devp = dev;
522 return 0;
523 }
524 }
525
526 return -ENODEV;
527}
528
529int device_get_child_by_seq(struct udevice *parent, int seq,
530 struct udevice **devp)
531{
532 struct udevice *dev;
533 int ret;
534
535 *devp = NULL;
536 ret = device_find_child_by_seq(parent, seq, false, &dev);
537 if (ret == -ENODEV) {
538 /*
539 * We didn't find it in probed devices. See if there is one
540 * that will request this seq if probed.
541 */
542 ret = device_find_child_by_seq(parent, seq, true, &dev);
543 }
544 return device_get_device_tail(dev, ret, devp);
545}
546
547int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
548 struct udevice **devp)
549{
550 struct udevice *dev;
551
552 *devp = NULL;
553
554 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Simon Glasse160f7d2017-01-17 16:52:55 -0700555 if (dev_of_offset(dev) == of_offset) {
Simon Glass997c87b2014-07-23 06:55:19 -0600556 *devp = dev;
557 return 0;
558 }
559 }
560
561 return -ENODEV;
562}
563
Simon Glass132f9bf2015-06-23 15:38:38 -0600564int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass997c87b2014-07-23 06:55:19 -0600565 struct udevice **devp)
566{
567 struct udevice *dev;
568 int ret;
569
570 *devp = NULL;
Simon Glass132f9bf2015-06-23 15:38:38 -0600571 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass997c87b2014-07-23 06:55:19 -0600572 return device_get_device_tail(dev, ret, devp);
573}
Simon Glassa8981d42014-10-13 23:41:49 -0600574
Simon Glass26930472015-06-23 15:38:37 -0600575static struct udevice *_device_find_global_by_of_offset(struct udevice *parent,
576 int of_offset)
577{
578 struct udevice *dev, *found;
579
Simon Glasse160f7d2017-01-17 16:52:55 -0700580 if (dev_of_offset(parent) == of_offset)
Simon Glass26930472015-06-23 15:38:37 -0600581 return parent;
582
583 list_for_each_entry(dev, &parent->child_head, sibling_node) {
584 found = _device_find_global_by_of_offset(dev, of_offset);
585 if (found)
586 return found;
587 }
588
589 return NULL;
590}
591
592int device_get_global_by_of_offset(int of_offset, struct udevice **devp)
593{
594 struct udevice *dev;
595
596 dev = _device_find_global_by_of_offset(gd->dm_root, of_offset);
597 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
598}
599
Simon Glassa8981d42014-10-13 23:41:49 -0600600int device_find_first_child(struct udevice *parent, struct udevice **devp)
601{
602 if (list_empty(&parent->child_head)) {
603 *devp = NULL;
604 } else {
605 *devp = list_first_entry(&parent->child_head, struct udevice,
606 sibling_node);
607 }
608
609 return 0;
610}
611
612int device_find_next_child(struct udevice **devp)
613{
614 struct udevice *dev = *devp;
615 struct udevice *parent = dev->parent;
616
617 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
618 *devp = NULL;
619 } else {
620 *devp = list_entry(dev->sibling_node.next, struct udevice,
621 sibling_node);
622 }
623
624 return 0;
625}
Simon Glass2ef249b2014-11-11 10:46:18 -0700626
Simon Glass479728c2014-11-11 10:46:19 -0700627struct udevice *dev_get_parent(struct udevice *child)
628{
629 return child->parent;
630}
631
Simon Glass39de8432015-03-25 12:21:55 -0600632ulong dev_get_driver_data(struct udevice *dev)
Simon Glass2ef249b2014-11-11 10:46:18 -0700633{
Simon Glass39de8432015-03-25 12:21:55 -0600634 return dev->driver_data;
Simon Glass2ef249b2014-11-11 10:46:18 -0700635}
Simon Glassb3670532015-01-25 08:27:04 -0700636
Przemyslaw Marczakcc73d372015-04-15 13:07:24 +0200637const void *dev_get_driver_ops(struct udevice *dev)
638{
639 if (!dev || !dev->driver->ops)
640 return NULL;
641
642 return dev->driver->ops;
643}
644
Simon Glassb3670532015-01-25 08:27:04 -0700645enum uclass_id device_get_uclass_id(struct udevice *dev)
646{
647 return dev->uclass->uc_drv->id;
648}
Peng Fanc9cac3f2015-02-10 14:46:32 +0800649
Przemyslaw Marczakf9c370d2015-04-15 13:07:25 +0200650const char *dev_get_uclass_name(struct udevice *dev)
651{
652 if (!dev)
653 return NULL;
654
655 return dev->uclass->uc_drv->name;
656}
657
Simon Glassc5785672015-03-25 12:21:57 -0600658bool device_has_children(struct udevice *dev)
659{
660 return !list_empty(&dev->child_head);
661}
662
663bool device_has_active_children(struct udevice *dev)
664{
665 struct udevice *child;
666
667 for (device_find_first_child(dev, &child);
668 child;
669 device_find_next_child(&child)) {
670 if (device_active(child))
671 return true;
672 }
673
674 return false;
675}
676
677bool device_is_last_sibling(struct udevice *dev)
678{
679 struct udevice *parent = dev->parent;
680
681 if (!parent)
682 return false;
683 return list_is_last(&dev->sibling_node, &parent->child_head);
684}
Simon Glassf5c67ea2015-07-30 13:40:39 -0600685
Simon Glassa2040fa2016-05-01 13:52:23 -0600686void device_set_name_alloced(struct udevice *dev)
687{
Simon Glassfd1c2d92016-07-04 11:58:15 -0600688 dev->flags |= DM_FLAG_NAME_ALLOCED;
Simon Glassa2040fa2016-05-01 13:52:23 -0600689}
690
Simon Glassf5c67ea2015-07-30 13:40:39 -0600691int device_set_name(struct udevice *dev, const char *name)
692{
693 name = strdup(name);
694 if (!name)
695 return -ENOMEM;
696 dev->name = name;
Simon Glassa2040fa2016-05-01 13:52:23 -0600697 device_set_name_alloced(dev);
Simon Glassf5c67ea2015-07-30 13:40:39 -0600698
699 return 0;
700}
Mugunthan V N73443b92016-04-28 15:36:02 +0530701
Simon Glass911f3ae2017-05-18 20:08:57 -0600702bool device_is_compatible(struct udevice *dev, const char *compat)
Mugunthan V N73443b92016-04-28 15:36:02 +0530703{
704 const void *fdt = gd->fdt_blob;
705
Simon Glasse160f7d2017-01-17 16:52:55 -0700706 return !fdt_node_check_compatible(fdt, dev_of_offset(dev), compat);
Mugunthan V N73443b92016-04-28 15:36:02 +0530707}
708
709bool of_machine_is_compatible(const char *compat)
710{
711 const void *fdt = gd->fdt_blob;
712
713 return !fdt_node_check_compatible(fdt, 0, compat);
714}