blob: fd59fe1e0f5d74a21fd06a872dfe29153869781b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass6494d702014-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 Glass6494d702014-02-26 15:59:18 -07009 */
10
11#include <common.h>
Vignesh R7c616862016-07-06 09:58:55 +053012#include <asm/io.h>
Philipp Tomsichf4fcba52018-01-08 13:59:18 +010013#include <clk.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>
Mario Six29d11b82018-01-15 11:07:20 +010020#include <dm/of_access.h>
Masahiro Yamadad90a5a32015-08-27 12:44:29 +090021#include <dm/pinctrl.h>
Simon Glass6494d702014-02-26 15:59:18 -070022#include <dm/platdata.h>
Simon Glass396e3432017-05-18 20:09:05 -060023#include <dm/read.h>
Simon Glass6494d702014-02-26 15:59:18 -070024#include <dm/uclass.h>
25#include <dm/uclass-internal.h>
26#include <dm/util.h>
27#include <linux/err.h>
28#include <linux/list.h>
Peng Fan3ad30772018-07-27 10:20:38 +080029#include <power-domain.h>
Simon Glass6494d702014-02-26 15:59:18 -070030
Simon Glass5a66a8f2014-07-23 06:55:12 -060031DECLARE_GLOBAL_DATA_PTR;
32
Stephen Warrendaac3bf2016-05-11 15:26:24 -060033static int device_bind_common(struct udevice *parent, const struct driver *drv,
34 const char *name, void *platdata,
Simon Glass7a61b0b2017-05-17 17:18:11 -060035 ulong driver_data, ofnode node,
Simon Glass9fa28192016-07-04 11:58:18 -060036 uint of_platdata_size, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -070037{
Heiko Schocher54c5d082014-05-22 12:43:05 +020038 struct udevice *dev;
Simon Glass6494d702014-02-26 15:59:18 -070039 struct uclass *uc;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020040 int size, ret = 0;
Simon Glass6494d702014-02-26 15:59:18 -070041
Masahiro Yamadae6cabe42015-08-27 12:44:28 +090042 if (devp)
43 *devp = NULL;
Simon Glass6494d702014-02-26 15:59:18 -070044 if (!name)
45 return -EINVAL;
46
47 ret = uclass_get(drv->id, &uc);
Simon Glass3346c872015-08-30 16:55:16 -060048 if (ret) {
49 debug("Missing uclass for driver %s\n", drv->name);
Simon Glass6494d702014-02-26 15:59:18 -070050 return ret;
Simon Glass3346c872015-08-30 16:55:16 -060051 }
Simon Glass6494d702014-02-26 15:59:18 -070052
Heiko Schocher54c5d082014-05-22 12:43:05 +020053 dev = calloc(1, sizeof(struct udevice));
Simon Glass6494d702014-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 Yamadae2282d72015-07-25 21:52:37 +090060#ifdef CONFIG_DEVRES
Masahiro Yamada608f26c2015-07-25 21:52:35 +090061 INIT_LIST_HEAD(&dev->devres_head);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090062#endif
Simon Glass6494d702014-02-26 15:59:18 -070063 dev->platdata = platdata;
Stephen Warrendaac3bf2016-05-11 15:26:24 -060064 dev->driver_data = driver_data;
Simon Glass6494d702014-02-26 15:59:18 -070065 dev->name = name;
Simon Glass7a61b0b2017-05-17 17:18:11 -060066 dev->node = node;
Simon Glass6494d702014-02-26 15:59:18 -070067 dev->parent = parent;
68 dev->driver = drv;
69 dev->uclass = uc;
Simon Glass5a66a8f2014-07-23 06:55:12 -060070
Simon Glass5a66a8f2014-07-23 06:55:12 -060071 dev->seq = -1;
Simon Glass91cbd792014-09-17 09:02:38 -060072 dev->req_seq = -1;
Nathan Rossi4f627c52016-01-08 03:00:45 +100073 if (CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_SEQ_ALIAS)) {
Simon Glass36fa61d2015-02-27 22:06:30 -070074 /*
Stefan Roese770eb302016-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 Glass36fa61d2015-02-27 22:06:30 -070081 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
Simon Glass7a61b0b2017-05-17 17:18:11 -060082 if (uc->uc_drv->name && ofnode_valid(node)) {
Simon Glass396e3432017-05-18 20:09:05 -060083 dev_read_alias_seq(dev, &dev->req_seq);
Simon Glass36fa61d2015-02-27 22:06:30 -070084 }
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)
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900166 pr_debug("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,
Simon Glass396e3432017-05-18 20:09:05 -0600219 ulong driver_data, ofnode node,
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600220 struct udevice **devp)
221{
Simon Glass396e3432017-05-18 20:09:05 -0600222 return device_bind_common(parent, drv, name, NULL, driver_data, node,
223 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 Glassd677b002018-06-11 13:07:15 -0600234int device_bind_ofnode(struct udevice *parent, const struct driver *drv,
235 const char *name, void *platdata, ofnode node,
236 struct udevice **devp)
237{
238 return device_bind_common(parent, drv, name, platdata, 0, node, 0,
239 devp);
240}
241
Simon Glass00606d72014-07-23 06:55:03 -0600242int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
243 const struct driver_info *info, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -0700244{
245 struct driver *drv;
Simon Glass9fa28192016-07-04 11:58:18 -0600246 uint platdata_size = 0;
Simon Glass6494d702014-02-26 15:59:18 -0700247
248 drv = lists_driver_lookup_name(info->name);
249 if (!drv)
250 return -ENOENT;
Simon Glass00606d72014-07-23 06:55:03 -0600251 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
252 return -EPERM;
Simon Glass6494d702014-02-26 15:59:18 -0700253
Simon Glass9fa28192016-07-04 11:58:18 -0600254#if CONFIG_IS_ENABLED(OF_PLATDATA)
255 platdata_size = info->platdata_size;
256#endif
257 return device_bind_common(parent, drv, info->name,
Simon Glass396e3432017-05-18 20:09:05 -0600258 (void *)info->platdata, 0, ofnode_null(), platdata_size,
259 devp);
Simon Glass6494d702014-02-26 15:59:18 -0700260}
261
Simon Glass2c03c462015-03-25 12:21:53 -0600262static void *alloc_priv(int size, uint flags)
263{
264 void *priv;
265
266 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
Faiz Abbas5924da12017-09-19 16:53:50 +0530267 size = ROUND(size, ARCH_DMA_MINALIGN);
Simon Glass2c03c462015-03-25 12:21:53 -0600268 priv = memalign(ARCH_DMA_MINALIGN, size);
Simon Glass5a8a8042017-04-04 13:00:19 -0600269 if (priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600270 memset(priv, '\0', size);
Simon Glass5a8a8042017-04-04 13:00:19 -0600271
272 /*
273 * Ensure that the zero bytes are flushed to memory.
274 * This prevents problems if the driver uses this as
275 * both an input and an output buffer:
276 *
277 * 1. Zeroes written to buffer (here) and sit in the
278 * cache
279 * 2. Driver issues a read command to DMA
280 * 3. CPU runs out of cache space and evicts some cache
281 * data in the buffer, writing zeroes to RAM from
282 * the memset() above
283 * 4. DMA completes
284 * 5. Buffer now has some DMA data and some zeroes
285 * 6. Data being read is now incorrect
286 *
287 * To prevent this, ensure that the cache is clean
288 * within this range at the start. The driver can then
289 * use normal flush-after-write, invalidate-before-read
290 * procedures.
291 *
292 * TODO(sjg@chromium.org): Drop this microblaze
293 * exception.
294 */
295#ifndef CONFIG_MICROBLAZE
296 flush_dcache_range((ulong)priv, (ulong)priv + size);
297#endif
298 }
Simon Glass2c03c462015-03-25 12:21:53 -0600299 } else {
300 priv = calloc(1, size);
301 }
302
303 return priv;
304}
305
Simon Glassc6db9652016-01-25 14:58:42 -0700306int device_probe(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700307{
Peng Fan3ad30772018-07-27 10:20:38 +0800308 struct power_domain pd;
Simon Glass34792532015-03-25 12:21:54 -0600309 const struct driver *drv;
Simon Glass6494d702014-02-26 15:59:18 -0700310 int size = 0;
311 int ret;
Simon Glass5a66a8f2014-07-23 06:55:12 -0600312 int seq;
Simon Glass6494d702014-02-26 15:59:18 -0700313
314 if (!dev)
315 return -EINVAL;
316
317 if (dev->flags & DM_FLAG_ACTIVATED)
318 return 0;
319
320 drv = dev->driver;
321 assert(drv);
322
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700323 /* Allocate private data if requested and not reentered */
324 if (drv->priv_auto_alloc_size && !dev->priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600325 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
Simon Glass6494d702014-02-26 15:59:18 -0700326 if (!dev->priv) {
327 ret = -ENOMEM;
328 goto fail;
329 }
330 }
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700331 /* Allocate private data if requested and not reentered */
Simon Glass6494d702014-02-26 15:59:18 -0700332 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700333 if (size && !dev->uclass_priv) {
Simon Glass6494d702014-02-26 15:59:18 -0700334 dev->uclass_priv = calloc(1, size);
335 if (!dev->uclass_priv) {
336 ret = -ENOMEM;
337 goto fail;
338 }
339 }
340
341 /* Ensure all parents are probed */
342 if (dev->parent) {
Simon Glasse59f4582014-07-23 06:55:20 -0600343 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassdac8db22015-01-25 08:27:06 -0700344 if (!size) {
345 size = dev->parent->uclass->uc_drv->
346 per_child_auto_alloc_size;
347 }
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700348 if (size && !dev->parent_priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600349 dev->parent_priv = alloc_priv(size, drv->flags);
Simon Glasse59f4582014-07-23 06:55:20 -0600350 if (!dev->parent_priv) {
351 ret = -ENOMEM;
352 goto fail;
353 }
354 }
355
Simon Glass6494d702014-02-26 15:59:18 -0700356 ret = device_probe(dev->parent);
357 if (ret)
358 goto fail;
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700359
360 /*
361 * The device might have already been probed during
362 * the call to device_probe() on its parent device
363 * (e.g. PCI bridge devices). Test the flags again
364 * so that we don't mess up the device.
365 */
366 if (dev->flags & DM_FLAG_ACTIVATED)
367 return 0;
Simon Glass6494d702014-02-26 15:59:18 -0700368 }
369
Simon Glass5a66a8f2014-07-23 06:55:12 -0600370 seq = uclass_resolve_seq(dev);
371 if (seq < 0) {
372 ret = seq;
373 goto fail;
374 }
375 dev->seq = seq;
376
Simon Glass206d4d22015-03-25 12:21:56 -0600377 dev->flags |= DM_FLAG_ACTIVATED;
378
Simon Glass84d26e22015-09-12 08:45:19 -0600379 /*
380 * Process pinctrl for everything except the root device, and
Simon Glass03795972016-01-21 19:43:25 -0700381 * continue regardless of the result of pinctrl. Don't process pinctrl
382 * settings for pinctrl devices since the device may not yet be
383 * probed.
Simon Glass84d26e22015-09-12 08:45:19 -0600384 */
Simon Glass03795972016-01-21 19:43:25 -0700385 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
Simon Glass84d26e22015-09-12 08:45:19 -0600386 pinctrl_select_state(dev, "default");
Masahiro Yamadad90a5a32015-08-27 12:44:29 +0900387
Peng Fan3ad30772018-07-27 10:20:38 +0800388 if (dev->parent && device_get_uclass_id(dev) != UCLASS_POWER_DOMAIN) {
389 if (!power_domain_get(dev, &pd))
390 power_domain_on(&pd);
391 }
392
Simon Glass02c07b32015-03-05 12:25:22 -0700393 ret = uclass_pre_probe_device(dev);
Simon Glass83c7e432015-01-25 08:27:10 -0700394 if (ret)
395 goto fail;
396
Simon Glassa327dee2014-07-23 06:55:21 -0600397 if (dev->parent && dev->parent->driver->child_pre_probe) {
398 ret = dev->parent->driver->child_pre_probe(dev);
399 if (ret)
400 goto fail;
401 }
402
Simon Glass396e3432017-05-18 20:09:05 -0600403 if (drv->ofdata_to_platdata && dev_has_of_node(dev)) {
Simon Glass6494d702014-02-26 15:59:18 -0700404 ret = drv->ofdata_to_platdata(dev);
405 if (ret)
406 goto fail;
407 }
408
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100409 /* Process 'assigned-{clocks/clock-parents/clock-rates}' properties */
410 ret = clk_set_defaults(dev);
411 if (ret)
412 goto fail;
413
Simon Glass6494d702014-02-26 15:59:18 -0700414 if (drv->probe) {
415 ret = drv->probe(dev);
Simon Glass02eeb1b2015-03-05 12:25:21 -0700416 if (ret) {
417 dev->flags &= ~DM_FLAG_ACTIVATED;
Simon Glass6494d702014-02-26 15:59:18 -0700418 goto fail;
Simon Glass02eeb1b2015-03-05 12:25:21 -0700419 }
Simon Glass6494d702014-02-26 15:59:18 -0700420 }
421
Simon Glass6494d702014-02-26 15:59:18 -0700422 ret = uclass_post_probe_device(dev);
Simon Glass206d4d22015-03-25 12:21:56 -0600423 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700424 goto fail_uclass;
Simon Glass6494d702014-02-26 15:59:18 -0700425
Peng Fanc3ab9852016-03-12 13:17:38 +0800426 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
427 pinctrl_select_state(dev, "default");
428
Simon Glass6494d702014-02-26 15:59:18 -0700429 return 0;
430fail_uclass:
Stefan Roese706865a2017-03-20 12:51:48 +0100431 if (device_remove(dev, DM_REMOVE_NORMAL)) {
Simon Glass6494d702014-02-26 15:59:18 -0700432 dm_warn("%s: Device '%s' failed to remove on error path\n",
433 __func__, dev->name);
434 }
435fail:
Simon Glass206d4d22015-03-25 12:21:56 -0600436 dev->flags &= ~DM_FLAG_ACTIVATED;
437
Simon Glass5a66a8f2014-07-23 06:55:12 -0600438 dev->seq = -1;
Simon Glass6494d702014-02-26 15:59:18 -0700439 device_free(dev);
440
441 return ret;
442}
443
Heiko Schocher54c5d082014-05-22 12:43:05 +0200444void *dev_get_platdata(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700445{
446 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700447 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700448 return NULL;
449 }
450
451 return dev->platdata;
452}
453
Simon Glasscdc133b2015-01-25 08:27:01 -0700454void *dev_get_parent_platdata(struct udevice *dev)
455{
456 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600457 dm_warn("%s: null device\n", __func__);
Simon Glasscdc133b2015-01-25 08:27:01 -0700458 return NULL;
459 }
460
461 return dev->parent_platdata;
462}
463
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200464void *dev_get_uclass_platdata(struct udevice *dev)
465{
466 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600467 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200468 return NULL;
469 }
470
471 return dev->uclass_platdata;
472}
473
Heiko Schocher54c5d082014-05-22 12:43:05 +0200474void *dev_get_priv(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700475{
476 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700477 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700478 return NULL;
479 }
480
481 return dev->priv;
482}
Simon Glass997c87b2014-07-23 06:55:19 -0600483
Simon Glasse564f052015-03-05 12:25:20 -0700484void *dev_get_uclass_priv(struct udevice *dev)
485{
486 if (!dev) {
487 dm_warn("%s: null device\n", __func__);
488 return NULL;
489 }
490
491 return dev->uclass_priv;
492}
493
Simon Glassbcbe3d12015-09-28 23:32:01 -0600494void *dev_get_parent_priv(struct udevice *dev)
Simon Glasse59f4582014-07-23 06:55:20 -0600495{
496 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700497 dm_warn("%s: null device\n", __func__);
Simon Glasse59f4582014-07-23 06:55:20 -0600498 return NULL;
499 }
500
501 return dev->parent_priv;
502}
503
Simon Glass997c87b2014-07-23 06:55:19 -0600504static int device_get_device_tail(struct udevice *dev, int ret,
505 struct udevice **devp)
506{
507 if (ret)
508 return ret;
509
510 ret = device_probe(dev);
511 if (ret)
512 return ret;
513
514 *devp = dev;
515
516 return 0;
517}
518
519int device_get_child(struct udevice *parent, int index, struct udevice **devp)
520{
521 struct udevice *dev;
522
523 list_for_each_entry(dev, &parent->child_head, sibling_node) {
524 if (!index--)
525 return device_get_device_tail(dev, 0, devp);
526 }
527
528 return -ENODEV;
529}
530
531int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
532 bool find_req_seq, struct udevice **devp)
533{
534 struct udevice *dev;
535
536 *devp = NULL;
537 if (seq_or_req_seq == -1)
538 return -ENODEV;
539
540 list_for_each_entry(dev, &parent->child_head, sibling_node) {
541 if ((find_req_seq ? dev->req_seq : dev->seq) ==
542 seq_or_req_seq) {
543 *devp = dev;
544 return 0;
545 }
546 }
547
548 return -ENODEV;
549}
550
551int device_get_child_by_seq(struct udevice *parent, int seq,
552 struct udevice **devp)
553{
554 struct udevice *dev;
555 int ret;
556
557 *devp = NULL;
558 ret = device_find_child_by_seq(parent, seq, false, &dev);
559 if (ret == -ENODEV) {
560 /*
561 * We didn't find it in probed devices. See if there is one
562 * that will request this seq if probed.
563 */
564 ret = device_find_child_by_seq(parent, seq, true, &dev);
565 }
566 return device_get_device_tail(dev, ret, devp);
567}
568
569int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
570 struct udevice **devp)
571{
572 struct udevice *dev;
573
574 *devp = NULL;
575
576 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Simon Glasse160f7d2017-01-17 16:52:55 -0700577 if (dev_of_offset(dev) == of_offset) {
Simon Glass997c87b2014-07-23 06:55:19 -0600578 *devp = dev;
579 return 0;
580 }
581 }
582
583 return -ENODEV;
584}
585
Simon Glass132f9bf2015-06-23 15:38:38 -0600586int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass997c87b2014-07-23 06:55:19 -0600587 struct udevice **devp)
588{
589 struct udevice *dev;
590 int ret;
591
592 *devp = NULL;
Simon Glass132f9bf2015-06-23 15:38:38 -0600593 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass997c87b2014-07-23 06:55:19 -0600594 return device_get_device_tail(dev, ret, devp);
595}
Simon Glassa8981d42014-10-13 23:41:49 -0600596
Jean-Jacques Hiblot7ec91812018-08-09 16:17:44 +0200597static struct udevice *_device_find_global_by_ofnode(struct udevice *parent,
598 ofnode ofnode)
Simon Glass26930472015-06-23 15:38:37 -0600599{
600 struct udevice *dev, *found;
601
Jean-Jacques Hiblot7ec91812018-08-09 16:17:44 +0200602 if (ofnode_equal(dev_ofnode(parent), ofnode))
Simon Glass26930472015-06-23 15:38:37 -0600603 return parent;
604
605 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Jean-Jacques Hiblot7ec91812018-08-09 16:17:44 +0200606 found = _device_find_global_by_ofnode(dev, ofnode);
Simon Glass26930472015-06-23 15:38:37 -0600607 if (found)
608 return found;
609 }
610
611 return NULL;
612}
613
Jean-Jacques Hiblot7ec91812018-08-09 16:17:44 +0200614int device_find_global_by_ofnode(ofnode ofnode, struct udevice **devp)
615{
616 *devp = _device_find_global_by_ofnode(gd->dm_root, ofnode);
617
618 return *devp ? 0 : -ENOENT;
619}
620
621int device_get_global_by_ofnode(ofnode ofnode, struct udevice **devp)
Simon Glass26930472015-06-23 15:38:37 -0600622{
623 struct udevice *dev;
624
Jean-Jacques Hiblot7ec91812018-08-09 16:17:44 +0200625 dev = _device_find_global_by_ofnode(gd->dm_root, ofnode);
Simon Glass26930472015-06-23 15:38:37 -0600626 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
627}
628
Simon Glassa8981d42014-10-13 23:41:49 -0600629int device_find_first_child(struct udevice *parent, struct udevice **devp)
630{
631 if (list_empty(&parent->child_head)) {
632 *devp = NULL;
633 } else {
634 *devp = list_first_entry(&parent->child_head, struct udevice,
635 sibling_node);
636 }
637
638 return 0;
639}
640
641int device_find_next_child(struct udevice **devp)
642{
643 struct udevice *dev = *devp;
644 struct udevice *parent = dev->parent;
645
646 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
647 *devp = NULL;
648 } else {
649 *devp = list_entry(dev->sibling_node.next, struct udevice,
650 sibling_node);
651 }
652
653 return 0;
654}
Simon Glass2ef249b2014-11-11 10:46:18 -0700655
Simon Glass479728c2014-11-11 10:46:19 -0700656struct udevice *dev_get_parent(struct udevice *child)
657{
658 return child->parent;
659}
660
Simon Glass39de8432015-03-25 12:21:55 -0600661ulong dev_get_driver_data(struct udevice *dev)
Simon Glass2ef249b2014-11-11 10:46:18 -0700662{
Simon Glass39de8432015-03-25 12:21:55 -0600663 return dev->driver_data;
Simon Glass2ef249b2014-11-11 10:46:18 -0700664}
Simon Glassb3670532015-01-25 08:27:04 -0700665
Przemyslaw Marczakcc73d372015-04-15 13:07:24 +0200666const void *dev_get_driver_ops(struct udevice *dev)
667{
668 if (!dev || !dev->driver->ops)
669 return NULL;
670
671 return dev->driver->ops;
672}
673
Simon Glassb3670532015-01-25 08:27:04 -0700674enum uclass_id device_get_uclass_id(struct udevice *dev)
675{
676 return dev->uclass->uc_drv->id;
677}
Peng Fanc9cac3f2015-02-10 14:46:32 +0800678
Przemyslaw Marczakf9c370d2015-04-15 13:07:25 +0200679const char *dev_get_uclass_name(struct udevice *dev)
680{
681 if (!dev)
682 return NULL;
683
684 return dev->uclass->uc_drv->name;
685}
686
Simon Glassc5785672015-03-25 12:21:57 -0600687bool device_has_children(struct udevice *dev)
688{
689 return !list_empty(&dev->child_head);
690}
691
692bool device_has_active_children(struct udevice *dev)
693{
694 struct udevice *child;
695
696 for (device_find_first_child(dev, &child);
697 child;
698 device_find_next_child(&child)) {
699 if (device_active(child))
700 return true;
701 }
702
703 return false;
704}
705
706bool device_is_last_sibling(struct udevice *dev)
707{
708 struct udevice *parent = dev->parent;
709
710 if (!parent)
711 return false;
712 return list_is_last(&dev->sibling_node, &parent->child_head);
713}
Simon Glassf5c67ea2015-07-30 13:40:39 -0600714
Simon Glassa2040fa2016-05-01 13:52:23 -0600715void device_set_name_alloced(struct udevice *dev)
716{
Simon Glassfd1c2d92016-07-04 11:58:15 -0600717 dev->flags |= DM_FLAG_NAME_ALLOCED;
Simon Glassa2040fa2016-05-01 13:52:23 -0600718}
719
Simon Glassf5c67ea2015-07-30 13:40:39 -0600720int device_set_name(struct udevice *dev, const char *name)
721{
722 name = strdup(name);
723 if (!name)
724 return -ENOMEM;
725 dev->name = name;
Simon Glassa2040fa2016-05-01 13:52:23 -0600726 device_set_name_alloced(dev);
Simon Glassf5c67ea2015-07-30 13:40:39 -0600727
728 return 0;
729}
Mugunthan V N73443b92016-04-28 15:36:02 +0530730
Simon Glass911f3ae2017-05-18 20:08:57 -0600731bool device_is_compatible(struct udevice *dev, const char *compat)
Mugunthan V N73443b92016-04-28 15:36:02 +0530732{
Masahiro Yamada5ccc2c22018-04-19 12:14:02 +0900733 return ofnode_device_is_compatible(dev_ofnode(dev), compat);
Mugunthan V N73443b92016-04-28 15:36:02 +0530734}
735
736bool of_machine_is_compatible(const char *compat)
737{
738 const void *fdt = gd->fdt_blob;
739
740 return !fdt_node_check_compatible(fdt, 0, compat);
741}