blob: 1a329565680e0fe77cdac73881a84baa3a06d96c [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>
29
Simon Glass5a66a8f2014-07-23 06:55:12 -060030DECLARE_GLOBAL_DATA_PTR;
31
Stephen Warrendaac3bf2016-05-11 15:26:24 -060032static int device_bind_common(struct udevice *parent, const struct driver *drv,
33 const char *name, void *platdata,
Simon Glass7a61b0b2017-05-17 17:18:11 -060034 ulong driver_data, ofnode node,
Simon Glass9fa28192016-07-04 11:58:18 -060035 uint of_platdata_size, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -070036{
Heiko Schocher54c5d082014-05-22 12:43:05 +020037 struct udevice *dev;
Simon Glass6494d702014-02-26 15:59:18 -070038 struct uclass *uc;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020039 int size, ret = 0;
Simon Glass6494d702014-02-26 15:59:18 -070040
Masahiro Yamadae6cabe42015-08-27 12:44:28 +090041 if (devp)
42 *devp = NULL;
Simon Glass6494d702014-02-26 15:59:18 -070043 if (!name)
44 return -EINVAL;
45
46 ret = uclass_get(drv->id, &uc);
Simon Glass3346c872015-08-30 16:55:16 -060047 if (ret) {
48 debug("Missing uclass for driver %s\n", drv->name);
Simon Glass6494d702014-02-26 15:59:18 -070049 return ret;
Simon Glass3346c872015-08-30 16:55:16 -060050 }
Simon Glass6494d702014-02-26 15:59:18 -070051
Heiko Schocher54c5d082014-05-22 12:43:05 +020052 dev = calloc(1, sizeof(struct udevice));
Simon Glass6494d702014-02-26 15:59:18 -070053 if (!dev)
54 return -ENOMEM;
55
56 INIT_LIST_HEAD(&dev->sibling_node);
57 INIT_LIST_HEAD(&dev->child_head);
58 INIT_LIST_HEAD(&dev->uclass_node);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090059#ifdef CONFIG_DEVRES
Masahiro Yamada608f26c2015-07-25 21:52:35 +090060 INIT_LIST_HEAD(&dev->devres_head);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090061#endif
Simon Glass6494d702014-02-26 15:59:18 -070062 dev->platdata = platdata;
Stephen Warrendaac3bf2016-05-11 15:26:24 -060063 dev->driver_data = driver_data;
Simon Glass6494d702014-02-26 15:59:18 -070064 dev->name = name;
Simon Glass7a61b0b2017-05-17 17:18:11 -060065 dev->node = node;
Simon Glass6494d702014-02-26 15:59:18 -070066 dev->parent = parent;
67 dev->driver = drv;
68 dev->uclass = uc;
Simon Glass5a66a8f2014-07-23 06:55:12 -060069
Simon Glass5a66a8f2014-07-23 06:55:12 -060070 dev->seq = -1;
Simon Glass91cbd792014-09-17 09:02:38 -060071 dev->req_seq = -1;
Nathan Rossi4f627c52016-01-08 03:00:45 +100072 if (CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_SEQ_ALIAS)) {
Simon Glass36fa61d2015-02-27 22:06:30 -070073 /*
Stefan Roese770eb302016-03-16 09:58:01 +010074 * Some devices, such as a SPI bus, I2C bus and serial ports
75 * are numbered using aliases.
76 *
77 * This is just a 'requested' sequence, and will be
78 * resolved (and ->seq updated) when the device is probed.
79 */
Simon Glass36fa61d2015-02-27 22:06:30 -070080 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
Simon Glass7a61b0b2017-05-17 17:18:11 -060081 if (uc->uc_drv->name && ofnode_valid(node)) {
Simon Glass396e3432017-05-18 20:09:05 -060082 dev_read_alias_seq(dev, &dev->req_seq);
Simon Glass36fa61d2015-02-27 22:06:30 -070083 }
Simon Glass9cc36a22015-01-25 08:27:05 -070084 }
85 }
Simon Glass36fa61d2015-02-27 22:06:30 -070086
Simon Glass9fa28192016-07-04 11:58:18 -060087 if (drv->platdata_auto_alloc_size) {
88 bool alloc = !platdata;
89
90 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
91 if (of_platdata_size) {
92 dev->flags |= DM_FLAG_OF_PLATDATA;
93 if (of_platdata_size <
94 drv->platdata_auto_alloc_size)
95 alloc = true;
96 }
97 }
98 if (alloc) {
99 dev->flags |= DM_FLAG_ALLOC_PDATA;
100 dev->platdata = calloc(1,
101 drv->platdata_auto_alloc_size);
102 if (!dev->platdata) {
103 ret = -ENOMEM;
104 goto fail_alloc1;
105 }
106 if (CONFIG_IS_ENABLED(OF_PLATDATA) && platdata) {
107 memcpy(dev->platdata, platdata,
108 of_platdata_size);
109 }
Simon Glassf8a85442015-01-25 08:27:00 -0700110 }
111 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700112
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200113 size = uc->uc_drv->per_device_platdata_auto_alloc_size;
114 if (size) {
115 dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA;
116 dev->uclass_platdata = calloc(1, size);
117 if (!dev->uclass_platdata) {
118 ret = -ENOMEM;
119 goto fail_alloc2;
120 }
121 }
122
123 if (parent) {
124 size = parent->driver->per_child_platdata_auto_alloc_size;
Simon Glassba8da9d2015-01-25 08:27:02 -0700125 if (!size) {
126 size = parent->uclass->uc_drv->
127 per_child_platdata_auto_alloc_size;
128 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700129 if (size) {
130 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
131 dev->parent_platdata = calloc(1, size);
132 if (!dev->parent_platdata) {
133 ret = -ENOMEM;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200134 goto fail_alloc3;
Simon Glasscdc133b2015-01-25 08:27:01 -0700135 }
136 }
137 }
Simon Glass6494d702014-02-26 15:59:18 -0700138
139 /* put dev into parent's successor list */
140 if (parent)
141 list_add_tail(&dev->sibling_node, &parent->child_head);
142
143 ret = uclass_bind_device(dev);
144 if (ret)
Simon Glass72ebfe82015-01-25 08:26:59 -0700145 goto fail_uclass_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700146
147 /* if we fail to bind we remove device from successors and free it */
148 if (drv->bind) {
149 ret = drv->bind(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700150 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700151 goto fail_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700152 }
Simon Glass0118ce72015-01-25 08:27:03 -0700153 if (parent && parent->driver->child_post_bind) {
154 ret = parent->driver->child_post_bind(dev);
155 if (ret)
156 goto fail_child_post_bind;
157 }
Simon Glass20af3c02016-01-05 09:30:59 -0700158 if (uc->uc_drv->post_bind) {
159 ret = uc->uc_drv->post_bind(dev);
160 if (ret)
161 goto fail_uclass_post_bind;
162 }
Simon Glass0118ce72015-01-25 08:27:03 -0700163
Simon Glass6494d702014-02-26 15:59:18 -0700164 if (parent)
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900165 pr_debug("Bound device %s to %s\n", dev->name, parent->name);
Masahiro Yamadae6cabe42015-08-27 12:44:28 +0900166 if (devp)
167 *devp = dev;
Simon Glass6494d702014-02-26 15:59:18 -0700168
Masahiro Yamadaaed1a4d2015-07-25 21:52:34 +0900169 dev->flags |= DM_FLAG_BOUND;
170
Simon Glass6494d702014-02-26 15:59:18 -0700171 return 0;
172
Simon Glass20af3c02016-01-05 09:30:59 -0700173fail_uclass_post_bind:
174 /* There is no child unbind() method, so no clean-up required */
Simon Glass0118ce72015-01-25 08:27:03 -0700175fail_child_post_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900176 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700177 if (drv->unbind && drv->unbind(dev)) {
178 dm_warn("unbind() method failed on dev '%s' on error path\n",
179 dev->name);
180 }
Simon Glass0118ce72015-01-25 08:27:03 -0700181 }
182
Simon Glass6494d702014-02-26 15:59:18 -0700183fail_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900184 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700185 if (uclass_unbind_device(dev)) {
186 dm_warn("Failed to unbind dev '%s' on error path\n",
187 dev->name);
188 }
Simon Glass72ebfe82015-01-25 08:26:59 -0700189 }
190fail_uclass_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900191 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700192 list_del(&dev->sibling_node);
193 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
194 free(dev->parent_platdata);
195 dev->parent_platdata = NULL;
196 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700197 }
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200198fail_alloc3:
199 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
200 free(dev->uclass_platdata);
201 dev->uclass_platdata = NULL;
202 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700203fail_alloc2:
Simon Glassf8a85442015-01-25 08:27:00 -0700204 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
205 free(dev->platdata);
206 dev->platdata = NULL;
207 }
208fail_alloc1:
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900209 devres_release_all(dev);
210
Simon Glass6494d702014-02-26 15:59:18 -0700211 free(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700212
Simon Glass6494d702014-02-26 15:59:18 -0700213 return ret;
214}
215
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600216int device_bind_with_driver_data(struct udevice *parent,
217 const struct driver *drv, const char *name,
Simon Glass396e3432017-05-18 20:09:05 -0600218 ulong driver_data, ofnode node,
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600219 struct udevice **devp)
220{
Simon Glass396e3432017-05-18 20:09:05 -0600221 return device_bind_common(parent, drv, name, NULL, driver_data, node,
222 0, devp);
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600223}
224
225int device_bind(struct udevice *parent, const struct driver *drv,
226 const char *name, void *platdata, int of_offset,
227 struct udevice **devp)
228{
Simon Glass7a61b0b2017-05-17 17:18:11 -0600229 return device_bind_common(parent, drv, name, platdata, 0,
230 offset_to_ofnode(of_offset), 0, devp);
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600231}
232
Simon Glass00606d72014-07-23 06:55:03 -0600233int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
234 const struct driver_info *info, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -0700235{
236 struct driver *drv;
Simon Glass9fa28192016-07-04 11:58:18 -0600237 uint platdata_size = 0;
Simon Glass6494d702014-02-26 15:59:18 -0700238
239 drv = lists_driver_lookup_name(info->name);
240 if (!drv)
241 return -ENOENT;
Simon Glass00606d72014-07-23 06:55:03 -0600242 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
243 return -EPERM;
Simon Glass6494d702014-02-26 15:59:18 -0700244
Simon Glass9fa28192016-07-04 11:58:18 -0600245#if CONFIG_IS_ENABLED(OF_PLATDATA)
246 platdata_size = info->platdata_size;
247#endif
248 return device_bind_common(parent, drv, info->name,
Simon Glass396e3432017-05-18 20:09:05 -0600249 (void *)info->platdata, 0, ofnode_null(), platdata_size,
250 devp);
Simon Glass6494d702014-02-26 15:59:18 -0700251}
252
Simon Glass2c03c462015-03-25 12:21:53 -0600253static void *alloc_priv(int size, uint flags)
254{
255 void *priv;
256
257 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
Faiz Abbas5924da12017-09-19 16:53:50 +0530258 size = ROUND(size, ARCH_DMA_MINALIGN);
Simon Glass2c03c462015-03-25 12:21:53 -0600259 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 Glass396e3432017-05-18 20:09:05 -0600388 if (drv->ofdata_to_platdata && dev_has_of_node(dev)) {
Simon Glass6494d702014-02-26 15:59:18 -0700389 ret = drv->ofdata_to_platdata(dev);
390 if (ret)
391 goto fail;
392 }
393
Philipp Tomsichf4fcba52018-01-08 13:59:18 +0100394 /* Process 'assigned-{clocks/clock-parents/clock-rates}' properties */
395 ret = clk_set_defaults(dev);
396 if (ret)
397 goto fail;
398
Simon Glass6494d702014-02-26 15:59:18 -0700399 if (drv->probe) {
400 ret = drv->probe(dev);
Simon Glass02eeb1b2015-03-05 12:25:21 -0700401 if (ret) {
402 dev->flags &= ~DM_FLAG_ACTIVATED;
Simon Glass6494d702014-02-26 15:59:18 -0700403 goto fail;
Simon Glass02eeb1b2015-03-05 12:25:21 -0700404 }
Simon Glass6494d702014-02-26 15:59:18 -0700405 }
406
Simon Glass6494d702014-02-26 15:59:18 -0700407 ret = uclass_post_probe_device(dev);
Simon Glass206d4d22015-03-25 12:21:56 -0600408 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700409 goto fail_uclass;
Simon Glass6494d702014-02-26 15:59:18 -0700410
Peng Fanc3ab9852016-03-12 13:17:38 +0800411 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
412 pinctrl_select_state(dev, "default");
413
Simon Glass6494d702014-02-26 15:59:18 -0700414 return 0;
415fail_uclass:
Stefan Roese706865a2017-03-20 12:51:48 +0100416 if (device_remove(dev, DM_REMOVE_NORMAL)) {
Simon Glass6494d702014-02-26 15:59:18 -0700417 dm_warn("%s: Device '%s' failed to remove on error path\n",
418 __func__, dev->name);
419 }
420fail:
Simon Glass206d4d22015-03-25 12:21:56 -0600421 dev->flags &= ~DM_FLAG_ACTIVATED;
422
Simon Glass5a66a8f2014-07-23 06:55:12 -0600423 dev->seq = -1;
Simon Glass6494d702014-02-26 15:59:18 -0700424 device_free(dev);
425
426 return ret;
427}
428
Heiko Schocher54c5d082014-05-22 12:43:05 +0200429void *dev_get_platdata(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700430{
431 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700432 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700433 return NULL;
434 }
435
436 return dev->platdata;
437}
438
Simon Glasscdc133b2015-01-25 08:27:01 -0700439void *dev_get_parent_platdata(struct udevice *dev)
440{
441 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600442 dm_warn("%s: null device\n", __func__);
Simon Glasscdc133b2015-01-25 08:27:01 -0700443 return NULL;
444 }
445
446 return dev->parent_platdata;
447}
448
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200449void *dev_get_uclass_platdata(struct udevice *dev)
450{
451 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600452 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200453 return NULL;
454 }
455
456 return dev->uclass_platdata;
457}
458
Heiko Schocher54c5d082014-05-22 12:43:05 +0200459void *dev_get_priv(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700460{
461 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700462 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700463 return NULL;
464 }
465
466 return dev->priv;
467}
Simon Glass997c87b2014-07-23 06:55:19 -0600468
Simon Glasse564f052015-03-05 12:25:20 -0700469void *dev_get_uclass_priv(struct udevice *dev)
470{
471 if (!dev) {
472 dm_warn("%s: null device\n", __func__);
473 return NULL;
474 }
475
476 return dev->uclass_priv;
477}
478
Simon Glassbcbe3d12015-09-28 23:32:01 -0600479void *dev_get_parent_priv(struct udevice *dev)
Simon Glasse59f4582014-07-23 06:55:20 -0600480{
481 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700482 dm_warn("%s: null device\n", __func__);
Simon Glasse59f4582014-07-23 06:55:20 -0600483 return NULL;
484 }
485
486 return dev->parent_priv;
487}
488
Simon Glass997c87b2014-07-23 06:55:19 -0600489static int device_get_device_tail(struct udevice *dev, int ret,
490 struct udevice **devp)
491{
492 if (ret)
493 return ret;
494
495 ret = device_probe(dev);
496 if (ret)
497 return ret;
498
499 *devp = dev;
500
501 return 0;
502}
503
504int device_get_child(struct udevice *parent, int index, struct udevice **devp)
505{
506 struct udevice *dev;
507
508 list_for_each_entry(dev, &parent->child_head, sibling_node) {
509 if (!index--)
510 return device_get_device_tail(dev, 0, devp);
511 }
512
513 return -ENODEV;
514}
515
516int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
517 bool find_req_seq, struct udevice **devp)
518{
519 struct udevice *dev;
520
521 *devp = NULL;
522 if (seq_or_req_seq == -1)
523 return -ENODEV;
524
525 list_for_each_entry(dev, &parent->child_head, sibling_node) {
526 if ((find_req_seq ? dev->req_seq : dev->seq) ==
527 seq_or_req_seq) {
528 *devp = dev;
529 return 0;
530 }
531 }
532
533 return -ENODEV;
534}
535
536int device_get_child_by_seq(struct udevice *parent, int seq,
537 struct udevice **devp)
538{
539 struct udevice *dev;
540 int ret;
541
542 *devp = NULL;
543 ret = device_find_child_by_seq(parent, seq, false, &dev);
544 if (ret == -ENODEV) {
545 /*
546 * We didn't find it in probed devices. See if there is one
547 * that will request this seq if probed.
548 */
549 ret = device_find_child_by_seq(parent, seq, true, &dev);
550 }
551 return device_get_device_tail(dev, ret, devp);
552}
553
554int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
555 struct udevice **devp)
556{
557 struct udevice *dev;
558
559 *devp = NULL;
560
561 list_for_each_entry(dev, &parent->child_head, sibling_node) {
Simon Glasse160f7d2017-01-17 16:52:55 -0700562 if (dev_of_offset(dev) == of_offset) {
Simon Glass997c87b2014-07-23 06:55:19 -0600563 *devp = dev;
564 return 0;
565 }
566 }
567
568 return -ENODEV;
569}
570
Simon Glass132f9bf2015-06-23 15:38:38 -0600571int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass997c87b2014-07-23 06:55:19 -0600572 struct udevice **devp)
573{
574 struct udevice *dev;
575 int ret;
576
577 *devp = NULL;
Simon Glass132f9bf2015-06-23 15:38:38 -0600578 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass997c87b2014-07-23 06:55:19 -0600579 return device_get_device_tail(dev, ret, devp);
580}
Simon Glassa8981d42014-10-13 23:41:49 -0600581
Simon Glass26930472015-06-23 15:38:37 -0600582static struct udevice *_device_find_global_by_of_offset(struct udevice *parent,
583 int of_offset)
584{
585 struct udevice *dev, *found;
586
Simon Glasse160f7d2017-01-17 16:52:55 -0700587 if (dev_of_offset(parent) == of_offset)
Simon Glass26930472015-06-23 15:38:37 -0600588 return parent;
589
590 list_for_each_entry(dev, &parent->child_head, sibling_node) {
591 found = _device_find_global_by_of_offset(dev, of_offset);
592 if (found)
593 return found;
594 }
595
596 return NULL;
597}
598
599int device_get_global_by_of_offset(int of_offset, struct udevice **devp)
600{
601 struct udevice *dev;
602
603 dev = _device_find_global_by_of_offset(gd->dm_root, of_offset);
604 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
605}
606
Simon Glassa8981d42014-10-13 23:41:49 -0600607int device_find_first_child(struct udevice *parent, struct udevice **devp)
608{
609 if (list_empty(&parent->child_head)) {
610 *devp = NULL;
611 } else {
612 *devp = list_first_entry(&parent->child_head, struct udevice,
613 sibling_node);
614 }
615
616 return 0;
617}
618
619int device_find_next_child(struct udevice **devp)
620{
621 struct udevice *dev = *devp;
622 struct udevice *parent = dev->parent;
623
624 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
625 *devp = NULL;
626 } else {
627 *devp = list_entry(dev->sibling_node.next, struct udevice,
628 sibling_node);
629 }
630
631 return 0;
632}
Simon Glass2ef249b2014-11-11 10:46:18 -0700633
Simon Glass479728c2014-11-11 10:46:19 -0700634struct udevice *dev_get_parent(struct udevice *child)
635{
636 return child->parent;
637}
638
Simon Glass39de8432015-03-25 12:21:55 -0600639ulong dev_get_driver_data(struct udevice *dev)
Simon Glass2ef249b2014-11-11 10:46:18 -0700640{
Simon Glass39de8432015-03-25 12:21:55 -0600641 return dev->driver_data;
Simon Glass2ef249b2014-11-11 10:46:18 -0700642}
Simon Glassb3670532015-01-25 08:27:04 -0700643
Przemyslaw Marczakcc73d372015-04-15 13:07:24 +0200644const void *dev_get_driver_ops(struct udevice *dev)
645{
646 if (!dev || !dev->driver->ops)
647 return NULL;
648
649 return dev->driver->ops;
650}
651
Simon Glassb3670532015-01-25 08:27:04 -0700652enum uclass_id device_get_uclass_id(struct udevice *dev)
653{
654 return dev->uclass->uc_drv->id;
655}
Peng Fanc9cac3f2015-02-10 14:46:32 +0800656
Przemyslaw Marczakf9c370d2015-04-15 13:07:25 +0200657const char *dev_get_uclass_name(struct udevice *dev)
658{
659 if (!dev)
660 return NULL;
661
662 return dev->uclass->uc_drv->name;
663}
664
Simon Glassc5785672015-03-25 12:21:57 -0600665bool device_has_children(struct udevice *dev)
666{
667 return !list_empty(&dev->child_head);
668}
669
670bool device_has_active_children(struct udevice *dev)
671{
672 struct udevice *child;
673
674 for (device_find_first_child(dev, &child);
675 child;
676 device_find_next_child(&child)) {
677 if (device_active(child))
678 return true;
679 }
680
681 return false;
682}
683
684bool device_is_last_sibling(struct udevice *dev)
685{
686 struct udevice *parent = dev->parent;
687
688 if (!parent)
689 return false;
690 return list_is_last(&dev->sibling_node, &parent->child_head);
691}
Simon Glassf5c67ea2015-07-30 13:40:39 -0600692
Simon Glassa2040fa2016-05-01 13:52:23 -0600693void device_set_name_alloced(struct udevice *dev)
694{
Simon Glassfd1c2d92016-07-04 11:58:15 -0600695 dev->flags |= DM_FLAG_NAME_ALLOCED;
Simon Glassa2040fa2016-05-01 13:52:23 -0600696}
697
Simon Glassf5c67ea2015-07-30 13:40:39 -0600698int device_set_name(struct udevice *dev, const char *name)
699{
700 name = strdup(name);
701 if (!name)
702 return -ENOMEM;
703 dev->name = name;
Simon Glassa2040fa2016-05-01 13:52:23 -0600704 device_set_name_alloced(dev);
Simon Glassf5c67ea2015-07-30 13:40:39 -0600705
706 return 0;
707}
Mugunthan V N73443b92016-04-28 15:36:02 +0530708
Simon Glass911f3ae2017-05-18 20:08:57 -0600709bool device_is_compatible(struct udevice *dev, const char *compat)
Mugunthan V N73443b92016-04-28 15:36:02 +0530710{
711 const void *fdt = gd->fdt_blob;
Mario Six29d11b82018-01-15 11:07:20 +0100712 ofnode node = dev_ofnode(dev);
Mugunthan V N73443b92016-04-28 15:36:02 +0530713
Mario Six29d11b82018-01-15 11:07:20 +0100714 if (ofnode_is_np(node))
715 return of_device_is_compatible(ofnode_to_np(node), compat, NULL, NULL);
716 else
717 return !fdt_node_check_compatible(fdt, ofnode_to_offset(node), compat);
Mugunthan V N73443b92016-04-28 15:36:02 +0530718}
719
720bool of_machine_is_compatible(const char *compat)
721{
722 const void *fdt = gd->fdt_blob;
723
724 return !fdt_node_check_compatible(fdt, 0, compat);
725}