Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 Google, Inc |
| 3 | * |
| 4 | * (C) Copyright 2012 |
| 5 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
| 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0+ |
| 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <errno.h> |
Simon Glass | 94f7afd | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 12 | #include <fdtdec.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 13 | #include <malloc.h> |
Simon Glass | 6a6d8fb | 2014-06-11 23:29:48 -0600 | [diff] [blame] | 14 | #include <libfdt.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 15 | #include <dm/device.h> |
| 16 | #include <dm/device-internal.h> |
| 17 | #include <dm/lists.h> |
| 18 | #include <dm/platdata.h> |
Jeroen Hofstee | fd536d8 | 2014-06-25 21:57:45 +0200 | [diff] [blame] | 19 | #include <dm/root.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 20 | #include <dm/uclass.h> |
| 21 | #include <dm/util.h> |
| 22 | #include <linux/list.h> |
| 23 | |
| 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
Stefan Roese | 66eaea6 | 2015-12-14 16:18:15 +0100 | [diff] [blame] | 26 | struct root_priv { |
| 27 | fdt_addr_t translation_offset; /* optional translation offset */ |
| 28 | }; |
| 29 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 30 | static const struct driver_info root_info = { |
| 31 | .name = "root_driver", |
| 32 | }; |
| 33 | |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 34 | struct udevice *dm_root(void) |
Simon Glass | 6494d70 | 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 | |
Stefan Roese | 66eaea6 | 2015-12-14 16:18:15 +0100 | [diff] [blame] | 44 | fdt_addr_t dm_get_translation_offset(void) |
| 45 | { |
| 46 | struct udevice *root = dm_root(); |
| 47 | struct root_priv *priv = dev_get_priv(root); |
| 48 | |
| 49 | return priv->translation_offset; |
| 50 | } |
| 51 | |
| 52 | void dm_set_translation_offset(fdt_addr_t offs) |
| 53 | { |
| 54 | struct udevice *root = dm_root(); |
| 55 | struct root_priv *priv = dev_get_priv(root); |
| 56 | |
| 57 | priv->translation_offset = offs; |
| 58 | } |
| 59 | |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 60 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 61 | void fix_drivers(void) |
| 62 | { |
| 63 | struct driver *drv = |
| 64 | ll_entry_start(struct driver, driver); |
| 65 | const int n_ents = ll_entry_count(struct driver, driver); |
| 66 | struct driver *entry; |
| 67 | |
| 68 | for (entry = drv; entry != drv + n_ents; entry++) { |
| 69 | if (entry->of_match) |
| 70 | entry->of_match = (const struct udevice_id *) |
| 71 | ((u32)entry->of_match + gd->reloc_off); |
| 72 | if (entry->bind) |
| 73 | entry->bind += gd->reloc_off; |
| 74 | if (entry->probe) |
| 75 | entry->probe += gd->reloc_off; |
| 76 | if (entry->remove) |
| 77 | entry->remove += gd->reloc_off; |
| 78 | if (entry->unbind) |
| 79 | entry->unbind += gd->reloc_off; |
| 80 | if (entry->ofdata_to_platdata) |
| 81 | entry->ofdata_to_platdata += gd->reloc_off; |
Michal Simek | 31e1029 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 82 | if (entry->child_post_bind) |
| 83 | entry->child_post_bind += gd->reloc_off; |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 84 | if (entry->child_pre_probe) |
| 85 | entry->child_pre_probe += gd->reloc_off; |
| 86 | if (entry->child_post_remove) |
| 87 | entry->child_post_remove += gd->reloc_off; |
| 88 | /* OPS are fixed in every uclass post_probe function */ |
| 89 | if (entry->ops) |
| 90 | entry->ops += gd->reloc_off; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | void fix_uclass(void) |
| 95 | { |
| 96 | struct uclass_driver *uclass = |
| 97 | ll_entry_start(struct uclass_driver, uclass); |
| 98 | const int n_ents = ll_entry_count(struct uclass_driver, uclass); |
| 99 | struct uclass_driver *entry; |
| 100 | |
| 101 | for (entry = uclass; entry != uclass + n_ents; entry++) { |
| 102 | if (entry->post_bind) |
| 103 | entry->post_bind += gd->reloc_off; |
| 104 | if (entry->pre_unbind) |
| 105 | entry->pre_unbind += gd->reloc_off; |
Michal Simek | 31e1029 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 106 | if (entry->pre_probe) |
| 107 | entry->pre_probe += gd->reloc_off; |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 108 | if (entry->post_probe) |
| 109 | entry->post_probe += gd->reloc_off; |
| 110 | if (entry->pre_remove) |
| 111 | entry->pre_remove += gd->reloc_off; |
Michal Simek | 31e1029 | 2015-10-27 13:48:08 +0100 | [diff] [blame] | 112 | if (entry->child_post_bind) |
| 113 | entry->child_post_bind += gd->reloc_off; |
| 114 | if (entry->child_pre_probe) |
| 115 | entry->child_pre_probe += gd->reloc_off; |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 116 | if (entry->init) |
| 117 | entry->init += gd->reloc_off; |
| 118 | if (entry->destroy) |
| 119 | entry->destroy += gd->reloc_off; |
| 120 | /* FIXME maybe also need to fix these ops */ |
| 121 | if (entry->ops) |
| 122 | entry->ops += gd->reloc_off; |
| 123 | } |
| 124 | } |
| 125 | #endif |
| 126 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 127 | int dm_init(void) |
| 128 | { |
| 129 | int ret; |
| 130 | |
| 131 | if (gd->dm_root) { |
| 132 | dm_warn("Virtual root driver already exists!\n"); |
| 133 | return -EINVAL; |
| 134 | } |
Simon Glass | 89876a5 | 2014-06-11 23:29:49 -0600 | [diff] [blame] | 135 | INIT_LIST_HEAD(&DM_UCLASS_ROOT_NON_CONST); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 136 | |
Michal Simek | 484fdf5 | 2015-02-02 16:31:59 +0100 | [diff] [blame] | 137 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
| 138 | fix_drivers(); |
| 139 | fix_uclass(); |
| 140 | #endif |
| 141 | |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 142 | 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] | 143 | if (ret) |
| 144 | return ret; |
Masahiro Yamada | 0f92582 | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 145 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 2f3b95d | 2015-01-25 08:26:58 -0700 | [diff] [blame] | 146 | DM_ROOT_NON_CONST->of_offset = 0; |
| 147 | #endif |
Simon Glass | 7497812 | 2014-07-23 06:55:00 -0600 | [diff] [blame] | 148 | ret = device_probe(DM_ROOT_NON_CONST); |
| 149 | if (ret) |
| 150 | return ret; |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 151 | |
| 152 | return 0; |
| 153 | } |
| 154 | |
Simon Glass | 9adbd7a | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 155 | int dm_uninit(void) |
| 156 | { |
| 157 | device_remove(dm_root()); |
| 158 | device_unbind(dm_root()); |
| 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 163 | int dm_scan_platdata(bool pre_reloc_only) |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 164 | { |
| 165 | int ret; |
| 166 | |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 167 | ret = lists_bind_drivers(DM_ROOT_NON_CONST, pre_reloc_only); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 168 | if (ret == -ENOENT) { |
| 169 | dm_warn("Some drivers were not found\n"); |
| 170 | ret = 0; |
| 171 | } |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 172 | |
Masahiro Yamada | cbf86d7 | 2014-11-17 17:19:38 +0900 | [diff] [blame] | 173 | return ret; |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Masahiro Yamada | 0f92582 | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 176 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 177 | int dm_scan_fdt_node(struct udevice *parent, const void *blob, int offset, |
| 178 | bool pre_reloc_only) |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 179 | { |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 180 | int ret = 0, err; |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 181 | |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 182 | for (offset = fdt_first_subnode(blob, offset); |
| 183 | offset > 0; |
| 184 | offset = fdt_next_subnode(blob, offset)) { |
| 185 | if (pre_reloc_only && |
| 186 | !fdt_getprop(blob, offset, "u-boot,dm-pre-reloc", NULL)) |
| 187 | continue; |
Simon Glass | 94f7afd | 2015-01-25 08:27:16 -0700 | [diff] [blame] | 188 | if (!fdtdec_get_is_enabled(blob, offset)) { |
| 189 | dm_dbg(" - ignoring disabled device\n"); |
| 190 | continue; |
| 191 | } |
Simon Glass | 1f359e3 | 2014-09-04 16:27:25 -0600 | [diff] [blame] | 192 | err = lists_bind_fdt(parent, blob, offset, NULL); |
Simon Glass | bc7b2f4 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 193 | if (err && !ret) { |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 194 | ret = err; |
Simon Glass | bc7b2f4 | 2015-08-30 16:55:17 -0600 | [diff] [blame] | 195 | debug("%s: ret=%d\n", fdt_get_name(blob, offset, NULL), |
| 196 | ret); |
| 197 | } |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 198 | } |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 199 | |
| 200 | if (ret) |
| 201 | dm_warn("Some drivers failed to bind\n"); |
| 202 | |
| 203 | return ret; |
| 204 | } |
Simon Glass | 1ca7e20 | 2014-07-23 06:55:18 -0600 | [diff] [blame] | 205 | |
| 206 | int dm_scan_fdt(const void *blob, bool pre_reloc_only) |
| 207 | { |
| 208 | return dm_scan_fdt_node(gd->dm_root, blob, 0, pre_reloc_only); |
| 209 | } |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 210 | #endif |
| 211 | |
Simon Glass | bb58503 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 212 | __weak int dm_scan_other(bool pre_reloc_only) |
| 213 | { |
| 214 | return 0; |
| 215 | } |
| 216 | |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 217 | int dm_init_and_scan(bool pre_reloc_only) |
| 218 | { |
| 219 | int ret; |
| 220 | |
| 221 | ret = dm_init(); |
| 222 | if (ret) { |
| 223 | debug("dm_init() failed: %d\n", ret); |
| 224 | return ret; |
| 225 | } |
| 226 | ret = dm_scan_platdata(pre_reloc_only); |
| 227 | if (ret) { |
| 228 | debug("dm_scan_platdata() failed: %d\n", ret); |
| 229 | return ret; |
| 230 | } |
Simon Glass | b2b0d3e | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 231 | |
Masahiro Yamada | 0f92582 | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 232 | if (CONFIG_IS_ENABLED(OF_CONTROL)) { |
Simon Glass | b2b0d3e | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 233 | ret = dm_scan_fdt(gd->fdt_blob, pre_reloc_only); |
| 234 | if (ret) { |
| 235 | debug("dm_scan_fdt() failed: %d\n", ret); |
| 236 | return ret; |
| 237 | } |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 238 | } |
Simon Glass | b2b0d3e | 2015-02-27 22:06:41 -0700 | [diff] [blame] | 239 | |
Simon Glass | bb58503 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 240 | ret = dm_scan_other(pre_reloc_only); |
| 241 | if (ret) |
| 242 | return ret; |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 243 | |
| 244 | return 0; |
| 245 | } |
| 246 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 247 | /* This is the root driver - all drivers are children of this */ |
| 248 | U_BOOT_DRIVER(root_driver) = { |
| 249 | .name = "root_driver", |
| 250 | .id = UCLASS_ROOT, |
Stefan Roese | 66eaea6 | 2015-12-14 16:18:15 +0100 | [diff] [blame] | 251 | .priv_auto_alloc_size = sizeof(struct root_priv), |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | /* This is the root uclass */ |
| 255 | UCLASS_DRIVER(root) = { |
| 256 | .name = "root", |
| 257 | .id = UCLASS_ROOT, |
| 258 | }; |