blob: 14df16c280d9876dfb51a5966eb7870835542c28 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassdd6ab882014-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 Glassdd6ab882014-02-26 15:59:18 -07007 */
8
9#include <common.h>
10#include <errno.h>
Simon Glass528b1ef2015-01-25 08:27:16 -070011#include <fdtdec.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070012#include <malloc.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090013#include <linux/libfdt.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070014#include <dm/device.h>
15#include <dm/device-internal.h>
16#include <dm/lists.h>
Simon Glassf19d9f22017-05-18 20:09:08 -060017#include <dm/of.h>
18#include <dm/of_access.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070019#include <dm/platdata.h>
Simon Glassf19d9f22017-05-18 20:09:08 -060020#include <dm/read.h>
Jeroen Hofsteecf0cf822014-06-25 21:57:45 +020021#include <dm/root.h>
Simon Glassdd6ab882014-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 Schocherb74fcb42014-05-22 12:43:05 +020032struct udevice *dm_root(void)
Simon Glassdd6ab882014-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 Glass1b0deee2016-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 Vutla02ba17f2017-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 Glass1b0deee2016-11-13 14:21:58 -070049}
50
Michal Simek0ec473b2015-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 Simek61809f52015-10-27 13:48:08 +010073 if (entry->child_post_bind)
74 entry->child_post_bind += gd->reloc_off;
Michal Simek0ec473b2015-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 Simek61809f52015-10-27 13:48:08 +010097 if (entry->pre_probe)
98 entry->pre_probe += gd->reloc_off;
Michal Simek0ec473b2015-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 Simek61809f52015-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 Simek0ec473b2015-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 Dureghellof4d193b2016-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 Simek0ec473b2015-02-02 16:31:59 +0100130#endif
131
Simon Glassf19d9f22017-05-18 20:09:08 -0600132int dm_init(bool of_live)
Simon Glassdd6ab882014-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 Glass34a1d352014-06-11 23:29:49 -0600140 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
Simon Glassdd6ab882014-02-26 15:59:18 -0700141
Michal Simek0ec473b2015-02-02 16:31:59 +0100142#if defined(CONFIG_NEEDS_MANUAL_RELOC)
143 fix_drivers();
144 fix_uclass();
Angelo Dureghellof4d193b2016-05-21 12:05:49 +0200145 fix_devices();
Michal Simek0ec473b2015-02-02 16:31:59 +0100146#endif
147
Simon Glassfef72b72014-07-23 06:55:03 -0600148 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
Simon Glassdd6ab882014-02-26 15:59:18 -0700149 if (ret)
150 return ret;
Masahiro Yamada366b24f2015-08-12 07:31:55 +0900151#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassf19d9f22017-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 Glasscc7cf942015-01-25 08:26:58 -0700158#endif
Simon Glass6d3b3e22014-07-23 06:55:00 -0600159 ret = device_probe(DM_ROOT_NON_CONST);
160 if (ret)
161 return ret;
Simon Glassdd6ab882014-02-26 15:59:18 -0700162
163 return 0;
164}
165
Simon Glass00197582014-07-23 06:55:01 -0600166int dm_uninit(void)
167{
Stefan Roese80b5bc92017-03-20 12:51:48 +0100168 device_remove(dm_root(), DM_REMOVE_NORMAL);
Simon Glass00197582014-07-23 06:55:01 -0600169 device_unbind(dm_root());
Jean-Jacques Hiblot272b67d2018-12-07 14:50:54 +0100170 gd->dm_root = NULL;
Simon Glass00197582014-07-23 06:55:01 -0600171
172 return 0;
173}
174
Stefan Roese505045d2017-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 Glassfef72b72014-07-23 06:55:03 -0600184int dm_scan_platdata(bool pre_reloc_only)
Simon Glassdd6ab882014-02-26 15:59:18 -0700185{
186 int ret;
187
Simon Glassfef72b72014-07-23 06:55:03 -0600188 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glassdd6ab882014-02-26 15:59:18 -0700189 if (ret == -ENOENT) {
190 dm_warn("Some drivers were not found\n");
191 ret = 0;
192 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700193
Masahiro Yamada6cac81a2014-11-17 17:19:38 +0900194 return ret;
Simon Glassdd6ab882014-02-26 15:59:18 -0700195}
196
Simon Glassf19d9f22017-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 Mengc596a592018-10-10 22:07:00 -0700206
Simon Glassf19d9f22017-05-18 20:09:08 -0600207 if (!of_device_is_available(np)) {
Masahiro Yamadaf70f39f2017-09-29 12:31:20 +0900208 pr_debug(" - ignoring disabled device\n");
Simon Glassf19d9f22017-05-18 20:09:08 -0600209 continue;
210 }
Bin Meng9a9b0742018-10-10 22:06:58 -0700211 err = lists_bind_fdt(parent, np_to_ofnode(np), NULL,
212 pre_reloc_only);
Simon Glassf19d9f22017-05-18 20:09:08 -0600213 if (err && !ret) {
214 ret = err;
215 debug("%s: ret=%d\n", np->name, ret);
216 }
217 }
218
219 if (ret)
220 dm_warn("Some drivers failed to bind\n");
221
222 return ret;
223}
224#endif /* CONFIG_IS_ENABLED(OF_LIVE) */
225
Simon Glass8d7e8162016-07-04 11:57:58 -0600226#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassa4dbe252017-05-17 17:18:08 -0600227/**
228 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
229 *
230 * This scans the subnodes of a device tree node and and creates a driver
231 * for each one.
232 *
233 * @parent: Parent device for the devices that will be created
234 * @blob: Pointer to device tree blob
235 * @offset: Offset of node to scan
236 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
237 * flag. If false bind all drivers.
238 * @return 0 if OK, -ve on error
239 */
240static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
241 int offset, bool pre_reloc_only)
Simon Glassdd6ab882014-02-26 15:59:18 -0700242{
Simon Glassdd6ab882014-02-26 15:59:18 -0700243 int ret = 0, err;
Simon Glassdd6ab882014-02-26 15:59:18 -0700244
Simon Glass40717422014-07-23 06:55:18 -0600245 for (offset = fdt_first_subnode(blob, offset);
246 offset > 0;
247 offset = fdt_next_subnode(blob, offset)) {
Jens Wiklander651a8362018-09-25 16:40:05 +0200248 const char *node_name = fdt_get_name(blob, offset, NULL);
249
Simon Glass528b1ef2015-01-25 08:27:16 -0700250 if (!fdtdec_get_is_enabled(blob, offset)) {
Masahiro Yamadaf70f39f2017-09-29 12:31:20 +0900251 pr_debug(" - ignoring disabled device\n");
Simon Glass528b1ef2015-01-25 08:27:16 -0700252 continue;
253 }
Bin Meng9a9b0742018-10-10 22:06:58 -0700254 err = lists_bind_fdt(parent, offset_to_ofnode(offset), NULL,
255 pre_reloc_only);
Simon Glassc90b9172015-08-30 16:55:17 -0600256 if (err && !ret) {
Simon Glass40717422014-07-23 06:55:18 -0600257 ret = err;
Jens Wiklander651a8362018-09-25 16:40:05 +0200258 debug("%s: ret=%d\n", node_name, ret);
Simon Glassc90b9172015-08-30 16:55:17 -0600259 }
Simon Glass40717422014-07-23 06:55:18 -0600260 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700261
262 if (ret)
263 dm_warn("Some drivers failed to bind\n");
264
265 return ret;
266}
Simon Glass40717422014-07-23 06:55:18 -0600267
Simon Glass5d5388d2016-07-05 17:10:08 -0600268int dm_scan_fdt_dev(struct udevice *dev)
269{
Simon Glassf19d9f22017-05-18 20:09:08 -0600270 if (!dev_of_valid(dev))
Simon Glass5d5388d2016-07-05 17:10:08 -0600271 return 0;
272
Simon Glassf19d9f22017-05-18 20:09:08 -0600273#if CONFIG_IS_ENABLED(OF_LIVE)
274 if (of_live_active())
275 return dm_scan_fdt_live(dev, dev_np(dev),
276 gd->flags & GD_FLG_RELOC ? false : true);
277 else
278#endif
Simon Glassdd79d6e2017-01-17 16:52:55 -0700279 return dm_scan_fdt_node(dev, gd->fdt_blob, dev_of_offset(dev),
Simon Glass5d5388d2016-07-05 17:10:08 -0600280 gd->flags & GD_FLG_RELOC ? false : true);
281}
282
Simon Glass40717422014-07-23 06:55:18 -0600283int dm_scan_fdt(const void *blob, bool pre_reloc_only)
284{
Simon Glassf19d9f22017-05-18 20:09:08 -0600285#if CONFIG_IS_ENABLED(OF_LIVE)
286 if (of_live_active())
287 return dm_scan_fdt_live(gd->dm_root, gd->of_root,
288 pre_reloc_only);
289 else
290#endif
Simon Glass40717422014-07-23 06:55:18 -0600291 return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only);
292}
Simon Glassdd6ab882014-02-26 15:59:18 -0700293
Patrick Delaunayc779e202020-02-18 15:43:46 +0100294static int dm_scan_fdt_ofnode_path(const void *blob, const char *path,
295 bool pre_reloc_only)
Rajan Vajafac64632018-08-10 01:45:33 -0700296{
297 ofnode node;
298
299 node = ofnode_path(path);
300 if (!ofnode_valid(node))
301 return 0;
302
303#if CONFIG_IS_ENABLED(OF_LIVE)
304 if (of_live_active())
305 return dm_scan_fdt_live(gd->dm_root, node.np, pre_reloc_only);
306#endif
Patrick Delaunayc779e202020-02-18 15:43:46 +0100307 return dm_scan_fdt_node(gd->dm_root, blob, node.of_offset,
Rajan Vajafac64632018-08-10 01:45:33 -0700308 pre_reloc_only);
309}
310
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200311int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only)
312{
Patrick Delaunayc779e202020-02-18 15:43:46 +0100313 int ret, i;
314 const char * const nodes[] = {
315 "/chosen",
316 "/clocks",
317 "/firmware"
318 };
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200319
Patrice Chotard1e5f6e32019-05-15 10:07:01 +0200320 ret = dm_scan_fdt(blob, pre_reloc_only);
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200321 if (ret) {
322 debug("dm_scan_fdt() failed: %d\n", ret);
323 return ret;
324 }
325
Patrick Delaunayc779e202020-02-18 15:43:46 +0100326 /* Some nodes aren't devices themselves but may contain some */
327 for (i = 0; i < ARRAY_SIZE(nodes); i++) {
328 ret = dm_scan_fdt_ofnode_path(blob, nodes[i], pre_reloc_only);
329 if (ret) {
330 debug("dm_scan_fdt() scan for %s failed: %d\n",
331 nodes[i], ret);
332 return ret;
333 }
Rajan Vajae9fc81d2018-08-10 01:45:34 -0700334 }
335
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200336 return ret;
337}
Marek Vasut7f18c342019-08-31 18:03:28 +0200338#endif
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200339
Simon Glass97e22e32014-07-23 06:55:23 -0600340__weak int dm_scan_other(bool pre_reloc_only)
341{
342 return 0;
343}
344
Simon Glassa730c5d2014-07-23 06:55:04 -0600345int dm_init_and_scan(bool pre_reloc_only)
346{
347 int ret;
348
Simon Glassf19d9f22017-05-18 20:09:08 -0600349 ret = dm_init(IS_ENABLED(CONFIG_OF_LIVE));
Simon Glassa730c5d2014-07-23 06:55:04 -0600350 if (ret) {
351 debug("dm_init() failed: %d\n", ret);
352 return ret;
353 }
354 ret = dm_scan_platdata(pre_reloc_only);
355 if (ret) {
356 debug("dm_scan_platdata() failed: %d\n", ret);
357 return ret;
358 }
Simon Glass0704b852015-02-27 22:06:41 -0700359
Simon Glass8d7e8162016-07-04 11:57:58 -0600360 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200361 ret = dm_extended_scan_fdt(gd->fdt_blob, pre_reloc_only);
Simon Glass0704b852015-02-27 22:06:41 -0700362 if (ret) {
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200363 debug("dm_extended_scan_dt() failed: %d\n", ret);
Simon Glass0704b852015-02-27 22:06:41 -0700364 return ret;
365 }
Simon Glassa730c5d2014-07-23 06:55:04 -0600366 }
Simon Glass0704b852015-02-27 22:06:41 -0700367
Simon Glass97e22e32014-07-23 06:55:23 -0600368 ret = dm_scan_other(pre_reloc_only);
369 if (ret)
370 return ret;
Simon Glassa730c5d2014-07-23 06:55:04 -0600371
372 return 0;
373}
374
Simon Glassdd6ab882014-02-26 15:59:18 -0700375/* This is the root driver - all drivers are children of this */
376U_BOOT_DRIVER(root_driver) = {
377 .name = "root_driver",
378 .id = UCLASS_ROOT,
Simon Glassdd6ab882014-02-26 15:59:18 -0700379};
380
381/* This is the root uclass */
382UCLASS_DRIVER(root) = {
383 .name = "root",
384 .id = UCLASS_ROOT,
385};