blob: 672aa7cea72dd832dfc07630f75d7848966a65ea [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;
Simon Glassd1998a92020-12-03 16:55:21 -070072 if (entry->of_to_plat)
73 entry->of_to_plat += 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++) {
Simon Glasscaa4daa2020-12-03 16:55:18 -0700126 if (entry->plat)
127 entry->plat += gd->reloc_off;
Angelo Dureghello5aeedeb2016-05-21 12:05:49 +0200128 }
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;
Simon Glassd0c20ce2020-11-28 17:50:07 -0700150 if (CONFIG_IS_ENABLED(OF_CONTROL))
151 DM_ROOT_NON_CONST->node = ofnode_root();
Simon Glass74978122014-07-23 06:55:00 -0600152 ret = device_probe(DM_ROOT_NON_CONST);
153 if (ret)
154 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700155
156 return 0;
157}
158
Simon Glass9adbd7a2014-07-23 06:55:01 -0600159int dm_uninit(void)
160{
Stefan Roese706865a2017-03-20 12:51:48 +0100161 device_remove(dm_root(), DM_REMOVE_NORMAL);
Simon Glass9adbd7a2014-07-23 06:55:01 -0600162 device_unbind(dm_root());
Jean-Jacques Hiblotc483f4c2018-12-07 14:50:54 +0100163 gd->dm_root = NULL;
Simon Glass9adbd7a2014-07-23 06:55:01 -0600164
165 return 0;
166}
167
Stefan Roesebc85aa42017-03-27 10:58:53 +0200168#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
169int dm_remove_devices_flags(uint flags)
170{
171 device_remove(dm_root(), flags);
172
173 return 0;
174}
175#endif
176
Simon Glass8a8d24b2020-12-03 16:55:23 -0700177int dm_scan_plat(bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700178{
179 int ret;
180
Simon Glassa294ead2020-10-03 11:31:33 -0600181 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
182 struct driver_rt *dyn;
183 int n_ents;
184
185 n_ents = ll_entry_count(struct driver_info, driver_info);
186 dyn = calloc(n_ents, sizeof(struct driver_rt));
187 if (!dyn)
188 return -ENOMEM;
189 gd_set_dm_driver_rt(dyn);
190 }
191
Simon Glass00606d72014-07-23 06:55:03 -0600192 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -0700193 if (ret == -ENOENT) {
194 dm_warn("Some drivers were not found\n");
195 ret = 0;
196 }
Simon Glass6494d702014-02-26 15:59:18 -0700197
Masahiro Yamadacbf86d72014-11-17 17:19:38 +0900198 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700199}
200
Simon Glassa652d9c2020-10-03 09:25:22 -0600201#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassa771a042017-05-17 17:18:08 -0600202/**
203 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
204 *
205 * This scans the subnodes of a device tree node and and creates a driver
206 * for each one.
207 *
208 * @parent: Parent device for the devices that will be created
Simon Glass2ebea5e2020-11-28 17:50:08 -0700209 * @node: Node to scan
Simon Glassa771a042017-05-17 17:18:08 -0600210 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
211 * flag. If false bind all drivers.
212 * @return 0 if OK, -ve on error
213 */
Simon Glass2ebea5e2020-11-28 17:50:08 -0700214static int dm_scan_fdt_node(struct udevice *parent, ofnode parent_node,
215 bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700216{
Simon Glass6494d702014-02-26 15:59:18 -0700217 int ret = 0, err;
Simon Glass2ebea5e2020-11-28 17:50:08 -0700218 ofnode node;
Simon Glass6494d702014-02-26 15:59:18 -0700219
Simon Glass2ebea5e2020-11-28 17:50:08 -0700220 if (!ofnode_valid(parent_node))
221 return 0;
Jens Wiklander747558d2018-09-25 16:40:05 +0200222
Simon Glass2ebea5e2020-11-28 17:50:08 -0700223 for (node = ofnode_first_subnode(parent_node);
224 ofnode_valid(node);
225 node = ofnode_next_subnode(node)) {
226 const char *node_name = ofnode_get_name(node);
227
228 if (!ofnode_is_enabled(node)) {
Masahiro Yamadaceb91902017-09-29 12:31:20 +0900229 pr_debug(" - ignoring disabled device\n");
Simon Glass94f7afd2015-01-25 08:27:16 -0700230 continue;
231 }
Simon Glass2ebea5e2020-11-28 17:50:08 -0700232 err = lists_bind_fdt(parent, node, NULL, pre_reloc_only);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600233 if (err && !ret) {
Simon Glass1ca7e202014-07-23 06:55:18 -0600234 ret = err;
Jens Wiklander747558d2018-09-25 16:40:05 +0200235 debug("%s: ret=%d\n", node_name, ret);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600236 }
Simon Glass1ca7e202014-07-23 06:55:18 -0600237 }
Simon Glass6494d702014-02-26 15:59:18 -0700238
239 if (ret)
240 dm_warn("Some drivers failed to bind\n");
241
242 return ret;
243}
Simon Glass1ca7e202014-07-23 06:55:18 -0600244
Simon Glasscc7f66f2016-07-05 17:10:08 -0600245int dm_scan_fdt_dev(struct udevice *dev)
246{
Simon Glass2ebea5e2020-11-28 17:50:08 -0700247 return dm_scan_fdt_node(dev, dev_ofnode(dev),
Simon Glasscc7f66f2016-07-05 17:10:08 -0600248 gd->flags & GD_FLG_RELOC ? false : true);
249}
250
Simon Glass725e4fc2020-11-28 17:50:09 -0700251int dm_scan_fdt(bool pre_reloc_only)
Simon Glass1ca7e202014-07-23 06:55:18 -0600252{
Simon Glass2ebea5e2020-11-28 17:50:08 -0700253 return dm_scan_fdt_node(gd->dm_root, ofnode_root(), pre_reloc_only);
Simon Glass1ca7e202014-07-23 06:55:18 -0600254}
Simon Glass6494d702014-02-26 15:59:18 -0700255
Simon Glass725e4fc2020-11-28 17:50:09 -0700256static int dm_scan_fdt_ofnode_path(const char *path, bool pre_reloc_only)
Rajan Vaja68d215d2018-08-10 01:45:33 -0700257{
258 ofnode node;
259
260 node = ofnode_path(path);
Rajan Vaja68d215d2018-08-10 01:45:33 -0700261
Simon Glass2ebea5e2020-11-28 17:50:08 -0700262 return dm_scan_fdt_node(gd->dm_root, node, pre_reloc_only);
Rajan Vaja68d215d2018-08-10 01:45:33 -0700263}
264
Simon Glass8ee05b52020-11-28 17:50:10 -0700265int dm_extended_scan(bool pre_reloc_only)
Patrice Chotarde81c9862017-09-04 14:55:56 +0200266{
Patrick Delaunay0544ecb2020-02-18 15:43:46 +0100267 int ret, i;
268 const char * const nodes[] = {
269 "/chosen",
270 "/clocks",
271 "/firmware"
272 };
Patrice Chotarde81c9862017-09-04 14:55:56 +0200273
Simon Glass725e4fc2020-11-28 17:50:09 -0700274 ret = dm_scan_fdt(pre_reloc_only);
Patrice Chotarde81c9862017-09-04 14:55:56 +0200275 if (ret) {
276 debug("dm_scan_fdt() failed: %d\n", ret);
277 return ret;
278 }
279
Patrick Delaunay0544ecb2020-02-18 15:43:46 +0100280 /* Some nodes aren't devices themselves but may contain some */
281 for (i = 0; i < ARRAY_SIZE(nodes); i++) {
Simon Glass725e4fc2020-11-28 17:50:09 -0700282 ret = dm_scan_fdt_ofnode_path(nodes[i], pre_reloc_only);
Patrick Delaunay0544ecb2020-02-18 15:43:46 +0100283 if (ret) {
284 debug("dm_scan_fdt() scan for %s failed: %d\n",
285 nodes[i], ret);
286 return ret;
287 }
Rajan Vaja1712ca22018-08-10 01:45:34 -0700288 }
289
Patrice Chotarde81c9862017-09-04 14:55:56 +0200290 return ret;
291}
Marek Vasutd7677bf2019-08-31 18:03:28 +0200292#endif
Patrice Chotarde81c9862017-09-04 14:55:56 +0200293
Simon Glassbb585032014-07-23 06:55:23 -0600294__weak int dm_scan_other(bool pre_reloc_only)
295{
296 return 0;
297}
298
Simon Glassab7cd622014-07-23 06:55:04 -0600299int dm_init_and_scan(bool pre_reloc_only)
300{
301 int ret;
302
Simon Glass9e948b92020-10-03 11:31:37 -0600303 if (CONFIG_IS_ENABLED(OF_PLATDATA))
304 dm_populate_phandle_data();
Walter Lozanofed0f892020-06-25 01:10:11 -0300305
Simon Glassa652d9c2020-10-03 09:25:22 -0600306 ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE));
Simon Glassab7cd622014-07-23 06:55:04 -0600307 if (ret) {
308 debug("dm_init() failed: %d\n", ret);
309 return ret;
310 }
Simon Glass8a8d24b2020-12-03 16:55:23 -0700311 ret = dm_scan_plat(pre_reloc_only);
Simon Glassab7cd622014-07-23 06:55:04 -0600312 if (ret) {
Simon Glass8a8d24b2020-12-03 16:55:23 -0700313 debug("dm_scan_plat() failed: %d\n", ret);
Simon Glassab7cd622014-07-23 06:55:04 -0600314 return ret;
315 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700316
Simon Glass29629eb2016-07-04 11:57:58 -0600317 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Simon Glass8ee05b52020-11-28 17:50:10 -0700318 ret = dm_extended_scan(pre_reloc_only);
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700319 if (ret) {
Simon Glass8ee05b52020-11-28 17:50:10 -0700320 debug("dm_extended_scan() failed: %d\n", ret);
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700321 return ret;
322 }
Simon Glassab7cd622014-07-23 06:55:04 -0600323 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700324
Simon Glassbb585032014-07-23 06:55:23 -0600325 ret = dm_scan_other(pre_reloc_only);
326 if (ret)
327 return ret;
Simon Glassab7cd622014-07-23 06:55:04 -0600328
329 return 0;
330}
331
Simon Glass4b724a12020-07-07 13:11:38 -0600332#ifdef CONFIG_ACPIGEN
333static int root_acpi_get_name(const struct udevice *dev, char *out_name)
334{
335 return acpi_copy_name(out_name, "\\_SB");
336}
337
338struct acpi_ops root_acpi_ops = {
339 .get_name = root_acpi_get_name,
340};
341#endif
342
Simon Glass6494d702014-02-26 15:59:18 -0700343/* This is the root driver - all drivers are children of this */
344U_BOOT_DRIVER(root_driver) = {
345 .name = "root_driver",
346 .id = UCLASS_ROOT,
Simon Glass4b724a12020-07-07 13:11:38 -0600347 ACPI_OPS_PTR(&root_acpi_ops)
Simon Glass6494d702014-02-26 15:59:18 -0700348};
349
350/* This is the root uclass */
351UCLASS_DRIVER(root) = {
352 .name = "root",
353 .id = UCLASS_ROOT,
354};