blob: eb75b1734f9b973e406c8cfca80c8f6a9231c0e9 [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>
Simon Glass5a66a8f2014-07-23 06:55:12 -060013#include <fdtdec.h>
Stefan Roeseef5cd332015-09-02 07:41:12 +020014#include <fdt_support.h>
Simon Glass6494d702014-02-26 15:59:18 -070015#include <malloc.h>
16#include <dm/device.h>
17#include <dm/device-internal.h>
18#include <dm/lists.h>
Masahiro Yamadad90a5a32015-08-27 12:44:29 +090019#include <dm/pinctrl.h>
Simon Glass6494d702014-02-26 15:59:18 -070020#include <dm/platdata.h>
21#include <dm/uclass.h>
22#include <dm/uclass-internal.h>
23#include <dm/util.h>
24#include <linux/err.h>
25#include <linux/list.h>
26
Simon Glass5a66a8f2014-07-23 06:55:12 -060027DECLARE_GLOBAL_DATA_PTR;
28
Stephen Warrendaac3bf2016-05-11 15:26:24 -060029static int device_bind_common(struct udevice *parent, const struct driver *drv,
30 const char *name, void *platdata,
31 ulong driver_data, int of_offset,
32 struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -070033{
Heiko Schocher54c5d082014-05-22 12:43:05 +020034 struct udevice *dev;
Simon Glass6494d702014-02-26 15:59:18 -070035 struct uclass *uc;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020036 int size, ret = 0;
Simon Glass6494d702014-02-26 15:59:18 -070037
Masahiro Yamadae6cabe42015-08-27 12:44:28 +090038 if (devp)
39 *devp = NULL;
Simon Glass6494d702014-02-26 15:59:18 -070040 if (!name)
41 return -EINVAL;
42
43 ret = uclass_get(drv->id, &uc);
Simon Glass3346c872015-08-30 16:55:16 -060044 if (ret) {
45 debug("Missing uclass for driver %s\n", drv->name);
Simon Glass6494d702014-02-26 15:59:18 -070046 return ret;
Simon Glass3346c872015-08-30 16:55:16 -060047 }
Simon Glass6494d702014-02-26 15:59:18 -070048
Heiko Schocher54c5d082014-05-22 12:43:05 +020049 dev = calloc(1, sizeof(struct udevice));
Simon Glass6494d702014-02-26 15:59:18 -070050 if (!dev)
51 return -ENOMEM;
52
53 INIT_LIST_HEAD(&dev->sibling_node);
54 INIT_LIST_HEAD(&dev->child_head);
55 INIT_LIST_HEAD(&dev->uclass_node);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090056#ifdef CONFIG_DEVRES
Masahiro Yamada608f26c2015-07-25 21:52:35 +090057 INIT_LIST_HEAD(&dev->devres_head);
Masahiro Yamadae2282d72015-07-25 21:52:37 +090058#endif
Simon Glass6494d702014-02-26 15:59:18 -070059 dev->platdata = platdata;
Stephen Warrendaac3bf2016-05-11 15:26:24 -060060 dev->driver_data = driver_data;
Simon Glass6494d702014-02-26 15:59:18 -070061 dev->name = name;
62 dev->of_offset = of_offset;
63 dev->parent = parent;
64 dev->driver = drv;
65 dev->uclass = uc;
Simon Glass5a66a8f2014-07-23 06:55:12 -060066
Simon Glass5a66a8f2014-07-23 06:55:12 -060067 dev->seq = -1;
Simon Glass91cbd792014-09-17 09:02:38 -060068 dev->req_seq = -1;
Nathan Rossi4f627c52016-01-08 03:00:45 +100069 if (CONFIG_IS_ENABLED(OF_CONTROL) && CONFIG_IS_ENABLED(DM_SEQ_ALIAS)) {
Simon Glass36fa61d2015-02-27 22:06:30 -070070 /*
Stefan Roese770eb302016-03-16 09:58:01 +010071 * Some devices, such as a SPI bus, I2C bus and serial ports
72 * are numbered using aliases.
73 *
74 * This is just a 'requested' sequence, and will be
75 * resolved (and ->seq updated) when the device is probed.
76 */
Simon Glass36fa61d2015-02-27 22:06:30 -070077 if (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS) {
78 if (uc->uc_drv->name && of_offset != -1) {
79 fdtdec_get_alias_seq(gd->fdt_blob,
80 uc->uc_drv->name, of_offset,
81 &dev->req_seq);
82 }
Simon Glass9cc36a22015-01-25 08:27:05 -070083 }
84 }
Simon Glass36fa61d2015-02-27 22:06:30 -070085
Simon Glassf8a85442015-01-25 08:27:00 -070086 if (!dev->platdata && drv->platdata_auto_alloc_size) {
Simon Glass6494d702014-02-26 15:59:18 -070087 dev->flags |= DM_FLAG_ALLOC_PDATA;
Simon Glassf8a85442015-01-25 08:27:00 -070088 dev->platdata = calloc(1, drv->platdata_auto_alloc_size);
89 if (!dev->platdata) {
90 ret = -ENOMEM;
91 goto fail_alloc1;
92 }
93 }
Simon Glasscdc133b2015-01-25 08:27:01 -070094
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020095 size = uc->uc_drv->per_device_platdata_auto_alloc_size;
96 if (size) {
97 dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA;
98 dev->uclass_platdata = calloc(1, size);
99 if (!dev->uclass_platdata) {
100 ret = -ENOMEM;
101 goto fail_alloc2;
102 }
103 }
104
105 if (parent) {
106 size = parent->driver->per_child_platdata_auto_alloc_size;
Simon Glassba8da9d2015-01-25 08:27:02 -0700107 if (!size) {
108 size = parent->uclass->uc_drv->
109 per_child_platdata_auto_alloc_size;
110 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700111 if (size) {
112 dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA;
113 dev->parent_platdata = calloc(1, size);
114 if (!dev->parent_platdata) {
115 ret = -ENOMEM;
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200116 goto fail_alloc3;
Simon Glasscdc133b2015-01-25 08:27:01 -0700117 }
118 }
119 }
Simon Glass6494d702014-02-26 15:59:18 -0700120
121 /* put dev into parent's successor list */
122 if (parent)
123 list_add_tail(&dev->sibling_node, &parent->child_head);
124
125 ret = uclass_bind_device(dev);
126 if (ret)
Simon Glass72ebfe82015-01-25 08:26:59 -0700127 goto fail_uclass_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700128
129 /* if we fail to bind we remove device from successors and free it */
130 if (drv->bind) {
131 ret = drv->bind(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700132 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700133 goto fail_bind;
Simon Glass6494d702014-02-26 15:59:18 -0700134 }
Simon Glass0118ce72015-01-25 08:27:03 -0700135 if (parent && parent->driver->child_post_bind) {
136 ret = parent->driver->child_post_bind(dev);
137 if (ret)
138 goto fail_child_post_bind;
139 }
Simon Glass20af3c02016-01-05 09:30:59 -0700140 if (uc->uc_drv->post_bind) {
141 ret = uc->uc_drv->post_bind(dev);
142 if (ret)
143 goto fail_uclass_post_bind;
144 }
Simon Glass0118ce72015-01-25 08:27:03 -0700145
Simon Glass6494d702014-02-26 15:59:18 -0700146 if (parent)
147 dm_dbg("Bound device %s to %s\n", dev->name, parent->name);
Masahiro Yamadae6cabe42015-08-27 12:44:28 +0900148 if (devp)
149 *devp = dev;
Simon Glass6494d702014-02-26 15:59:18 -0700150
Masahiro Yamadaaed1a4d2015-07-25 21:52:34 +0900151 dev->flags |= DM_FLAG_BOUND;
152
Simon Glass6494d702014-02-26 15:59:18 -0700153 return 0;
154
Simon Glass20af3c02016-01-05 09:30:59 -0700155fail_uclass_post_bind:
156 /* There is no child unbind() method, so no clean-up required */
Simon Glass0118ce72015-01-25 08:27:03 -0700157fail_child_post_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900158 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700159 if (drv->unbind && drv->unbind(dev)) {
160 dm_warn("unbind() method failed on dev '%s' on error path\n",
161 dev->name);
162 }
Simon Glass0118ce72015-01-25 08:27:03 -0700163 }
164
Simon Glass6494d702014-02-26 15:59:18 -0700165fail_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900166 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700167 if (uclass_unbind_device(dev)) {
168 dm_warn("Failed to unbind dev '%s' on error path\n",
169 dev->name);
170 }
Simon Glass72ebfe82015-01-25 08:26:59 -0700171 }
172fail_uclass_bind:
Masahiro Yamada0a5804b2015-08-12 07:31:52 +0900173 if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) {
Simon Glass5a87c412015-02-27 22:06:33 -0700174 list_del(&dev->sibling_node);
175 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
176 free(dev->parent_platdata);
177 dev->parent_platdata = NULL;
178 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700179 }
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200180fail_alloc3:
181 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
182 free(dev->uclass_platdata);
183 dev->uclass_platdata = NULL;
184 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700185fail_alloc2:
Simon Glassf8a85442015-01-25 08:27:00 -0700186 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
187 free(dev->platdata);
188 dev->platdata = NULL;
189 }
190fail_alloc1:
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900191 devres_release_all(dev);
192
Simon Glass6494d702014-02-26 15:59:18 -0700193 free(dev);
Simon Glass72ebfe82015-01-25 08:26:59 -0700194
Simon Glass6494d702014-02-26 15:59:18 -0700195 return ret;
196}
197
Stephen Warrendaac3bf2016-05-11 15:26:24 -0600198int device_bind_with_driver_data(struct udevice *parent,
199 const struct driver *drv, const char *name,
200 ulong driver_data, int of_offset,
201 struct udevice **devp)
202{
203 return device_bind_common(parent, drv, name, NULL, driver_data,
204 of_offset, devp);
205}
206
207int device_bind(struct udevice *parent, const struct driver *drv,
208 const char *name, void *platdata, int of_offset,
209 struct udevice **devp)
210{
211 return device_bind_common(parent, drv, name, platdata, 0, of_offset,
212 devp);
213}
214
Simon Glass00606d72014-07-23 06:55:03 -0600215int device_bind_by_name(struct udevice *parent, bool pre_reloc_only,
216 const struct driver_info *info, struct udevice **devp)
Simon Glass6494d702014-02-26 15:59:18 -0700217{
218 struct driver *drv;
219
220 drv = lists_driver_lookup_name(info->name);
221 if (!drv)
222 return -ENOENT;
Simon Glass00606d72014-07-23 06:55:03 -0600223 if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC))
224 return -EPERM;
Simon Glass6494d702014-02-26 15:59:18 -0700225
226 return device_bind(parent, drv, info->name, (void *)info->platdata,
227 -1, devp);
228}
229
Simon Glass2c03c462015-03-25 12:21:53 -0600230static void *alloc_priv(int size, uint flags)
231{
232 void *priv;
233
234 if (flags & DM_FLAG_ALLOC_PRIV_DMA) {
235 priv = memalign(ARCH_DMA_MINALIGN, size);
236 if (priv)
237 memset(priv, '\0', size);
238 } else {
239 priv = calloc(1, size);
240 }
241
242 return priv;
243}
244
Simon Glassc6db9652016-01-25 14:58:42 -0700245int device_probe(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700246{
Simon Glass34792532015-03-25 12:21:54 -0600247 const struct driver *drv;
Simon Glass6494d702014-02-26 15:59:18 -0700248 int size = 0;
249 int ret;
Simon Glass5a66a8f2014-07-23 06:55:12 -0600250 int seq;
Simon Glass6494d702014-02-26 15:59:18 -0700251
252 if (!dev)
253 return -EINVAL;
254
255 if (dev->flags & DM_FLAG_ACTIVATED)
256 return 0;
257
258 drv = dev->driver;
259 assert(drv);
260
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700261 /* Allocate private data if requested and not reentered */
262 if (drv->priv_auto_alloc_size && !dev->priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600263 dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags);
Simon Glass6494d702014-02-26 15:59:18 -0700264 if (!dev->priv) {
265 ret = -ENOMEM;
266 goto fail;
267 }
268 }
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700269 /* Allocate private data if requested and not reentered */
Simon Glass6494d702014-02-26 15:59:18 -0700270 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700271 if (size && !dev->uclass_priv) {
Simon Glass6494d702014-02-26 15:59:18 -0700272 dev->uclass_priv = calloc(1, size);
273 if (!dev->uclass_priv) {
274 ret = -ENOMEM;
275 goto fail;
276 }
277 }
278
279 /* Ensure all parents are probed */
280 if (dev->parent) {
Simon Glasse59f4582014-07-23 06:55:20 -0600281 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassdac8db22015-01-25 08:27:06 -0700282 if (!size) {
283 size = dev->parent->uclass->uc_drv->
284 per_child_auto_alloc_size;
285 }
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700286 if (size && !dev->parent_priv) {
Simon Glass2c03c462015-03-25 12:21:53 -0600287 dev->parent_priv = alloc_priv(size, drv->flags);
Simon Glasse59f4582014-07-23 06:55:20 -0600288 if (!dev->parent_priv) {
289 ret = -ENOMEM;
290 goto fail;
291 }
292 }
293
Simon Glass6494d702014-02-26 15:59:18 -0700294 ret = device_probe(dev->parent);
295 if (ret)
296 goto fail;
Bin Mengcdeb2ba2015-08-24 01:14:02 -0700297
298 /*
299 * The device might have already been probed during
300 * the call to device_probe() on its parent device
301 * (e.g. PCI bridge devices). Test the flags again
302 * so that we don't mess up the device.
303 */
304 if (dev->flags & DM_FLAG_ACTIVATED)
305 return 0;
Simon Glass6494d702014-02-26 15:59:18 -0700306 }
307
Simon Glass5a66a8f2014-07-23 06:55:12 -0600308 seq = uclass_resolve_seq(dev);
309 if (seq < 0) {
310 ret = seq;
311 goto fail;
312 }
313 dev->seq = seq;
314
Simon Glass206d4d22015-03-25 12:21:56 -0600315 dev->flags |= DM_FLAG_ACTIVATED;
316
Simon Glass84d26e22015-09-12 08:45:19 -0600317 /*
318 * Process pinctrl for everything except the root device, and
Simon Glass03795972016-01-21 19:43:25 -0700319 * continue regardless of the result of pinctrl. Don't process pinctrl
320 * settings for pinctrl devices since the device may not yet be
321 * probed.
Simon Glass84d26e22015-09-12 08:45:19 -0600322 */
Simon Glass03795972016-01-21 19:43:25 -0700323 if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL)
Simon Glass84d26e22015-09-12 08:45:19 -0600324 pinctrl_select_state(dev, "default");
Masahiro Yamadad90a5a32015-08-27 12:44:29 +0900325
Simon Glass02c07b32015-03-05 12:25:22 -0700326 ret = uclass_pre_probe_device(dev);
Simon Glass83c7e432015-01-25 08:27:10 -0700327 if (ret)
328 goto fail;
329
Simon Glassa327dee2014-07-23 06:55:21 -0600330 if (dev->parent && dev->parent->driver->child_pre_probe) {
331 ret = dev->parent->driver->child_pre_probe(dev);
332 if (ret)
333 goto fail;
334 }
335
Simon Glass6494d702014-02-26 15:59:18 -0700336 if (drv->ofdata_to_platdata && dev->of_offset >= 0) {
337 ret = drv->ofdata_to_platdata(dev);
338 if (ret)
339 goto fail;
340 }
341
342 if (drv->probe) {
343 ret = drv->probe(dev);
Simon Glass02eeb1b2015-03-05 12:25:21 -0700344 if (ret) {
345 dev->flags &= ~DM_FLAG_ACTIVATED;
Simon Glass6494d702014-02-26 15:59:18 -0700346 goto fail;
Simon Glass02eeb1b2015-03-05 12:25:21 -0700347 }
Simon Glass6494d702014-02-26 15:59:18 -0700348 }
349
Simon Glass6494d702014-02-26 15:59:18 -0700350 ret = uclass_post_probe_device(dev);
Simon Glass206d4d22015-03-25 12:21:56 -0600351 if (ret)
Simon Glass6494d702014-02-26 15:59:18 -0700352 goto fail_uclass;
Simon Glass6494d702014-02-26 15:59:18 -0700353
Peng Fanc3ab9852016-03-12 13:17:38 +0800354 if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL)
355 pinctrl_select_state(dev, "default");
356
Simon Glass6494d702014-02-26 15:59:18 -0700357 return 0;
358fail_uclass:
359 if (device_remove(dev)) {
360 dm_warn("%s: Device '%s' failed to remove on error path\n",
361 __func__, dev->name);
362 }
363fail:
Simon Glass206d4d22015-03-25 12:21:56 -0600364 dev->flags &= ~DM_FLAG_ACTIVATED;
365
Simon Glass5a66a8f2014-07-23 06:55:12 -0600366 dev->seq = -1;
Simon Glass6494d702014-02-26 15:59:18 -0700367 device_free(dev);
368
369 return ret;
370}
371
Heiko Schocher54c5d082014-05-22 12:43:05 +0200372void *dev_get_platdata(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700373{
374 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700375 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700376 return NULL;
377 }
378
379 return dev->platdata;
380}
381
Simon Glasscdc133b2015-01-25 08:27:01 -0700382void *dev_get_parent_platdata(struct udevice *dev)
383{
384 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600385 dm_warn("%s: null device\n", __func__);
Simon Glasscdc133b2015-01-25 08:27:01 -0700386 return NULL;
387 }
388
389 return dev->parent_platdata;
390}
391
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200392void *dev_get_uclass_platdata(struct udevice *dev)
393{
394 if (!dev) {
Simon Glass36d7cc12015-07-06 16:47:40 -0600395 dm_warn("%s: null device\n", __func__);
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +0200396 return NULL;
397 }
398
399 return dev->uclass_platdata;
400}
401
Heiko Schocher54c5d082014-05-22 12:43:05 +0200402void *dev_get_priv(struct udevice *dev)
Simon Glass6494d702014-02-26 15:59:18 -0700403{
404 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700405 dm_warn("%s: null device\n", __func__);
Simon Glass6494d702014-02-26 15:59:18 -0700406 return NULL;
407 }
408
409 return dev->priv;
410}
Simon Glass997c87b2014-07-23 06:55:19 -0600411
Simon Glasse564f052015-03-05 12:25:20 -0700412void *dev_get_uclass_priv(struct udevice *dev)
413{
414 if (!dev) {
415 dm_warn("%s: null device\n", __func__);
416 return NULL;
417 }
418
419 return dev->uclass_priv;
420}
421
Simon Glassbcbe3d12015-09-28 23:32:01 -0600422void *dev_get_parent_priv(struct udevice *dev)
Simon Glasse59f4582014-07-23 06:55:20 -0600423{
424 if (!dev) {
Simon Glass964d1532014-12-10 08:55:56 -0700425 dm_warn("%s: null device\n", __func__);
Simon Glasse59f4582014-07-23 06:55:20 -0600426 return NULL;
427 }
428
429 return dev->parent_priv;
430}
431
Simon Glass997c87b2014-07-23 06:55:19 -0600432static int device_get_device_tail(struct udevice *dev, int ret,
433 struct udevice **devp)
434{
435 if (ret)
436 return ret;
437
438 ret = device_probe(dev);
439 if (ret)
440 return ret;
441
442 *devp = dev;
443
444 return 0;
445}
446
447int device_get_child(struct udevice *parent, int index, struct udevice **devp)
448{
449 struct udevice *dev;
450
451 list_for_each_entry(dev, &parent->child_head, sibling_node) {
452 if (!index--)
453 return device_get_device_tail(dev, 0, devp);
454 }
455
456 return -ENODEV;
457}
458
459int device_find_child_by_seq(struct udevice *parent, int seq_or_req_seq,
460 bool find_req_seq, struct udevice **devp)
461{
462 struct udevice *dev;
463
464 *devp = NULL;
465 if (seq_or_req_seq == -1)
466 return -ENODEV;
467
468 list_for_each_entry(dev, &parent->child_head, sibling_node) {
469 if ((find_req_seq ? dev->req_seq : dev->seq) ==
470 seq_or_req_seq) {
471 *devp = dev;
472 return 0;
473 }
474 }
475
476 return -ENODEV;
477}
478
479int device_get_child_by_seq(struct udevice *parent, int seq,
480 struct udevice **devp)
481{
482 struct udevice *dev;
483 int ret;
484
485 *devp = NULL;
486 ret = device_find_child_by_seq(parent, seq, false, &dev);
487 if (ret == -ENODEV) {
488 /*
489 * We didn't find it in probed devices. See if there is one
490 * that will request this seq if probed.
491 */
492 ret = device_find_child_by_seq(parent, seq, true, &dev);
493 }
494 return device_get_device_tail(dev, ret, devp);
495}
496
497int device_find_child_by_of_offset(struct udevice *parent, int of_offset,
498 struct udevice **devp)
499{
500 struct udevice *dev;
501
502 *devp = NULL;
503
504 list_for_each_entry(dev, &parent->child_head, sibling_node) {
505 if (dev->of_offset == of_offset) {
506 *devp = dev;
507 return 0;
508 }
509 }
510
511 return -ENODEV;
512}
513
Simon Glass132f9bf2015-06-23 15:38:38 -0600514int device_get_child_by_of_offset(struct udevice *parent, int node,
Simon Glass997c87b2014-07-23 06:55:19 -0600515 struct udevice **devp)
516{
517 struct udevice *dev;
518 int ret;
519
520 *devp = NULL;
Simon Glass132f9bf2015-06-23 15:38:38 -0600521 ret = device_find_child_by_of_offset(parent, node, &dev);
Simon Glass997c87b2014-07-23 06:55:19 -0600522 return device_get_device_tail(dev, ret, devp);
523}
Simon Glassa8981d42014-10-13 23:41:49 -0600524
Simon Glass26930472015-06-23 15:38:37 -0600525static struct udevice *_device_find_global_by_of_offset(struct udevice *parent,
526 int of_offset)
527{
528 struct udevice *dev, *found;
529
530 if (parent->of_offset == of_offset)
531 return parent;
532
533 list_for_each_entry(dev, &parent->child_head, sibling_node) {
534 found = _device_find_global_by_of_offset(dev, of_offset);
535 if (found)
536 return found;
537 }
538
539 return NULL;
540}
541
542int device_get_global_by_of_offset(int of_offset, struct udevice **devp)
543{
544 struct udevice *dev;
545
546 dev = _device_find_global_by_of_offset(gd->dm_root, of_offset);
547 return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp);
548}
549
Simon Glassa8981d42014-10-13 23:41:49 -0600550int device_find_first_child(struct udevice *parent, struct udevice **devp)
551{
552 if (list_empty(&parent->child_head)) {
553 *devp = NULL;
554 } else {
555 *devp = list_first_entry(&parent->child_head, struct udevice,
556 sibling_node);
557 }
558
559 return 0;
560}
561
562int device_find_next_child(struct udevice **devp)
563{
564 struct udevice *dev = *devp;
565 struct udevice *parent = dev->parent;
566
567 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
568 *devp = NULL;
569 } else {
570 *devp = list_entry(dev->sibling_node.next, struct udevice,
571 sibling_node);
572 }
573
574 return 0;
575}
Simon Glass2ef249b2014-11-11 10:46:18 -0700576
Simon Glass479728c2014-11-11 10:46:19 -0700577struct udevice *dev_get_parent(struct udevice *child)
578{
579 return child->parent;
580}
581
Simon Glass39de8432015-03-25 12:21:55 -0600582ulong dev_get_driver_data(struct udevice *dev)
Simon Glass2ef249b2014-11-11 10:46:18 -0700583{
Simon Glass39de8432015-03-25 12:21:55 -0600584 return dev->driver_data;
Simon Glass2ef249b2014-11-11 10:46:18 -0700585}
Simon Glassb3670532015-01-25 08:27:04 -0700586
Przemyslaw Marczakcc73d372015-04-15 13:07:24 +0200587const void *dev_get_driver_ops(struct udevice *dev)
588{
589 if (!dev || !dev->driver->ops)
590 return NULL;
591
592 return dev->driver->ops;
593}
594
Simon Glassb3670532015-01-25 08:27:04 -0700595enum uclass_id device_get_uclass_id(struct udevice *dev)
596{
597 return dev->uclass->uc_drv->id;
598}
Peng Fanc9cac3f2015-02-10 14:46:32 +0800599
Przemyslaw Marczakf9c370d2015-04-15 13:07:25 +0200600const char *dev_get_uclass_name(struct udevice *dev)
601{
602 if (!dev)
603 return NULL;
604
605 return dev->uclass->uc_drv->name;
606}
607
Mugunthan V N69b41382015-12-23 20:39:36 +0530608fdt_addr_t dev_get_addr_index(struct udevice *dev, int index)
Simon Glassf3301772015-07-07 20:53:44 -0600609{
Masahiro Yamada0f925822015-08-12 07:31:55 +0900610#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassf3301772015-07-07 20:53:44 -0600611 fdt_addr_t addr;
612
Stefan Roeseef5cd332015-09-02 07:41:12 +0200613 if (CONFIG_IS_ENABLED(OF_TRANSLATE)) {
614 const fdt32_t *reg;
Mugunthan V N69b41382015-12-23 20:39:36 +0530615 int len = 0;
616 int na, ns;
Stefan Roeseef5cd332015-09-02 07:41:12 +0200617
Mugunthan V N69b41382015-12-23 20:39:36 +0530618 na = fdt_address_cells(gd->fdt_blob, dev->parent->of_offset);
619 if (na < 1) {
620 debug("bad #address-cells\n");
Stefan Roeseef5cd332015-09-02 07:41:12 +0200621 return FDT_ADDR_T_NONE;
Mugunthan V N69b41382015-12-23 20:39:36 +0530622 }
623
624 ns = fdt_size_cells(gd->fdt_blob, dev->parent->of_offset);
625 if (ns < 0) {
626 debug("bad #size-cells\n");
627 return FDT_ADDR_T_NONE;
628 }
629
630 reg = fdt_getprop(gd->fdt_blob, dev->of_offset, "reg", &len);
631 if (!reg || (len <= (index * sizeof(fdt32_t) * (na + ns)))) {
632 debug("Req index out of range\n");
633 return FDT_ADDR_T_NONE;
634 }
635
636 reg += index * (na + ns);
Stefan Roeseef5cd332015-09-02 07:41:12 +0200637
638 /*
639 * Use the full-fledged translate function for complex
640 * bus setups.
641 */
Stefan Roese66eaea62015-12-14 16:18:15 +0100642 addr = fdt_translate_address((void *)gd->fdt_blob,
Stefan Roeseef5cd332015-09-02 07:41:12 +0200643 dev->of_offset, reg);
Stefan Roese66eaea62015-12-14 16:18:15 +0100644 } else {
645 /*
646 * Use the "simple" translate function for less complex
647 * bus setups.
648 */
649 addr = fdtdec_get_addr_size_auto_parent(gd->fdt_blob,
650 dev->parent->of_offset,
651 dev->of_offset, "reg",
Mugunthan V N69b41382015-12-23 20:39:36 +0530652 index, NULL);
Stefan Roese66eaea62015-12-14 16:18:15 +0100653 if (CONFIG_IS_ENABLED(SIMPLE_BUS) && addr != FDT_ADDR_T_NONE) {
654 if (device_get_uclass_id(dev->parent) ==
655 UCLASS_SIMPLE_BUS)
656 addr = simple_bus_translate(dev->parent, addr);
657 }
Stefan Roeseef5cd332015-09-02 07:41:12 +0200658 }
659
660 /*
Stefan Roese66eaea62015-12-14 16:18:15 +0100661 * Some platforms need a special address translation. Those
662 * platforms (e.g. mvebu in SPL) can configure a translation
663 * offset in the DM by calling dm_set_translation_offset() that
664 * will get added to all addresses returned by dev_get_addr().
Stefan Roeseef5cd332015-09-02 07:41:12 +0200665 */
Stefan Roese66eaea62015-12-14 16:18:15 +0100666 addr += dm_get_translation_offset();
Simon Glassf3301772015-07-07 20:53:44 -0600667
668 return addr;
Peng Fanc9cac3f2015-02-10 14:46:32 +0800669#else
Peng Fanc9cac3f2015-02-10 14:46:32 +0800670 return FDT_ADDR_T_NONE;
Peng Fanc9cac3f2015-02-10 14:46:32 +0800671#endif
Simon Glassf3301772015-07-07 20:53:44 -0600672}
Simon Glassc5785672015-03-25 12:21:57 -0600673
Stephen Warren43c4d442016-04-06 12:49:19 -0600674fdt_addr_t dev_get_addr_name(struct udevice *dev, const char *name)
675{
676#if CONFIG_IS_ENABLED(OF_CONTROL)
677 int index;
678
Stephen Warren35732092016-04-28 16:04:15 -0600679 index = fdt_find_string(gd->fdt_blob, dev->of_offset, "reg-names",
680 name);
Stephen Warren43c4d442016-04-06 12:49:19 -0600681 if (index < 0)
682 return index;
683
684 return dev_get_addr_index(dev, index);
685#else
686 return FDT_ADDR_T_NONE;
687#endif
688}
689
Mugunthan V N69b41382015-12-23 20:39:36 +0530690fdt_addr_t dev_get_addr(struct udevice *dev)
691{
692 return dev_get_addr_index(dev, 0);
693}
694
Stefan Roese28027522016-04-21 07:11:34 +0200695void *dev_get_addr_ptr(struct udevice *dev)
696{
697 return (void *)(uintptr_t)dev_get_addr_index(dev, 0);
698}
699
Simon Glassc5785672015-03-25 12:21:57 -0600700bool device_has_children(struct udevice *dev)
701{
702 return !list_empty(&dev->child_head);
703}
704
705bool device_has_active_children(struct udevice *dev)
706{
707 struct udevice *child;
708
709 for (device_find_first_child(dev, &child);
710 child;
711 device_find_next_child(&child)) {
712 if (device_active(child))
713 return true;
714 }
715
716 return false;
717}
718
719bool device_is_last_sibling(struct udevice *dev)
720{
721 struct udevice *parent = dev->parent;
722
723 if (!parent)
724 return false;
725 return list_is_last(&dev->sibling_node, &parent->child_head);
726}
Simon Glassf5c67ea2015-07-30 13:40:39 -0600727
Simon Glassa2040fa2016-05-01 13:52:23 -0600728void device_set_name_alloced(struct udevice *dev)
729{
730 dev->flags |= DM_NAME_ALLOCED;
731}
732
Simon Glassf5c67ea2015-07-30 13:40:39 -0600733int device_set_name(struct udevice *dev, const char *name)
734{
735 name = strdup(name);
736 if (!name)
737 return -ENOMEM;
738 dev->name = name;
Simon Glassa2040fa2016-05-01 13:52:23 -0600739 device_set_name_alloced(dev);
Simon Glassf5c67ea2015-07-30 13:40:39 -0600740
741 return 0;
742}
Mugunthan V N73443b92016-04-28 15:36:02 +0530743
744bool of_device_is_compatible(struct udevice *dev, const char *compat)
745{
746 const void *fdt = gd->fdt_blob;
747
748 return !fdt_node_check_compatible(fdt, dev->of_offset, compat);
749}
750
751bool of_machine_is_compatible(const char *compat)
752{
753 const void *fdt = gd->fdt_blob;
754
755 return !fdt_node_check_compatible(fdt, 0, compat);
756}