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