]> Git Repo - J-u-boot.git/blame - drivers/core/root.c
dm: core: Support dm_dump_all() in SPL
[J-u-boot.git] / drivers / core / root.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
6494d708
SG
2/*
3 * Copyright (c) 2013 Google, Inc
4 *
5 * (C) Copyright 2012
6 * Pavel Herrmann <[email protected]>
6494d708
SG
7 */
8
9#include <common.h>
10#include <errno.h>
94f7afdf 11#include <fdtdec.h>
f7ae49fc 12#include <log.h>
6494d708 13#include <malloc.h>
b08c8c48 14#include <linux/libfdt.h>
4b724a13 15#include <dm/acpi.h>
6494d708
SG
16#include <dm/device.h>
17#include <dm/device-internal.h>
18#include <dm/lists.h>
19c8205e
SG
19#include <dm/of.h>
20#include <dm/of_access.h>
6494d708 21#include <dm/platdata.h>
19c8205e 22#include <dm/read.h>
fd536d81 23#include <dm/root.h>
6494d708
SG
24#include <dm/uclass.h>
25#include <dm/util.h>
26#include <linux/list.h>
27
28DECLARE_GLOBAL_DATA_PTR;
29
908d0243 30static struct driver_info root_info = {
6494d708
SG
31 .name = "root_driver",
32};
33
54c5d08a 34struct udevice *dm_root(void)
6494d708
SG
35{
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
2f11cd91
SG
44void dm_fixup_for_gd_move(struct global_data *new_gd)
45{
46 /* The sentinel node has moved, so update things that point to it */
b0d9512a
LV
47 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 }
2f11cd91
SG
51}
52
484fdf5b
MS
53void 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 *)
a652d9c7 63 ((ulong)entry->of_match + gd->reloc_off);
484fdf5b
MS
64 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;
d1998a9f
SG
72 if (entry->of_to_plat)
73 entry->of_to_plat += gd->reloc_off;
31e1029a
MS
74 if (entry->child_post_bind)
75 entry->child_post_bind += gd->reloc_off;
484fdf5b
MS
76 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;
31e1029a
MS
98 if (entry->pre_probe)
99 entry->pre_probe += gd->reloc_off;
484fdf5b
MS
100 if (entry->post_probe)
101 entry->post_probe += gd->reloc_off;
102 if (entry->pre_remove)
103 entry->pre_remove += gd->reloc_off;
31e1029a
MS
104 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;
484fdf5b
MS
108 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}
5aeedebc
AD
117
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++) {
caa4daa2
SG
126 if (entry->plat)
127 entry->plat += gd->reloc_off;
5aeedebc
AD
128 }
129}
130
19c8205e 131int dm_init(bool of_live)
6494d708
SG
132{
133 int ret;
134
135 if (gd->dm_root) {
136 dm_warn("Virtual root driver already exists!\n");
137 return -EINVAL;
138 }
89876a55 139 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
6494d708 140
9e948b9b
SG
141 if (IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC)) {
142 fix_drivers();
143 fix_uclass();
144 fix_devices();
145 }
484fdf5b 146
00606d7e 147 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
7497812d
SG
148 if (ret)
149 return ret;
d0c20ce6
SG
150 if (CONFIG_IS_ENABLED(OF_CONTROL))
151 DM_ROOT_NON_CONST->node = ofnode_root();
7497812d 152 ret = device_probe(DM_ROOT_NON_CONST);
6494d708
SG
153 if (ret)
154 return ret;
155
156 return 0;
157}
158
9adbd7a1
SG
159int dm_uninit(void)
160{
706865af 161 device_remove(dm_root(), DM_REMOVE_NORMAL);
9adbd7a1 162 device_unbind(dm_root());
c483f4ce 163 gd->dm_root = NULL;
9adbd7a1
SG
164
165 return 0;
166}
167
bc85aa40
SR
168#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
8a8d24bd 177int dm_scan_plat(bool pre_reloc_only)
6494d708
SG
178{
179 int ret;
180
a294ead8
SG
181 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
00606d7e 192 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
6494d708
SG
193 if (ret == -ENOENT) {
194 dm_warn("Some drivers were not found\n");
195 ret = 0;
196 }
6494d708 197
cbf86d71 198 return ret;
6494d708
SG
199}
200
a652d9c7 201#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
a771a04f
SG
202/**
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
2ebea5ea 209 * @node: Node to scan
a771a04f
SG
210 * @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 */
2ebea5ea
SG
214static int dm_scan_fdt_node(struct udevice *parent, ofnode parent_node,
215 bool pre_reloc_only)
6494d708 216{
6494d708 217 int ret = 0, err;
2ebea5ea
SG
218 ofnode node;
219
220 if (!ofnode_valid(parent_node))
221 return 0;
1ca7e206 222
2ebea5ea
SG
223 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);
747558d0 227
2ebea5ea 228 if (!ofnode_is_enabled(node)) {
ceb91909 229 pr_debug(" - ignoring disabled device\n");
94f7afdf
SG
230 continue;
231 }
2ebea5ea 232 err = lists_bind_fdt(parent, node, NULL, pre_reloc_only);
bc7b2f43 233 if (err && !ret) {
1ca7e206 234 ret = err;
747558d0 235 debug("%s: ret=%d\n", node_name, ret);
bc7b2f43 236 }
1ca7e206 237 }
6494d708
SG
238
239 if (ret)
240 dm_warn("Some drivers failed to bind\n");
241
242 return ret;
243}
1ca7e206 244
cc7f66f7
SG
245int dm_scan_fdt_dev(struct udevice *dev)
246{
2ebea5ea 247 return dm_scan_fdt_node(dev, dev_ofnode(dev),
cc7f66f7
SG
248 gd->flags & GD_FLG_RELOC ? false : true);
249}
250
725e4fce 251int dm_scan_fdt(bool pre_reloc_only)
1ca7e206 252{
2ebea5ea 253 return dm_scan_fdt_node(gd->dm_root, ofnode_root(), pre_reloc_only);
1ca7e206 254}
6494d708 255
725e4fce 256static int dm_scan_fdt_ofnode_path(const char *path, bool pre_reloc_only)
68d215d9
RV
257{
258 ofnode node;
259
260 node = ofnode_path(path);
a652d9c7 261
2ebea5ea 262 return dm_scan_fdt_node(gd->dm_root, node, pre_reloc_only);
68d215d9
RV
263}
264
8ee05b5f 265int dm_extended_scan(bool pre_reloc_only)
e81c9864 266{
0544ecbf
PD
267 int ret, i;
268 const char * const nodes[] = {
269 "/chosen",
270 "/clocks",
271 "/firmware"
272 };
e81c9864 273
725e4fce 274 ret = dm_scan_fdt(pre_reloc_only);
e81c9864
PC
275 if (ret) {
276 debug("dm_scan_fdt() failed: %d\n", ret);
277 return ret;
278 }
279
0544ecbf
PD
280 /* Some nodes aren't devices themselves but may contain some */
281 for (i = 0; i < ARRAY_SIZE(nodes); i++) {
725e4fce 282 ret = dm_scan_fdt_ofnode_path(nodes[i], pre_reloc_only);
0544ecbf
PD
283 if (ret) {
284 debug("dm_scan_fdt() scan for %s failed: %d\n",
285 nodes[i], ret);
286 return ret;
287 }
1712ca21
RV
288 }
289
e81c9864
PC
290 return ret;
291}
d7677bfc 292#endif
e81c9864 293
bb58503d
SG
294__weak int dm_scan_other(bool pre_reloc_only)
295{
296 return 0;
297}
298
ab7cd627
SG
299int dm_init_and_scan(bool pre_reloc_only)
300{
301 int ret;
302
9e948b9b
SG
303 if (CONFIG_IS_ENABLED(OF_PLATDATA))
304 dm_populate_phandle_data();
fed0f891 305
a652d9c7 306 ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE));
ab7cd627
SG
307 if (ret) {
308 debug("dm_init() failed: %d\n", ret);
309 return ret;
310 }
8a8d24bd 311 ret = dm_scan_plat(pre_reloc_only);
ab7cd627 312 if (ret) {
8a8d24bd 313 debug("dm_scan_plat() failed: %d\n", ret);
cd53e5bf 314 goto fail;
ab7cd627 315 }
b2b0d3e7 316
29629eb8 317 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
8ee05b5f 318 ret = dm_extended_scan(pre_reloc_only);
b2b0d3e7 319 if (ret) {
8ee05b5f 320 debug("dm_extended_scan() failed: %d\n", ret);
cd53e5bf 321 goto fail;
b2b0d3e7 322 }
ab7cd627 323 }
b2b0d3e7 324
bb58503d
SG
325 ret = dm_scan_other(pre_reloc_only);
326 if (ret)
cd53e5bf 327 goto fail;
ab7cd627
SG
328
329 return 0;
cd53e5bf
SG
330fail:
331 return ret;
ab7cd627
SG
332}
333
4b724a13
SG
334#ifdef CONFIG_ACPIGEN
335static int root_acpi_get_name(const struct udevice *dev, char *out_name)
336{
337 return acpi_copy_name(out_name, "\\_SB");
338}
339
340struct acpi_ops root_acpi_ops = {
341 .get_name = root_acpi_get_name,
342};
343#endif
344
6494d708
SG
345/* This is the root driver - all drivers are children of this */
346U_BOOT_DRIVER(root_driver) = {
347 .name = "root_driver",
348 .id = UCLASS_ROOT,
4b724a13 349 ACPI_OPS_PTR(&root_acpi_ops)
6494d708
SG
350};
351
352/* This is the root uclass */
353UCLASS_DRIVER(root) = {
354 .name = "root",
355 .id = UCLASS_ROOT,
356};
This page took 0.412508 seconds and 4 git commands to generate.