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) { |
Simon Glass | 784cd9e | 2020-12-19 10:40:17 -0700 | [diff] [blame] | 48 | new_gd->uclass_root->next->prev = new_gd->uclass_root; |
| 49 | new_gd->uclass_root->prev->next = new_gd->uclass_root; |
Lokesh Vutla | 02ba17f | 2017-02-13 09:21:22 +0530 | [diff] [blame] | 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 | void 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 *) |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 63 | ((ulong)entry->of_match + gd->reloc_off); |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 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; |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 72 | if (entry->of_to_plat) |
| 73 | entry->of_to_plat += gd->reloc_off; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 74 | if (entry->child_post_bind) |
| 75 | entry->child_post_bind += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 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 | |
| 86 | void fix_uclass(void) |
| 87 | { |
| 88 | struct uclass_driver *uclass = |
Simon Glass | 69ea20e | 2020-12-22 19:30:23 -0700 | [diff] [blame] | 89 | ll_entry_start(struct uclass_driver, uclass_driver); |
| 90 | const int n_ents = ll_entry_count(struct uclass_driver, uclass_driver); |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 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; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 98 | if (entry->pre_probe) |
| 99 | entry->pre_probe += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 100 | if (entry->post_probe) |
| 101 | entry->post_probe += gd->reloc_off; |
| 102 | if (entry->pre_remove) |
| 103 | entry->pre_remove += gd->reloc_off; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 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; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 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 | } |
Angelo Dureghello | f4d193b | 2016-05-21 12:05:49 +0200 | [diff] [blame] | 117 | |
| 118 | void 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++) { |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 126 | if (entry->plat) |
| 127 | entry->plat += gd->reloc_off; |
Angelo Dureghello | f4d193b | 2016-05-21 12:05:49 +0200 | [diff] [blame] | 128 | } |
| 129 | } |
| 130 | |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 131 | int dm_init(bool of_live) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 132 | { |
| 133 | int ret; |
| 134 | |
Dario Binacchi | b574d68 | 2020-12-30 00:16:21 +0100 | [diff] [blame] | 135 | if (IS_ENABLED(CONFIG_OF_TRANSLATE_ZERO_SIZE_CELLS)) |
| 136 | gd->dm_flags |= GD_DM_FLG_SIZE_CELLS_0; |
| 137 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 138 | if (gd->dm_root) { |
| 139 | dm_warn("Virtual root driver already exists!\n"); |
| 140 | return -EINVAL; |
| 141 | } |
Simon Glass | 784cd9e | 2020-12-19 10:40:17 -0700 | [diff] [blame] | 142 | gd->uclass_root = &DM_UCLASS_ROOT_S_NON_CONST; |
| 143 | INIT_LIST_HEAD(DM_UCLASS_ROOT_NON_CONST); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 144 | |
Simon Glass | e2e8907 | 2020-10-03 11:31:37 -0600 | [diff] [blame] | 145 | if (IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC)) { |
| 146 | fix_drivers(); |
| 147 | fix_uclass(); |
| 148 | fix_devices(); |
| 149 | } |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 150 | |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 151 | 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] | 152 | if (ret) |
| 153 | return ret; |
Simon Glass | 278ddba | 2020-11-28 17:50:07 -0700 | [diff] [blame] | 154 | if (CONFIG_IS_ENABLED(OF_CONTROL)) |
Simon Glass | a7ece58 | 2020-12-19 10:40:14 -0700 | [diff] [blame] | 155 | dev_set_ofnode(DM_ROOT_NON_CONST, ofnode_root()); |
Simon Glass | 6d3b3e2 | 2014-07-23 06:55:00 -0600 | [diff] [blame] | 156 | ret = device_probe(DM_ROOT_NON_CONST); |
| 157 | if (ret) |
| 158 | return ret; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 163 | int dm_uninit(void) |
| 164 | { |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 165 | device_remove(dm_root(), DM_REMOVE_NORMAL); |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 166 | device_unbind(dm_root()); |
Jean-Jacques Hiblot | 272b67d | 2018-12-07 14:50:54 +0100 | [diff] [blame] | 167 | gd->dm_root = NULL; |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 168 | |
| 169 | return 0; |
| 170 | } |
| 171 | |
Stefan Roese | 505045d | 2017-03-27 10:58:53 +0200 | [diff] [blame] | 172 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
| 173 | int dm_remove_devices_flags(uint flags) |
| 174 | { |
| 175 | device_remove(dm_root(), flags); |
| 176 | |
| 177 | return 0; |
| 178 | } |
| 179 | #endif |
| 180 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 181 | int dm_scan_plat(bool pre_reloc_only) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 182 | { |
| 183 | int ret; |
| 184 | |
Simon Glass | cfd6a00 | 2020-10-03 11:31:33 -0600 | [diff] [blame] | 185 | if (CONFIG_IS_ENABLED(OF_PLATDATA)) { |
| 186 | struct driver_rt *dyn; |
| 187 | int n_ents; |
| 188 | |
| 189 | n_ents = ll_entry_count(struct driver_info, driver_info); |
| 190 | dyn = calloc(n_ents, sizeof(struct driver_rt)); |
| 191 | if (!dyn) |
| 192 | return -ENOMEM; |
| 193 | gd_set_dm_driver_rt(dyn); |
| 194 | } |
| 195 | |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 196 | ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 197 | if (ret == -ENOENT) { |
| 198 | dm_warn("Some drivers were not found\n"); |
| 199 | ret = 0; |
| 200 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 201 | |
Masahiro Yamada | 6cac81a | 2014-11-17 17:19:38 +0900 | [diff] [blame] | 202 | return ret; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 203 | } |
| 204 | |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 205 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | a4dbe25 | 2017-05-17 17:18:08 -0600 | [diff] [blame] | 206 | /** |
| 207 | * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node |
| 208 | * |
| 209 | * This scans the subnodes of a device tree node and and creates a driver |
| 210 | * for each one. |
| 211 | * |
| 212 | * @parent: Parent device for the devices that will be created |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 213 | * @node: Node to scan |
Simon Glass | a4dbe25 | 2017-05-17 17:18:08 -0600 | [diff] [blame] | 214 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 215 | * flag. If false bind all drivers. |
| 216 | * @return 0 if OK, -ve on error |
| 217 | */ |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 218 | static int dm_scan_fdt_node(struct udevice *parent, ofnode parent_node, |
| 219 | bool pre_reloc_only) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 220 | { |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 221 | int ret = 0, err; |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 222 | ofnode node; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 223 | |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 224 | if (!ofnode_valid(parent_node)) |
| 225 | return 0; |
| 226 | |
| 227 | for (node = ofnode_first_subnode(parent_node); |
| 228 | ofnode_valid(node); |
| 229 | node = ofnode_next_subnode(node)) { |
| 230 | const char *node_name = ofnode_get_name(node); |
Jens Wiklander | 651a836 | 2018-09-25 16:40:05 +0200 | [diff] [blame] | 231 | |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 232 | if (!ofnode_is_enabled(node)) { |
Masahiro Yamada | f70f39f | 2017-09-29 12:31:20 +0900 | [diff] [blame] | 233 | pr_debug(" - ignoring disabled device\n"); |
Simon Glass | 528b1ef | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 234 | continue; |
| 235 | } |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 236 | err = lists_bind_fdt(parent, node, NULL, pre_reloc_only); |
Simon Glass | c90b917 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 237 | if (err && !ret) { |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 238 | ret = err; |
Jens Wiklander | 651a836 | 2018-09-25 16:40:05 +0200 | [diff] [blame] | 239 | debug("%s: ret=%d\n", node_name, ret); |
Simon Glass | c90b917 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 240 | } |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 241 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 242 | |
| 243 | if (ret) |
| 244 | dm_warn("Some drivers failed to bind\n"); |
| 245 | |
| 246 | return ret; |
| 247 | } |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 248 | |
Simon Glass | 5d5388d | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 249 | int dm_scan_fdt_dev(struct udevice *dev) |
| 250 | { |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 251 | return dm_scan_fdt_node(dev, dev_ofnode(dev), |
Simon Glass | 5d5388d | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 252 | gd->flags & GD_FLG_RELOC ? false : true); |
| 253 | } |
| 254 | |
Simon Glass | 5039cab | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 255 | int dm_scan_fdt(bool pre_reloc_only) |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 256 | { |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 257 | return dm_scan_fdt_node(gd->dm_root, ofnode_root(), pre_reloc_only); |
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 | |
Simon Glass | 5039cab | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 260 | static int dm_scan_fdt_ofnode_path(const char *path, bool pre_reloc_only) |
Rajan Vaja | fac6463 | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 261 | { |
| 262 | ofnode node; |
| 263 | |
| 264 | node = ofnode_path(path); |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 265 | |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 266 | return dm_scan_fdt_node(gd->dm_root, node, pre_reloc_only); |
Rajan Vaja | fac6463 | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 267 | } |
| 268 | |
Simon Glass | 4d71d60 | 2020-11-28 17:50:10 -0700 | [diff] [blame] | 269 | int dm_extended_scan(bool pre_reloc_only) |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 270 | { |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 271 | int ret, i; |
| 272 | const char * const nodes[] = { |
| 273 | "/chosen", |
| 274 | "/clocks", |
| 275 | "/firmware" |
| 276 | }; |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 277 | |
Simon Glass | 5039cab | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 278 | ret = dm_scan_fdt(pre_reloc_only); |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 279 | if (ret) { |
| 280 | debug("dm_scan_fdt() failed: %d\n", ret); |
| 281 | return ret; |
| 282 | } |
| 283 | |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 284 | /* Some nodes aren't devices themselves but may contain some */ |
| 285 | for (i = 0; i < ARRAY_SIZE(nodes); i++) { |
Simon Glass | 5039cab | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 286 | ret = dm_scan_fdt_ofnode_path(nodes[i], pre_reloc_only); |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 287 | if (ret) { |
| 288 | debug("dm_scan_fdt() scan for %s failed: %d\n", |
| 289 | nodes[i], ret); |
| 290 | return ret; |
| 291 | } |
Rajan Vaja | e9fc81d | 2018-08-10 01:45:34 -0700 | [diff] [blame] | 292 | } |
| 293 | |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 294 | return ret; |
| 295 | } |
Marek Vasut | 7f18c34 | 2019-08-31 18:03:28 +0200 | [diff] [blame] | 296 | #endif |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 297 | |
Simon Glass | 97e22e3 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 298 | __weak int dm_scan_other(bool pre_reloc_only) |
| 299 | { |
| 300 | return 0; |
| 301 | } |
| 302 | |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 303 | /** |
| 304 | * dm_scan() - Scan tables to bind devices |
| 305 | * |
| 306 | * Runs through the driver_info tables and binds the devices it finds. Then runs |
| 307 | * through the devicetree nodes. Finally calls dm_scan_other() to add any |
| 308 | * special devices |
| 309 | * |
| 310 | * @pre_reloc_only: If true, bind only nodes with special devicetree properties, |
| 311 | * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers. |
| 312 | */ |
| 313 | static int dm_scan(bool pre_reloc_only) |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 314 | { |
| 315 | int ret; |
| 316 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 317 | ret = dm_scan_plat(pre_reloc_only); |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 318 | if (ret) { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 319 | debug("dm_scan_plat() failed: %d\n", ret); |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 320 | return ret; |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 321 | } |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 322 | |
Simon Glass | 8d7e816 | 2016-07-04 11:57:58 -0600 | [diff] [blame] | 323 | if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) { |
Simon Glass | 4d71d60 | 2020-11-28 17:50:10 -0700 | [diff] [blame] | 324 | ret = dm_extended_scan(pre_reloc_only); |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 325 | if (ret) { |
Simon Glass | 4d71d60 | 2020-11-28 17:50:10 -0700 | [diff] [blame] | 326 | debug("dm_extended_scan() failed: %d\n", ret); |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 327 | return ret; |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 328 | } |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 329 | } |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 330 | |
Simon Glass | 97e22e3 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 331 | ret = dm_scan_other(pre_reloc_only); |
| 332 | if (ret) |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 333 | return ret; |
| 334 | |
| 335 | return 0; |
| 336 | } |
| 337 | |
| 338 | int dm_init_and_scan(bool pre_reloc_only) |
| 339 | { |
| 340 | int ret; |
| 341 | |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 342 | ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE)); |
| 343 | if (ret) { |
| 344 | debug("dm_init() failed: %d\n", ret); |
| 345 | return ret; |
| 346 | } |
| 347 | ret = dm_scan(pre_reloc_only); |
| 348 | if (ret) { |
| 349 | log_debug("dm_scan() failed: %d\n", ret); |
| 350 | return ret; |
| 351 | } |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
Simon Glass | 719ea08 | 2020-07-07 13:11:38 -0600 | [diff] [blame] | 356 | #ifdef CONFIG_ACPIGEN |
| 357 | static int root_acpi_get_name(const struct udevice *dev, char *out_name) |
| 358 | { |
| 359 | return acpi_copy_name(out_name, "\\_SB"); |
| 360 | } |
| 361 | |
| 362 | struct acpi_ops root_acpi_ops = { |
| 363 | .get_name = root_acpi_get_name, |
| 364 | }; |
| 365 | #endif |
| 366 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 367 | /* This is the root driver - all drivers are children of this */ |
| 368 | U_BOOT_DRIVER(root_driver) = { |
| 369 | .name = "root_driver", |
| 370 | .id = UCLASS_ROOT, |
Simon Glass | 719ea08 | 2020-07-07 13:11:38 -0600 | [diff] [blame] | 371 | ACPI_OPS_PTR(&root_acpi_ops) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 372 | }; |
| 373 | |
| 374 | /* This is the root uclass */ |
| 375 | UCLASS_DRIVER(root) = { |
| 376 | .name = "root", |
| 377 | .id = UCLASS_ROOT, |
| 378 | }; |