blob: 7ef2ec2da27fe030bbcb232c74e5d33e150df02a [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) {
Simon Glass784cd9e2020-12-19 10:40:17 -070048 new_gd->uclass_root->next->prev = new_gd->uclass_root;
49 new_gd->uclass_root->prev->next = new_gd->uclass_root;
Lokesh Vutla02ba17f2017-02-13 09:21:22 +053050 }
Simon Glass1b0deee2016-11-13 14:21:58 -070051}
52
Michal Simek0ec473b2015-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 Glass40916e62020-10-03 09:25:22 -060063 ((ulong)entry->of_match + gd->reloc_off);
Michal Simek0ec473b2015-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 Glassaad29ae2020-12-03 16:55:21 -070072 if (entry->of_to_plat)
73 entry->of_to_plat += gd->reloc_off;
Michal Simek61809f52015-10-27 13:48:08 +010074 if (entry->child_post_bind)
75 entry->child_post_bind += gd->reloc_off;
Michal Simek0ec473b2015-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 =
Simon Glass69ea20e2020-12-22 19:30:23 -070089 ll_entry_start(struct uclass_driver, uclass_driver);
90 const int n_ents = ll_entry_count(struct uclass_driver, uclass_driver);
Michal Simek0ec473b2015-02-02 16:31:59 +010091 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 Simek61809f52015-10-27 13:48:08 +010098 if (entry->pre_probe)
99 entry->pre_probe += gd->reloc_off;
Michal Simek0ec473b2015-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 Simek61809f52015-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 Simek0ec473b2015-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 Dureghellof4d193b2016-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 Glass71fa5b42020-12-03 16:55:18 -0700126 if (entry->plat)
127 entry->plat += gd->reloc_off;
Angelo Dureghellof4d193b2016-05-21 12:05:49 +0200128 }
129}
130
Simon Glassf19d9f22017-05-18 20:09:08 -0600131int dm_init(bool of_live)
Simon Glassdd6ab882014-02-26 15:59:18 -0700132{
133 int ret;
134
Dario Binacchib574d682020-12-30 00:16:21 +0100135 if (IS_ENABLED(CONFIG_OF_TRANSLATE_ZERO_SIZE_CELLS))
136 gd->dm_flags |= GD_DM_FLG_SIZE_CELLS_0;
137
Simon Glassdd6ab882014-02-26 15:59:18 -0700138 if (gd->dm_root) {
139 dm_warn("Virtual root driver already exists!\n");
140 return -EINVAL;
141 }
Simon Glass784cd9e2020-12-19 10:40:17 -0700142 gd->uclass_root = &DM_UCLASS_ROOT_S_NON_CONST;
143 INIT_LIST_HEAD(DM_UCLASS_ROOT_NON_CONST);
Simon Glassdd6ab882014-02-26 15:59:18 -0700144
Simon Glasse2e89072020-10-03 11:31:37 -0600145 if (IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC)) {
146 fix_drivers();
147 fix_uclass();
148 fix_devices();
149 }
Michal Simek0ec473b2015-02-02 16:31:59 +0100150
Simon Glassfef72b72014-07-23 06:55:03 -0600151 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
Simon Glassdd6ab882014-02-26 15:59:18 -0700152 if (ret)
153 return ret;
Simon Glass278ddba2020-11-28 17:50:07 -0700154 if (CONFIG_IS_ENABLED(OF_CONTROL))
Simon Glassa7ece582020-12-19 10:40:14 -0700155 dev_set_ofnode(DM_ROOT_NON_CONST, ofnode_root());
Simon Glass6d3b3e22014-07-23 06:55:00 -0600156 ret = device_probe(DM_ROOT_NON_CONST);
157 if (ret)
158 return ret;
Simon Glassdd6ab882014-02-26 15:59:18 -0700159
160 return 0;
161}
162
Simon Glass00197582014-07-23 06:55:01 -0600163int dm_uninit(void)
164{
Marek Vasutabbdbbd2021-01-24 14:32:46 -0700165 /* Remove non-vital devices first */
166 device_remove(dm_root(), DM_REMOVE_NON_VITAL);
Stefan Roese80b5bc92017-03-20 12:51:48 +0100167 device_remove(dm_root(), DM_REMOVE_NORMAL);
Simon Glass00197582014-07-23 06:55:01 -0600168 device_unbind(dm_root());
Jean-Jacques Hiblot272b67d2018-12-07 14:50:54 +0100169 gd->dm_root = NULL;
Simon Glass00197582014-07-23 06:55:01 -0600170
171 return 0;
172}
173
Stefan Roese505045d2017-03-27 10:58:53 +0200174#if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
175int dm_remove_devices_flags(uint flags)
176{
177 device_remove(dm_root(), flags);
178
179 return 0;
180}
181#endif
182
Simon Glassb75b15b2020-12-03 16:55:23 -0700183int dm_scan_plat(bool pre_reloc_only)
Simon Glassdd6ab882014-02-26 15:59:18 -0700184{
185 int ret;
186
Simon Glasscfd6a002020-10-03 11:31:33 -0600187 if (CONFIG_IS_ENABLED(OF_PLATDATA)) {
188 struct driver_rt *dyn;
189 int n_ents;
190
191 n_ents = ll_entry_count(struct driver_info, driver_info);
192 dyn = calloc(n_ents, sizeof(struct driver_rt));
193 if (!dyn)
194 return -ENOMEM;
195 gd_set_dm_driver_rt(dyn);
196 }
197
Simon Glassfef72b72014-07-23 06:55:03 -0600198 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glassdd6ab882014-02-26 15:59:18 -0700199 if (ret == -ENOENT) {
200 dm_warn("Some drivers were not found\n");
201 ret = 0;
202 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700203
Masahiro Yamada6cac81a2014-11-17 17:19:38 +0900204 return ret;
Simon Glassdd6ab882014-02-26 15:59:18 -0700205}
206
Simon Glass40916e62020-10-03 09:25:22 -0600207#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glassa4dbe252017-05-17 17:18:08 -0600208/**
209 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
210 *
211 * This scans the subnodes of a device tree node and and creates a driver
212 * for each one.
213 *
214 * @parent: Parent device for the devices that will be created
Simon Glass21a30882020-11-28 17:50:08 -0700215 * @node: Node to scan
Simon Glassa4dbe252017-05-17 17:18:08 -0600216 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
217 * flag. If false bind all drivers.
218 * @return 0 if OK, -ve on error
219 */
Simon Glass21a30882020-11-28 17:50:08 -0700220static int dm_scan_fdt_node(struct udevice *parent, ofnode parent_node,
221 bool pre_reloc_only)
Simon Glassdd6ab882014-02-26 15:59:18 -0700222{
Simon Glassdd6ab882014-02-26 15:59:18 -0700223 int ret = 0, err;
Simon Glass21a30882020-11-28 17:50:08 -0700224 ofnode node;
Simon Glassdd6ab882014-02-26 15:59:18 -0700225
Simon Glass21a30882020-11-28 17:50:08 -0700226 if (!ofnode_valid(parent_node))
227 return 0;
228
229 for (node = ofnode_first_subnode(parent_node);
230 ofnode_valid(node);
231 node = ofnode_next_subnode(node)) {
232 const char *node_name = ofnode_get_name(node);
Jens Wiklander651a8362018-09-25 16:40:05 +0200233
Simon Glass21a30882020-11-28 17:50:08 -0700234 if (!ofnode_is_enabled(node)) {
Masahiro Yamadaf70f39f2017-09-29 12:31:20 +0900235 pr_debug(" - ignoring disabled device\n");
Simon Glass528b1ef2015-01-25 08:27:16 -0700236 continue;
237 }
Simon Glass21a30882020-11-28 17:50:08 -0700238 err = lists_bind_fdt(parent, node, NULL, pre_reloc_only);
Simon Glassc90b9172015-08-30 16:55:17 -0600239 if (err && !ret) {
Simon Glass40717422014-07-23 06:55:18 -0600240 ret = err;
Jens Wiklander651a8362018-09-25 16:40:05 +0200241 debug("%s: ret=%d\n", node_name, ret);
Simon Glassc90b9172015-08-30 16:55:17 -0600242 }
Simon Glass40717422014-07-23 06:55:18 -0600243 }
Simon Glassdd6ab882014-02-26 15:59:18 -0700244
245 if (ret)
246 dm_warn("Some drivers failed to bind\n");
247
248 return ret;
249}
Simon Glass40717422014-07-23 06:55:18 -0600250
Simon Glass5d5388d2016-07-05 17:10:08 -0600251int dm_scan_fdt_dev(struct udevice *dev)
252{
Simon Glass21a30882020-11-28 17:50:08 -0700253 return dm_scan_fdt_node(dev, dev_ofnode(dev),
Simon Glass5d5388d2016-07-05 17:10:08 -0600254 gd->flags & GD_FLG_RELOC ? false : true);
255}
256
Simon Glass5039cab2020-11-28 17:50:09 -0700257int dm_scan_fdt(bool pre_reloc_only)
Simon Glass40717422014-07-23 06:55:18 -0600258{
Simon Glass21a30882020-11-28 17:50:08 -0700259 return dm_scan_fdt_node(gd->dm_root, ofnode_root(), pre_reloc_only);
Simon Glass40717422014-07-23 06:55:18 -0600260}
Simon Glassdd6ab882014-02-26 15:59:18 -0700261
Simon Glass5039cab2020-11-28 17:50:09 -0700262static int dm_scan_fdt_ofnode_path(const char *path, bool pre_reloc_only)
Rajan Vajafac64632018-08-10 01:45:33 -0700263{
264 ofnode node;
265
266 node = ofnode_path(path);
Simon Glass40916e62020-10-03 09:25:22 -0600267
Simon Glass21a30882020-11-28 17:50:08 -0700268 return dm_scan_fdt_node(gd->dm_root, node, pre_reloc_only);
Rajan Vajafac64632018-08-10 01:45:33 -0700269}
270
Simon Glass4d71d602020-11-28 17:50:10 -0700271int dm_extended_scan(bool pre_reloc_only)
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200272{
Patrick Delaunayc779e202020-02-18 15:43:46 +0100273 int ret, i;
274 const char * const nodes[] = {
275 "/chosen",
276 "/clocks",
277 "/firmware"
278 };
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200279
Simon Glass5039cab2020-11-28 17:50:09 -0700280 ret = dm_scan_fdt(pre_reloc_only);
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200281 if (ret) {
282 debug("dm_scan_fdt() failed: %d\n", ret);
283 return ret;
284 }
285
Patrick Delaunayc779e202020-02-18 15:43:46 +0100286 /* Some nodes aren't devices themselves but may contain some */
287 for (i = 0; i < ARRAY_SIZE(nodes); i++) {
Simon Glass5039cab2020-11-28 17:50:09 -0700288 ret = dm_scan_fdt_ofnode_path(nodes[i], pre_reloc_only);
Patrick Delaunayc779e202020-02-18 15:43:46 +0100289 if (ret) {
290 debug("dm_scan_fdt() scan for %s failed: %d\n",
291 nodes[i], ret);
292 return ret;
293 }
Rajan Vajae9fc81d2018-08-10 01:45:34 -0700294 }
295
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200296 return ret;
297}
Marek Vasut7f18c342019-08-31 18:03:28 +0200298#endif
Patrice Chotardbb3a45b2017-09-04 14:55:56 +0200299
Simon Glass97e22e32014-07-23 06:55:23 -0600300__weak int dm_scan_other(bool pre_reloc_only)
301{
302 return 0;
303}
304
Simon Glassc77695b2020-12-19 10:40:16 -0700305/**
306 * dm_scan() - Scan tables to bind devices
307 *
308 * Runs through the driver_info tables and binds the devices it finds. Then runs
309 * through the devicetree nodes. Finally calls dm_scan_other() to add any
310 * special devices
311 *
312 * @pre_reloc_only: If true, bind only nodes with special devicetree properties,
313 * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers.
314 */
315static int dm_scan(bool pre_reloc_only)
Simon Glassa730c5d2014-07-23 06:55:04 -0600316{
317 int ret;
318
Simon Glassb75b15b2020-12-03 16:55:23 -0700319 ret = dm_scan_plat(pre_reloc_only);
Simon Glassa730c5d2014-07-23 06:55:04 -0600320 if (ret) {
Simon Glassb75b15b2020-12-03 16:55:23 -0700321 debug("dm_scan_plat() failed: %d\n", ret);
Simon Glassc77695b2020-12-19 10:40:16 -0700322 return ret;
Simon Glassa730c5d2014-07-23 06:55:04 -0600323 }
Simon Glass0704b852015-02-27 22:06:41 -0700324
Simon Glass8d7e8162016-07-04 11:57:58 -0600325 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Simon Glass4d71d602020-11-28 17:50:10 -0700326 ret = dm_extended_scan(pre_reloc_only);
Simon Glass0704b852015-02-27 22:06:41 -0700327 if (ret) {
Simon Glass4d71d602020-11-28 17:50:10 -0700328 debug("dm_extended_scan() failed: %d\n", ret);
Simon Glassc77695b2020-12-19 10:40:16 -0700329 return ret;
Simon Glass0704b852015-02-27 22:06:41 -0700330 }
Simon Glassa730c5d2014-07-23 06:55:04 -0600331 }
Simon Glass0704b852015-02-27 22:06:41 -0700332
Simon Glass97e22e32014-07-23 06:55:23 -0600333 ret = dm_scan_other(pre_reloc_only);
334 if (ret)
Simon Glassc77695b2020-12-19 10:40:16 -0700335 return ret;
336
337 return 0;
338}
339
340int dm_init_and_scan(bool pre_reloc_only)
341{
342 int ret;
343
Simon Glassc77695b2020-12-19 10:40:16 -0700344 ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE));
345 if (ret) {
346 debug("dm_init() failed: %d\n", ret);
347 return ret;
348 }
349 ret = dm_scan(pre_reloc_only);
350 if (ret) {
351 log_debug("dm_scan() failed: %d\n", ret);
352 return ret;
353 }
Simon Glassa730c5d2014-07-23 06:55:04 -0600354
355 return 0;
356}
357
Simon Glass719ea082020-07-07 13:11:38 -0600358#ifdef CONFIG_ACPIGEN
359static int root_acpi_get_name(const struct udevice *dev, char *out_name)
360{
361 return acpi_copy_name(out_name, "\\_SB");
362}
363
364struct acpi_ops root_acpi_ops = {
365 .get_name = root_acpi_get_name,
366};
367#endif
368
Simon Glassdd6ab882014-02-26 15:59:18 -0700369/* This is the root driver - all drivers are children of this */
370U_BOOT_DRIVER(root_driver) = {
371 .name = "root_driver",
372 .id = UCLASS_ROOT,
Simon Glass719ea082020-07-07 13:11:38 -0600373 ACPI_OPS_PTR(&root_acpi_ops)
Simon Glassdd6ab882014-02-26 15:59:18 -0700374};
375
376/* This is the root uclass */
377UCLASS_DRIVER(root) = {
378 .name = "root",
379 .id = UCLASS_ROOT,
380};