blob: 5f10d7a39c7e9fc0bf8d334cfe2ffa183fe07ee7 [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 Glassf7ae49f2020-05-10 11:40:05 -060012#include <log.h>
Simon Glass6494d702014-02-26 15:59:18 -070013#include <malloc.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090014#include <linux/libfdt.h>
Simon Glass4b724a12020-07-07 13:11:38 -060015#include <dm/acpi.h>
Simon Glass6494d702014-02-26 15:59:18 -070016#include <dm/device.h>
17#include <dm/device-internal.h>
18#include <dm/lists.h>
Simon Glass19c82052017-05-18 20:09:08 -060019#include <dm/of.h>
20#include <dm/of_access.h>
Simon Glass6494d702014-02-26 15:59:18 -070021#include <dm/platdata.h>
Simon Glass19c82052017-05-18 20:09:08 -060022#include <dm/read.h>
Jeroen Hofsteefd536d82014-06-25 21:57:45 +020023#include <dm/root.h>
Simon Glass6494d702014-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 Lozano908d0242020-06-25 01:10:10 -030030static struct driver_info root_info = {
Simon Glass6494d702014-02-26 15:59:18 -070031 .name = "root_driver",
32};
33
Heiko Schocher54c5d082014-05-22 12:43:05 +020034struct udevice *dm_root(void)
Simon Glass6494d702014-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 Glass2f11cd92016-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 Vutlab0d95122017-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 Glass2f11cd92016-11-13 14:21:58 -070051}
52
Michal Simek484fdf52015-02-02 16:31:59 +010053void fix_drivers(void)
54{
55 struct driver *drv =
56 ll_entry_start(struct driver, driver);
57 const int n_ents = ll_entry_count(struct driver, driver);
58 struct driver *entry;
59
60 for (entry = drv; entry != drv + n_ents; entry++) {
61 if (entry->of_match)
62 entry->of_match = (const struct udevice_id *)
Simon Glassa652d9c2020-10-03 09:25:22 -060063 ((ulong)entry->of_match + gd->reloc_off);
Michal Simek484fdf52015-02-02 16:31:59 +010064 if (entry->bind)
65 entry->bind += gd->reloc_off;
66 if (entry->probe)
67 entry->probe += gd->reloc_off;
68 if (entry->remove)
69 entry->remove += gd->reloc_off;
70 if (entry->unbind)
71 entry->unbind += gd->reloc_off;
72 if (entry->ofdata_to_platdata)
73 entry->ofdata_to_platdata += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +010074 if (entry->child_post_bind)
75 entry->child_post_bind += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +010076 if (entry->child_pre_probe)
77 entry->child_pre_probe += gd->reloc_off;
78 if (entry->child_post_remove)
79 entry->child_post_remove += gd->reloc_off;
80 /* OPS are fixed in every uclass post_probe function */
81 if (entry->ops)
82 entry->ops += gd->reloc_off;
83 }
84}
85
86void fix_uclass(void)
87{
88 struct uclass_driver *uclass =
89 ll_entry_start(struct uclass_driver, uclass);
90 const int n_ents = ll_entry_count(struct uclass_driver, uclass);
91 struct uclass_driver *entry;
92
93 for (entry = uclass; entry != uclass + n_ents; entry++) {
94 if (entry->post_bind)
95 entry->post_bind += gd->reloc_off;
96 if (entry->pre_unbind)
97 entry->pre_unbind += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +010098 if (entry->pre_probe)
99 entry->pre_probe += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +0100100 if (entry->post_probe)
101 entry->post_probe += gd->reloc_off;
102 if (entry->pre_remove)
103 entry->pre_remove += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +0100104 if (entry->child_post_bind)
105 entry->child_post_bind += gd->reloc_off;
106 if (entry->child_pre_probe)
107 entry->child_pre_probe += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +0100108 if (entry->init)
109 entry->init += gd->reloc_off;
110 if (entry->destroy)
111 entry->destroy += gd->reloc_off;
112 /* FIXME maybe also need to fix these ops */
113 if (entry->ops)
114 entry->ops += gd->reloc_off;
115 }
116}
Angelo Dureghello5aeedeb2016-05-21 12:05:49 +0200117
118void fix_devices(void)
119{
120 struct driver_info *dev =
121 ll_entry_start(struct driver_info, driver_info);
122 const int n_ents = ll_entry_count(struct driver_info, driver_info);
123 struct driver_info *entry;
124
125 for (entry = dev; entry != dev + n_ents; entry++) {
126 if (entry->platdata)
127 entry->platdata += gd->reloc_off;
128 }
129}
130
Simon Glass19c82052017-05-18 20:09:08 -0600131int dm_init(bool of_live)
Simon Glass6494d702014-02-26 15:59:18 -0700132{
133 int ret;
134
135 if (gd->dm_root) {
136 dm_warn("Virtual root driver already exists!\n");
137 return -EINVAL;
138 }
Simon Glass89876a52014-06-11 23:29:49 -0600139 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -0700140
Simon Glass9e948b92020-10-03 11:31:37 -0600141 if (IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC)) {
142 fix_drivers();
143 fix_uclass();
144 fix_devices();
145 }
Michal Simek484fdf52015-02-02 16:31:59 +0100146
Simon Glass00606d72014-07-23 06:55:03 -0600147 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -0700148 if (ret)
149 return ret;
Masahiro Yamada0f925822015-08-12 07:31:55 +0900150#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glassa652d9c2020-10-03 09:25:22 -0600151 if (CONFIG_IS_ENABLED(OF_LIVE) && of_live)
152 DM_ROOT_NON_CONST->node = np_to_ofnode(gd_of_root());
Simon Glass19c82052017-05-18 20:09:08 -0600153 else
Simon Glass19c82052017-05-18 20:09:08 -0600154 DM_ROOT_NON_CONST->node = offset_to_ofnode(0);
Simon Glass2f3b95d2015-01-25 08:26:58 -0700155#endif
Simon Glass74978122014-07-23 06:55:00 -0600156 ret = device_probe(DM_ROOT_NON_CONST);
157 if (ret)
158 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700159
160 return 0;
161}
162
Simon Glass9adbd7a2014-07-23 06:55:01 -0600163int dm_uninit(void)
164{
Stefan Roese706865a2017-03-20 12:51:48 +0100165 device_remove(dm_root(), DM_REMOVE_NORMAL);
Simon Glass9adbd7a2014-07-23 06:55:01 -0600166 device_unbind(dm_root());
Jean-Jacques Hiblotc483f4c2018-12-07 14:50:54 +0100167 gd->dm_root = NULL;
Simon Glass9adbd7a2014-07-23 06:55:01 -0600168
169 return 0;
170}
171
Stefan Roesebc85aa42017-03-27 10:58:53 +0200172#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
173int dm_remove_devices_flags(uint flags)
174{
175 device_remove(dm_root(), flags);
176
177 return 0;
178}
179#endif
180
Simon Glass00606d72014-07-23 06:55:03 -0600181int dm_scan_platdata(bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700182{
183 int ret;
184
Simon Glassa294ead2020-10-03 11:31:33 -0600185 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
186 struct driver_rt *dyn;
187 int n_ents;
188
189 n_ents = ll_entry_count(struct driver_info, driver_info);
190 dyn = calloc(n_ents, sizeof(struct driver_rt));
191 if (!dyn)
192 return -ENOMEM;
193 gd_set_dm_driver_rt(dyn);
194 }
195
Simon Glass00606d72014-07-23 06:55:03 -0600196 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -0700197 if (ret == -ENOENT) {
198 dm_warn("Some drivers were not found\n");
199 ret = 0;
200 }
Simon Glass6494d702014-02-26 15:59:18 -0700201
Masahiro Yamadacbf86d72014-11-17 17:19:38 +0900202 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700203}
204
Simon Glassa652d9c2020-10-03 09:25:22 -0600205#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass19c82052017-05-18 20:09:08 -0600206static int dm_scan_fdt_live(struct udevice *parent,
207 const struct device_node *node_parent,
208 bool pre_reloc_only)
209{
210 struct device_node *np;
211 int ret = 0, err;
212
213 for (np = node_parent->child; np; np = np->sibling) {
Bin Meng8e39afc2018-10-10 22:07:00 -0700214
Simon Glass19c82052017-05-18 20:09:08 -0600215 if (!of_device_is_available(np)) {
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900216 pr_debug(" - ignoring disabled device\n");
Simon Glass19c82052017-05-18 20:09:08 -0600217 continue;
218 }
Bin Meng8d773c42018-10-10 22:06:58 -0700219 err = lists_bind_fdt(parent, np_to_ofnode(np), NULL,
220 pre_reloc_only);
Simon Glass19c82052017-05-18 20:09:08 -0600221 if (err && !ret) {
222 ret = err;
223 debug("%s: ret=%d\n", np->name, ret);
224 }
225 }
226
227 if (ret)
228 dm_warn("Some drivers failed to bind\n");
229
230 return ret;
231}
Simon Glass19c82052017-05-18 20:09:08 -0600232
Simon Glassa771a042017-05-17 17:18:08 -0600233/**
234 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
235 *
236 * This scans the subnodes of a device tree node and and creates a driver
237 * for each one.
238 *
239 * @parent: Parent device for the devices that will be created
240 * @blob: Pointer to device tree blob
241 * @offset: Offset of node to scan
242 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
243 * flag. If false bind all drivers.
244 * @return 0 if OK, -ve on error
245 */
246static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
247 int offset, bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700248{
Simon Glass6494d702014-02-26 15:59:18 -0700249 int ret = 0, err;
Simon Glass6494d702014-02-26 15:59:18 -0700250
Simon Glass1ca7e202014-07-23 06:55:18 -0600251 for (offset = fdt_first_subnode(blob, offset);
252 offset > 0;
253 offset = fdt_next_subnode(blob, offset)) {
Jens Wiklander747558d2018-09-25 16:40:05 +0200254 const char *node_name = fdt_get_name(blob, offset, NULL);
255
Simon Glass94f7afd2015-01-25 08:27:16 -0700256 if (!fdtdec_get_is_enabled(blob, offset)) {
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900257 pr_debug(" - ignoring disabled device\n");
Simon Glass94f7afd2015-01-25 08:27:16 -0700258 continue;
259 }
Bin Meng8d773c42018-10-10 22:06:58 -0700260 err = lists_bind_fdt(parent, offset_to_ofnode(offset), NULL,
261 pre_reloc_only);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600262 if (err && !ret) {
Simon Glass1ca7e202014-07-23 06:55:18 -0600263 ret = err;
Jens Wiklander747558d2018-09-25 16:40:05 +0200264 debug("%s: ret=%d\n", node_name, ret);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600265 }
Simon Glass1ca7e202014-07-23 06:55:18 -0600266 }
Simon Glass6494d702014-02-26 15:59:18 -0700267
268 if (ret)
269 dm_warn("Some drivers failed to bind\n");
270
271 return ret;
272}
Simon Glass1ca7e202014-07-23 06:55:18 -0600273
Simon Glasscc7f66f2016-07-05 17:10:08 -0600274int dm_scan_fdt_dev(struct udevice *dev)
275{
Simon Glass19c82052017-05-18 20:09:08 -0600276 if (!dev_of_valid(dev))
Simon Glasscc7f66f2016-07-05 17:10:08 -0600277 return 0;
278
Simon Glass19c82052017-05-18 20:09:08 -0600279 if (of_live_active())
280 return dm_scan_fdt_live(dev, dev_np(dev),
281 gd->flags & GD_FLG_RELOC ? false : true);
Simon Glassa652d9c2020-10-03 09:25:22 -0600282
Simon Glasse160f7d2017-01-17 16:52:55 -0700283 return dm_scan_fdt_node(dev, gd->fdt_blob, dev_of_offset(dev),
Simon Glasscc7f66f2016-07-05 17:10:08 -0600284 gd->flags & GD_FLG_RELOC ? false : true);
285}
286
Simon Glass1ca7e202014-07-23 06:55:18 -0600287int dm_scan_fdt(const void *blob, bool pre_reloc_only)
288{
Simon Glass19c82052017-05-18 20:09:08 -0600289 if (of_live_active())
Simon Glassa652d9c2020-10-03 09:25:22 -0600290 return dm_scan_fdt_live(gd->dm_root, gd_of_root(),
Simon Glass19c82052017-05-18 20:09:08 -0600291 pre_reloc_only);
Simon Glassa652d9c2020-10-03 09:25:22 -0600292
Simon Glass1ca7e202014-07-23 06:55:18 -0600293 return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only);
294}
Simon Glass6494d702014-02-26 15:59:18 -0700295
Patrick Delaunay0544ecb2020-02-18 15:43:46 +0100296static int dm_scan_fdt_ofnode_path(const void *blob, const char *path,
297 bool pre_reloc_only)
Rajan Vaja68d215d2018-08-10 01:45:33 -0700298{
299 ofnode node;
300
301 node = ofnode_path(path);
302 if (!ofnode_valid(node))
303 return 0;
304
Rajan Vaja68d215d2018-08-10 01:45:33 -0700305 if (of_live_active())
306 return dm_scan_fdt_live(gd->dm_root, node.np, pre_reloc_only);
Simon Glassa652d9c2020-10-03 09:25:22 -0600307
Patrick Delaunay0544ecb2020-02-18 15:43:46 +0100308 return dm_scan_fdt_node(gd->dm_root, blob, node.of_offset,
Rajan Vaja68d215d2018-08-10 01:45:33 -0700309 pre_reloc_only);
310}
311
Patrice Chotarde81c9862017-09-04 14:55:56 +0200312int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only)
313{
Patrick Delaunay0544ecb2020-02-18 15:43:46 +0100314 int ret, i;
315 const char * const nodes[] = {
316 "/chosen",
317 "/clocks",
318 "/firmware"
319 };
Patrice Chotarde81c9862017-09-04 14:55:56 +0200320
Patrice Chotardee730a72019-05-15 10:07:01 +0200321 ret = dm_scan_fdt(blob, pre_reloc_only);
Patrice Chotarde81c9862017-09-04 14:55:56 +0200322 if (ret) {
323 debug("dm_scan_fdt() failed: %d\n", ret);
324 return ret;
325 }
326
Patrick Delaunay0544ecb2020-02-18 15:43:46 +0100327 /* Some nodes aren't devices themselves but may contain some */
328 for (i = 0; i < ARRAY_SIZE(nodes); i++) {
329 ret = dm_scan_fdt_ofnode_path(blob, nodes[i], pre_reloc_only);
330 if (ret) {
331 debug("dm_scan_fdt() scan for %s failed: %d\n",
332 nodes[i], ret);
333 return ret;
334 }
Rajan Vaja1712ca22018-08-10 01:45:34 -0700335 }
336
Patrice Chotarde81c9862017-09-04 14:55:56 +0200337 return ret;
338}
Marek Vasutd7677bf2019-08-31 18:03:28 +0200339#endif
Patrice Chotarde81c9862017-09-04 14:55:56 +0200340
Simon Glassbb585032014-07-23 06:55:23 -0600341__weak int dm_scan_other(bool pre_reloc_only)
342{
343 return 0;
344}
345
Simon Glassab7cd622014-07-23 06:55:04 -0600346int dm_init_and_scan(bool pre_reloc_only)
347{
348 int ret;
349
Simon Glass9e948b92020-10-03 11:31:37 -0600350 if (CONFIG_IS_ENABLED(OF_PLATDATA))
351 dm_populate_phandle_data();
Walter Lozanofed0f892020-06-25 01:10:11 -0300352
Simon Glassa652d9c2020-10-03 09:25:22 -0600353 ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE));
Simon Glassab7cd622014-07-23 06:55:04 -0600354 if (ret) {
355 debug("dm_init() failed: %d\n", ret);
356 return ret;
357 }
358 ret = dm_scan_platdata(pre_reloc_only);
359 if (ret) {
360 debug("dm_scan_platdata() failed: %d\n", ret);
361 return ret;
362 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700363
Simon Glass29629eb2016-07-04 11:57:58 -0600364 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Patrice Chotarde81c9862017-09-04 14:55:56 +0200365 ret = dm_extended_scan_fdt(gd->fdt_blob, pre_reloc_only);
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700366 if (ret) {
Patrice Chotarde81c9862017-09-04 14:55:56 +0200367 debug("dm_extended_scan_dt() failed: %d\n", ret);
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700368 return ret;
369 }
Simon Glassab7cd622014-07-23 06:55:04 -0600370 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700371
Simon Glassbb585032014-07-23 06:55:23 -0600372 ret = dm_scan_other(pre_reloc_only);
373 if (ret)
374 return ret;
Simon Glassab7cd622014-07-23 06:55:04 -0600375
376 return 0;
377}
378
Simon Glass4b724a12020-07-07 13:11:38 -0600379#ifdef CONFIG_ACPIGEN
380static int root_acpi_get_name(const struct udevice *dev, char *out_name)
381{
382 return acpi_copy_name(out_name, "\\_SB");
383}
384
385struct acpi_ops root_acpi_ops = {
386 .get_name = root_acpi_get_name,
387};
388#endif
389
Simon Glass6494d702014-02-26 15:59:18 -0700390/* This is the root driver - all drivers are children of this */
391U_BOOT_DRIVER(root_driver) = {
392 .name = "root_driver",
393 .id = UCLASS_ROOT,
Simon Glass4b724a12020-07-07 13:11:38 -0600394 ACPI_OPS_PTR(&root_acpi_ops)
Simon Glass6494d702014-02-26 15:59:18 -0700395};
396
397/* This is the root uclass */
398UCLASS_DRIVER(root) = {
399 .name = "root",
400 .id = UCLASS_ROOT,
401};