Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | dd6ab88 | 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 | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <errno.h> |
Simon Glass | 528b1ef | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 11 | #include <fdtdec.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 13 | #include <malloc.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 14 | #include <linux/libfdt.h> |
Simon Glass | 719ea08 | 2020-07-07 13:11:38 -0600 | [diff] [blame] | 15 | #include <dm/acpi.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 16 | #include <dm/device.h> |
| 17 | #include <dm/device-internal.h> |
| 18 | #include <dm/lists.h> |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 19 | #include <dm/of.h> |
| 20 | #include <dm/of_access.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 21 | #include <dm/platdata.h> |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 22 | #include <dm/read.h> |
Jeroen Hofstee | cf0cf82 | 2014-06-25 21:57:45 +0200 | [diff] [blame] | 23 | #include <dm/root.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 24 | #include <dm/uclass.h> |
| 25 | #include <dm/util.h> |
| 26 | #include <linux/list.h> |
| 27 | |
| 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
Walter Lozano | 95282d6 | 2020-06-25 01:10:10 -0300 | [diff] [blame] | 30 | static struct driver_info root_info = { |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 31 | .name = "root_driver", |
| 32 | }; |
| 33 | |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 34 | struct udevice *dm_root(void) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 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 | |
Simon Glass | 1b0deee | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 44 | void dm_fixup_for_gd_move(struct global_data *new_gd) |
| 45 | { |
| 46 | /* The sentinel node has moved, so update things that point to it */ |
Lokesh Vutla | 02ba17f | 2017-02-13 09:21:22 +0530 | [diff] [blame] | 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 | } |
Simon Glass | 1b0deee | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 51 | } |
| 52 | |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 53 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 54 | void fix_drivers(void) |
| 55 | { |
| 56 | struct driver *drv = |
| 57 | ll_entry_start(struct driver, driver); |
| 58 | const int n_ents = ll_entry_count(struct driver, driver); |
| 59 | struct driver *entry; |
| 60 | |
| 61 | for (entry = drv; entry != drv + n_ents; entry++) { |
| 62 | if (entry->of_match) |
| 63 | entry->of_match = (const struct udevice_id *) |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 64 | ((ulong)entry->of_match + gd->reloc_off); |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 65 | if (entry->bind) |
| 66 | entry->bind += gd->reloc_off; |
| 67 | if (entry->probe) |
| 68 | entry->probe += gd->reloc_off; |
| 69 | if (entry->remove) |
| 70 | entry->remove += gd->reloc_off; |
| 71 | if (entry->unbind) |
| 72 | entry->unbind += gd->reloc_off; |
| 73 | if (entry->ofdata_to_platdata) |
| 74 | entry->ofdata_to_platdata += gd->reloc_off; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 75 | if (entry->child_post_bind) |
| 76 | entry->child_post_bind += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 77 | if (entry->child_pre_probe) |
| 78 | entry->child_pre_probe += gd->reloc_off; |
| 79 | if (entry->child_post_remove) |
| 80 | entry->child_post_remove += gd->reloc_off; |
| 81 | /* OPS are fixed in every uclass post_probe function */ |
| 82 | if (entry->ops) |
| 83 | entry->ops += gd->reloc_off; |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | void fix_uclass(void) |
| 88 | { |
| 89 | struct uclass_driver *uclass = |
| 90 | ll_entry_start(struct uclass_driver, uclass); |
| 91 | const int n_ents = ll_entry_count(struct uclass_driver, uclass); |
| 92 | struct uclass_driver *entry; |
| 93 | |
| 94 | for (entry = uclass; entry != uclass + n_ents; entry++) { |
| 95 | if (entry->post_bind) |
| 96 | entry->post_bind += gd->reloc_off; |
| 97 | if (entry->pre_unbind) |
| 98 | entry->pre_unbind += gd->reloc_off; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 99 | if (entry->pre_probe) |
| 100 | entry->pre_probe += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 101 | if (entry->post_probe) |
| 102 | entry->post_probe += gd->reloc_off; |
| 103 | if (entry->pre_remove) |
| 104 | entry->pre_remove += gd->reloc_off; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 105 | if (entry->child_post_bind) |
| 106 | entry->child_post_bind += gd->reloc_off; |
| 107 | if (entry->child_pre_probe) |
| 108 | entry->child_pre_probe += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 109 | if (entry->init) |
| 110 | entry->init += gd->reloc_off; |
| 111 | if (entry->destroy) |
| 112 | entry->destroy += gd->reloc_off; |
| 113 | /* FIXME maybe also need to fix these ops */ |
| 114 | if (entry->ops) |
| 115 | entry->ops += gd->reloc_off; |
| 116 | } |
| 117 | } |
Angelo Dureghello | f4d193b | 2016-05-21 12:05:49 +0200 | [diff] [blame] | 118 | |
| 119 | void fix_devices(void) |
| 120 | { |
| 121 | struct driver_info *dev = |
| 122 | ll_entry_start(struct driver_info, driver_info); |
| 123 | const int n_ents = ll_entry_count(struct driver_info, driver_info); |
| 124 | struct driver_info *entry; |
| 125 | |
| 126 | for (entry = dev; entry != dev + n_ents; entry++) { |
| 127 | if (entry->platdata) |
| 128 | entry->platdata += gd->reloc_off; |
| 129 | } |
| 130 | } |
| 131 | |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 132 | #endif |
| 133 | |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 134 | int dm_init(bool of_live) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 135 | { |
| 136 | int ret; |
| 137 | |
| 138 | if (gd->dm_root) { |
| 139 | dm_warn("Virtual root driver already exists!\n"); |
| 140 | return -EINVAL; |
| 141 | } |
Simon Glass | 34a1d35 | 2014-06-11 23:29:49 -0600 | [diff] [blame] | 142 | INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 143 | |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 144 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 145 | fix_drivers(); |
| 146 | fix_uclass(); |
Angelo Dureghello | f4d193b | 2016-05-21 12:05:49 +0200 | [diff] [blame] | 147 | fix_devices(); |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 148 | #endif |
| 149 | |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 150 | ret = device_bind_by_name(NULL, false, &root_info, &DM_ROOT_NON_CONST); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 151 | if (ret) |
| 152 | return ret; |
Masahiro Yamada | 366b24f | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 153 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 154 | if (CONFIG_IS_ENABLED(OF_LIVE) && of_live) |
| 155 | DM_ROOT_NON_CONST->node = np_to_ofnode(gd_of_root()); |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 156 | else |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 157 | DM_ROOT_NON_CONST->node = offset_to_ofnode(0); |
Simon Glass | cc7cf94 | 2015-01-25 08:26:58 -0700 | [diff] [blame] | 158 | #endif |
Simon Glass | 6d3b3e2 | 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 | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 162 | |
| 163 | return 0; |
| 164 | } |
| 165 | |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 166 | int dm_uninit(void) |
| 167 | { |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 168 | device_remove(dm_root(), DM_REMOVE_NORMAL); |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 169 | device_unbind(dm_root()); |
Jean-Jacques Hiblot | 272b67d | 2018-12-07 14:50:54 +0100 | [diff] [blame] | 170 | gd->dm_root = NULL; |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 171 | |
| 172 | return 0; |
| 173 | } |
| 174 | |
Stefan Roese | 505045d | 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 | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 184 | int dm_scan_platdata(bool pre_reloc_only) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 185 | { |
| 186 | int ret; |
| 187 | |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 188 | ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only); |
Simon Glass | dd6ab88 | 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 | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 193 | |
Masahiro Yamada | 6cac81a | 2014-11-17 17:19:38 +0900 | [diff] [blame] | 194 | return ret; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 197 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 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 | c596a59 | 2018-10-10 22:07:00 -0700 | [diff] [blame] | 206 | |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 207 | if (!of_device_is_available(np)) { |
Masahiro Yamada | f70f39f | 2017-09-29 12:31:20 +0900 | [diff] [blame] | 208 | pr_debug(" - ignoring disabled device\n"); |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 209 | continue; |
| 210 | } |
Bin Meng | 9a9b074 | 2018-10-10 22:06:58 -0700 | [diff] [blame] | 211 | err = lists_bind_fdt(parent, np_to_ofnode(np), NULL, |
| 212 | pre_reloc_only); |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 213 | if (err && !ret) { |
| 214 | ret = err; |
| 215 | debug("%s: ret=%d\n", np->name, ret); |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | if (ret) |
| 220 | dm_warn("Some drivers failed to bind\n"); |
| 221 | |
| 222 | return ret; |
| 223 | } |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 224 | |
Simon Glass | a4dbe25 | 2017-05-17 17:18:08 -0600 | [diff] [blame] | 225 | /** |
| 226 | * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node |
| 227 | * |
| 228 | * This scans the subnodes of a device tree node and and creates a driver |
| 229 | * for each one. |
| 230 | * |
| 231 | * @parent: Parent device for the devices that will be created |
| 232 | * @blob: Pointer to device tree blob |
| 233 | * @offset: Offset of node to scan |
| 234 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 235 | * flag. If false bind all drivers. |
| 236 | * @return 0 if OK, -ve on error |
| 237 | */ |
| 238 | static int dm_scan_fdt_node(struct udevice *parent, const void *blob, |
| 239 | int offset, bool pre_reloc_only) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 240 | { |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 241 | int ret = 0, err; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 242 | |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 243 | for (offset = fdt_first_subnode(blob, offset); |
| 244 | offset > 0; |
| 245 | offset = fdt_next_subnode(blob, offset)) { |
Jens Wiklander | 651a836 | 2018-09-25 16:40:05 +0200 | [diff] [blame] | 246 | const char *node_name = fdt_get_name(blob, offset, NULL); |
| 247 | |
Simon Glass | 528b1ef | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 248 | if (!fdtdec_get_is_enabled(blob, offset)) { |
Masahiro Yamada | f70f39f | 2017-09-29 12:31:20 +0900 | [diff] [blame] | 249 | pr_debug(" - ignoring disabled device\n"); |
Simon Glass | 528b1ef | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 250 | continue; |
| 251 | } |
Bin Meng | 9a9b074 | 2018-10-10 22:06:58 -0700 | [diff] [blame] | 252 | err = lists_bind_fdt(parent, offset_to_ofnode(offset), NULL, |
| 253 | pre_reloc_only); |
Simon Glass | c90b917 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 254 | if (err && !ret) { |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 255 | ret = err; |
Jens Wiklander | 651a836 | 2018-09-25 16:40:05 +0200 | [diff] [blame] | 256 | debug("%s: ret=%d\n", node_name, ret); |
Simon Glass | c90b917 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 257 | } |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 258 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 259 | |
| 260 | if (ret) |
| 261 | dm_warn("Some drivers failed to bind\n"); |
| 262 | |
| 263 | return ret; |
| 264 | } |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 265 | |
Simon Glass | 5d5388d | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 266 | int dm_scan_fdt_dev(struct udevice *dev) |
| 267 | { |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 268 | if (!dev_of_valid(dev)) |
Simon Glass | 5d5388d | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 269 | return 0; |
| 270 | |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 271 | if (of_live_active()) |
| 272 | return dm_scan_fdt_live(dev, dev_np(dev), |
| 273 | gd->flags & GD_FLG_RELOC ? false : true); |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 274 | |
Simon Glass | dd79d6e | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 275 | return dm_scan_fdt_node(dev, gd->fdt_blob, dev_of_offset(dev), |
Simon Glass | 5d5388d | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 276 | gd->flags & GD_FLG_RELOC ? false : true); |
| 277 | } |
| 278 | |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 279 | int dm_scan_fdt(const void *blob, bool pre_reloc_only) |
| 280 | { |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 281 | if (of_live_active()) |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 282 | return dm_scan_fdt_live(gd->dm_root, gd_of_root(), |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 283 | pre_reloc_only); |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 284 | |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 285 | return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only); |
| 286 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 287 | |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 288 | static int dm_scan_fdt_ofnode_path(const void *blob, const char *path, |
| 289 | bool pre_reloc_only) |
Rajan Vaja | fac6463 | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 290 | { |
| 291 | ofnode node; |
| 292 | |
| 293 | node = ofnode_path(path); |
| 294 | if (!ofnode_valid(node)) |
| 295 | return 0; |
| 296 | |
Rajan Vaja | fac6463 | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 297 | if (of_live_active()) |
| 298 | return dm_scan_fdt_live(gd->dm_root, node.np, pre_reloc_only); |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 299 | |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 300 | return dm_scan_fdt_node(gd->dm_root, blob, node.of_offset, |
Rajan Vaja | fac6463 | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 301 | pre_reloc_only); |
| 302 | } |
| 303 | |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 304 | int dm_extended_scan_fdt(const void *blob, bool pre_reloc_only) |
| 305 | { |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 306 | int ret, i; |
| 307 | const char * const nodes[] = { |
| 308 | "/chosen", |
| 309 | "/clocks", |
| 310 | "/firmware" |
| 311 | }; |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 312 | |
Patrice Chotard | 1e5f6e3 | 2019-05-15 10:07:01 +0200 | [diff] [blame] | 313 | ret = dm_scan_fdt(blob, pre_reloc_only); |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 314 | if (ret) { |
| 315 | debug("dm_scan_fdt() failed: %d\n", ret); |
| 316 | return ret; |
| 317 | } |
| 318 | |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 319 | /* Some nodes aren't devices themselves but may contain some */ |
| 320 | for (i = 0; i < ARRAY_SIZE(nodes); i++) { |
| 321 | ret = dm_scan_fdt_ofnode_path(blob, nodes[i], pre_reloc_only); |
| 322 | if (ret) { |
| 323 | debug("dm_scan_fdt() scan for %s failed: %d\n", |
| 324 | nodes[i], ret); |
| 325 | return ret; |
| 326 | } |
Rajan Vaja | e9fc81d | 2018-08-10 01:45:34 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 329 | return ret; |
| 330 | } |
Marek Vasut | 7f18c34 | 2019-08-31 18:03:28 +0200 | [diff] [blame] | 331 | #endif |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 332 | |
Simon Glass | 97e22e3 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 333 | __weak int dm_scan_other(bool pre_reloc_only) |
| 334 | { |
| 335 | return 0; |
| 336 | } |
| 337 | |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 338 | int dm_init_and_scan(bool pre_reloc_only) |
| 339 | { |
| 340 | int ret; |
| 341 | |
Walter Lozano | ffc41b0 | 2020-06-25 01:10:11 -0300 | [diff] [blame] | 342 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
| 343 | dm_populate_phandle_data(); |
| 344 | #endif |
| 345 | |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame^] | 346 | ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE)); |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 347 | if (ret) { |
| 348 | debug("dm_init() failed: %d\n", ret); |
| 349 | return ret; |
| 350 | } |
| 351 | ret = dm_scan_platdata(pre_reloc_only); |
| 352 | if (ret) { |
| 353 | debug("dm_scan_platdata() failed: %d\n", ret); |
| 354 | return ret; |
| 355 | } |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 356 | |
Simon Glass | 8d7e816 | 2016-07-04 11:57:58 -0600 | [diff] [blame] | 357 | if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) { |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 358 | ret = dm_extended_scan_fdt(gd->fdt_blob, pre_reloc_only); |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 359 | if (ret) { |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 360 | debug("dm_extended_scan_dt() failed: %d\n", ret); |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 361 | return ret; |
| 362 | } |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 363 | } |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 364 | |
Simon Glass | 97e22e3 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 365 | ret = dm_scan_other(pre_reloc_only); |
| 366 | if (ret) |
| 367 | return ret; |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 368 | |
| 369 | return 0; |
| 370 | } |
| 371 | |
Simon Glass | 719ea08 | 2020-07-07 13:11:38 -0600 | [diff] [blame] | 372 | #ifdef CONFIG_ACPIGEN |
| 373 | static int root_acpi_get_name(const struct udevice *dev, char *out_name) |
| 374 | { |
| 375 | return acpi_copy_name(out_name, "\\_SB"); |
| 376 | } |
| 377 | |
| 378 | struct acpi_ops root_acpi_ops = { |
| 379 | .get_name = root_acpi_get_name, |
| 380 | }; |
| 381 | #endif |
| 382 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 383 | /* This is the root driver - all drivers are children of this */ |
| 384 | U_BOOT_DRIVER(root_driver) = { |
| 385 | .name = "root_driver", |
| 386 | .id = UCLASS_ROOT, |
Simon Glass | 719ea08 | 2020-07-07 13:11:38 -0600 | [diff] [blame] | 387 | ACPI_OPS_PTR(&root_acpi_ops) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 388 | }; |
| 389 | |
| 390 | /* This is the root uclass */ |
| 391 | UCLASS_DRIVER(root) = { |
| 392 | .name = "root", |
| 393 | .id = UCLASS_ROOT, |
| 394 | }; |