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