blob: 0726be6b795f6efdf07ce5c6f12753409b0a455f [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 Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070013#include <malloc.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090014#include <linux/libfdt.h>
Simon Glass719ea082020-07-07 13:11:38 -060015#include <dm/acpi.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070016#include <dm/device.h>
17#include <dm/device-internal.h>
18#include <dm/lists.h>
Simon Glassf19d9f22017-05-18 20:09:08 -060019#include <dm/of.h>
20#include <dm/of_access.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070021#include <dm/platdata.h>
Simon Glassf19d9f22017-05-18 20:09:08 -060022#include <dm/read.h>
Jeroen Hofsteecf0cf822014-06-25 21:57:45 +020023#include <dm/root.h>
Simon Glassdd6ab882014-02-26 15:59:18 -070024#include <dm/uclass.h>
25#include <dm/util.h>
26#include <linux/list.h>
27
28DECLARE_GLOBAL_DATA_PTR;
29
Walter Lozano95282d62020-06-25 01:10:10 -030030static struct driver_info root_info = {
Simon Glassdd6ab882014-02-26 15:59:18 -070031 .name = "root_driver",
32};
33
Heiko Schocherb74fcb42014-05-22 12:43:05 +020034struct udevice *dm_root(void)
Simon Glassdd6ab882014-02-26 15:59:18 -070035{
36 if (!gd->dm_root) {
37 dm_warn("Virtual root driver does not exist!\n");
38 return NULL;
39 }
40
41 return gd->dm_root;
42}
43
Simon Glass1b0deee2016-11-13 14:21:58 -070044void dm_fixup_for_gd_move(struct global_data *new_gd)
45{
46 /* The sentinel node has moved, so update things that point to it */
Lokesh Vutla02ba17f2017-02-13 09:21:22 +053047 if (gd->dm_root) {
48 new_gd->uclass_root.next->prev = &new_gd->uclass_root;
49 new_gd->uclass_root.prev->next = &new_gd->uclass_root;
50 }
Simon Glass1b0deee2016-11-13 14:21:58 -070051}
52
Michal Simek0ec473b2015-02-02 16:31:59 +010053#if defined(CONFIG_NEEDS_MANUAL_RELOC)
54void fix_drivers(void)
55{
56 struct driver *drv =
57 ll_entry_start(struct driver, driver);
58 const int n_ents = ll_entry_count(struct driver, driver);
59 struct driver *entry;
60
61 for (entry = drv; entry != drv + n_ents; entry++) {
62 if (entry->of_match)
63 entry->of_match = (const struct udevice_id *)
64 ((u32)entry->of_match + gd->reloc_off);
65 if (entry->bind)
66 entry->bind += gd->reloc_off;
67 if (entry->probe)
68 entry->probe += gd->reloc_off;
69 if (entry->remove)
70 entry->remove += gd->reloc_off;
71 if (entry->unbind)
72 entry->unbind += gd->reloc_off;
73 if (entry->ofdata_to_platdata)
74 entry->ofdata_to_platdata += gd->reloc_off;
Michal Simek61809f52015-10-27 13:48:08 +010075 if (entry->child_post_bind)
76 entry->child_post_bind += gd->reloc_off;
Michal Simek0ec473b2015-02-02 16:31:59 +010077 if (entry->child_pre_probe)
78 entry->child_pre_probe += gd->reloc_off;
79 if (entry->child_post_remove)
80 entry->child_post_remove += gd->reloc_off;
81 /* OPS are fixed in every uclass post_probe function */
82 if (entry->ops)
83 entry->ops += gd->reloc_off;
84 }
85}
86
87void fix_uclass(void)
88{
89 struct uclass_driver *uclass =
90 ll_entry_start(struct uclass_driver, uclass);
91 const int n_ents = ll_entry_count(struct uclass_driver, uclass);
92 struct uclass_driver *entry;
93
94 for (entry = uclass; entry != uclass + n_ents; entry++) {
95 if (entry->post_bind)
96 entry->post_bind += gd->reloc_off;
97 if (entry->pre_unbind)
98 entry->pre_unbind += gd->reloc_off;
Michal Simek61809f52015-10-27 13:48:08 +010099 if (entry->pre_probe)
100 entry->pre_probe += gd->reloc_off;
Michal Simek0ec473b2015-02-02 16:31:59 +0100101 if (entry->post_probe)
102 entry->post_probe += gd->reloc_off;
103 if (entry->pre_remove)
104 entry->pre_remove += gd->reloc_off;
Michal Simek61809f52015-10-27 13:48:08 +0100105 if (entry->child_post_bind)
106 entry->child_post_bind += gd->reloc_off;
107 if (entry->child_pre_probe)
108 entry->child_pre_probe += gd->reloc_off;
Michal Simek0ec473b2015-02-02 16:31:59 +0100109 if (entry->init)
110 entry->init += gd->reloc_off;
111 if (entry->destroy)
112 entry->destroy += gd->reloc_off;
113 /* FIXME maybe also need to fix these ops */
114 if (entry->ops)
115 entry->ops += gd->reloc_off;
116 }
117}
Angelo Dureghellof4d193b2016-05-21 12:05:49 +0200118
119void fix_devices(void)
120{
121 struct driver_info *dev =
122 ll_entry_start(struct driver_info, driver_info);
123 const int n_ents = ll_entry_count(struct driver_info, driver_info);
124 struct driver_info *entry;
125
126 for (entry = dev; entry != dev + n_ents; entry++) {
127 if (entry->platdata)
128 entry->platdata += gd->reloc_off;
129 }
130}
131
Michal Simek0ec473b2015-02-02 16:31:59 +0100132#endif
133
Simon Glassf19d9f22017-05-18 20:09:08 -0600134int dm_init(bool of_live)
Simon Glassdd6ab882014-02-26 15:59:18 -0700135{
136 int ret;
137
138 if (gd->dm_root) {
139 dm_warn("Virtual root driver already exists!\n");
140 return -EINVAL;
141 }
Simon Glass34a1d352014-06-11 23:29:49 -0600142 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
Simon Glassdd6ab882014-02-26 15:59:18 -0700143
Michal Simek0ec473b2015-02-02 16:31:59 +0100144#if defined(CONFIG_NEEDS_MANUAL_RELOC)
145 fix_drivers();
146 fix_uclass();
Angelo Dureghellof4d193b2016-05-21 12:05:49 +0200147 fix_devices();
Michal Simek0ec473b2015-02-02 16:31:59 +0100148#endif
149
Simon Glassfef72b72014-07-23 06:55:03 -0600150 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
Simon Glassdd6ab882014-02-26 15:59:18 -0700151 if (ret)
152 return ret;
Masahiro Yamada366b24f2015-08-12 07:31:55 +0900153#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassf19d9f22017-05-18 20:09:08 -0600154# if CONFIG_IS_ENABLED(OF_LIVE)
155 if (of_live)
156 DM_ROOT_NON_CONST->node = np_to_ofnode(gd->of_root);
157 else
158#endif
159 DM_ROOT_NON_CONST->node = offset_to_ofnode(0);
Simon Glasscc7cf942015-01-25 08:26:58 -0700160#endif
Simon Glass6d3b3e22014-07-23 06:55:00 -0600161 ret = device_probe(DM_ROOT_NON_CONST);
162 if (ret)
163 return ret;
Simon Glassdd6ab882014-02-26 15:59:18 -0700164
165 return 0;
166}
167
Simon Glass00197582014-07-23 06:55:01 -0600168int dm_uninit(void)
169{
Stefan Roese80b5bc92017-03-20 12:51:48 +0100170 device_remove(dm_root(), DM_REMOVE_NORMAL);
Simon Glass00197582014-07-23 06:55:01 -0600171 device_unbind(dm_root());
Jean-Jacques Hiblot272b67d2018-12-07 14:50:54 +0100172 gd->dm_root = NULL;
Simon Glass00197582014-07-23 06:55:01 -0600173
174 return 0;
175}
176
Stefan Roese505045d2017-03-27 10:58:53 +0200177#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
178int dm_remove_devices_flags(uint flags)
179{
180 device_remove(dm_root(), flags);
181
182 return 0;
183}
184#endif
185
Simon Glassfef72b72014-07-23 06:55:03 -0600186int dm_scan_platdata(bool pre_reloc_only)
Simon Glassdd6ab882014-02-26 15:59:18 -0700187{
188 int ret;
189
Simon Glassfef72b72014-07-23 06:55:03 -0600190 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glassdd6ab882014-02-26 15:59:18 -0700191 if (ret == -ENOENT) {
192 dm_warn("Some drivers were not found\n");
193 ret = 0;
194 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700195
Masahiro Yamada6cac81a2014-11-17 17:19:38 +0900196 return ret;
Simon Glassdd6ab882014-02-26 15:59:18 -0700197}
198
Simon Glassf19d9f22017-05-18 20:09:08 -0600199#if CONFIG_IS_ENABLED(OF_LIVE)
200static int dm_scan_fdt_live(struct udevice *parent,
201 const struct device_node *node_parent,
202 bool pre_reloc_only)
203{
204 struct device_node *np;
205 int ret = 0, err;
206
207 for (np = node_parent->child; np; np = np->sibling) {
Bin Mengc596a592018-10-10 22:07:00 -0700208
Simon Glassf19d9f22017-05-18 20:09:08 -0600209 if (!of_device_is_available(np)) {
Masahiro Yamadaf70f39f2017-09-29 12:31:20 +0900210 pr_debug(" - ignoring disabled device\n");
Simon Glassf19d9f22017-05-18 20:09:08 -0600211 continue;
212 }
Bin Meng9a9b0742018-10-10 22:06:58 -0700213 err = lists_bind_fdt(parent, np_to_ofnode(np), NULL,
214 pre_reloc_only);
Simon Glassf19d9f22017-05-18 20:09:08 -0600215 if (err && !ret) {
216 ret = err;
217 debug("%s: ret=%d\n", np->name, ret);
218 }
219 }
220
221 if (ret)
222 dm_warn("Some drivers failed to bind\n");
223
224 return ret;
225}
226#endif /* CONFIG_IS_ENABLED(OF_LIVE) */
227
Simon Glass8d7e8162016-07-04 11:57:58 -0600228#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassa4dbe252017-05-17 17:18:08 -0600229/**
230 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
231 *
232 * This scans the subnodes of a device tree node and and creates a driver
233 * for each one.
234 *
235 * @parent: Parent device for the devices that will be created
236 * @blob: Pointer to device tree blob
237 * @offset: Offset of node to scan
238 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
239 * flag. If false bind all drivers.
240 * @return 0 if OK, -ve on error
241 */
242static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
243 int offset, bool pre_reloc_only)
Simon Glassdd6ab882014-02-26 15:59:18 -0700244{
Simon Glassdd6ab882014-02-26 15:59:18 -0700245 int ret = 0, err;
Simon Glassdd6ab882014-02-26 15:59:18 -0700246
Simon Glass40717422014-07-23 06:55:18 -0600247 for (offset = fdt_first_subnode(blob, offset);
248 offset > 0;
249 offset = fdt_next_subnode(blob, offset)) {
Jens Wiklander651a8362018-09-25 16:40:05 +0200250 const char *node_name = fdt_get_name(blob, offset, NULL);
251
Simon Glass528b1ef2015-01-25 08:27:16 -0700252 if (!fdtdec_get_is_enabled(blob, offset)) {
Masahiro Yamadaf70f39f2017-09-29 12:31:20 +0900253 pr_debug(" - ignoring disabled device\n");
Simon Glass528b1ef2015-01-25 08:27:16 -0700254 continue;
255 }
Bin Meng9a9b0742018-10-10 22:06:58 -0700256 err = lists_bind_fdt(parent, offset_to_ofnode(offset), NULL,
257 pre_reloc_only);
Simon Glassc90b9172015-08-30 16:55:17 -0600258 if (err && !ret) {
Simon Glass40717422014-07-23 06:55:18 -0600259 ret = err;
Jens Wiklander651a8362018-09-25 16:40:05 +0200260 debug("%s: ret=%d\n", node_name, ret);
Simon Glassc90b9172015-08-30 16:55:17 -0600261 }
Simon Glass40717422014-07-23 06:55:18 -0600262 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700263
264 if (ret)
265 dm_warn("Some drivers failed to bind\n");
266
267 return ret;
268}
Simon Glass40717422014-07-23 06:55:18 -0600269
Simon Glass5d5388d2016-07-05 17:10:08 -0600270int dm_scan_fdt_dev(struct udevice *dev)
271{
Simon Glassf19d9f22017-05-18 20:09:08 -0600272 if (!dev_of_valid(dev))
Simon Glass5d5388d2016-07-05 17:10:08 -0600273 return 0;
274
Simon Glassf19d9f22017-05-18 20:09:08 -0600275#if CONFIG_IS_ENABLED(OF_LIVE)
276 if (of_live_active())
277 return dm_scan_fdt_live(dev, dev_np(dev),
278 gd->flags & GD_FLG_RELOC ? false : true);
279 else
280#endif
Simon Glassdd79d6e2017-01-17 16:52:55 -0700281 return dm_scan_fdt_node(dev, gd->fdt_blob, dev_of_offset(dev),
Simon Glass5d5388d2016-07-05 17:10:08 -0600282 gd->flags & GD_FLG_RELOC ? false : true);
283}
284
Simon Glass40717422014-07-23 06:55:18 -0600285int dm_scan_fdt(const void *blob, bool pre_reloc_only)
286{
Simon Glassf19d9f22017-05-18 20:09:08 -0600287#if CONFIG_IS_ENABLED(OF_LIVE)
288 if (of_live_active())
289 return dm_scan_fdt_live(gd->dm_root, gd->of_root,
290 pre_reloc_only);
291 else
292#endif
Simon Glass40717422014-07-23 06:55:18 -0600293 return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only);
294}
Simon Glassdd6ab882014-02-26 15:59:18 -0700295
Patrick Delaunayc779e202020-02-18 15:43:46 +0100296static int dm_scan_fdt_ofnode_path(const void *blob, const char *path,
297 bool pre_reloc_only)
Rajan Vajafac64632018-08-10 01:45:33 -0700298{
299 ofnode node;
300
301 node = ofnode_path(path);
302 if (!ofnode_valid(node))
303 return 0;
304
305#if CONFIG_IS_ENABLED(OF_LIVE)
306 if (of_live_active())
307 return dm_scan_fdt_live(gd->dm_root, node.np, pre_reloc_only);
308#endif
Patrick Delaunayc779e202020-02-18 15:43:46 +0100309 return dm_scan_fdt_node(gd->dm_root, blob, node.of_offset,
Rajan Vajafac64632018-08-10 01:45:33 -0700310 pre_reloc_only);
311}
312
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200313int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only)
314{
Patrick Delaunayc779e202020-02-18 15:43:46 +0100315 int ret, i;
316 const char * const nodes[] = {
317 "/chosen",
318 "/clocks",
319 "/firmware"
320 };
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200321
Patrice Chotard1e5f6e32019-05-15 10:07:01 +0200322 ret = dm_scan_fdt(blob, pre_reloc_only);
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200323 if (ret) {
324 debug("dm_scan_fdt() failed: %d\n", ret);
325 return ret;
326 }
327
Patrick Delaunayc779e202020-02-18 15:43:46 +0100328 /* Some nodes aren't devices themselves but may contain some */
329 for (i = 0; i < ARRAY_SIZE(nodes); i++) {
330 ret = dm_scan_fdt_ofnode_path(blob, nodes[i], pre_reloc_only);
331 if (ret) {
332 debug("dm_scan_fdt() scan for %s failed: %d\n",
333 nodes[i], ret);
334 return ret;
335 }
Rajan Vajae9fc81d2018-08-10 01:45:34 -0700336 }
337
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200338 return ret;
339}
Marek Vasut7f18c342019-08-31 18:03:28 +0200340#endif
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200341
Simon Glass97e22e32014-07-23 06:55:23 -0600342__weak int dm_scan_other(bool pre_reloc_only)
343{
344 return 0;
345}
346
Simon Glassa730c5d2014-07-23 06:55:04 -0600347int dm_init_and_scan(bool pre_reloc_only)
348{
349 int ret;
350
Walter Lozanoffc41b02020-06-25 01:10:11 -0300351#if CONFIG_IS_ENABLED(OF_PLATDATA)
352 dm_populate_phandle_data();
353#endif
354
Simon Glassf19d9f22017-05-18 20:09:08 -0600355 ret = dm_init(IS_ENABLED(CONFIG_OF_LIVE));
Simon Glassa730c5d2014-07-23 06:55:04 -0600356 if (ret) {
357 debug("dm_init() failed: %d\n", ret);
358 return ret;
359 }
360 ret = dm_scan_platdata(pre_reloc_only);
361 if (ret) {
362 debug("dm_scan_platdata() failed: %d\n", ret);
363 return ret;
364 }
Simon Glass0704b852015-02-27 22:06:41 -0700365
Simon Glass8d7e8162016-07-04 11:57:58 -0600366 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200367 ret = dm_extended_scan_fdt(gd->fdt_blob, pre_reloc_only);
Simon Glass0704b852015-02-27 22:06:41 -0700368 if (ret) {
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200369 debug("dm_extended_scan_dt() failed: %d\n", ret);
Simon Glass0704b852015-02-27 22:06:41 -0700370 return ret;
371 }
Simon Glassa730c5d2014-07-23 06:55:04 -0600372 }
Simon Glass0704b852015-02-27 22:06:41 -0700373
Simon Glass97e22e32014-07-23 06:55:23 -0600374 ret = dm_scan_other(pre_reloc_only);
375 if (ret)
376 return ret;
Simon Glassa730c5d2014-07-23 06:55:04 -0600377
378 return 0;
379}
380
Simon Glass719ea082020-07-07 13:11:38 -0600381#ifdef CONFIG_ACPIGEN
382static int root_acpi_get_name(const struct udevice *dev, char *out_name)
383{
384 return acpi_copy_name(out_name, "\\_SB");
385}
386
387struct acpi_ops root_acpi_ops = {
388 .get_name = root_acpi_get_name,
389};
390#endif
391
Simon Glassdd6ab882014-02-26 15:59:18 -0700392/* This is the root driver - all drivers are children of this */
393U_BOOT_DRIVER(root_driver) = {
394 .name = "root_driver",
395 .id = UCLASS_ROOT,
Simon Glass719ea082020-07-07 13:11:38 -0600396 ACPI_OPS_PTR(&root_acpi_ops)
Simon Glassdd6ab882014-02-26 15:59:18 -0700397};
398
399/* This is the root uclass */
400UCLASS_DRIVER(root) = {
401 .name = "root",
402 .id = UCLASS_ROOT,
403};