Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
| 4 | * |
| 5 | * (C) Copyright 2012 |
| 6 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <errno.h> |
Simon Glass | 94f7afd | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 11 | #include <fdtdec.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 12 | #include <malloc.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 13 | #include <linux/libfdt.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 14 | #include <dm/device.h> |
| 15 | #include <dm/device-internal.h> |
| 16 | #include <dm/lists.h> |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 17 | #include <dm/of.h> |
| 18 | #include <dm/of_access.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 19 | #include <dm/platdata.h> |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 20 | #include <dm/read.h> |
Jeroen Hofstee | fd536d8 | 2014-06-25 21:57:45 +0200 | [diff] [blame] | 21 | #include <dm/root.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 22 | #include <dm/uclass.h> |
| 23 | #include <dm/util.h> |
| 24 | #include <linux/list.h> |
| 25 | |
| 26 | DECLARE_GLOBAL_DATA_PTR; |
| 27 | |
Stefan Roese | 66eaea6 | 2015-12-14 16:18:15 +0100 | [diff] [blame] | 28 | struct root_priv { |
| 29 | fdt_addr_t translation_offset; /* optional translation offset */ |
| 30 | }; |
| 31 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 32 | static const struct driver_info root_info = { |
| 33 | .name = "root_driver", |
| 34 | }; |
| 35 | |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 36 | struct udevice *dm_root(void) |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 37 | { |
| 38 | if (!gd->dm_root) { |
| 39 | dm_warn("Virtual root driver does not exist!\n"); |
| 40 | return NULL; |
| 41 | } |
| 42 | |
| 43 | return gd->dm_root; |
| 44 | } |
| 45 | |
Simon Glass | 2f11cd9 | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 46 | void dm_fixup_for_gd_move(struct global_data *new_gd) |
| 47 | { |
| 48 | /* The sentinel node has moved, so update things that point to it */ |
Lokesh Vutla | b0d9512 | 2017-02-13 09:21:22 +0530 | [diff] [blame] | 49 | if (gd->dm_root) { |
| 50 | new_gd->uclass_root.next->prev = &new_gd->uclass_root; |
| 51 | new_gd->uclass_root.prev->next = &new_gd->uclass_root; |
| 52 | } |
Simon Glass | 2f11cd9 | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Stefan Roese | 66eaea6 | 2015-12-14 16:18:15 +0100 | [diff] [blame] | 55 | fdt_addr_t dm_get_translation_offset(void) |
| 56 | { |
| 57 | struct udevice *root = dm_root(); |
| 58 | struct root_priv *priv = dev_get_priv(root); |
| 59 | |
| 60 | return priv->translation_offset; |
| 61 | } |
| 62 | |
| 63 | void dm_set_translation_offset(fdt_addr_t offs) |
| 64 | { |
| 65 | struct udevice *root = dm_root(); |
| 66 | struct root_priv *priv = dev_get_priv(root); |
| 67 | |
| 68 | priv->translation_offset = offs; |
| 69 | } |
| 70 | |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 71 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 72 | void fix_drivers(void) |
| 73 | { |
| 74 | struct driver *drv = |
| 75 | ll_entry_start(struct driver, driver); |
| 76 | const int n_ents = ll_entry_count(struct driver, driver); |
| 77 | struct driver *entry; |
| 78 | |
| 79 | for (entry = drv; entry != drv + n_ents; entry++) { |
| 80 | if (entry->of_match) |
| 81 | entry->of_match = (const struct udevice_id *) |
| 82 | ((u32)entry->of_match + gd->reloc_off); |
| 83 | if (entry->bind) |
| 84 | entry->bind += gd->reloc_off; |
| 85 | if (entry->probe) |
| 86 | entry->probe += gd->reloc_off; |
| 87 | if (entry->remove) |
| 88 | entry->remove += gd->reloc_off; |
| 89 | if (entry->unbind) |
| 90 | entry->unbind += gd->reloc_off; |
| 91 | if (entry->ofdata_to_platdata) |
| 92 | entry->ofdata_to_platdata += gd->reloc_off; |
Michal Simek | 31e1029 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 93 | if (entry->child_post_bind) |
| 94 | entry->child_post_bind += gd->reloc_off; |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 95 | if (entry->child_pre_probe) |
| 96 | entry->child_pre_probe += gd->reloc_off; |
| 97 | if (entry->child_post_remove) |
| 98 | entry->child_post_remove += gd->reloc_off; |
| 99 | /* OPS are fixed in every uclass post_probe function */ |
| 100 | if (entry->ops) |
| 101 | entry->ops += gd->reloc_off; |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | void fix_uclass(void) |
| 106 | { |
| 107 | struct uclass_driver *uclass = |
| 108 | ll_entry_start(struct uclass_driver, uclass); |
| 109 | const int n_ents = ll_entry_count(struct uclass_driver, uclass); |
| 110 | struct uclass_driver *entry; |
| 111 | |
| 112 | for (entry = uclass; entry != uclass + n_ents; entry++) { |
| 113 | if (entry->post_bind) |
| 114 | entry->post_bind += gd->reloc_off; |
| 115 | if (entry->pre_unbind) |
| 116 | entry->pre_unbind += gd->reloc_off; |
Michal Simek | 31e1029 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 117 | if (entry->pre_probe) |
| 118 | entry->pre_probe += gd->reloc_off; |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 119 | if (entry->post_probe) |
| 120 | entry->post_probe += gd->reloc_off; |
| 121 | if (entry->pre_remove) |
| 122 | entry->pre_remove += gd->reloc_off; |
Michal Simek | 31e1029 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 123 | if (entry->child_post_bind) |
| 124 | entry->child_post_bind += gd->reloc_off; |
| 125 | if (entry->child_pre_probe) |
| 126 | entry->child_pre_probe += gd->reloc_off; |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 127 | if (entry->init) |
| 128 | entry->init += gd->reloc_off; |
| 129 | if (entry->destroy) |
| 130 | entry->destroy += gd->reloc_off; |
| 131 | /* FIXME maybe also need to fix these ops */ |
| 132 | if (entry->ops) |
| 133 | entry->ops += gd->reloc_off; |
| 134 | } |
| 135 | } |
Angelo Dureghello | 5aeedeb | 2016-05-21 12:05:49 +0200 | [diff] [blame] | 136 | |
| 137 | void fix_devices(void) |
| 138 | { |
| 139 | struct driver_info *dev = |
| 140 | ll_entry_start(struct driver_info, driver_info); |
| 141 | const int n_ents = ll_entry_count(struct driver_info, driver_info); |
| 142 | struct driver_info *entry; |
| 143 | |
| 144 | for (entry = dev; entry != dev + n_ents; entry++) { |
| 145 | if (entry->platdata) |
| 146 | entry->platdata += gd->reloc_off; |
| 147 | } |
| 148 | } |
| 149 | |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 150 | #endif |
| 151 | |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 152 | int dm_init(bool of_live) |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 153 | { |
| 154 | int ret; |
| 155 | |
| 156 | if (gd->dm_root) { |
| 157 | dm_warn("Virtual root driver already exists!\n"); |
| 158 | return -EINVAL; |
| 159 | } |
Simon Glass | 89876a5 | 2014-06-11 23:29:49 -0600 | [diff] [blame] | 160 | INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 161 | |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 162 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 163 | fix_drivers(); |
| 164 | fix_uclass(); |
Angelo Dureghello | 5aeedeb | 2016-05-21 12:05:49 +0200 | [diff] [blame] | 165 | fix_devices(); |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 166 | #endif |
| 167 | |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 168 | ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 169 | if (ret) |
| 170 | return ret; |
Masahiro Yamada | 0f92582 | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 171 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 172 | # if CONFIG_IS_ENABLED(OF_LIVE) |
| 173 | if (of_live) |
| 174 | DM_ROOT_NON_CONST->node = np_to_ofnode(gd->of_root); |
| 175 | else |
| 176 | #endif |
| 177 | DM_ROOT_NON_CONST->node = offset_to_ofnode(0); |
Simon Glass | 2f3b95d | 2015-01-25 08:26:58 -0700 | [diff] [blame] | 178 | #endif |
Simon Glass | 7497812 | 2014-07-23 06:55:00 -0600 | [diff] [blame] | 179 | ret = device_probe(DM_ROOT_NON_CONST); |
| 180 | if (ret) |
| 181 | return ret; |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 182 | |
| 183 | return 0; |
| 184 | } |
| 185 | |
Simon Glass | 9adbd7a | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 186 | int dm_uninit(void) |
| 187 | { |
Stefan Roese | 706865a | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 188 | device_remove(dm_root(), DM_REMOVE_NORMAL); |
Simon Glass | 9adbd7a | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 189 | device_unbind(dm_root()); |
Jean-Jacques Hiblot | c483f4c | 2018-12-07 14:50:54 +0100 | [diff] [blame] | 190 | gd->dm_root = NULL; |
Simon Glass | 9adbd7a | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | |
Stefan Roese | bc85aa4 | 2017-03-27 10:58:53 +0200 | [diff] [blame] | 195 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
| 196 | int dm_remove_devices_flags(uint flags) |
| 197 | { |
| 198 | device_remove(dm_root(), flags); |
| 199 | |
| 200 | return 0; |
| 201 | } |
| 202 | #endif |
| 203 | |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 204 | int dm_scan_platdata(bool pre_reloc_only) |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 205 | { |
| 206 | int ret; |
| 207 | |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 208 | ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 209 | if (ret == -ENOENT) { |
| 210 | dm_warn("Some drivers were not found\n"); |
| 211 | ret = 0; |
| 212 | } |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 213 | |
Masahiro Yamada | cbf86d7 | 2014-11-17 17:19:38 +0900 | [diff] [blame] | 214 | return ret; |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 217 | #if CONFIG_IS_ENABLED(OF_LIVE) |
| 218 | static int dm_scan_fdt_live(struct udevice *parent, |
| 219 | const struct device_node *node_parent, |
| 220 | bool pre_reloc_only) |
| 221 | { |
| 222 | struct device_node *np; |
| 223 | int ret = 0, err; |
| 224 | |
| 225 | for (np = node_parent->child; np; np = np->sibling) { |
Bin Meng | 8e39afc | 2018-10-10 22:07:00 -0700 | [diff] [blame] | 226 | /* "chosen" node isn't a device itself but may contain some: */ |
| 227 | if (!strcmp(np->name, "chosen")) { |
| 228 | pr_debug("parsing subnodes of \"chosen\"\n"); |
| 229 | |
| 230 | err = dm_scan_fdt_live(parent, np, pre_reloc_only); |
| 231 | if (err && !ret) |
| 232 | ret = err; |
| 233 | continue; |
| 234 | } |
| 235 | |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 236 | if (!of_device_is_available(np)) { |
Masahiro Yamada | ceb9190 | 2017-09-29 12:31:20 +0900 | [diff] [blame] | 237 | pr_debug(" - ignoring disabled device\n"); |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 238 | continue; |
| 239 | } |
Bin Meng | 8d773c4 | 2018-10-10 22:06:58 -0700 | [diff] [blame] | 240 | err = lists_bind_fdt(parent, np_to_ofnode(np), NULL, |
| 241 | pre_reloc_only); |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 242 | if (err && !ret) { |
| 243 | ret = err; |
| 244 | debug("%s: ret=%d\n", np->name, ret); |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | if (ret) |
| 249 | dm_warn("Some drivers failed to bind\n"); |
| 250 | |
| 251 | return ret; |
| 252 | } |
| 253 | #endif /* CONFIG_IS_ENABLED(OF_LIVE) */ |
| 254 | |
Simon Glass | 29629eb | 2016-07-04 11:57:58 -0600 | [diff] [blame] | 255 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | a771a04 | 2017-05-17 17:18:08 -0600 | [diff] [blame] | 256 | /** |
| 257 | * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node |
| 258 | * |
| 259 | * This scans the subnodes of a device tree node and and creates a driver |
| 260 | * for each one. |
| 261 | * |
| 262 | * @parent: Parent device for the devices that will be created |
| 263 | * @blob: Pointer to device tree blob |
| 264 | * @offset: Offset of node to scan |
| 265 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 266 | * flag. If false bind all drivers. |
| 267 | * @return 0 if OK, -ve on error |
| 268 | */ |
| 269 | static int dm_scan_fdt_node(struct udevice *parent, const void *blob, |
| 270 | int offset, bool pre_reloc_only) |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 271 | { |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 272 | int ret = 0, err; |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 273 | |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 274 | for (offset = fdt_first_subnode(blob, offset); |
| 275 | offset > 0; |
| 276 | offset = fdt_next_subnode(blob, offset)) { |
Jens Wiklander | 747558d | 2018-09-25 16:40:05 +0200 | [diff] [blame] | 277 | const char *node_name = fdt_get_name(blob, offset, NULL); |
| 278 | |
| 279 | /* |
| 280 | * The "chosen" and "firmware" nodes aren't devices |
| 281 | * themselves but may contain some: |
| 282 | */ |
| 283 | if (!strcmp(node_name, "chosen") || |
| 284 | !strcmp(node_name, "firmware")) { |
| 285 | pr_debug("parsing subnodes of \"%s\"\n", node_name); |
Rob Clark | f200680 | 2018-01-10 11:33:30 +0100 | [diff] [blame] | 286 | |
| 287 | err = dm_scan_fdt_node(parent, blob, offset, |
| 288 | pre_reloc_only); |
| 289 | if (err && !ret) |
| 290 | ret = err; |
| 291 | continue; |
| 292 | } |
| 293 | |
Simon Glass | 94f7afd | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 294 | if (!fdtdec_get_is_enabled(blob, offset)) { |
Masahiro Yamada | ceb9190 | 2017-09-29 12:31:20 +0900 | [diff] [blame] | 295 | pr_debug(" - ignoring disabled device\n"); |
Simon Glass | 94f7afd | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 296 | continue; |
| 297 | } |
Bin Meng | 8d773c4 | 2018-10-10 22:06:58 -0700 | [diff] [blame] | 298 | err = lists_bind_fdt(parent, offset_to_ofnode(offset), NULL, |
| 299 | pre_reloc_only); |
Simon Glass | bc7b2f4 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 300 | if (err && !ret) { |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 301 | ret = err; |
Jens Wiklander | 747558d | 2018-09-25 16:40:05 +0200 | [diff] [blame] | 302 | debug("%s: ret=%d\n", node_name, ret); |
Simon Glass | bc7b2f4 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 303 | } |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 304 | } |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 305 | |
| 306 | if (ret) |
| 307 | dm_warn("Some drivers failed to bind\n"); |
| 308 | |
| 309 | return ret; |
| 310 | } |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 311 | |
Simon Glass | cc7f66f | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 312 | int dm_scan_fdt_dev(struct udevice *dev) |
| 313 | { |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 314 | if (!dev_of_valid(dev)) |
Simon Glass | cc7f66f | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 315 | return 0; |
| 316 | |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 317 | #if CONFIG_IS_ENABLED(OF_LIVE) |
| 318 | if (of_live_active()) |
| 319 | return dm_scan_fdt_live(dev, dev_np(dev), |
| 320 | gd->flags & GD_FLG_RELOC ? false : true); |
| 321 | else |
| 322 | #endif |
Simon Glass | e160f7d | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 323 | return dm_scan_fdt_node(dev, gd->fdt_blob, dev_of_offset(dev), |
Simon Glass | cc7f66f | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 324 | gd->flags & GD_FLG_RELOC ? false : true); |
| 325 | } |
| 326 | |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 327 | int dm_scan_fdt(const void *blob, bool pre_reloc_only) |
| 328 | { |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 329 | #if CONFIG_IS_ENABLED(OF_LIVE) |
| 330 | if (of_live_active()) |
| 331 | return dm_scan_fdt_live(gd->dm_root, gd->of_root, |
| 332 | pre_reloc_only); |
| 333 | else |
| 334 | #endif |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 335 | return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only); |
| 336 | } |
Patrice Chotard | e81c986 | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 337 | #else |
| 338 | static int dm_scan_fdt_node(struct udevice *parent, const void *blob, |
| 339 | int offset, bool pre_reloc_only) |
| 340 | { |
| 341 | return 0; |
| 342 | } |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 343 | #endif |
| 344 | |
Rajan Vaja | 68d215d | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 345 | static int dm_scan_fdt_ofnode_path(const char *path, bool pre_reloc_only) |
| 346 | { |
| 347 | ofnode node; |
| 348 | |
| 349 | node = ofnode_path(path); |
| 350 | if (!ofnode_valid(node)) |
| 351 | return 0; |
| 352 | |
| 353 | #if CONFIG_IS_ENABLED(OF_LIVE) |
| 354 | if (of_live_active()) |
| 355 | return dm_scan_fdt_live(gd->dm_root, node.np, pre_reloc_only); |
| 356 | #endif |
| 357 | return dm_scan_fdt_node(gd->dm_root, gd->fdt_blob, node.of_offset, |
| 358 | pre_reloc_only); |
| 359 | } |
| 360 | |
Patrice Chotard | e81c986 | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 361 | int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only) |
| 362 | { |
Andy Yan | bcfdf05 | 2018-03-01 14:08:15 +0800 | [diff] [blame] | 363 | int ret; |
Patrice Chotard | e81c986 | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 364 | |
| 365 | ret = dm_scan_fdt(gd->fdt_blob, pre_reloc_only); |
| 366 | if (ret) { |
| 367 | debug("dm_scan_fdt() failed: %d\n", ret); |
| 368 | return ret; |
| 369 | } |
| 370 | |
Rajan Vaja | 68d215d | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 371 | ret = dm_scan_fdt_ofnode_path("/clocks", pre_reloc_only); |
Rajan Vaja | 1712ca2 | 2018-08-10 01:45:34 -0700 | [diff] [blame] | 372 | if (ret) { |
Rajan Vaja | 68d215d | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 373 | debug("scan for /clocks failed: %d\n", ret); |
Rajan Vaja | 1712ca2 | 2018-08-10 01:45:34 -0700 | [diff] [blame] | 374 | return ret; |
| 375 | } |
| 376 | |
| 377 | ret = dm_scan_fdt_ofnode_path("/firmware", pre_reloc_only); |
| 378 | if (ret) |
| 379 | debug("scan for /firmware failed: %d\n", ret); |
Patrice Chotard | e81c986 | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 380 | |
| 381 | return ret; |
| 382 | } |
| 383 | |
Simon Glass | bb58503 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 384 | __weak int dm_scan_other(bool pre_reloc_only) |
| 385 | { |
| 386 | return 0; |
| 387 | } |
| 388 | |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 389 | int dm_init_and_scan(bool pre_reloc_only) |
| 390 | { |
| 391 | int ret; |
| 392 | |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 393 | ret = dm_init(IS_ENABLED(CONFIG_OF_LIVE)); |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 394 | if (ret) { |
| 395 | debug("dm_init() failed: %d\n", ret); |
| 396 | return ret; |
| 397 | } |
| 398 | ret = dm_scan_platdata(pre_reloc_only); |
| 399 | if (ret) { |
| 400 | debug("dm_scan_platdata() failed: %d\n", ret); |
| 401 | return ret; |
| 402 | } |
Simon Glass | b2b0d3e | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 403 | |
Simon Glass | 29629eb | 2016-07-04 11:57:58 -0600 | [diff] [blame] | 404 | if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) { |
Patrice Chotard | e81c986 | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 405 | ret = dm_extended_scan_fdt(gd->fdt_blob, pre_reloc_only); |
Simon Glass | b2b0d3e | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 406 | if (ret) { |
Patrice Chotard | e81c986 | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 407 | debug("dm_extended_scan_dt() failed: %d\n", ret); |
Simon Glass | b2b0d3e | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 408 | return ret; |
| 409 | } |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 410 | } |
Simon Glass | b2b0d3e | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 411 | |
Simon Glass | bb58503 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 412 | ret = dm_scan_other(pre_reloc_only); |
| 413 | if (ret) |
| 414 | return ret; |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 415 | |
| 416 | return 0; |
| 417 | } |
| 418 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 419 | /* This is the root driver - all drivers are children of this */ |
| 420 | U_BOOT_DRIVER(root_driver) = { |
| 421 | .name = "root_driver", |
| 422 | .id = UCLASS_ROOT, |
Stefan Roese | 66eaea6 | 2015-12-14 16:18:15 +0100 | [diff] [blame] | 423 | .priv_auto_alloc_size = sizeof(struct root_priv), |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 424 | }; |
| 425 | |
| 426 | /* This is the root uclass */ |
| 427 | UCLASS_DRIVER(root) = { |
| 428 | .name = "root", |
| 429 | .id = UCLASS_ROOT, |
| 430 | }; |