blob: 158702406ed19e617307de370a9ba4d6ab6b1565 [file] [log] [blame]
Simon Glass6494d702014-02-26 15:59:18 -07001/*
2 * Copyright (c) 2013 Google, Inc
3 *
4 * (C) Copyright 2012
5 * Pavel Herrmann <morpheus.ibis@gmail.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
11#include <errno.h>
Simon Glass94f7afd2015-01-25 08:27:16 -070012#include <fdtdec.h>
Simon Glass6494d702014-02-26 15:59:18 -070013#include <malloc.h>
Simon Glass6a6d8fb2014-06-11 23:29:48 -060014#include <libfdt.h>
Simon Glass6494d702014-02-26 15:59:18 -070015#include <dm/device.h>
16#include <dm/device-internal.h>
17#include <dm/lists.h>
18#include <dm/platdata.h>
Jeroen Hofsteefd536d82014-06-25 21:57:45 +020019#include <dm/root.h>
Simon Glass6494d702014-02-26 15:59:18 -070020#include <dm/uclass.h>
21#include <dm/util.h>
22#include <linux/list.h>
23
24DECLARE_GLOBAL_DATA_PTR;
25
Stefan Roese66eaea62015-12-14 16:18:15 +010026struct root_priv {
27 fdt_addr_t translation_offset; /* optional translation offset */
28};
29
Simon Glass6494d702014-02-26 15:59:18 -070030static const struct driver_info root_info = {
31 .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
Stefan Roese66eaea62015-12-14 16:18:15 +010044fdt_addr_t dm_get_translation_offset(void)
45{
46 struct udevice *root = dm_root();
47 struct root_priv *priv = dev_get_priv(root);
48
49 return priv->translation_offset;
50}
51
52void dm_set_translation_offset(fdt_addr_t offs)
53{
54 struct udevice *root = dm_root();
55 struct root_priv *priv = dev_get_priv(root);
56
57 priv->translation_offset = offs;
58}
59
Michal Simek484fdf52015-02-02 16:31:59 +010060#if defined(CONFIG_NEEDS_MANUAL_RELOC)
61void fix_drivers(void)
62{
63 struct driver *drv =
64 ll_entry_start(struct driver, driver);
65 const int n_ents = ll_entry_count(struct driver, driver);
66 struct driver *entry;
67
68 for (entry = drv; entry != drv + n_ents; entry++) {
69 if (entry->of_match)
70 entry->of_match = (const struct udevice_id *)
71 ((u32)entry->of_match + gd->reloc_off);
72 if (entry->bind)
73 entry->bind += gd->reloc_off;
74 if (entry->probe)
75 entry->probe += gd->reloc_off;
76 if (entry->remove)
77 entry->remove += gd->reloc_off;
78 if (entry->unbind)
79 entry->unbind += gd->reloc_off;
80 if (entry->ofdata_to_platdata)
81 entry->ofdata_to_platdata += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +010082 if (entry->child_post_bind)
83 entry->child_post_bind += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +010084 if (entry->child_pre_probe)
85 entry->child_pre_probe += gd->reloc_off;
86 if (entry->child_post_remove)
87 entry->child_post_remove += gd->reloc_off;
88 /* OPS are fixed in every uclass post_probe function */
89 if (entry->ops)
90 entry->ops += gd->reloc_off;
91 }
92}
93
94void fix_uclass(void)
95{
96 struct uclass_driver *uclass =
97 ll_entry_start(struct uclass_driver, uclass);
98 const int n_ents = ll_entry_count(struct uclass_driver, uclass);
99 struct uclass_driver *entry;
100
101 for (entry = uclass; entry != uclass + n_ents; entry++) {
102 if (entry->post_bind)
103 entry->post_bind += gd->reloc_off;
104 if (entry->pre_unbind)
105 entry->pre_unbind += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +0100106 if (entry->pre_probe)
107 entry->pre_probe += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +0100108 if (entry->post_probe)
109 entry->post_probe += gd->reloc_off;
110 if (entry->pre_remove)
111 entry->pre_remove += gd->reloc_off;
Michal Simek31e10292015-10-27 13:48:08 +0100112 if (entry->child_post_bind)
113 entry->child_post_bind += gd->reloc_off;
114 if (entry->child_pre_probe)
115 entry->child_pre_probe += gd->reloc_off;
Michal Simek484fdf52015-02-02 16:31:59 +0100116 if (entry->init)
117 entry->init += gd->reloc_off;
118 if (entry->destroy)
119 entry->destroy += gd->reloc_off;
120 /* FIXME maybe also need to fix these ops */
121 if (entry->ops)
122 entry->ops += gd->reloc_off;
123 }
124}
Angelo Dureghello5aeedeb2016-05-21 12:05:49 +0200125
126void fix_devices(void)
127{
128 struct driver_info *dev =
129 ll_entry_start(struct driver_info, driver_info);
130 const int n_ents = ll_entry_count(struct driver_info, driver_info);
131 struct driver_info *entry;
132
133 for (entry = dev; entry != dev + n_ents; entry++) {
134 if (entry->platdata)
135 entry->platdata += gd->reloc_off;
136 }
137}
138
Michal Simek484fdf52015-02-02 16:31:59 +0100139#endif
140
Simon Glass6494d702014-02-26 15:59:18 -0700141int dm_init(void)
142{
143 int ret;
144
145 if (gd->dm_root) {
146 dm_warn("Virtual root driver already exists!\n");
147 return -EINVAL;
148 }
Simon Glass89876a52014-06-11 23:29:49 -0600149 INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -0700150
Michal Simek484fdf52015-02-02 16:31:59 +0100151#if defined(CONFIG_NEEDS_MANUAL_RELOC)
152 fix_drivers();
153 fix_uclass();
Angelo Dureghello5aeedeb2016-05-21 12:05:49 +0200154 fix_devices();
Michal Simek484fdf52015-02-02 16:31:59 +0100155#endif
156
Simon Glass00606d72014-07-23 06:55:03 -0600157 ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST);
Simon Glass6494d702014-02-26 15:59:18 -0700158 if (ret)
159 return ret;
Masahiro Yamada0f925822015-08-12 07:31:55 +0900160#if CONFIG_IS_ENABLED(OF_CONTROL)
Simon Glass2f3b95d2015-01-25 08:26:58 -0700161 DM_ROOT_NON_CONST->of_offset = 0;
162#endif
Simon Glass74978122014-07-23 06:55:00 -0600163 ret = device_probe(DM_ROOT_NON_CONST);
164 if (ret)
165 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700166
167 return 0;
168}
169
Simon Glass9adbd7a2014-07-23 06:55:01 -0600170int dm_uninit(void)
171{
172 device_remove(dm_root());
173 device_unbind(dm_root());
174
175 return 0;
176}
177
Simon Glass00606d72014-07-23 06:55:03 -0600178int dm_scan_platdata(bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700179{
180 int ret;
181
Simon Glass00606d72014-07-23 06:55:03 -0600182 ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -0700183 if (ret == -ENOENT) {
184 dm_warn("Some drivers were not found\n");
185 ret = 0;
186 }
Simon Glass6494d702014-02-26 15:59:18 -0700187
Masahiro Yamadacbf86d72014-11-17 17:19:38 +0900188 return ret;
Simon Glass6494d702014-02-26 15:59:18 -0700189}
190
Simon Glass29629eb2016-07-04 11:57:58 -0600191#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass1ca7e202014-07-23 06:55:18 -0600192int dm_scan_fdt_node(struct udevice *parent, const void *blob, int offset,
193 bool pre_reloc_only)
Simon Glass6494d702014-02-26 15:59:18 -0700194{
Simon Glass6494d702014-02-26 15:59:18 -0700195 int ret = 0, err;
Simon Glass6494d702014-02-26 15:59:18 -0700196
Simon Glass1ca7e202014-07-23 06:55:18 -0600197 for (offset = fdt_first_subnode(blob, offset);
198 offset > 0;
199 offset = fdt_next_subnode(blob, offset)) {
200 if (pre_reloc_only &&
201 !fdt_getprop(blob, offset, "u-boot,dm-pre-reloc", NULL))
202 continue;
Simon Glass94f7afd2015-01-25 08:27:16 -0700203 if (!fdtdec_get_is_enabled(blob, offset)) {
204 dm_dbg(" - ignoring disabled device\n");
205 continue;
206 }
Simon Glass1f359e32014-09-04 16:27:25 -0600207 err = lists_bind_fdt(parent, blob, offset, NULL);
Simon Glassbc7b2f42015-08-30 16:55:17 -0600208 if (err && !ret) {
Simon Glass1ca7e202014-07-23 06:55:18 -0600209 ret = err;
Simon Glassbc7b2f42015-08-30 16:55:17 -0600210 debug("%s: ret=%d\n", fdt_get_name(blob, offset, NULL),
211 ret);
212 }
Simon Glass1ca7e202014-07-23 06:55:18 -0600213 }
Simon Glass6494d702014-02-26 15:59:18 -0700214
215 if (ret)
216 dm_warn("Some drivers failed to bind\n");
217
218 return ret;
219}
Simon Glass1ca7e202014-07-23 06:55:18 -0600220
221int dm_scan_fdt(const void *blob, bool pre_reloc_only)
222{
223 return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only);
224}
Simon Glass6494d702014-02-26 15:59:18 -0700225#endif
226
Simon Glassbb585032014-07-23 06:55:23 -0600227__weak int dm_scan_other(bool pre_reloc_only)
228{
229 return 0;
230}
231
Simon Glassab7cd622014-07-23 06:55:04 -0600232int dm_init_and_scan(bool pre_reloc_only)
233{
234 int ret;
235
236 ret = dm_init();
237 if (ret) {
238 debug("dm_init() failed: %d\n", ret);
239 return ret;
240 }
241 ret = dm_scan_platdata(pre_reloc_only);
242 if (ret) {
243 debug("dm_scan_platdata() failed: %d\n", ret);
244 return ret;
245 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700246
Simon Glass29629eb2016-07-04 11:57:58 -0600247 if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) {
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700248 ret = dm_scan_fdt(gd->fdt_blob, pre_reloc_only);
249 if (ret) {
250 debug("dm_scan_fdt() failed: %d\n", ret);
251 return ret;
252 }
Simon Glassab7cd622014-07-23 06:55:04 -0600253 }
Simon Glassb2b0d3e2015-02-27 22:06:41 -0700254
Simon Glassbb585032014-07-23 06:55:23 -0600255 ret = dm_scan_other(pre_reloc_only);
256 if (ret)
257 return ret;
Simon Glassab7cd622014-07-23 06:55:04 -0600258
259 return 0;
260}
261
Simon Glass6494d702014-02-26 15:59:18 -0700262/* This is the root driver - all drivers are children of this */
263U_BOOT_DRIVER(root_driver) = {
264 .name = "root_driver",
265 .id = UCLASS_ROOT,
Stefan Roese66eaea62015-12-14 16:18:15 +0100266 .priv_auto_alloc_size = sizeof(struct root_priv),
Simon Glass6494d702014-02-26 15:59:18 -0700267};
268
269/* This is the root uclass */
270UCLASS_DRIVER(root) = {
271 .name = "root",
272 .id = UCLASS_ROOT,
273};