1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2013 Google, Inc
6 * Pavel Herrmann <morpheus.ibis@gmail.com>
13 #include <linux/libfdt.h>
14 #include <dm/device.h>
15 #include <dm/device-internal.h>
18 #include <dm/of_access.h>
19 #include <dm/platdata.h>
22 #include <dm/uclass.h>
24 #include <linux/list.h>
26 DECLARE_GLOBAL_DATA_PTR;
28 static const struct driver_info root_info = {
29 .name = "root_driver",
32 struct udevice *dm_root(void)
35 dm_warn("Virtual root driver does not exist!\n");
42 void dm_fixup_for_gd_move(struct global_data *new_gd)
44 /* The sentinel node has moved, so update things that point to it */
46 new_gd->uclass_root.next->prev = &new_gd->uclass_root;
47 new_gd->uclass_root.prev->next = &new_gd->uclass_root;
51 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
52 void fix_drivers(void)
55 ll_entry_start(struct driver, driver);
56 const int n_ents = ll_entry_count(struct driver, driver);
59 for (entry = drv; entry != drv + n_ents; entry++) {
61 entry->of_match = (const struct udevice_id *)
62 ((u32)entry->of_match + gd->reloc_off);
64 entry->bind += gd->reloc_off;
66 entry->probe += gd->reloc_off;
68 entry->remove += gd->reloc_off;
70 entry->unbind += gd->reloc_off;
71 if (entry->ofdata_to_platdata)
72 entry->ofdata_to_platdata += gd->reloc_off;
73 if (entry->child_post_bind)
74 entry->child_post_bind += gd->reloc_off;
75 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 */
81 entry->ops += gd->reloc_off;
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;
92 for (entry = uclass; entry != uclass + n_ents; entry++) {
94 entry->post_bind += gd->reloc_off;
95 if (entry->pre_unbind)
96 entry->pre_unbind += gd->reloc_off;
98 entry->pre_probe += gd->reloc_off;
99 if (entry->post_probe)
100 entry->post_probe += gd->reloc_off;
101 if (entry->pre_remove)
102 entry->pre_remove += gd->reloc_off;
103 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;
108 entry->init += gd->reloc_off;
110 entry->destroy += gd->reloc_off;
111 /* FIXME maybe also need to fix these ops */
113 entry->ops += gd->reloc_off;
117 void fix_devices(void)
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;
124 for (entry = dev; entry != dev + n_ents; entry++) {
126 entry->platdata += gd->reloc_off;
132 int dm_init(bool of_live)
137 dm_warn("Virtual root driver already exists!\n");
140 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
142 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
148 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
151 #if CONFIG_IS_ENABLED(OF_CONTROL)
152 # if CONFIG_IS_ENABLED(OF_LIVE)
154 DM_ROOT_NON_CONST->node = np_to_ofnode(gd->of_root);
157 DM_ROOT_NON_CONST->node = offset_to_ofnode(0);
159 ret = device_probe(DM_ROOT_NON_CONST);
168 device_remove(dm_root(), DM_REMOVE_NORMAL);
169 device_unbind(dm_root());
175 #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)
176 int dm_remove_devices_flags(uint flags)
178 device_remove(dm_root(), flags);
184 int dm_scan_platdata(bool pre_reloc_only)
188 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
189 if (ret == -ENOENT) {
190 dm_warn("Some drivers were not found\n");
197 #if CONFIG_IS_ENABLED(OF_LIVE)
198 static int dm_scan_fdt_live(struct udevice *parent,
199 const struct device_node *node_parent,
202 struct device_node *np;
205 for (np = node_parent->child; np; np = np->sibling) {
207 if (!of_device_is_available(np)) {
208 pr_debug(" - ignoring disabled device\n");
211 err = lists_bind_fdt(parent, np_to_ofnode(np), NULL,
215 debug("%s: ret=%d\n", np->name, ret);
220 dm_warn("Some drivers failed to bind\n");
224 #endif /* CONFIG_IS_ENABLED(OF_LIVE) */
226 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
228 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
230 * This scans the subnodes of a device tree node and and creates a driver
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
240 static int dm_scan_fdt_node(struct udevice *parent, const void *blob,
241 int offset, bool pre_reloc_only)
245 for (offset = fdt_first_subnode(blob, offset);
247 offset = fdt_next_subnode(blob, offset)) {
248 const char *node_name = fdt_get_name(blob, offset, NULL);
250 if (!fdtdec_get_is_enabled(blob, offset)) {
251 pr_debug(" - ignoring disabled device\n");
254 err = lists_bind_fdt(parent, offset_to_ofnode(offset), NULL,
258 debug("%s: ret=%d\n", node_name, ret);
263 dm_warn("Some drivers failed to bind\n");
268 int dm_scan_fdt_dev(struct udevice *dev)
270 if (!dev_of_valid(dev))
273 #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);
279 return dm_scan_fdt_node(dev, gd->fdt_blob, dev_of_offset(dev),
280 gd->flags & GD_FLG_RELOC ? false : true);
283 int dm_scan_fdt(const void *blob, bool pre_reloc_only)
285 #if CONFIG_IS_ENABLED(OF_LIVE)
286 if (of_live_active())
287 return dm_scan_fdt_live(gd->dm_root, gd->of_root,
291 return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only);
294 static int dm_scan_fdt_ofnode_path(const void *blob, const char *path,
299 node = ofnode_path(path);
300 if (!ofnode_valid(node))
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);
307 return dm_scan_fdt_node(gd->dm_root, blob, node.of_offset,
311 int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only)
314 const char * const nodes[] = {
320 ret = dm_scan_fdt(blob, pre_reloc_only);
322 debug("dm_scan_fdt() failed: %d\n", ret);
326 /* 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);
330 debug("dm_scan_fdt() scan for %s failed: %d\n",
340 __weak int dm_scan_other(bool pre_reloc_only)
345 int dm_init_and_scan(bool pre_reloc_only)
349 ret = dm_init(IS_ENABLED(CONFIG_OF_LIVE));
351 debug("dm_init() failed: %d\n", ret);
354 ret = dm_scan_platdata(pre_reloc_only);
356 debug("dm_scan_platdata() failed: %d\n", ret);
360 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
361 ret = dm_extended_scan_fdt(gd->fdt_blob, pre_reloc_only);
363 debug("dm_extended_scan_dt() failed: %d\n", ret);
368 ret = dm_scan_other(pre_reloc_only);
375 /* This is the root driver - all drivers are children of this */
376 U_BOOT_DRIVER(root_driver) = {
377 .name = "root_driver",
381 /* This is the root uclass */
382 UCLASS_DRIVER(root) = {