blob: aa5ca4087a592643ad9bbd3f4865633ef334a476 [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
28static const struct driver_info root_info = {
29 .name = "root_driver",
30};
31
Heiko Schocher54c5d082014-05-22 12:43:05 +020032struct udevice *dm_root(void)
Simon Glass6494d702014-02-26 15:59:18 -070033{
34 if (!gd->dm_root) {
35 dm_warn("Virtual root driver does not exist!\n");
36 return NULL;
37 }
38
39 return gd->dm_root;
40}
41
Simon Glass2f11cd92016-11-13 14:21:58 -070042void dm_fixup_for_gd_move(struct global_data *new_gd)
43{
44 /* The sentinel node has moved, so update things that point to it */
Lokesh Vutlab0d95122017-02-13 09:21:22 +053045 if (gd->dm_root) {
46 new_gd->uclass_root.next->prev = &new_gd->uclass_root;
47 new_gd->uclass_root.prev->next = &new_gd->uclass_root;
48 }
Simon Glass2f11cd92016-11-13 14:21:58 -070049}
50
Michal Simek484fdf52015-02-02 16:31:59 +010051#if defined(CONFIG_NEEDS_MANUAL_RELOC)
52void fix_drivers(void)
53{
54 struct driver *drv =
55 ll_entry_start(struct driver, driver);
56 const int n_ents = ll_entry_count(struct driver, driver);
57 struct driver *entry;
58
59 for (entry = drv; entry != drv + n_ents; entry++) {
60 if (entry->of_match)
61 entry->of_match = (const struct udevice_id *)
62 ((u32)entry->of_match + gd->reloc_off);
63 if (entry->bind)
64 entry->bind += gd->reloc_off;
65 if (entry->probe)
66 entry->probe += gd->reloc_off;
67 if (entry->remove)
68 entry->remove += gd->reloc_off;
69 if (entry->unbind)
70 entry->unbind += gd->reloc_off;
71 if (entry->ofdata_to_platdata)
72 entry->ofdata_to_platdata += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +010073 if (entry->child_post_bind)
74 entry->child_post_bind += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +010075 if (entry->child_pre_probe)
76 entry->child_pre_probe += gd->reloc_off;
77 if (entry->child_post_remove)
78 entry->child_post_remove += gd->reloc_off;
79 /* OPS are fixed in every uclass post_probe function */
80 if (entry->ops)
81 entry->ops += gd->reloc_off;
82 }
83}
84
85void fix_uclass(void)
86{
87 struct uclass_driver *uclass =
88 ll_entry_start(struct uclass_driver, uclass);
89 const int n_ents = ll_entry_count(struct uclass_driver, uclass);
90 struct uclass_driver *entry;
91
92 for (entry = uclass; entry != uclass + n_ents; entry++) {
93 if (entry->post_bind)
94 entry->post_bind += gd->reloc_off;
95 if (entry->pre_unbind)
96 entry->pre_unbind += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +010097 if (entry->pre_probe)
98 entry->pre_probe += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +010099 if (entry->post_probe)
100 entry->post_probe += gd->reloc_off;
101 if (entry->pre_remove)
102 entry->pre_remove += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +0100103 if (entry->child_post_bind)
104 entry->child_post_bind += gd->reloc_off;
105 if (entry->child_pre_probe)
106 entry->child_pre_probe += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +0100107 if (entry->init)
108 entry->init += gd->reloc_off;
109 if (entry->destroy)
110 entry->destroy += gd->reloc_off;
111 /* FIXME maybe also need to fix these ops */
112 if (entry->ops)
113 entry->ops += gd->reloc_off;
114 }
115}
Angelo Dureghello5aeedeb2016-05-21 12:05:49 +0200116
117void fix_devices(void)
118{
119 struct driver_info *dev =
120 ll_entry_start(struct driver_info, driver_info);
121 const int n_ents = ll_entry_count(struct driver_info, driver_info);
122 struct driver_info *entry;
123
124 for (entry = dev; entry != dev + n_ents; entry++) {
125 if (entry->platdata)
126 entry->platdata += gd->reloc_off;
127 }
128}
129
Michal Simek484fdf52015-02-02 16:31:59 +0100130#endif
131
Simon Glass19c82052017-05-18 20:09:08 -0600132int dm_init(bool of_live)
Simon Glass6494d702014-02-26 15:59:18 -0700133{
134 int ret;
135
136 if (gd->dm_root) {
137 dm_warn("Virtual root driver already exists!\n");
138 return -EINVAL;
139 }
Simon Glass89876a52014-06-11 23:29:49 -0600140 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -0700141
Michal Simek484fdf52015-02-02 16:31:59 +0100142#if defined(CONFIG_NEEDS_MANUAL_RELOC)
143 fix_drivers();
144 fix_uclass();
Angelo Dureghello5aeedeb2016-05-21 12:05:49 +0200145 fix_devices();
Michal Simek484fdf52015-02-02 16:31:59 +0100146#endif
147
Simon Glass00606d72014-07-23 06:55:03 -0600148 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -0700149 if (ret)
150 return ret;
Masahiro Yamada0f925822015-08-12 07:31:55 +0900151#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glass19c82052017-05-18 20:09:08 -0600152# if CONFIG_IS_ENABLED(OF_LIVE)
153 if (of_live)
154 DM_ROOT_NON_CONST->node = np_to_ofnode(gd->of_root);
155 else
156#endif
157 DM_ROOT_NON_CONST->node = offset_to_ofnode(0);
Simon Glass2f3b95d2015-01-25 08:26:58 -0700158#endif
Simon Glass74978122014-07-23 06:55:00 -0600159 ret = device_probe(DM_ROOT_NON_CONST);
160 if (ret)
161 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700162
163 return 0;
164}
165
Simon Glass9adbd7a2014-07-23 06:55:01 -0600166int dm_uninit(void)
167{
Stefan Roese706865a2017-03-20 12:51:48 +0100168 device_remove(dm_root(), DM_REMOVE_NORMAL);
Simon Glass9adbd7a2014-07-23 06:55:01 -0600169 device_unbind(dm_root());
Jean-Jacques Hiblotc483f4c2018-12-07 14:50:54 +0100170 gd->dm_root = NULL;
Simon Glass9adbd7a2014-07-23 06:55:01 -0600171
172 return 0;
173}
174
Stefan Roesebc85aa42017-03-27 10:58:53 +0200175#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
176int dm_remove_devices_flags(uint flags)
177{
178 device_remove(dm_root(), flags);
179
180 return 0;
181}
182#endif
183
Simon Glass00606d72014-07-23 06:55:03 -0600184int dm_scan_platdata(bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700185{
186 int ret;
187
Simon Glass00606d72014-07-23 06:55:03 -0600188 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -0700189 if (ret == -ENOENT) {
190 dm_warn("Some drivers were not found\n");
191 ret = 0;
192 }
Simon Glass6494d702014-02-26 15:59:18 -0700193
Masahiro Yamadacbf86d72014-11-17 17:19:38 +0900194 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700195}
196
Simon Glass19c82052017-05-18 20:09:08 -0600197#if CONFIG_IS_ENABLED(OF_LIVE)
198static int dm_scan_fdt_live(struct udevice *parent,
199 const struct device_node *node_parent,
200 bool pre_reloc_only)
201{
202 struct device_node *np;
203 int ret = 0, err;
204
205 for (np = node_parent->child; np; np = np->sibling) {
Bin Meng8e39afc2018-10-10 22:07:00 -0700206 /* "chosen" node isn't a device itself but may contain some: */
207 if (!strcmp(np->name, "chosen")) {
208 pr_debug("parsing subnodes of \"chosen\"\n");
209
210 err = dm_scan_fdt_live(parent, np, pre_reloc_only);
211 if (err && !ret)
212 ret = err;
213 continue;
214 }
215
Simon Glass19c82052017-05-18 20:09:08 -0600216 if (!of_device_is_available(np)) {
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900217 pr_debug(" - ignoring disabled device\n");
Simon Glass19c82052017-05-18 20:09:08 -0600218 continue;
219 }
Bin Meng8d773c42018-10-10 22:06:58 -0700220 err = lists_bind_fdt(parent, np_to_ofnode(np), NULL,
221 pre_reloc_only);
Simon Glass19c82052017-05-18 20:09:08 -0600222 if (err && !ret) {
223 ret = err;
224 debug("%s: ret=%d\n", np->name, ret);
225 }
226 }
227
228 if (ret)
229 dm_warn("Some drivers failed to bind\n");
230
231 return ret;
232}
233#endif /* CONFIG_IS_ENABLED(OF_LIVE) */
234
Simon Glass29629eb2016-07-04 11:57:58 -0600235#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassa771a042017-05-17 17:18:08 -0600236/**
237 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
238 *
239 * This scans the subnodes of a device tree node and and creates a driver
240 * for each one.
241 *
242 * @parent: Parent device for the devices that will be created
243 * @blob: Pointer to device tree blob
244 * @offset: Offset of node to scan
245 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
246 * flag. If false bind all drivers.
247 * @return 0 if OK, -ve on error
248 */
249static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
250 int offset, bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700251{
Simon Glass6494d702014-02-26 15:59:18 -0700252 int ret = 0, err;
Simon Glass6494d702014-02-26 15:59:18 -0700253
Simon Glass1ca7e202014-07-23 06:55:18 -0600254 for (offset = fdt_first_subnode(blob, offset);
255 offset > 0;
256 offset = fdt_next_subnode(blob, offset)) {
Jens Wiklander747558d2018-09-25 16:40:05 +0200257 const char *node_name = fdt_get_name(blob, offset, NULL);
258
259 /*
260 * The "chosen" and "firmware" nodes aren't devices
261 * themselves but may contain some:
262 */
263 if (!strcmp(node_name, "chosen") ||
264 !strcmp(node_name, "firmware")) {
265 pr_debug("parsing subnodes of \"%s\"\n", node_name);
Rob Clarkf2006802018-01-10 11:33:30 +0100266
267 err = dm_scan_fdt_node(parent, blob, offset,
268 pre_reloc_only);
269 if (err && !ret)
270 ret = err;
271 continue;
272 }
273
Simon Glass94f7afd2015-01-25 08:27:16 -0700274 if (!fdtdec_get_is_enabled(blob, offset)) {
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900275 pr_debug(" - ignoring disabled device\n");
Simon Glass94f7afd2015-01-25 08:27:16 -0700276 continue;
277 }
Bin Meng8d773c42018-10-10 22:06:58 -0700278 err = lists_bind_fdt(parent, offset_to_ofnode(offset), NULL,
279 pre_reloc_only);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600280 if (err && !ret) {
Simon Glass1ca7e202014-07-23 06:55:18 -0600281 ret = err;
Jens Wiklander747558d2018-09-25 16:40:05 +0200282 debug("%s: ret=%d\n", node_name, ret);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600283 }
Simon Glass1ca7e202014-07-23 06:55:18 -0600284 }
Simon Glass6494d702014-02-26 15:59:18 -0700285
286 if (ret)
287 dm_warn("Some drivers failed to bind\n");
288
289 return ret;
290}
Simon Glass1ca7e202014-07-23 06:55:18 -0600291
Simon Glasscc7f66f2016-07-05 17:10:08 -0600292int dm_scan_fdt_dev(struct udevice *dev)
293{
Simon Glass19c82052017-05-18 20:09:08 -0600294 if (!dev_of_valid(dev))
Simon Glasscc7f66f2016-07-05 17:10:08 -0600295 return 0;
296
Simon Glass19c82052017-05-18 20:09:08 -0600297#if CONFIG_IS_ENABLED(OF_LIVE)
298 if (of_live_active())
299 return dm_scan_fdt_live(dev, dev_np(dev),
300 gd->flags & GD_FLG_RELOC ? false : true);
301 else
302#endif
Simon Glasse160f7d2017-01-17 16:52:55 -0700303 return dm_scan_fdt_node(dev, gd->fdt_blob, dev_of_offset(dev),
Simon Glasscc7f66f2016-07-05 17:10:08 -0600304 gd->flags & GD_FLG_RELOC ? false : true);
305}
306
Simon Glass1ca7e202014-07-23 06:55:18 -0600307int dm_scan_fdt(const void *blob, bool pre_reloc_only)
308{
Simon Glass19c82052017-05-18 20:09:08 -0600309#if CONFIG_IS_ENABLED(OF_LIVE)
310 if (of_live_active())
311 return dm_scan_fdt_live(gd->dm_root, gd->of_root,
312 pre_reloc_only);
313 else
314#endif
Simon Glass1ca7e202014-07-23 06:55:18 -0600315 return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only);
316}
Patrice Chotarde81c9862017-09-04 14:55:56 +0200317#else
318static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
319 int offset, bool pre_reloc_only)
320{
321 return 0;
322}
Simon Glass6494d702014-02-26 15:59:18 -0700323#endif
324
Rajan Vaja68d215d2018-08-10 01:45:33 -0700325static int dm_scan_fdt_ofnode_path(const char *path, bool pre_reloc_only)
326{
327 ofnode node;
328
329 node = ofnode_path(path);
330 if (!ofnode_valid(node))
331 return 0;
332
333#if CONFIG_IS_ENABLED(OF_LIVE)
334 if (of_live_active())
335 return dm_scan_fdt_live(gd->dm_root, node.np, pre_reloc_only);
336#endif
337 return dm_scan_fdt_node(gd->dm_root, gd->fdt_blob, node.of_offset,
338 pre_reloc_only);
339}
340
Patrice Chotarde81c9862017-09-04 14:55:56 +0200341int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only)
342{
Andy Yanbcfdf052018-03-01 14:08:15 +0800343 int ret;
Patrice Chotarde81c9862017-09-04 14:55:56 +0200344
Patrice Chotardee730a72019-05-15 10:07:01 +0200345 ret = dm_scan_fdt(blob, pre_reloc_only);
Patrice Chotarde81c9862017-09-04 14:55:56 +0200346 if (ret) {
347 debug("dm_scan_fdt() failed: %d\n", ret);
348 return ret;
349 }
350
Rajan Vaja68d215d2018-08-10 01:45:33 -0700351 ret = dm_scan_fdt_ofnode_path("/clocks", pre_reloc_only);
Rajan Vaja1712ca22018-08-10 01:45:34 -0700352 if (ret) {
Rajan Vaja68d215d2018-08-10 01:45:33 -0700353 debug("scan for /clocks failed: %d\n", ret);
Rajan Vaja1712ca22018-08-10 01:45:34 -0700354 return ret;
355 }
356
357 ret = dm_scan_fdt_ofnode_path("/firmware", pre_reloc_only);
358 if (ret)
359 debug("scan for /firmware failed: %d\n", ret);
Patrice Chotarde81c9862017-09-04 14:55:56 +0200360
361 return ret;
362}
363
Simon Glassbb585032014-07-23 06:55:23 -0600364__weak int dm_scan_other(bool pre_reloc_only)
365{
366 return 0;
367}
368
Simon Glassab7cd622014-07-23 06:55:04 -0600369int dm_init_and_scan(bool pre_reloc_only)
370{
371 int ret;
372
Simon Glass19c82052017-05-18 20:09:08 -0600373 ret = dm_init(IS_ENABLED(CONFIG_OF_LIVE));
Simon Glassab7cd622014-07-23 06:55:04 -0600374 if (ret) {
375 debug("dm_init() failed: %d\n", ret);
376 return ret;
377 }
378 ret = dm_scan_platdata(pre_reloc_only);
379 if (ret) {
380 debug("dm_scan_platdata() failed: %d\n", ret);
381 return ret;
382 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700383
Simon Glass29629eb2016-07-04 11:57:58 -0600384 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Patrice Chotarde81c9862017-09-04 14:55:56 +0200385 ret = dm_extended_scan_fdt(gd->fdt_blob, pre_reloc_only);
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700386 if (ret) {
Patrice Chotarde81c9862017-09-04 14:55:56 +0200387 debug("dm_extended_scan_dt() failed: %d\n", ret);
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700388 return ret;
389 }
Simon Glassab7cd622014-07-23 06:55:04 -0600390 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700391
Simon Glassbb585032014-07-23 06:55:23 -0600392 ret = dm_scan_other(pre_reloc_only);
393 if (ret)
394 return ret;
Simon Glassab7cd622014-07-23 06:55:04 -0600395
396 return 0;
397}
398
Simon Glass6494d702014-02-26 15:59:18 -0700399/* This is the root driver - all drivers are children of this */
400U_BOOT_DRIVER(root_driver) = {
401 .name = "root_driver",
402 .id = UCLASS_ROOT,
Simon Glass6494d702014-02-26 15:59:18 -0700403};
404
405/* This is the root uclass */
406UCLASS_DRIVER(root) = {
407 .name = "root",
408 .id = UCLASS_ROOT,
409};