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 | |
Patrick Delaunay | 8131335 | 2021-04-27 11:02:19 +0200 | [diff] [blame] | 9 | #define LOG_CATEGORY UCLASS_ROOT |
| 10 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 11 | #include <common.h> |
| 12 | #include <errno.h> |
Simon Glass | 528b1ef | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 13 | #include <fdtdec.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 14 | #include <log.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 15 | #include <malloc.h> |
Simon Glass | 8dee67a | 2021-03-15 17:25:38 +1300 | [diff] [blame] | 16 | #include <asm-generic/sections.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 18 | #include <linux/libfdt.h> |
Simon Glass | 719ea08 | 2020-07-07 13:11:38 -0600 | [diff] [blame] | 19 | #include <dm/acpi.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 20 | #include <dm/device.h> |
| 21 | #include <dm/device-internal.h> |
| 22 | #include <dm/lists.h> |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 23 | #include <dm/of.h> |
| 24 | #include <dm/of_access.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 25 | #include <dm/platdata.h> |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 26 | #include <dm/read.h> |
Jeroen Hofstee | cf0cf82 | 2014-06-25 21:57:45 +0200 | [diff] [blame] | 27 | #include <dm/root.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 28 | #include <dm/uclass.h> |
| 29 | #include <dm/util.h> |
| 30 | #include <linux/list.h> |
| 31 | |
| 32 | DECLARE_GLOBAL_DATA_PTR; |
| 33 | |
Walter Lozano | 95282d6 | 2020-06-25 01:10:10 -0300 | [diff] [blame] | 34 | static struct driver_info root_info = { |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 35 | .name = "root_driver", |
| 36 | }; |
| 37 | |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 38 | struct udevice *dm_root(void) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 39 | { |
| 40 | if (!gd->dm_root) { |
| 41 | dm_warn("Virtual root driver does not exist!\n"); |
| 42 | return NULL; |
| 43 | } |
| 44 | |
| 45 | return gd->dm_root; |
| 46 | } |
| 47 | |
Simon Glass | 1b0deee | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 48 | void dm_fixup_for_gd_move(struct global_data *new_gd) |
| 49 | { |
| 50 | /* The sentinel node has moved, so update things that point to it */ |
Lokesh Vutla | 02ba17f | 2017-02-13 09:21:22 +0530 | [diff] [blame] | 51 | if (gd->dm_root) { |
Simon Glass | 784cd9e | 2020-12-19 10:40:17 -0700 | [diff] [blame] | 52 | new_gd->uclass_root->next->prev = new_gd->uclass_root; |
| 53 | new_gd->uclass_root->prev->next = new_gd->uclass_root; |
Lokesh Vutla | 02ba17f | 2017-02-13 09:21:22 +0530 | [diff] [blame] | 54 | } |
Simon Glass | 1b0deee | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 57 | void fix_drivers(void) |
| 58 | { |
| 59 | struct driver *drv = |
| 60 | ll_entry_start(struct driver, driver); |
| 61 | const int n_ents = ll_entry_count(struct driver, driver); |
| 62 | struct driver *entry; |
| 63 | |
| 64 | for (entry = drv; entry != drv + n_ents; entry++) { |
| 65 | if (entry->of_match) |
| 66 | entry->of_match = (const struct udevice_id *) |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 67 | ((ulong)entry->of_match + gd->reloc_off); |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 68 | if (entry->bind) |
| 69 | entry->bind += gd->reloc_off; |
| 70 | if (entry->probe) |
| 71 | entry->probe += gd->reloc_off; |
| 72 | if (entry->remove) |
| 73 | entry->remove += gd->reloc_off; |
| 74 | if (entry->unbind) |
| 75 | entry->unbind += gd->reloc_off; |
Simon Glass | aad29ae | 2020-12-03 16:55:21 -0700 | [diff] [blame] | 76 | if (entry->of_to_plat) |
| 77 | entry->of_to_plat += gd->reloc_off; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 78 | if (entry->child_post_bind) |
| 79 | entry->child_post_bind += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 80 | if (entry->child_pre_probe) |
| 81 | entry->child_pre_probe += gd->reloc_off; |
| 82 | if (entry->child_post_remove) |
| 83 | entry->child_post_remove += gd->reloc_off; |
| 84 | /* OPS are fixed in every uclass post_probe function */ |
| 85 | if (entry->ops) |
| 86 | entry->ops += gd->reloc_off; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | void fix_uclass(void) |
| 91 | { |
| 92 | struct uclass_driver *uclass = |
Simon Glass | 69ea20e | 2020-12-22 19:30:23 -0700 | [diff] [blame] | 93 | ll_entry_start(struct uclass_driver, uclass_driver); |
| 94 | const int n_ents = ll_entry_count(struct uclass_driver, uclass_driver); |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 95 | struct uclass_driver *entry; |
| 96 | |
| 97 | for (entry = uclass; entry != uclass + n_ents; entry++) { |
| 98 | if (entry->post_bind) |
| 99 | entry->post_bind += gd->reloc_off; |
| 100 | if (entry->pre_unbind) |
| 101 | entry->pre_unbind += gd->reloc_off; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 102 | if (entry->pre_probe) |
| 103 | entry->pre_probe += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 104 | if (entry->post_probe) |
| 105 | entry->post_probe += gd->reloc_off; |
| 106 | if (entry->pre_remove) |
| 107 | entry->pre_remove += gd->reloc_off; |
Michal Simek | 61809f5 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 108 | if (entry->child_post_bind) |
| 109 | entry->child_post_bind += gd->reloc_off; |
| 110 | if (entry->child_pre_probe) |
| 111 | entry->child_pre_probe += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 112 | if (entry->init) |
| 113 | entry->init += gd->reloc_off; |
| 114 | if (entry->destroy) |
| 115 | entry->destroy += gd->reloc_off; |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 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 | 43f7ea5 | 2021-03-15 17:25:17 +1300 | [diff] [blame] | 132 | static int dm_setup_inst(void) |
| 133 | { |
| 134 | DM_ROOT_NON_CONST = DM_DEVICE_GET(root); |
| 135 | |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 136 | if (CONFIG_IS_ENABLED(OF_PLATDATA_RT)) { |
| 137 | struct udevice_rt *urt; |
Simon Glass | 8dee67a | 2021-03-15 17:25:38 +1300 | [diff] [blame] | 138 | void *base; |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 139 | int n_ents; |
Simon Glass | 8dee67a | 2021-03-15 17:25:38 +1300 | [diff] [blame] | 140 | uint size; |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 141 | |
| 142 | /* Allocate the udevice_rt table */ |
| 143 | n_ents = ll_entry_count(struct udevice, udevice); |
| 144 | urt = calloc(n_ents, sizeof(struct udevice_rt)); |
| 145 | if (!urt) |
| 146 | return log_msg_ret("urt", -ENOMEM); |
| 147 | gd_set_dm_udevice_rt(urt); |
Simon Glass | 8dee67a | 2021-03-15 17:25:38 +1300 | [diff] [blame] | 148 | |
| 149 | /* Now allocate space for the priv/plat data, and copy it in */ |
| 150 | size = __priv_data_end - __priv_data_start; |
| 151 | |
| 152 | base = calloc(1, size); |
| 153 | if (!base) |
| 154 | return log_msg_ret("priv", -ENOMEM); |
| 155 | memcpy(base, __priv_data_start, size); |
| 156 | gd_set_dm_priv_base(base); |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 157 | } |
| 158 | |
Simon Glass | 43f7ea5 | 2021-03-15 17:25:17 +1300 | [diff] [blame] | 159 | return 0; |
| 160 | } |
| 161 | |
Simon Glass | f19d9f2 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 162 | int dm_init(bool of_live) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 163 | { |
| 164 | int ret; |
| 165 | |
| 166 | if (gd->dm_root) { |
| 167 | dm_warn("Virtual root driver already exists!\n"); |
| 168 | return -EINVAL; |
| 169 | } |
Simon Glass | 6f15653 | 2021-03-15 17:25:16 +1300 | [diff] [blame] | 170 | if (CONFIG_IS_ENABLED(OF_PLATDATA_INST)) { |
| 171 | gd->uclass_root = &uclass_head; |
| 172 | } else { |
| 173 | gd->uclass_root = &DM_UCLASS_ROOT_S_NON_CONST; |
| 174 | INIT_LIST_HEAD(DM_UCLASS_ROOT_NON_CONST); |
| 175 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 176 | |
Simon Glass | e2e8907 | 2020-10-03 11:31:37 -0600 | [diff] [blame] | 177 | if (IS_ENABLED(CONFIG_NEEDS_MANUAL_RELOC)) { |
| 178 | fix_drivers(); |
| 179 | fix_uclass(); |
| 180 | fix_devices(); |
| 181 | } |
Michal Simek | 0ec473b | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 182 | |
Simon Glass | 43f7ea5 | 2021-03-15 17:25:17 +1300 | [diff] [blame] | 183 | if (CONFIG_IS_ENABLED(OF_PLATDATA_INST)) { |
| 184 | ret = dm_setup_inst(); |
| 185 | if (ret) { |
| 186 | log_debug("dm_setup_inst() failed: %d\n", ret); |
| 187 | return ret; |
| 188 | } |
| 189 | } else { |
| 190 | ret = device_bind_by_name(NULL, false, &root_info, |
| 191 | &DM_ROOT_NON_CONST); |
| 192 | if (ret) |
| 193 | return ret; |
| 194 | if (CONFIG_IS_ENABLED(OF_CONTROL)) |
| 195 | dev_set_ofnode(DM_ROOT_NON_CONST, ofnode_root()); |
| 196 | ret = device_probe(DM_ROOT_NON_CONST); |
| 197 | if (ret) |
| 198 | return ret; |
| 199 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 200 | |
| 201 | return 0; |
| 202 | } |
| 203 | |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 204 | int dm_uninit(void) |
| 205 | { |
Marek Vasut | abbdbbd | 2021-01-24 14:32:46 -0700 | [diff] [blame] | 206 | /* Remove non-vital devices first */ |
| 207 | device_remove(dm_root(), DM_REMOVE_NON_VITAL); |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 208 | device_remove(dm_root(), DM_REMOVE_NORMAL); |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 209 | device_unbind(dm_root()); |
Jean-Jacques Hiblot | 272b67d | 2018-12-07 14:50:54 +0100 | [diff] [blame] | 210 | gd->dm_root = NULL; |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 211 | |
| 212 | return 0; |
| 213 | } |
| 214 | |
Stefan Roese | 505045d | 2017-03-27 10:58:53 +0200 | [diff] [blame] | 215 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
| 216 | int dm_remove_devices_flags(uint flags) |
| 217 | { |
| 218 | device_remove(dm_root(), flags); |
| 219 | |
| 220 | return 0; |
| 221 | } |
| 222 | #endif |
| 223 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 224 | int dm_scan_plat(bool pre_reloc_only) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 225 | { |
| 226 | int ret; |
| 227 | |
Simon Glass | 8beeb28 | 2021-03-15 17:25:36 +1300 | [diff] [blame] | 228 | if (CONFIG_IS_ENABLED(OF_PLATDATA_DRIVER_RT)) { |
Simon Glass | cfd6a00 | 2020-10-03 11:31:33 -0600 | [diff] [blame] | 229 | struct driver_rt *dyn; |
| 230 | int n_ents; |
| 231 | |
| 232 | n_ents = ll_entry_count(struct driver_info, driver_info); |
| 233 | dyn = calloc(n_ents, sizeof(struct driver_rt)); |
| 234 | if (!dyn) |
| 235 | return -ENOMEM; |
| 236 | gd_set_dm_driver_rt(dyn); |
| 237 | } |
| 238 | |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 239 | ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 240 | if (ret == -ENOENT) { |
| 241 | dm_warn("Some drivers were not found\n"); |
| 242 | ret = 0; |
| 243 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 244 | |
Masahiro Yamada | 6cac81a | 2014-11-17 17:19:38 +0900 | [diff] [blame] | 245 | return ret; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 248 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | a4dbe25 | 2017-05-17 17:18:08 -0600 | [diff] [blame] | 249 | /** |
| 250 | * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node |
| 251 | * |
| 252 | * This scans the subnodes of a device tree node and and creates a driver |
| 253 | * for each one. |
| 254 | * |
| 255 | * @parent: Parent device for the devices that will be created |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 256 | * @node: Node to scan |
Simon Glass | a4dbe25 | 2017-05-17 17:18:08 -0600 | [diff] [blame] | 257 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 258 | * flag. If false bind all drivers. |
| 259 | * @return 0 if OK, -ve on error |
| 260 | */ |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 261 | static int dm_scan_fdt_node(struct udevice *parent, ofnode parent_node, |
| 262 | bool pre_reloc_only) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 263 | { |
Sean Anderson | 0449f06 | 2021-04-08 17:15:00 -0400 | [diff] [blame] | 264 | int ret = 0, err = 0; |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 265 | ofnode node; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 266 | |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 267 | if (!ofnode_valid(parent_node)) |
| 268 | return 0; |
| 269 | |
| 270 | for (node = ofnode_first_subnode(parent_node); |
| 271 | ofnode_valid(node); |
| 272 | node = ofnode_next_subnode(node)) { |
| 273 | const char *node_name = ofnode_get_name(node); |
Jens Wiklander | 651a836 | 2018-09-25 16:40:05 +0200 | [diff] [blame] | 274 | |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 275 | if (!ofnode_is_enabled(node)) { |
Masahiro Yamada | f70f39f | 2017-09-29 12:31:20 +0900 | [diff] [blame] | 276 | pr_debug(" - ignoring disabled device\n"); |
Simon Glass | 528b1ef | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 277 | continue; |
| 278 | } |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 279 | err = lists_bind_fdt(parent, node, NULL, pre_reloc_only); |
Simon Glass | c90b917 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 280 | if (err && !ret) { |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 281 | ret = err; |
Jens Wiklander | 651a836 | 2018-09-25 16:40:05 +0200 | [diff] [blame] | 282 | debug("%s: ret=%d\n", node_name, ret); |
Simon Glass | c90b917 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 283 | } |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 284 | } |
Simon Glass | dd6ab88 | 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 | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 291 | |
Simon Glass | 5d5388d | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 292 | int dm_scan_fdt_dev(struct udevice *dev) |
| 293 | { |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 294 | return dm_scan_fdt_node(dev, dev_ofnode(dev), |
Simon Glass | 5d5388d | 2016-07-05 17:10:08 -0600 | [diff] [blame] | 295 | gd->flags & GD_FLG_RELOC ? false : true); |
| 296 | } |
| 297 | |
Simon Glass | 5039cab | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 298 | int dm_scan_fdt(bool pre_reloc_only) |
Simon Glass | 4071742 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 299 | { |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 300 | 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] | 301 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 302 | |
Simon Glass | 5039cab | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 303 | 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] | 304 | { |
| 305 | ofnode node; |
| 306 | |
| 307 | node = ofnode_path(path); |
Simon Glass | 40916e6 | 2020-10-03 09:25:22 -0600 | [diff] [blame] | 308 | |
Simon Glass | 21a3088 | 2020-11-28 17:50:08 -0700 | [diff] [blame] | 309 | return dm_scan_fdt_node(gd->dm_root, node, pre_reloc_only); |
Rajan Vaja | fac6463 | 2018-08-10 01:45:33 -0700 | [diff] [blame] | 310 | } |
| 311 | |
Simon Glass | 4d71d60 | 2020-11-28 17:50:10 -0700 | [diff] [blame] | 312 | int dm_extended_scan(bool pre_reloc_only) |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 313 | { |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 314 | int ret, i; |
| 315 | const char * const nodes[] = { |
| 316 | "/chosen", |
| 317 | "/clocks", |
| 318 | "/firmware" |
| 319 | }; |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 320 | |
Simon Glass | 5039cab | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 321 | ret = dm_scan_fdt(pre_reloc_only); |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 322 | if (ret) { |
| 323 | debug("dm_scan_fdt() failed: %d\n", ret); |
| 324 | return ret; |
| 325 | } |
| 326 | |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 327 | /* Some nodes aren't devices themselves but may contain some */ |
| 328 | for (i = 0; i < ARRAY_SIZE(nodes); i++) { |
Simon Glass | 5039cab | 2020-11-28 17:50:09 -0700 | [diff] [blame] | 329 | ret = dm_scan_fdt_ofnode_path(nodes[i], pre_reloc_only); |
Patrick Delaunay | c779e20 | 2020-02-18 15:43:46 +0100 | [diff] [blame] | 330 | if (ret) { |
| 331 | debug("dm_scan_fdt() scan for %s failed: %d\n", |
| 332 | nodes[i], ret); |
| 333 | return ret; |
| 334 | } |
Rajan Vaja | e9fc81d | 2018-08-10 01:45:34 -0700 | [diff] [blame] | 335 | } |
| 336 | |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 337 | return ret; |
| 338 | } |
Marek Vasut | 7f18c34 | 2019-08-31 18:03:28 +0200 | [diff] [blame] | 339 | #endif |
Patrice Chotard | bb3a45b | 2017-09-04 14:55:56 +0200 | [diff] [blame] | 340 | |
Simon Glass | 97e22e3 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 341 | __weak int dm_scan_other(bool pre_reloc_only) |
| 342 | { |
| 343 | return 0; |
| 344 | } |
| 345 | |
Simon Glass | 781aa3e | 2021-03-15 17:25:40 +1300 | [diff] [blame] | 346 | #if CONFIG_IS_ENABLED(OF_PLATDATA_INST) && CONFIG_IS_ENABLED(READ_ONLY) |
| 347 | void *dm_priv_to_rw(void *priv) |
| 348 | { |
| 349 | long offset = priv - (void *)__priv_data_start; |
| 350 | |
| 351 | return gd_dm_priv_base() + offset; |
| 352 | } |
| 353 | #endif |
| 354 | |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 355 | /** |
| 356 | * dm_scan() - Scan tables to bind devices |
| 357 | * |
| 358 | * Runs through the driver_info tables and binds the devices it finds. Then runs |
| 359 | * through the devicetree nodes. Finally calls dm_scan_other() to add any |
| 360 | * special devices |
| 361 | * |
| 362 | * @pre_reloc_only: If true, bind only nodes with special devicetree properties, |
| 363 | * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers. |
| 364 | */ |
| 365 | static int dm_scan(bool pre_reloc_only) |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 366 | { |
| 367 | int ret; |
| 368 | |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 369 | ret = dm_scan_plat(pre_reloc_only); |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 370 | if (ret) { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 371 | debug("dm_scan_plat() failed: %d\n", ret); |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 372 | return ret; |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 373 | } |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 374 | |
Simon Glass | 8d7e816 | 2016-07-04 11:57:58 -0600 | [diff] [blame] | 375 | if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) { |
Simon Glass | 4d71d60 | 2020-11-28 17:50:10 -0700 | [diff] [blame] | 376 | ret = dm_extended_scan(pre_reloc_only); |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 377 | if (ret) { |
Simon Glass | 4d71d60 | 2020-11-28 17:50:10 -0700 | [diff] [blame] | 378 | debug("dm_extended_scan() failed: %d\n", ret); |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 379 | return ret; |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 380 | } |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 381 | } |
Simon Glass | 0704b85 | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 382 | |
Simon Glass | 97e22e3 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 383 | ret = dm_scan_other(pre_reloc_only); |
| 384 | if (ret) |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 385 | return ret; |
| 386 | |
| 387 | return 0; |
| 388 | } |
| 389 | |
| 390 | int dm_init_and_scan(bool pre_reloc_only) |
| 391 | { |
| 392 | int ret; |
| 393 | |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 394 | ret = dm_init(CONFIG_IS_ENABLED(OF_LIVE)); |
| 395 | if (ret) { |
| 396 | debug("dm_init() failed: %d\n", ret); |
| 397 | return ret; |
| 398 | } |
Simon Glass | 43f7ea5 | 2021-03-15 17:25:17 +1300 | [diff] [blame] | 399 | if (!CONFIG_IS_ENABLED(OF_PLATDATA_INST)) { |
| 400 | ret = dm_scan(pre_reloc_only); |
| 401 | if (ret) { |
| 402 | log_debug("dm_scan() failed: %d\n", ret); |
| 403 | return ret; |
| 404 | } |
Simon Glass | c77695b | 2020-12-19 10:40:16 -0700 | [diff] [blame] | 405 | } |
Simon Glass | a730c5d | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 406 | |
| 407 | return 0; |
| 408 | } |
| 409 | |
Simon Glass | 719ea08 | 2020-07-07 13:11:38 -0600 | [diff] [blame] | 410 | #ifdef CONFIG_ACPIGEN |
| 411 | static int root_acpi_get_name(const struct udevice *dev, char *out_name) |
| 412 | { |
| 413 | return acpi_copy_name(out_name, "\\_SB"); |
| 414 | } |
| 415 | |
| 416 | struct acpi_ops root_acpi_ops = { |
| 417 | .get_name = root_acpi_get_name, |
| 418 | }; |
| 419 | #endif |
| 420 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 421 | /* This is the root driver - all drivers are children of this */ |
| 422 | U_BOOT_DRIVER(root_driver) = { |
| 423 | .name = "root_driver", |
| 424 | .id = UCLASS_ROOT, |
Simon Glass | 719ea08 | 2020-07-07 13:11:38 -0600 | [diff] [blame] | 425 | ACPI_OPS_PTR(&root_acpi_ops) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 426 | }; |
| 427 | |
| 428 | /* This is the root uclass */ |
| 429 | UCLASS_DRIVER(root) = { |
| 430 | .name = "root", |
| 431 | .id = UCLASS_ROOT, |
| 432 | }; |