blob: cd6a5a0276a7db089fcaf88d85240f228f7f60d4 [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 * Copyright (c) 2013 Google, Inc
4 *
5 * (C) Copyright 2012
6 * Pavel Herrmann <morpheus.ibis@gmail.com>
Simon Glass6494d702014-02-26 15:59:18 -07007 */
8
9#include <common.h>
10#include <errno.h>
Simon Glass94f7afd2015-01-25 08:27:16 -070011#include <fdtdec.h>
Simon Glass6494d702014-02-26 15:59:18 -070012#include <malloc.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090013#include <linux/libfdt.h>
Simon Glass6494d702014-02-26 15:59:18 -070014#include <dm/device.h>
15#include <dm/device-internal.h>
16#include <dm/lists.h>
Simon Glass19c82052017-05-18 20:09:08 -060017#include <dm/of.h>
18#include <dm/of_access.h>
Simon Glass6494d702014-02-26 15:59:18 -070019#include <dm/platdata.h>
Simon Glass19c82052017-05-18 20:09:08 -060020#include <dm/read.h>
Jeroen Hofsteefd536d82014-06-25 21:57:45 +020021#include <dm/root.h>
Simon Glass6494d702014-02-26 15:59:18 -070022#include <dm/uclass.h>
23#include <dm/util.h>
24#include <linux/list.h>
25
26DECLARE_GLOBAL_DATA_PTR;
27
Stefan Roese66eaea62015-12-14 16:18:15 +010028struct root_priv {
29 fdt_addr_t translation_offset; /* optional translation offset */
30};
31
Simon Glass6494d702014-02-26 15:59:18 -070032static const struct driver_info root_info = {
33 .name = "root_driver",
34};
35
Heiko Schocher54c5d082014-05-22 12:43:05 +020036struct udevice *dm_root(void)
Simon Glass6494d702014-02-26 15:59:18 -070037{
38 if (!gd->dm_root) {
39 dm_warn("Virtual root driver does not exist!\n");
40 return NULL;
41 }
42
43 return gd->dm_root;
44}
45
Simon Glass2f11cd92016-11-13 14:21:58 -070046void dm_fixup_for_gd_move(struct global_data *new_gd)
47{
48 /* The sentinel node has moved, so update things that point to it */
Lokesh Vutlab0d95122017-02-13 09:21:22 +053049 if (gd->dm_root) {
50 new_gd->uclass_root.next->prev = &new_gd->uclass_root;
51 new_gd->uclass_root.prev->next = &new_gd->uclass_root;
52 }
Simon Glass2f11cd92016-11-13 14:21:58 -070053}
54
Stefan Roese66eaea62015-12-14 16:18:15 +010055fdt_addr_t dm_get_translation_offset(void)
56{
57 struct udevice *root = dm_root();
58 struct root_priv *priv = dev_get_priv(root);
59
60 return priv->translation_offset;
61}
62
63void dm_set_translation_offset(fdt_addr_t offs)
64{
65 struct udevice *root = dm_root();
66 struct root_priv *priv = dev_get_priv(root);
67
68 priv->translation_offset = offs;
69}
70
Michal Simek484fdf52015-02-02 16:31:59 +010071#if defined(CONFIG_NEEDS_MANUAL_RELOC)
72void fix_drivers(void)
73{
74 struct driver *drv =
75 ll_entry_start(struct driver, driver);
76 const int n_ents = ll_entry_count(struct driver, driver);
77 struct driver *entry;
78
79 for (entry = drv; entry != drv + n_ents; entry++) {
80 if (entry->of_match)
81 entry->of_match = (const struct udevice_id *)
82 ((u32)entry->of_match + gd->reloc_off);
83 if (entry->bind)
84 entry->bind += gd->reloc_off;
85 if (entry->probe)
86 entry->probe += gd->reloc_off;
87 if (entry->remove)
88 entry->remove += gd->reloc_off;
89 if (entry->unbind)
90 entry->unbind += gd->reloc_off;
91 if (entry->ofdata_to_platdata)
92 entry->ofdata_to_platdata += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +010093 if (entry->child_post_bind)
94 entry->child_post_bind += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +010095 if (entry->child_pre_probe)
96 entry->child_pre_probe += gd->reloc_off;
97 if (entry->child_post_remove)
98 entry->child_post_remove += gd->reloc_off;
99 /* OPS are fixed in every uclass post_probe function */
100 if (entry->ops)
101 entry->ops += gd->reloc_off;
102 }
103}
104
105void fix_uclass(void)
106{
107 struct uclass_driver *uclass =
108 ll_entry_start(struct uclass_driver, uclass);
109 const int n_ents = ll_entry_count(struct uclass_driver, uclass);
110 struct uclass_driver *entry;
111
112 for (entry = uclass; entry != uclass + n_ents; entry++) {
113 if (entry->post_bind)
114 entry->post_bind += gd->reloc_off;
115 if (entry->pre_unbind)
116 entry->pre_unbind += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +0100117 if (entry->pre_probe)
118 entry->pre_probe += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +0100119 if (entry->post_probe)
120 entry->post_probe += gd->reloc_off;
121 if (entry->pre_remove)
122 entry->pre_remove += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +0100123 if (entry->child_post_bind)
124 entry->child_post_bind += gd->reloc_off;
125 if (entry->child_pre_probe)
126 entry->child_pre_probe += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +0100127 if (entry->init)
128 entry->init += gd->reloc_off;
129 if (entry->destroy)
130 entry->destroy += gd->reloc_off;
131 /* FIXME maybe also need to fix these ops */
132 if (entry->ops)
133 entry->ops += gd->reloc_off;
134 }
135}
Angelo Dureghello5aeedeb2016-05-21 12:05:49 +0200136
137void fix_devices(void)
138{
139 struct driver_info *dev =
140 ll_entry_start(struct driver_info, driver_info);
141 const int n_ents = ll_entry_count(struct driver_info, driver_info);
142 struct driver_info *entry;
143
144 for (entry = dev; entry != dev + n_ents; entry++) {
145 if (entry->platdata)
146 entry->platdata += gd->reloc_off;
147 }
148}
149
Michal Simek484fdf52015-02-02 16:31:59 +0100150#endif
151
Simon Glass19c82052017-05-18 20:09:08 -0600152int dm_init(bool of_live)
Simon Glass6494d702014-02-26 15:59:18 -0700153{
154 int ret;
155
156 if (gd->dm_root) {
157 dm_warn("Virtual root driver already exists!\n");
158 return -EINVAL;
159 }
Simon Glass89876a52014-06-11 23:29:49 -0600160 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -0700161
Michal Simek484fdf52015-02-02 16:31:59 +0100162#if defined(CONFIG_NEEDS_MANUAL_RELOC)
163 fix_drivers();
164 fix_uclass();
Angelo Dureghello5aeedeb2016-05-21 12:05:49 +0200165 fix_devices();
Michal Simek484fdf52015-02-02 16:31:59 +0100166#endif
167
Simon Glass00606d72014-07-23 06:55:03 -0600168 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -0700169 if (ret)
170 return ret;
Masahiro Yamada0f925822015-08-12 07:31:55 +0900171#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glass19c82052017-05-18 20:09:08 -0600172# if CONFIG_IS_ENABLED(OF_LIVE)
173 if (of_live)
174 DM_ROOT_NON_CONST->node = np_to_ofnode(gd->of_root);
175 else
176#endif
177 DM_ROOT_NON_CONST->node = offset_to_ofnode(0);
Simon Glass2f3b95d2015-01-25 08:26:58 -0700178#endif
Simon Glass74978122014-07-23 06:55:00 -0600179 ret = device_probe(DM_ROOT_NON_CONST);
180 if (ret)
181 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700182
183 return 0;
184}
185
Simon Glass9adbd7a2014-07-23 06:55:01 -0600186int dm_uninit(void)
187{
Stefan Roese706865a2017-03-20 12:51:48 +0100188 device_remove(dm_root(), DM_REMOVE_NORMAL);
Simon Glass9adbd7a2014-07-23 06:55:01 -0600189 device_unbind(dm_root());
190
191 return 0;
192}
193
Stefan Roesebc85aa42017-03-27 10:58:53 +0200194#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
195int dm_remove_devices_flags(uint flags)
196{
197 device_remove(dm_root(), flags);
198
199 return 0;
200}
201#endif
202
Simon Glass00606d72014-07-23 06:55:03 -0600203int dm_scan_platdata(bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700204{
205 int ret;
206
Simon Glass00606d72014-07-23 06:55:03 -0600207 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -0700208 if (ret == -ENOENT) {
209 dm_warn("Some drivers were not found\n");
210 ret = 0;
211 }
Simon Glass6494d702014-02-26 15:59:18 -0700212
Masahiro Yamadacbf86d72014-11-17 17:19:38 +0900213 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700214}
215
Simon Glass19c82052017-05-18 20:09:08 -0600216#if CONFIG_IS_ENABLED(OF_LIVE)
217static int dm_scan_fdt_live(struct udevice *parent,
218 const struct device_node *node_parent,
219 bool pre_reloc_only)
220{
221 struct device_node *np;
222 int ret = 0, err;
223
224 for (np = node_parent->child; np; np = np->sibling) {
Simon Glass19c82052017-05-18 20:09:08 -0600225 if (!of_device_is_available(np)) {
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900226 pr_debug(" - ignoring disabled device\n");
Simon Glass19c82052017-05-18 20:09:08 -0600227 continue;
228 }
Bin Meng8d773c42018-10-10 22:06:58 -0700229 err = lists_bind_fdt(parent, np_to_ofnode(np), NULL,
230 pre_reloc_only);
Simon Glass19c82052017-05-18 20:09:08 -0600231 if (err && !ret) {
232 ret = err;
233 debug("%s: ret=%d\n", np->name, ret);
234 }
235 }
236
237 if (ret)
238 dm_warn("Some drivers failed to bind\n");
239
240 return ret;
241}
242#endif /* CONFIG_IS_ENABLED(OF_LIVE) */
243
Simon Glass29629eb2016-07-04 11:57:58 -0600244#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassa771a042017-05-17 17:18:08 -0600245/**
246 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
247 *
248 * This scans the subnodes of a device tree node and and creates a driver
249 * for each one.
250 *
251 * @parent: Parent device for the devices that will be created
252 * @blob: Pointer to device tree blob
253 * @offset: Offset of node to scan
254 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
255 * flag. If false bind all drivers.
256 * @return 0 if OK, -ve on error
257 */
258static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
259 int offset, bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700260{
Simon Glass6494d702014-02-26 15:59:18 -0700261 int ret = 0, err;
Simon Glass6494d702014-02-26 15:59:18 -0700262
Simon Glass1ca7e202014-07-23 06:55:18 -0600263 for (offset = fdt_first_subnode(blob, offset);
264 offset > 0;
265 offset = fdt_next_subnode(blob, offset)) {
Jens Wiklander747558d2018-09-25 16:40:05 +0200266 const char *node_name = fdt_get_name(blob, offset, NULL);
267
268 /*
269 * The "chosen" and "firmware" nodes aren't devices
270 * themselves but may contain some:
271 */
272 if (!strcmp(node_name, "chosen") ||
273 !strcmp(node_name, "firmware")) {
274 pr_debug("parsing subnodes of \"%s\"\n", node_name);
Rob Clarkf2006802018-01-10 11:33:30 +0100275
276 err = dm_scan_fdt_node(parent, blob, offset,
277 pre_reloc_only);
278 if (err && !ret)
279 ret = err;
280 continue;
281 }
282
Simon Glass94f7afd2015-01-25 08:27:16 -0700283 if (!fdtdec_get_is_enabled(blob, offset)) {
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900284 pr_debug(" - ignoring disabled device\n");
Simon Glass94f7afd2015-01-25 08:27:16 -0700285 continue;
286 }
Bin Meng8d773c42018-10-10 22:06:58 -0700287 err = lists_bind_fdt(parent, offset_to_ofnode(offset), NULL,
288 pre_reloc_only);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600289 if (err && !ret) {
Simon Glass1ca7e202014-07-23 06:55:18 -0600290 ret = err;
Jens Wiklander747558d2018-09-25 16:40:05 +0200291 debug("%s: ret=%d\n", node_name, ret);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600292 }
Simon Glass1ca7e202014-07-23 06:55:18 -0600293 }
Simon Glass6494d702014-02-26 15:59:18 -0700294
295 if (ret)
296 dm_warn("Some drivers failed to bind\n");
297
298 return ret;
299}
Simon Glass1ca7e202014-07-23 06:55:18 -0600300
Simon Glasscc7f66f2016-07-05 17:10:08 -0600301int dm_scan_fdt_dev(struct udevice *dev)
302{
Simon Glass19c82052017-05-18 20:09:08 -0600303 if (!dev_of_valid(dev))
Simon Glasscc7f66f2016-07-05 17:10:08 -0600304 return 0;
305
Simon Glass19c82052017-05-18 20:09:08 -0600306#if CONFIG_IS_ENABLED(OF_LIVE)
307 if (of_live_active())
308 return dm_scan_fdt_live(dev, dev_np(dev),
309 gd->flags & GD_FLG_RELOC ? false : true);
310 else
311#endif
Simon Glasse160f7d2017-01-17 16:52:55 -0700312 return dm_scan_fdt_node(dev, gd->fdt_blob, dev_of_offset(dev),
Simon Glasscc7f66f2016-07-05 17:10:08 -0600313 gd->flags & GD_FLG_RELOC ? false : true);
314}
315
Simon Glass1ca7e202014-07-23 06:55:18 -0600316int dm_scan_fdt(const void *blob, bool pre_reloc_only)
317{
Simon Glass19c82052017-05-18 20:09:08 -0600318#if CONFIG_IS_ENABLED(OF_LIVE)
319 if (of_live_active())
320 return dm_scan_fdt_live(gd->dm_root, gd->of_root,
321 pre_reloc_only);
322 else
323#endif
Simon Glass1ca7e202014-07-23 06:55:18 -0600324 return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only);
325}
Patrice Chotarde81c9862017-09-04 14:55:56 +0200326#else
327static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
328 int offset, bool pre_reloc_only)
329{
330 return 0;
331}
Simon Glass6494d702014-02-26 15:59:18 -0700332#endif
333
Rajan Vaja68d215d2018-08-10 01:45:33 -0700334static int dm_scan_fdt_ofnode_path(const char *path, bool pre_reloc_only)
335{
336 ofnode node;
337
338 node = ofnode_path(path);
339 if (!ofnode_valid(node))
340 return 0;
341
342#if CONFIG_IS_ENABLED(OF_LIVE)
343 if (of_live_active())
344 return dm_scan_fdt_live(gd->dm_root, node.np, pre_reloc_only);
345#endif
346 return dm_scan_fdt_node(gd->dm_root, gd->fdt_blob, node.of_offset,
347 pre_reloc_only);
348}
349
Patrice Chotarde81c9862017-09-04 14:55:56 +0200350int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only)
351{
Andy Yanbcfdf052018-03-01 14:08:15 +0800352 int ret;
Patrice Chotarde81c9862017-09-04 14:55:56 +0200353
354 ret = dm_scan_fdt(gd->fdt_blob, pre_reloc_only);
355 if (ret) {
356 debug("dm_scan_fdt() failed: %d\n", ret);
357 return ret;
358 }
359
Rajan Vaja68d215d2018-08-10 01:45:33 -0700360 ret = dm_scan_fdt_ofnode_path("/clocks", pre_reloc_only);
Rajan Vaja1712ca22018-08-10 01:45:34 -0700361 if (ret) {
Rajan Vaja68d215d2018-08-10 01:45:33 -0700362 debug("scan for /clocks failed: %d\n", ret);
Rajan Vaja1712ca22018-08-10 01:45:34 -0700363 return ret;
364 }
365
366 ret = dm_scan_fdt_ofnode_path("/firmware", pre_reloc_only);
367 if (ret)
368 debug("scan for /firmware failed: %d\n", ret);
Patrice Chotarde81c9862017-09-04 14:55:56 +0200369
370 return ret;
371}
372
Simon Glassbb585032014-07-23 06:55:23 -0600373__weak int dm_scan_other(bool pre_reloc_only)
374{
375 return 0;
376}
377
Simon Glassab7cd622014-07-23 06:55:04 -0600378int dm_init_and_scan(bool pre_reloc_only)
379{
380 int ret;
381
Simon Glass19c82052017-05-18 20:09:08 -0600382 ret = dm_init(IS_ENABLED(CONFIG_OF_LIVE));
Simon Glassab7cd622014-07-23 06:55:04 -0600383 if (ret) {
384 debug("dm_init() failed: %d\n", ret);
385 return ret;
386 }
387 ret = dm_scan_platdata(pre_reloc_only);
388 if (ret) {
389 debug("dm_scan_platdata() failed: %d\n", ret);
390 return ret;
391 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700392
Simon Glass29629eb2016-07-04 11:57:58 -0600393 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Patrice Chotarde81c9862017-09-04 14:55:56 +0200394 ret = dm_extended_scan_fdt(gd->fdt_blob, pre_reloc_only);
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700395 if (ret) {
Patrice Chotarde81c9862017-09-04 14:55:56 +0200396 debug("dm_extended_scan_dt() failed: %d\n", ret);
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700397 return ret;
398 }
Simon Glassab7cd622014-07-23 06:55:04 -0600399 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700400
Simon Glassbb585032014-07-23 06:55:23 -0600401 ret = dm_scan_other(pre_reloc_only);
402 if (ret)
403 return ret;
Simon Glassab7cd622014-07-23 06:55:04 -0600404
405 return 0;
406}
407
Simon Glass6494d702014-02-26 15:59:18 -0700408/* This is the root driver - all drivers are children of this */
409U_BOOT_DRIVER(root_driver) = {
410 .name = "root_driver",
411 .id = UCLASS_ROOT,
Stefan Roese66eaea62015-12-14 16:18:15 +0100412 .priv_auto_alloc_size = sizeof(struct root_priv),
Simon Glass6494d702014-02-26 15:59:18 -0700413};
414
415/* This is the root uclass */
416UCLASS_DRIVER(root) = {
417 .name = "root",
418 .id = UCLASS_ROOT,
419};