blob: 363c1833e98ab369013f5cb1dc86c2d24542e0b5 [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>
22#include <dm/uclass.h>
23#include <dm/uclass-internal.h>
24#include <dm/util.h>
25#include <linux/err.h>
26#include <linux/list.h>
27
Simon Glass5a66a8f2014-07-23 06:55:12 -060028DECLARE_GLOBAL_DATA_PTR;
29
Stephen Warrendaac3bf2016-05-11 15:26:24 -060030static int device_bind_common(struct udevice *parent, const struct driver *drv,
31 const char *name, void *platdata,
Simon Glass7a61b0b2017-05-17 17:18:11 -060032 ulong driver_data, ofnode node,
Simon Glass9fa28192016-07-04 11:58:18 -060033 uint of_platdata_size, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -070034{
Heiko Schocher54c5d082014-05-22 12:43:05 +020035 struct udevice *dev;
Simon Glass6494d702014-02-26 15:59:18 -070036 struct uclass *uc;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020037 int size, ret = 0;
Simon Glass6494d702014-02-26 15:59:18 -070038
Masahiro Yamadae6cabe42015-08-27 12:44:28 +090039 if (devp)
40 *devp = NULL;
Simon Glass6494d702014-02-26 15:59:18 -070041 if (!name)
42 return -EINVAL;
43
44 ret = uclass_get(drv->id, &uc);
Simon Glass3346c872015-08-30 16:55:16 -060045 if (ret) {
46 debug("Missing uclass for driver %s\n", drv->name);
Simon Glass6494d702014-02-26 15:59:18 -070047 return ret;
Simon Glass3346c872015-08-30 16:55:16 -060048 }
Simon Glass6494d702014-02-26 15:59:18 -070049
Heiko Schocher54c5d082014-05-22 12:43:05 +020050 dev = calloc(1, sizeof(struct udevice));
Simon Glass6494d702014-02-26 15:59:18 -070051 if (!dev)
52 return -ENOMEM;
53
54 INIT_LIST_HEAD(&dev->sibling_node);
55 INIT_LIST_HEAD(&dev->child_head);
56 INIT_LIST_HEAD(&dev->uclass_node);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090057#ifdef CONFIG_DEVRES
Masahiro Yamada608f26c2015-07-25 21:52:35 +090058 INIT_LIST_HEAD(&dev->devres_head);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090059#endif
Simon Glass6494d702014-02-26 15:59:18 -070060 dev->platdata = platdata;
Stephen Warrendaac3bf2016-05-11 15:26:24 -060061 dev->driver_data = driver_data;
Simon Glass6494d702014-02-26 15:59:18 -070062 dev->name = name;
Simon Glass7a61b0b2017-05-17 17:18:11 -060063 dev->node = node;
Simon Glass6494d702014-02-26 15:59:18 -070064 dev->parent = parent;
65 dev->driver = drv;
66 dev->uclass = uc;
Simon Glass5a66a8f2014-07-23 06:55:12 -060067
Simon Glass5a66a8f2014-07-23 06:55:12 -060068 dev->seq = -1;
Simon Glass91cbd792014-09-17 09:02:38 -060069 dev->req_seq = -1;
Nathan Rossi4f627c52016-01-08 03:00:45 +100070 if (CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_SEQ_ALIAS)) {
Simon Glass36fa61d2015-02-27 22:06:30 -070071 /*
Stefan Roese770eb302016-03-16 09:58:01 +010072 * Some devices, such as a SPI bus, I2C bus and serial ports
73 * are numbered using aliases.
74 *
75 * This is just a 'requested' sequence, and will be
76 * resolved (and ->seq updated) when the device is probed.
77 */
Simon Glass36fa61d2015-02-27 22:06:30 -070078 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
Simon Glass7a61b0b2017-05-17 17:18:11 -060079 if (uc->uc_drv->name && ofnode_valid(node)) {
Simon Glass36fa61d2015-02-27 22:06:30 -070080 fdtdec_get_alias_seq(gd->fdt_blob,
Simon Glass7a61b0b2017-05-17 17:18:11 -060081 uc->uc_drv->name,
82 ofnode_to_offset(node),
Simon Glass36fa61d2015-02-27 22:06:30 -070083 &dev->req_seq);
84 }
Simon Glass9cc36a22015-01-25 08:27:05 -070085 }
86 }
Simon Glass36fa61d2015-02-27 22:06:30 -070087
Simon Glass9fa28192016-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 Glassf8a85442015-01-25 08:27:00 -0700111 }
112 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700113
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200114 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 }
123
124 if (parent) {
125 size = parent->driver->per_child_platdata_auto_alloc_size;
Simon Glassba8da9d2015-01-25 08:27:02 -0700126 if (!size) {
127 size = parent->uclass->uc_drv->
128 per_child_platdata_auto_alloc_size;
129 }
Simon Glasscdc133b2015-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 Marczak5eaed882015-04-15 13:07:18 +0200135 goto fail_alloc3;
Simon Glasscdc133b2015-01-25 08:27:01 -0700136 }
137 }
138 }
Simon Glass6494d702014-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 Glass72ebfe82015-01-25 08:26:59 -0700146 goto fail_uclass_bind;
Simon Glass6494d702014-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 Glass72ebfe82015-01-25 08:26:59 -0700151 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700152 goto fail_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700153 }
Simon Glass0118ce72015-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 Glass20af3c02016-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 Glass0118ce72015-01-25 08:27:03 -0700164
Simon Glass6494d702014-02-26 15:59:18 -0700165 if (parent)
166 dm_dbg("Bound device %s to %s\n", dev->name, parent->name);
Masahiro Yamadae6cabe42015-08-27 12:44:28 +0900167 if (devp)
168 *devp = dev;
Simon Glass6494d702014-02-26 15:59:18 -0700169
Masahiro Yamadaaed1a4d2015-07-25 21:52:34 +0900170 dev->flags |= DM_FLAG_BOUND;
171
Simon Glass6494d702014-02-26 15:59:18 -0700172 return 0;
173
Simon Glass20af3c02016-01-05 09:30:59 -0700174fail_uclass_post_bind:
175 /* There is no child unbind() method, so no clean-up required */
Simon Glass0118ce72015-01-25 08:27:03 -0700176fail_child_post_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900177 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-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 Glass0118ce72015-01-25 08:27:03 -0700182 }
183
Simon Glass6494d702014-02-26 15:59:18 -0700184fail_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900185 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-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 Glass72ebfe82015-01-25 08:26:59 -0700190 }
191fail_uclass_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900192 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-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 Glasscdc133b2015-01-25 08:27:01 -0700198 }
Przemyslaw Marczak5eaed882015-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 Glasscdc133b2015-01-25 08:27:01 -0700204fail_alloc2:
Simon Glassf8a85442015-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 Yamada608f26c2015-07-25 21:52:35 +0900210 devres_release_all(dev);
211
Simon Glass6494d702014-02-26 15:59:18 -0700212 free(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700213
Simon Glass6494d702014-02-26 15:59:18 -0700214 return ret;
215}
216
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600217int device_bind_with_driver_data(struct udevice *parent,
218 const struct driver *drv, const char *name,
219 ulong driver_data, int of_offset,
220 struct udevice **devp)
221{
222 return device_bind_common(parent, drv, name, NULL, driver_data,
Simon Glass7a61b0b2017-05-17 17:18:11 -0600223 offset_to_ofnode(of_offset), 0, devp);
Stephen Warrendaac3bf2016-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 Glass7a61b0b2017-05-17 17:18:11 -0600230 return device_bind_common(parent, drv, name, platdata, 0,
231 offset_to_ofnode(of_offset), 0, devp);
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600232}
233
Simon Glass00606d72014-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 Glass6494d702014-02-26 15:59:18 -0700236{
237 struct driver *drv;
Simon Glass9fa28192016-07-04 11:58:18 -0600238 uint platdata_size = 0;
Simon Glass6494d702014-02-26 15:59:18 -0700239
240 drv = lists_driver_lookup_name(info->name);
241 if (!drv)
242 return -ENOENT;
Simon Glass00606d72014-07-23 06:55:03 -0600243 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
244 return -EPERM;
Simon Glass6494d702014-02-26 15:59:18 -0700245
Simon Glass9fa28192016-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 Glass7a61b0b2017-05-17 17:18:11 -0600250 (void *)info->platdata, 0, offset_to_ofnode(-1),
251 platdata_size, devp);
Simon Glass6494d702014-02-26 15:59:18 -0700252}
253
Simon Glass2c03c462015-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) {
259 priv = memalign(ARCH_DMA_MINALIGN, size);
Simon Glass5a8a8042017-04-04 13:00:19 -0600260 if (priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600261 memset(priv, '\0', size);
Simon Glass5a8a8042017-04-04 13:00:19 -0600262
263 /*
264 * Ensure that the zero bytes are flushed to memory.
265 * This prevents problems if the driver uses this as
266 * both an input and an output buffer:
267 *
268 * 1. Zeroes written to buffer (here) and sit in the
269 * cache
270 * 2. Driver issues a read command to DMA
271 * 3. CPU runs out of cache space and evicts some cache
272 * data in the buffer, writing zeroes to RAM from
273 * the memset() above
274 * 4. DMA completes
275 * 5. Buffer now has some DMA data and some zeroes
276 * 6. Data being read is now incorrect
277 *
278 * To prevent this, ensure that the cache is clean
279 * within this range at the start. The driver can then
280 * use normal flush-after-write, invalidate-before-read
281 * procedures.
282 *
283 * TODO(sjg@chromium.org): Drop this microblaze
284 * exception.
285 */
286#ifndef CONFIG_MICROBLAZE
287 flush_dcache_range((ulong)priv, (ulong)priv + size);
288#endif
289 }
Simon Glass2c03c462015-03-25 12:21:53 -0600290 } else {
291 priv = calloc(1, size);
292 }
293
294 return priv;
295}
296
Simon Glassc6db9652016-01-25 14:58:42 -0700297int device_probe(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700298{
Simon Glass34792532015-03-25 12:21:54 -0600299 const struct driver *drv;
Simon Glass6494d702014-02-26 15:59:18 -0700300 int size = 0;
301 int ret;
Simon Glass5a66a8f2014-07-23 06:55:12 -0600302 int seq;
Simon Glass6494d702014-02-26 15:59:18 -0700303
304 if (!dev)
305 return -EINVAL;
306
307 if (dev->flags & DM_FLAG_ACTIVATED)
308 return 0;
309
310 drv = dev->driver;
311 assert(drv);
312
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700313 /* Allocate private data if requested and not reentered */
314 if (drv->priv_auto_alloc_size && !dev->priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600315 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
Simon Glass6494d702014-02-26 15:59:18 -0700316 if (!dev->priv) {
317 ret = -ENOMEM;
318 goto fail;
319 }
320 }
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700321 /* Allocate private data if requested and not reentered */
Simon Glass6494d702014-02-26 15:59:18 -0700322 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700323 if (size && !dev->uclass_priv) {
Simon Glass6494d702014-02-26 15:59:18 -0700324 dev->uclass_priv = calloc(1, size);
325 if (!dev->uclass_priv) {
326 ret = -ENOMEM;
327 goto fail;
328 }
329 }
330
331 /* Ensure all parents are probed */
332 if (dev->parent) {
Simon Glasse59f4582014-07-23 06:55:20 -0600333 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassdac8db22015-01-25 08:27:06 -0700334 if (!size) {
335 size = dev->parent->uclass->uc_drv->
336 per_child_auto_alloc_size;
337 }
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700338 if (size && !dev->parent_priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600339 dev->parent_priv = alloc_priv(size, drv->flags);
Simon Glasse59f4582014-07-23 06:55:20 -0600340 if (!dev->parent_priv) {
341 ret = -ENOMEM;
342 goto fail;
343 }
344 }
345
Simon Glass6494d702014-02-26 15:59:18 -0700346 ret = device_probe(dev->parent);
347 if (ret)
348 goto fail;
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700349
350 /*
351 * The device might have already been probed during
352 * the call to device_probe() on its parent device
353 * (e.g. PCI bridge devices). Test the flags again
354 * so that we don't mess up the device.
355 */
356 if (dev->flags & DM_FLAG_ACTIVATED)
357 return 0;
Simon Glass6494d702014-02-26 15:59:18 -0700358 }
359
Simon Glass5a66a8f2014-07-23 06:55:12 -0600360 seq = uclass_resolve_seq(dev);
361 if (seq < 0) {
362 ret = seq;
363 goto fail;
364 }
365 dev->seq = seq;
366
Simon Glass206d4d22015-03-25 12:21:56 -0600367 dev->flags |= DM_FLAG_ACTIVATED;
368
Simon Glass84d26e22015-09-12 08:45:19 -0600369 /*
370 * Process pinctrl for everything except the root device, and
Simon Glass03795972016-01-21 19:43:25 -0700371 * continue regardless of the result of pinctrl. Don't process pinctrl
372 * settings for pinctrl devices since the device may not yet be
373 * probed.
Simon Glass84d26e22015-09-12 08:45:19 -0600374 */
Simon Glass03795972016-01-21 19:43:25 -0700375 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
Simon Glass84d26e22015-09-12 08:45:19 -0600376 pinctrl_select_state(dev, "default");
Masahiro Yamadad90a5a32015-08-27 12:44:29 +0900377
Simon Glass02c07b32015-03-05 12:25:22 -0700378 ret = uclass_pre_probe_device(dev);
Simon Glass83c7e432015-01-25 08:27:10 -0700379 if (ret)
380 goto fail;
381
Simon Glassa327dee2014-07-23 06:55:21 -0600382 if (dev->parent && dev->parent->driver->child_pre_probe) {
383 ret = dev->parent->driver->child_pre_probe(dev);
384 if (ret)
385 goto fail;
386 }
387
Simon Glasse160f7d2017-01-17 16:52:55 -0700388 if (drv->ofdata_to_platdata && dev_of_offset(dev) >= 0) {
Simon Glass6494d702014-02-26 15:59:18 -0700389 ret = drv->ofdata_to_platdata(dev);
390 if (ret)
391 goto fail;
392 }
393
394 if (drv->probe) {
395 ret = drv->probe(dev);
Simon Glass02eeb1b2015-03-05 12:25:21 -0700396 if (ret) {
397 dev->flags &= ~DM_FLAG_ACTIVATED;
Simon Glass6494d702014-02-26 15:59:18 -0700398 goto fail;
Simon Glass02eeb1b2015-03-05 12:25:21 -0700399 }
Simon Glass6494d702014-02-26 15:59:18 -0700400 }
401
Simon Glass6494d702014-02-26 15:59:18 -0700402 ret = uclass_post_probe_device(dev);
Simon Glass206d4d22015-03-25 12:21:56 -0600403 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700404 goto fail_uclass;
Simon Glass6494d702014-02-26 15:59:18 -0700405
Peng Fanc3ab9852016-03-12 13:17:38 +0800406 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
407 pinctrl_select_state(dev, "default");
408
Simon Glass6494d702014-02-26 15:59:18 -0700409 return 0;
410fail_uclass:
Stefan Roese706865a2017-03-20 12:51:48 +0100411 if (device_remove(dev, DM_REMOVE_NORMAL)) {
Simon Glass6494d702014-02-26 15:59:18 -0700412 dm_warn("%s: Device '%s' failed to remove on error path\n",
413 __func__, dev->name);
414 }
415fail:
Simon Glass206d4d22015-03-25 12:21:56 -0600416 dev->flags &= ~DM_FLAG_ACTIVATED;
417
Simon Glass5a66a8f2014-07-23 06:55:12 -0600418 dev->seq = -1;
Simon Glass6494d702014-02-26 15:59:18 -0700419 device_free(dev);
420
421 return ret;
422}
423
Heiko Schocher54c5d082014-05-22 12:43:05 +0200424void *dev_get_platdata(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700425{
426 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700427 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700428 return NULL;
429 }
430
431 return dev->platdata;
432}
433
Simon Glasscdc133b2015-01-25 08:27:01 -0700434void *dev_get_parent_platdata(struct udevice *dev)
435{
436 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600437 dm_warn("%s: null device\n", __func__);
Simon Glasscdc133b2015-01-25 08:27:01 -0700438 return NULL;
439 }
440
441 return dev->parent_platdata;
442}
443
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200444void *dev_get_uclass_platdata(struct udevice *dev)
445{
446 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600447 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200448 return NULL;
449 }
450
451 return dev->uclass_platdata;
452}
453
Heiko Schocher54c5d082014-05-22 12:43:05 +0200454void *dev_get_priv(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700455{
456 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700457 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700458 return NULL;
459 }
460
461 return dev->priv;
462}
Simon Glass997c87b2014-07-23 06:55:19 -0600463
Simon Glasse564f052015-03-05 12:25:20 -0700464void *dev_get_uclass_priv(struct udevice *dev)
465{
466 if (!dev) {
467 dm_warn("%s: null device\n", __func__);
468 return NULL;
469 }
470
471 return dev->uclass_priv;
472}
473
Simon Glassbcbe3d12015-09-28 23:32:01 -0600474void *dev_get_parent_priv(struct udevice *dev)
Simon Glasse59f4582014-07-23 06:55:20 -0600475{
476 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700477 dm_warn("%s: null device\n", __func__);
Simon Glasse59f4582014-07-23 06:55:20 -0600478 return NULL;
479 }
480
481 return dev->parent_priv;
482}
483
Simon Glass997c87b2014-07-23 06:55:19 -0600484static int device_get_device_tail(struct udevice *dev, int ret,
485 struct udevice **devp)
486{
487 if (ret)
488 return ret;
489
490 ret = device_probe(dev);
491 if (ret)
492 return ret;
493
494 *devp = dev;
495
496 return 0;
497}
498
499int device_get_child(struct udevice *parent, int index, struct udevice **devp)
500{
501 struct udevice *dev;
502
503 list_for_each_entry(dev, &parent->child_head, sibling_node) {
504 if (!index--)
505 return device_get_device_tail(dev, 0, devp);
506 }
507
508 return -ENODEV;
509}
510
511int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
512 bool find_req_seq, struct udevice **devp)
513{
514 struct udevice *dev;
515
516 *devp = NULL;
517 if (seq_or_req_seq == -1)
518 return -ENODEV;
519
520 list_for_each_entry(dev, &parent->child_head, sibling_node) {
521 if ((find_req_seq ? dev->req_seq : dev->seq) ==
522 seq_or_req_seq) {
523 *devp = dev;
524 return 0;
525 }
526 }
527
528 return -ENODEV;
529}
530
531int device_get_child_by_seq(struct udevice *parent, int seq,
532 struct udevice **devp)
533{
534 struct udevice *dev;
535 int ret;
536
537 *devp = NULL;
538 ret = device_find_child_by_seq(parent, seq, false, &dev);
539 if (ret == -ENODEV) {
540 /*
541 * We didn't find it in probed devices. See if there is one
542 * that will request this seq if probed.
543 */
544 ret = device_find_child_by_seq(parent, seq, true, &dev);
545 }
546 return device_get_device_tail(dev, ret, devp);
547}
548
549int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
550 struct udevice **devp)
551{
552 struct udevice *dev;
553
554 *devp = NULL;
555
556 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Simon Glasse160f7d2017-01-17 16:52:55 -0700557 if (dev_of_offset(dev) == of_offset) {
Simon Glass997c87b2014-07-23 06:55:19 -0600558 *devp = dev;
559 return 0;
560 }
561 }
562
563 return -ENODEV;
564}
565
Simon Glass132f9bf2015-06-23 15:38:38 -0600566int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass997c87b2014-07-23 06:55:19 -0600567 struct udevice **devp)
568{
569 struct udevice *dev;
570 int ret;
571
572 *devp = NULL;
Simon Glass132f9bf2015-06-23 15:38:38 -0600573 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass997c87b2014-07-23 06:55:19 -0600574 return device_get_device_tail(dev, ret, devp);
575}
Simon Glassa8981d42014-10-13 23:41:49 -0600576
Simon Glass26930472015-06-23 15:38:37 -0600577static struct udevice *_device_find_global_by_of_offset(struct udevice *parent,
578 int of_offset)
579{
580 struct udevice *dev, *found;
581
Simon Glasse160f7d2017-01-17 16:52:55 -0700582 if (dev_of_offset(parent) == of_offset)
Simon Glass26930472015-06-23 15:38:37 -0600583 return parent;
584
585 list_for_each_entry(dev, &parent->child_head, sibling_node) {
586 found = _device_find_global_by_of_offset(dev, of_offset);
587 if (found)
588 return found;
589 }
590
591 return NULL;
592}
593
594int device_get_global_by_of_offset(int of_offset, struct udevice **devp)
595{
596 struct udevice *dev;
597
598 dev = _device_find_global_by_of_offset(gd->dm_root, of_offset);
599 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
600}
601
Simon Glassa8981d42014-10-13 23:41:49 -0600602int device_find_first_child(struct udevice *parent, struct udevice **devp)
603{
604 if (list_empty(&parent->child_head)) {
605 *devp = NULL;
606 } else {
607 *devp = list_first_entry(&parent->child_head, struct udevice,
608 sibling_node);
609 }
610
611 return 0;
612}
613
614int device_find_next_child(struct udevice **devp)
615{
616 struct udevice *dev = *devp;
617 struct udevice *parent = dev->parent;
618
619 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
620 *devp = NULL;
621 } else {
622 *devp = list_entry(dev->sibling_node.next, struct udevice,
623 sibling_node);
624 }
625
626 return 0;
627}
Simon Glass2ef249b2014-11-11 10:46:18 -0700628
Simon Glass479728c2014-11-11 10:46:19 -0700629struct udevice *dev_get_parent(struct udevice *child)
630{
631 return child->parent;
632}
633
Simon Glass39de8432015-03-25 12:21:55 -0600634ulong dev_get_driver_data(struct udevice *dev)
Simon Glass2ef249b2014-11-11 10:46:18 -0700635{
Simon Glass39de8432015-03-25 12:21:55 -0600636 return dev->driver_data;
Simon Glass2ef249b2014-11-11 10:46:18 -0700637}
Simon Glassb3670532015-01-25 08:27:04 -0700638
Przemyslaw Marczakcc73d372015-04-15 13:07:24 +0200639const void *dev_get_driver_ops(struct udevice *dev)
640{
641 if (!dev || !dev->driver->ops)
642 return NULL;
643
644 return dev->driver->ops;
645}
646
Simon Glassb3670532015-01-25 08:27:04 -0700647enum uclass_id device_get_uclass_id(struct udevice *dev)
648{
649 return dev->uclass->uc_drv->id;
650}
Peng Fanc9cac3f2015-02-10 14:46:32 +0800651
Przemyslaw Marczakf9c370d2015-04-15 13:07:25 +0200652const char *dev_get_uclass_name(struct udevice *dev)
653{
654 if (!dev)
655 return NULL;
656
657 return dev->uclass->uc_drv->name;
658}
659
Simon Glassc5785672015-03-25 12:21:57 -0600660bool device_has_children(struct udevice *dev)
661{
662 return !list_empty(&dev->child_head);
663}
664
665bool device_has_active_children(struct udevice *dev)
666{
667 struct udevice *child;
668
669 for (device_find_first_child(dev, &child);
670 child;
671 device_find_next_child(&child)) {
672 if (device_active(child))
673 return true;
674 }
675
676 return false;
677}
678
679bool device_is_last_sibling(struct udevice *dev)
680{
681 struct udevice *parent = dev->parent;
682
683 if (!parent)
684 return false;
685 return list_is_last(&dev->sibling_node, &parent->child_head);
686}
Simon Glassf5c67ea2015-07-30 13:40:39 -0600687
Simon Glassa2040fa2016-05-01 13:52:23 -0600688void device_set_name_alloced(struct udevice *dev)
689{
Simon Glassfd1c2d92016-07-04 11:58:15 -0600690 dev->flags |= DM_FLAG_NAME_ALLOCED;
Simon Glassa2040fa2016-05-01 13:52:23 -0600691}
692
Simon Glassf5c67ea2015-07-30 13:40:39 -0600693int device_set_name(struct udevice *dev, const char *name)
694{
695 name = strdup(name);
696 if (!name)
697 return -ENOMEM;
698 dev->name = name;
Simon Glassa2040fa2016-05-01 13:52:23 -0600699 device_set_name_alloced(dev);
Simon Glassf5c67ea2015-07-30 13:40:39 -0600700
701 return 0;
702}
Mugunthan V N73443b92016-04-28 15:36:02 +0530703
704bool of_device_is_compatible(struct udevice *dev, const char *compat)
705{
706 const void *fdt = gd->fdt_blob;
707
Simon Glasse160f7d2017-01-17 16:52:55 -0700708 return !fdt_node_check_compatible(fdt, dev_of_offset(dev), compat);
Mugunthan V N73443b92016-04-28 15:36:02 +0530709}
710
711bool of_machine_is_compatible(const char *compat)
712{
713 const void *fdt = gd->fdt_blob;
714
715 return !fdt_node_check_compatible(fdt, 0, compat);
716}