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 | * Device manager |
| 4 | * |
| 5 | * Copyright (c) 2013 Google, Inc |
| 6 | * |
| 7 | * (C) Copyright 2012 |
| 8 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 12 | #include <cpu_func.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Vignesh R | 0dff370 | 2016-07-06 09:58:55 +0530 | [diff] [blame] | 14 | #include <asm/io.h> |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 15 | #include <clk.h> |
Simon Glass | db6f020 | 2014-07-23 06:55:12 -0600 | [diff] [blame] | 16 | #include <fdtdec.h> |
Stefan Roese | adc0905 | 2015-09-02 07:41:12 +0200 | [diff] [blame] | 17 | #include <fdt_support.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 18 | #include <malloc.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 19 | #include <asm/cache.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> |
Mario Six | 1f1c1ec | 2018-01-15 11:07:20 +0100 | [diff] [blame] | 23 | #include <dm/of_access.h> |
Masahiro Yamada | f8efa63 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 24 | #include <dm/pinctrl.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 25 | #include <dm/platdata.h> |
Simon Glass | 322b290 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 26 | #include <dm/read.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 27 | #include <dm/uclass.h> |
| 28 | #include <dm/uclass-internal.h> |
| 29 | #include <dm/util.h> |
| 30 | #include <linux/err.h> |
| 31 | #include <linux/list.h> |
Peng Fan | 6fba32d | 2018-07-27 10:20:38 +0800 | [diff] [blame] | 32 | #include <power-domain.h> |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 33 | |
Simon Glass | db6f020 | 2014-07-23 06:55:12 -0600 | [diff] [blame] | 34 | DECLARE_GLOBAL_DATA_PTR; |
| 35 | |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 36 | static int device_bind_common(struct udevice *parent, const struct driver *drv, |
| 37 | const char *name, void *platdata, |
Simon Glass | b0cf4b3 | 2017-05-17 17:18:11 -0600 | [diff] [blame] | 38 | ulong driver_data, ofnode node, |
Simon Glass | afbf9b8 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 39 | uint of_platdata_size, struct udevice **devp) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 40 | { |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 41 | struct udevice *dev; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 42 | struct uclass *uc; |
Przemyslaw Marczak | d850e67 | 2015-04-15 13:07:18 +0200 | [diff] [blame] | 43 | int size, ret = 0; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 44 | |
Masahiro Yamada | e1cc1f0 | 2015-08-27 12:44:28 +0900 | [diff] [blame] | 45 | if (devp) |
| 46 | *devp = NULL; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 47 | if (!name) |
| 48 | return -EINVAL; |
| 49 | |
| 50 | ret = uclass_get(drv->id, &uc); |
Simon Glass | 43313de | 2015-08-30 16:55:16 -0600 | [diff] [blame] | 51 | if (ret) { |
| 52 | debug("Missing uclass for driver %s\n", drv->name); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 53 | return ret; |
Simon Glass | 43313de | 2015-08-30 16:55:16 -0600 | [diff] [blame] | 54 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 55 | |
Heiko Schocher | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 56 | dev = calloc(1, sizeof(struct udevice)); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 57 | if (!dev) |
| 58 | return -ENOMEM; |
| 59 | |
| 60 | INIT_LIST_HEAD(&dev->sibling_node); |
| 61 | INIT_LIST_HEAD(&dev->child_head); |
| 62 | INIT_LIST_HEAD(&dev->uclass_node); |
Masahiro Yamada | 029bfca | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 63 | #ifdef CONFIG_DEVRES |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 64 | INIT_LIST_HEAD(&dev->devres_head); |
Masahiro Yamada | 029bfca | 2015-07-25 21:52:37 +0900 | [diff] [blame] | 65 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 66 | dev->platdata = platdata; |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 67 | dev->driver_data = driver_data; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 68 | dev->name = name; |
Simon Glass | b0cf4b3 | 2017-05-17 17:18:11 -0600 | [diff] [blame] | 69 | dev->node = node; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 70 | dev->parent = parent; |
| 71 | dev->driver = drv; |
| 72 | dev->uclass = uc; |
Simon Glass | db6f020 | 2014-07-23 06:55:12 -0600 | [diff] [blame] | 73 | |
Simon Glass | db6f020 | 2014-07-23 06:55:12 -0600 | [diff] [blame] | 74 | dev->seq = -1; |
Simon Glass | 0ccb097 | 2015-01-25 08:27:05 -0700 | [diff] [blame] | 75 | dev->req_seq = -1; |
Jean-Jacques Hiblot | a5da300 | 2018-12-07 14:50:39 +0100 | [diff] [blame] | 76 | if (CONFIG_IS_ENABLED(DM_SEQ_ALIAS) && |
| 77 | (uc->uc_drv->flags & DM_UC_FLAG_SEQ_ALIAS)) { |
Simon Glass | 1bd3deb | 2015-02-27 22:06:30 -0700 | [diff] [blame] | 78 | /* |
Stefan Roese | 9d4ce6b | 2016-03-16 09:58:01 +0100 | [diff] [blame] | 79 | * Some devices, such as a SPI bus, I2C bus and serial ports |
| 80 | * are numbered using aliases. |
| 81 | * |
| 82 | * This is just a 'requested' sequence, and will be |
| 83 | * resolved (and ->seq updated) when the device is probed. |
| 84 | */ |
Simon Glass | e422f8c | 2020-07-09 18:39:24 -0600 | [diff] [blame] | 85 | if (CONFIG_IS_ENABLED(OF_CONTROL) && |
| 86 | !CONFIG_IS_ENABLED(OF_PLATDATA)) { |
Jean-Jacques Hiblot | a5da300 | 2018-12-07 14:50:39 +0100 | [diff] [blame] | 87 | if (uc->uc_drv->name && ofnode_valid(node)) |
Simon Glass | 322b290 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 88 | dev_read_alias_seq(dev, &dev->req_seq); |
Thomas Fitzsimmons | f327ecb | 2019-09-06 07:51:18 -0400 | [diff] [blame] | 89 | #if CONFIG_IS_ENABLED(OF_PRIOR_STAGE) |
| 90 | if (dev->req_seq == -1) |
| 91 | dev->req_seq = |
| 92 | uclass_find_next_free_req_seq(drv->id); |
| 93 | #endif |
Jean-Jacques Hiblot | a5da300 | 2018-12-07 14:50:39 +0100 | [diff] [blame] | 94 | } else { |
| 95 | dev->req_seq = uclass_find_next_free_req_seq(drv->id); |
Simon Glass | 0ccb097 | 2015-01-25 08:27:05 -0700 | [diff] [blame] | 96 | } |
Simon Glass | db6f020 | 2014-07-23 06:55:12 -0600 | [diff] [blame] | 97 | } |
Simon Glass | 1bd3deb | 2015-02-27 22:06:30 -0700 | [diff] [blame] | 98 | |
Simon Glass | afbf9b8 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 99 | if (drv->platdata_auto_alloc_size) { |
| 100 | bool alloc = !platdata; |
| 101 | |
| 102 | if (CONFIG_IS_ENABLED(OF_PLATDATA)) { |
| 103 | if (of_platdata_size) { |
| 104 | dev->flags |= DM_FLAG_OF_PLATDATA; |
| 105 | if (of_platdata_size < |
| 106 | drv->platdata_auto_alloc_size) |
| 107 | alloc = true; |
| 108 | } |
| 109 | } |
| 110 | if (alloc) { |
| 111 | dev->flags |= DM_FLAG_ALLOC_PDATA; |
| 112 | dev->platdata = calloc(1, |
| 113 | drv->platdata_auto_alloc_size); |
| 114 | if (!dev->platdata) { |
| 115 | ret = -ENOMEM; |
| 116 | goto fail_alloc1; |
| 117 | } |
| 118 | if (CONFIG_IS_ENABLED(OF_PLATDATA) && platdata) { |
| 119 | memcpy(dev->platdata, platdata, |
| 120 | of_platdata_size); |
| 121 | } |
Simon Glass | ba75049 | 2015-01-25 08:27:00 -0700 | [diff] [blame] | 122 | } |
| 123 | } |
Przemyslaw Marczak | d850e67 | 2015-04-15 13:07:18 +0200 | [diff] [blame] | 124 | |
| 125 | size = uc->uc_drv->per_device_platdata_auto_alloc_size; |
| 126 | if (size) { |
| 127 | dev->flags |= DM_FLAG_ALLOC_UCLASS_PDATA; |
| 128 | dev->uclass_platdata = calloc(1, size); |
| 129 | if (!dev->uclass_platdata) { |
| 130 | ret = -ENOMEM; |
| 131 | goto fail_alloc2; |
| 132 | } |
| 133 | } |
Simon Glass | 11b6173 | 2015-01-25 08:27:01 -0700 | [diff] [blame] | 134 | |
Przemyslaw Marczak | d850e67 | 2015-04-15 13:07:18 +0200 | [diff] [blame] | 135 | if (parent) { |
| 136 | size = parent->driver->per_child_platdata_auto_alloc_size; |
Simon Glass | 57f9540 | 2015-01-25 08:27:02 -0700 | [diff] [blame] | 137 | if (!size) { |
| 138 | size = parent->uclass->uc_drv-> |
| 139 | per_child_platdata_auto_alloc_size; |
| 140 | } |
Simon Glass | 11b6173 | 2015-01-25 08:27:01 -0700 | [diff] [blame] | 141 | if (size) { |
| 142 | dev->flags |= DM_FLAG_ALLOC_PARENT_PDATA; |
| 143 | dev->parent_platdata = calloc(1, size); |
| 144 | if (!dev->parent_platdata) { |
| 145 | ret = -ENOMEM; |
Przemyslaw Marczak | d850e67 | 2015-04-15 13:07:18 +0200 | [diff] [blame] | 146 | goto fail_alloc3; |
Simon Glass | 11b6173 | 2015-01-25 08:27:01 -0700 | [diff] [blame] | 147 | } |
| 148 | } |
Heinrich Schuchardt | 5246b37 | 2020-02-15 21:38:48 +0100 | [diff] [blame] | 149 | /* put dev into parent's successor list */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 150 | list_add_tail(&dev->sibling_node, &parent->child_head); |
Heinrich Schuchardt | 5246b37 | 2020-02-15 21:38:48 +0100 | [diff] [blame] | 151 | } |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 152 | |
| 153 | ret = uclass_bind_device(dev); |
| 154 | if (ret) |
Simon Glass | 4ebe01b | 2015-01-25 08:26:59 -0700 | [diff] [blame] | 155 | goto fail_uclass_bind; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 156 | |
| 157 | /* if we fail to bind we remove device from successors and free it */ |
| 158 | if (drv->bind) { |
| 159 | ret = drv->bind(dev); |
Simon Glass | 4ebe01b | 2015-01-25 08:26:59 -0700 | [diff] [blame] | 160 | if (ret) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 161 | goto fail_bind; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 162 | } |
Simon Glass | a4a51a0 | 2015-01-25 08:27:03 -0700 | [diff] [blame] | 163 | if (parent && parent->driver->child_post_bind) { |
| 164 | ret = parent->driver->child_post_bind(dev); |
| 165 | if (ret) |
| 166 | goto fail_child_post_bind; |
| 167 | } |
Simon Glass | 286863d | 2016-01-05 09:30:59 -0700 | [diff] [blame] | 168 | if (uc->uc_drv->post_bind) { |
| 169 | ret = uc->uc_drv->post_bind(dev); |
| 170 | if (ret) |
| 171 | goto fail_uclass_post_bind; |
| 172 | } |
Simon Glass | a4a51a0 | 2015-01-25 08:27:03 -0700 | [diff] [blame] | 173 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 174 | if (parent) |
Masahiro Yamada | f70f39f | 2017-09-29 12:31:20 +0900 | [diff] [blame] | 175 | pr_debug("Bound device %s to %s\n", dev->name, parent->name); |
Masahiro Yamada | e1cc1f0 | 2015-08-27 12:44:28 +0900 | [diff] [blame] | 176 | if (devp) |
| 177 | *devp = dev; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 178 | |
Masahiro Yamada | bdbb5dd | 2015-07-25 21:52:34 +0900 | [diff] [blame] | 179 | dev->flags |= DM_FLAG_BOUND; |
| 180 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 181 | return 0; |
| 182 | |
Simon Glass | 286863d | 2016-01-05 09:30:59 -0700 | [diff] [blame] | 183 | fail_uclass_post_bind: |
| 184 | /* There is no child unbind() method, so no clean-up required */ |
Simon Glass | a4a51a0 | 2015-01-25 08:27:03 -0700 | [diff] [blame] | 185 | fail_child_post_bind: |
Masahiro Yamada | 04aa00d | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 186 | if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) { |
Simon Glass | e70a4f4 | 2015-02-27 22:06:33 -0700 | [diff] [blame] | 187 | if (drv->unbind && drv->unbind(dev)) { |
| 188 | dm_warn("unbind() method failed on dev '%s' on error path\n", |
| 189 | dev->name); |
| 190 | } |
Simon Glass | a4a51a0 | 2015-01-25 08:27:03 -0700 | [diff] [blame] | 191 | } |
| 192 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 193 | fail_bind: |
Masahiro Yamada | 04aa00d | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 194 | if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) { |
Simon Glass | e70a4f4 | 2015-02-27 22:06:33 -0700 | [diff] [blame] | 195 | if (uclass_unbind_device(dev)) { |
| 196 | dm_warn("Failed to unbind dev '%s' on error path\n", |
| 197 | dev->name); |
| 198 | } |
Simon Glass | 4ebe01b | 2015-01-25 08:26:59 -0700 | [diff] [blame] | 199 | } |
| 200 | fail_uclass_bind: |
Masahiro Yamada | 04aa00d | 2015-08-12 07:31:52 +0900 | [diff] [blame] | 201 | if (CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)) { |
Simon Glass | e70a4f4 | 2015-02-27 22:06:33 -0700 | [diff] [blame] | 202 | list_del(&dev->sibling_node); |
| 203 | if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) { |
| 204 | free(dev->parent_platdata); |
| 205 | dev->parent_platdata = NULL; |
| 206 | } |
Simon Glass | 11b6173 | 2015-01-25 08:27:01 -0700 | [diff] [blame] | 207 | } |
Przemyslaw Marczak | d850e67 | 2015-04-15 13:07:18 +0200 | [diff] [blame] | 208 | fail_alloc3: |
| 209 | if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) { |
| 210 | free(dev->uclass_platdata); |
| 211 | dev->uclass_platdata = NULL; |
| 212 | } |
Simon Glass | 11b6173 | 2015-01-25 08:27:01 -0700 | [diff] [blame] | 213 | fail_alloc2: |
Simon Glass | ba75049 | 2015-01-25 08:27:00 -0700 | [diff] [blame] | 214 | if (dev->flags & DM_FLAG_ALLOC_PDATA) { |
| 215 | free(dev->platdata); |
| 216 | dev->platdata = NULL; |
| 217 | } |
| 218 | fail_alloc1: |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 219 | devres_release_all(dev); |
| 220 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 221 | free(dev); |
Simon Glass | 4ebe01b | 2015-01-25 08:26:59 -0700 | [diff] [blame] | 222 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 223 | return ret; |
| 224 | } |
| 225 | |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 226 | int device_bind_with_driver_data(struct udevice *parent, |
| 227 | const struct driver *drv, const char *name, |
Simon Glass | 322b290 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 228 | ulong driver_data, ofnode node, |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 229 | struct udevice **devp) |
| 230 | { |
Simon Glass | 322b290 | 2017-05-18 20:09:05 -0600 | [diff] [blame] | 231 | return device_bind_common(parent, drv, name, NULL, driver_data, node, |
| 232 | 0, devp); |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | int device_bind(struct udevice *parent, const struct driver *drv, |
| 236 | const char *name, void *platdata, int of_offset, |
| 237 | struct udevice **devp) |
| 238 | { |
Simon Glass | b0cf4b3 | 2017-05-17 17:18:11 -0600 | [diff] [blame] | 239 | return device_bind_common(parent, drv, name, platdata, 0, |
| 240 | offset_to_ofnode(of_offset), 0, devp); |
Stephen Warren | 8c93df1 | 2016-05-11 15:26:24 -0600 | [diff] [blame] | 241 | } |
| 242 | |
Simon Glass | 9eb151e | 2018-06-11 13:07:15 -0600 | [diff] [blame] | 243 | int device_bind_ofnode(struct udevice *parent, const struct driver *drv, |
| 244 | const char *name, void *platdata, ofnode node, |
| 245 | struct udevice **devp) |
| 246 | { |
| 247 | return device_bind_common(parent, drv, name, platdata, 0, node, 0, |
| 248 | devp); |
| 249 | } |
| 250 | |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 251 | int device_bind_by_name(struct udevice *parent, bool pre_reloc_only, |
Walter Lozano | 95282d6 | 2020-06-25 01:10:10 -0300 | [diff] [blame] | 252 | struct driver_info *info, struct udevice **devp) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 253 | { |
| 254 | struct driver *drv; |
Simon Glass | afbf9b8 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 255 | uint platdata_size = 0; |
Walter Lozano | ffc41b0 | 2020-06-25 01:10:11 -0300 | [diff] [blame] | 256 | int ret; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 257 | |
| 258 | drv = lists_driver_lookup_name(info->name); |
| 259 | if (!drv) |
| 260 | return -ENOENT; |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 261 | if (pre_reloc_only && !(drv->flags & DM_FLAG_PRE_RELOC)) |
| 262 | return -EPERM; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 263 | |
Simon Glass | afbf9b8 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 264 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
| 265 | platdata_size = info->platdata_size; |
| 266 | #endif |
Walter Lozano | ffc41b0 | 2020-06-25 01:10:11 -0300 | [diff] [blame] | 267 | ret = device_bind_common(parent, drv, info->name, |
| 268 | (void *)info->platdata, 0, ofnode_null(), |
| 269 | platdata_size, devp); |
| 270 | if (ret) |
| 271 | return ret; |
| 272 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
| 273 | info->dev = *devp; |
| 274 | #endif |
| 275 | |
| 276 | return ret; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 277 | } |
| 278 | |
Simon Glass | 825d3f9 | 2015-03-25 12:21:53 -0600 | [diff] [blame] | 279 | static void *alloc_priv(int size, uint flags) |
| 280 | { |
| 281 | void *priv; |
| 282 | |
| 283 | if (flags & DM_FLAG_ALLOC_PRIV_DMA) { |
Faiz Abbas | 03020a9 | 2017-09-19 16:53:50 +0530 | [diff] [blame] | 284 | size = ROUND(size, ARCH_DMA_MINALIGN); |
Simon Glass | 825d3f9 | 2015-03-25 12:21:53 -0600 | [diff] [blame] | 285 | priv = memalign(ARCH_DMA_MINALIGN, size); |
Simon Glass | 27bc9b1 | 2017-04-04 13:00:19 -0600 | [diff] [blame] | 286 | if (priv) { |
Simon Glass | 825d3f9 | 2015-03-25 12:21:53 -0600 | [diff] [blame] | 287 | memset(priv, '\0', size); |
Simon Glass | 27bc9b1 | 2017-04-04 13:00:19 -0600 | [diff] [blame] | 288 | |
| 289 | /* |
| 290 | * Ensure that the zero bytes are flushed to memory. |
| 291 | * This prevents problems if the driver uses this as |
| 292 | * both an input and an output buffer: |
| 293 | * |
| 294 | * 1. Zeroes written to buffer (here) and sit in the |
| 295 | * cache |
| 296 | * 2. Driver issues a read command to DMA |
| 297 | * 3. CPU runs out of cache space and evicts some cache |
| 298 | * data in the buffer, writing zeroes to RAM from |
| 299 | * the memset() above |
| 300 | * 4. DMA completes |
| 301 | * 5. Buffer now has some DMA data and some zeroes |
| 302 | * 6. Data being read is now incorrect |
| 303 | * |
| 304 | * To prevent this, ensure that the cache is clean |
| 305 | * within this range at the start. The driver can then |
| 306 | * use normal flush-after-write, invalidate-before-read |
| 307 | * procedures. |
| 308 | * |
| 309 | * TODO(sjg@chromium.org): Drop this microblaze |
| 310 | * exception. |
| 311 | */ |
| 312 | #ifndef CONFIG_MICROBLAZE |
| 313 | flush_dcache_range((ulong)priv, (ulong)priv + size); |
| 314 | #endif |
| 315 | } |
Simon Glass | 825d3f9 | 2015-03-25 12:21:53 -0600 | [diff] [blame] | 316 | } else { |
| 317 | priv = calloc(1, size); |
| 318 | } |
| 319 | |
| 320 | return priv; |
| 321 | } |
| 322 | |
Simon Glass | 4a26385 | 2019-12-29 21:19:20 -0700 | [diff] [blame] | 323 | int device_ofdata_to_platdata(struct udevice *dev) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 324 | { |
Simon Glass | a626dff | 2015-03-25 12:21:54 -0600 | [diff] [blame] | 325 | const struct driver *drv; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 326 | int size = 0; |
| 327 | int ret; |
| 328 | |
| 329 | if (!dev) |
| 330 | return -EINVAL; |
| 331 | |
Simon Glass | d3c9d30 | 2019-12-29 21:19:21 -0700 | [diff] [blame] | 332 | if (dev->flags & DM_FLAG_PLATDATA_VALID) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 333 | return 0; |
| 334 | |
Simon Glass | 44c4789 | 2020-04-05 15:38:19 -0600 | [diff] [blame] | 335 | /* Ensure all parents have ofdata */ |
| 336 | if (dev->parent) { |
| 337 | ret = device_ofdata_to_platdata(dev->parent); |
| 338 | if (ret) |
| 339 | goto fail; |
| 340 | |
| 341 | /* |
| 342 | * The device might have already been probed during |
| 343 | * the call to device_probe() on its parent device |
| 344 | * (e.g. PCI bridge devices). Test the flags again |
| 345 | * so that we don't mess up the device. |
| 346 | */ |
| 347 | if (dev->flags & DM_FLAG_PLATDATA_VALID) |
| 348 | return 0; |
| 349 | } |
| 350 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 351 | drv = dev->driver; |
| 352 | assert(drv); |
| 353 | |
Bin Meng | 82cdd78 | 2015-08-24 01:14:02 -0700 | [diff] [blame] | 354 | /* Allocate private data if requested and not reentered */ |
| 355 | if (drv->priv_auto_alloc_size && !dev->priv) { |
Simon Glass | 825d3f9 | 2015-03-25 12:21:53 -0600 | [diff] [blame] | 356 | dev->priv = alloc_priv(drv->priv_auto_alloc_size, drv->flags); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 357 | if (!dev->priv) { |
| 358 | ret = -ENOMEM; |
| 359 | goto fail; |
| 360 | } |
| 361 | } |
Bin Meng | 82cdd78 | 2015-08-24 01:14:02 -0700 | [diff] [blame] | 362 | /* Allocate private data if requested and not reentered */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 363 | size = dev->uclass->uc_drv->per_device_auto_alloc_size; |
Bin Meng | 82cdd78 | 2015-08-24 01:14:02 -0700 | [diff] [blame] | 364 | if (size && !dev->uclass_priv) { |
Simon Glass | 7ebd13d | 2018-10-01 12:22:05 -0600 | [diff] [blame] | 365 | dev->uclass_priv = alloc_priv(size, |
| 366 | dev->uclass->uc_drv->flags); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 367 | if (!dev->uclass_priv) { |
| 368 | ret = -ENOMEM; |
| 369 | goto fail; |
| 370 | } |
| 371 | } |
| 372 | |
Simon Glass | a8d8f16 | 2019-12-29 21:19:18 -0700 | [diff] [blame] | 373 | /* Allocate parent data for this child */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 374 | if (dev->parent) { |
Simon Glass | 60d971b | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 375 | size = dev->parent->driver->per_child_auto_alloc_size; |
Simon Glass | c23b428 | 2015-01-25 08:27:06 -0700 | [diff] [blame] | 376 | if (!size) { |
| 377 | size = dev->parent->uclass->uc_drv-> |
| 378 | per_child_auto_alloc_size; |
| 379 | } |
Bin Meng | 82cdd78 | 2015-08-24 01:14:02 -0700 | [diff] [blame] | 380 | if (size && !dev->parent_priv) { |
Simon Glass | 825d3f9 | 2015-03-25 12:21:53 -0600 | [diff] [blame] | 381 | dev->parent_priv = alloc_priv(size, drv->flags); |
Simon Glass | 60d971b | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 382 | if (!dev->parent_priv) { |
| 383 | ret = -ENOMEM; |
| 384 | goto fail; |
| 385 | } |
| 386 | } |
Simon Glass | a8d8f16 | 2019-12-29 21:19:18 -0700 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | if (drv->ofdata_to_platdata && |
| 390 | (CONFIG_IS_ENABLED(OF_PLATDATA) || dev_has_of_node(dev))) { |
| 391 | ret = drv->ofdata_to_platdata(dev); |
| 392 | if (ret) |
| 393 | goto fail; |
| 394 | } |
Simon Glass | 60d971b | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 395 | |
Simon Glass | d3c9d30 | 2019-12-29 21:19:21 -0700 | [diff] [blame] | 396 | dev->flags |= DM_FLAG_PLATDATA_VALID; |
| 397 | |
Simon Glass | 4a26385 | 2019-12-29 21:19:20 -0700 | [diff] [blame] | 398 | return 0; |
| 399 | fail: |
| 400 | device_free(dev); |
| 401 | |
| 402 | return ret; |
| 403 | } |
| 404 | |
| 405 | int device_probe(struct udevice *dev) |
| 406 | { |
| 407 | const struct driver *drv; |
| 408 | int ret; |
| 409 | int seq; |
| 410 | |
| 411 | if (!dev) |
| 412 | return -EINVAL; |
| 413 | |
| 414 | if (dev->flags & DM_FLAG_ACTIVATED) |
| 415 | return 0; |
| 416 | |
| 417 | drv = dev->driver; |
| 418 | assert(drv); |
| 419 | |
| 420 | ret = device_ofdata_to_platdata(dev); |
| 421 | if (ret) |
| 422 | goto fail; |
| 423 | |
Simon Glass | a8d8f16 | 2019-12-29 21:19:18 -0700 | [diff] [blame] | 424 | /* Ensure all parents are probed */ |
| 425 | if (dev->parent) { |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 426 | ret = device_probe(dev->parent); |
| 427 | if (ret) |
| 428 | goto fail; |
Bin Meng | 82cdd78 | 2015-08-24 01:14:02 -0700 | [diff] [blame] | 429 | |
| 430 | /* |
| 431 | * The device might have already been probed during |
| 432 | * the call to device_probe() on its parent device |
| 433 | * (e.g. PCI bridge devices). Test the flags again |
| 434 | * so that we don't mess up the device. |
| 435 | */ |
| 436 | if (dev->flags & DM_FLAG_ACTIVATED) |
| 437 | return 0; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 438 | } |
Simon Glass | db6f020 | 2014-07-23 06:55:12 -0600 | [diff] [blame] | 439 | |
| 440 | seq = uclass_resolve_seq(dev); |
| 441 | if (seq < 0) { |
| 442 | ret = seq; |
| 443 | goto fail; |
| 444 | } |
| 445 | dev->seq = seq; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 446 | |
Simon Glass | 8b04e73 | 2015-03-25 12:21:56 -0600 | [diff] [blame] | 447 | dev->flags |= DM_FLAG_ACTIVATED; |
| 448 | |
Simon Glass | bb53bda | 2015-09-12 08:45:19 -0600 | [diff] [blame] | 449 | /* |
| 450 | * Process pinctrl for everything except the root device, and |
Simon Glass | 27ce962 | 2016-01-21 19:43:25 -0700 | [diff] [blame] | 451 | * continue regardless of the result of pinctrl. Don't process pinctrl |
| 452 | * settings for pinctrl devices since the device may not yet be |
| 453 | * probed. |
Simon Glass | bb53bda | 2015-09-12 08:45:19 -0600 | [diff] [blame] | 454 | */ |
Simon Glass | 27ce962 | 2016-01-21 19:43:25 -0700 | [diff] [blame] | 455 | if (dev->parent && device_get_uclass_id(dev) != UCLASS_PINCTRL) |
Simon Glass | bb53bda | 2015-09-12 08:45:19 -0600 | [diff] [blame] | 456 | pinctrl_select_state(dev, "default"); |
Masahiro Yamada | f8efa63 | 2015-08-27 12:44:29 +0900 | [diff] [blame] | 457 | |
Anatolij Gustschin | 63a3467 | 2019-07-14 21:11:01 +0200 | [diff] [blame] | 458 | if (CONFIG_IS_ENABLED(POWER_DOMAIN) && dev->parent && |
Lokesh Vutla | c10e52b | 2019-09-27 13:48:12 +0530 | [diff] [blame] | 459 | (device_get_uclass_id(dev) != UCLASS_POWER_DOMAIN) && |
| 460 | !(drv->flags & DM_FLAG_DEFAULT_PD_CTRL_OFF)) { |
Peng Fan | d220111 | 2019-09-17 09:29:22 +0000 | [diff] [blame] | 461 | ret = dev_power_domain_on(dev); |
| 462 | if (ret) |
| 463 | goto fail; |
Peng Fan | 6fba32d | 2018-07-27 10:20:38 +0800 | [diff] [blame] | 464 | } |
| 465 | |
Simon Glass | 9c1f382 | 2015-03-05 12:25:22 -0700 | [diff] [blame] | 466 | ret = uclass_pre_probe_device(dev); |
Simon Glass | 5104b98 | 2015-01-25 08:27:10 -0700 | [diff] [blame] | 467 | if (ret) |
| 468 | goto fail; |
| 469 | |
Simon Glass | d45560d | 2014-07-23 06:55:21 -0600 | [diff] [blame] | 470 | if (dev->parent && dev->parent->driver->child_pre_probe) { |
| 471 | ret = dev->parent->driver->child_pre_probe(dev); |
| 472 | if (ret) |
| 473 | goto fail; |
| 474 | } |
| 475 | |
Bin Meng | 513cf40 | 2019-07-05 09:23:16 -0700 | [diff] [blame] | 476 | /* Only handle devices that have a valid ofnode */ |
| 477 | if (dev_of_valid(dev)) { |
| 478 | /* |
| 479 | * Process 'assigned-{clocks/clock-parents/clock-rates}' |
| 480 | * properties |
| 481 | */ |
Jean-Jacques Hiblot | 9601f32 | 2019-10-22 14:00:06 +0200 | [diff] [blame] | 482 | ret = clk_set_defaults(dev, 0); |
Bin Meng | 513cf40 | 2019-07-05 09:23:16 -0700 | [diff] [blame] | 483 | if (ret) |
| 484 | goto fail; |
| 485 | } |
Philipp Tomsich | 9cf03b0 | 2018-01-08 13:59:18 +0100 | [diff] [blame] | 486 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 487 | if (drv->probe) { |
| 488 | ret = drv->probe(dev); |
Simon Glass | 9046dec | 2019-12-29 21:19:16 -0700 | [diff] [blame] | 489 | if (ret) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 490 | goto fail; |
| 491 | } |
| 492 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 493 | ret = uclass_post_probe_device(dev); |
Simon Glass | 8b04e73 | 2015-03-25 12:21:56 -0600 | [diff] [blame] | 494 | if (ret) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 495 | goto fail_uclass; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 496 | |
Peng Fan | 7cf58dd | 2016-03-12 13:17:38 +0800 | [diff] [blame] | 497 | if (dev->parent && device_get_uclass_id(dev) == UCLASS_PINCTRL) |
| 498 | pinctrl_select_state(dev, "default"); |
| 499 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 500 | return 0; |
| 501 | fail_uclass: |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 502 | if (device_remove(dev, DM_REMOVE_NORMAL)) { |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 503 | dm_warn("%s: Device '%s' failed to remove on error path\n", |
| 504 | __func__, dev->name); |
| 505 | } |
| 506 | fail: |
Simon Glass | 8b04e73 | 2015-03-25 12:21:56 -0600 | [diff] [blame] | 507 | dev->flags &= ~DM_FLAG_ACTIVATED; |
| 508 | |
Simon Glass | db6f020 | 2014-07-23 06:55:12 -0600 | [diff] [blame] | 509 | dev->seq = -1; |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 510 | device_free(dev); |
| 511 | |
| 512 | return ret; |
| 513 | } |
| 514 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 515 | void *dev_get_platdata(const struct udevice *dev) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 516 | { |
| 517 | if (!dev) { |
Simon Glass | df1e072 | 2014-12-10 08:55:56 -0700 | [diff] [blame] | 518 | dm_warn("%s: null device\n", __func__); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 519 | return NULL; |
| 520 | } |
| 521 | |
| 522 | return dev->platdata; |
| 523 | } |
| 524 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 525 | void *dev_get_parent_platdata(const struct udevice *dev) |
Simon Glass | 11b6173 | 2015-01-25 08:27:01 -0700 | [diff] [blame] | 526 | { |
| 527 | if (!dev) { |
Simon Glass | cdfc505 | 2015-07-06 16:47:40 -0600 | [diff] [blame] | 528 | dm_warn("%s: null device\n", __func__); |
Simon Glass | 11b6173 | 2015-01-25 08:27:01 -0700 | [diff] [blame] | 529 | return NULL; |
| 530 | } |
| 531 | |
| 532 | return dev->parent_platdata; |
| 533 | } |
| 534 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 535 | void *dev_get_uclass_platdata(const struct udevice *dev) |
Przemyslaw Marczak | d850e67 | 2015-04-15 13:07:18 +0200 | [diff] [blame] | 536 | { |
| 537 | if (!dev) { |
Simon Glass | cdfc505 | 2015-07-06 16:47:40 -0600 | [diff] [blame] | 538 | dm_warn("%s: null device\n", __func__); |
Przemyslaw Marczak | d850e67 | 2015-04-15 13:07:18 +0200 | [diff] [blame] | 539 | return NULL; |
| 540 | } |
| 541 | |
| 542 | return dev->uclass_platdata; |
| 543 | } |
| 544 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 545 | void *dev_get_priv(const struct udevice *dev) |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 546 | { |
| 547 | if (!dev) { |
Simon Glass | df1e072 | 2014-12-10 08:55:56 -0700 | [diff] [blame] | 548 | dm_warn("%s: null device\n", __func__); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 549 | return NULL; |
| 550 | } |
| 551 | |
| 552 | return dev->priv; |
| 553 | } |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 554 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 555 | void *dev_get_uclass_priv(const struct udevice *dev) |
Simon Glass | de0977b | 2015-03-05 12:25:20 -0700 | [diff] [blame] | 556 | { |
| 557 | if (!dev) { |
| 558 | dm_warn("%s: null device\n", __func__); |
| 559 | return NULL; |
| 560 | } |
| 561 | |
| 562 | return dev->uclass_priv; |
| 563 | } |
| 564 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 565 | void *dev_get_parent_priv(const struct udevice *dev) |
Simon Glass | 60d971b | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 566 | { |
| 567 | if (!dev) { |
Simon Glass | df1e072 | 2014-12-10 08:55:56 -0700 | [diff] [blame] | 568 | dm_warn("%s: null device\n", __func__); |
Simon Glass | 60d971b | 2014-07-23 06:55:20 -0600 | [diff] [blame] | 569 | return NULL; |
| 570 | } |
| 571 | |
| 572 | return dev->parent_priv; |
| 573 | } |
| 574 | |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 575 | static int device_get_device_tail(struct udevice *dev, int ret, |
| 576 | struct udevice **devp) |
| 577 | { |
| 578 | if (ret) |
| 579 | return ret; |
| 580 | |
| 581 | ret = device_probe(dev); |
| 582 | if (ret) |
| 583 | return ret; |
| 584 | |
| 585 | *devp = dev; |
| 586 | |
| 587 | return 0; |
| 588 | } |
| 589 | |
Marek Vasut | 7f18c34 | 2019-08-31 18:03:28 +0200 | [diff] [blame] | 590 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Mario Six | 3bedfbe | 2018-06-26 08:46:50 +0200 | [diff] [blame] | 591 | /** |
| 592 | * device_find_by_ofnode() - Return device associated with given ofnode |
| 593 | * |
| 594 | * The returned device is *not* activated. |
| 595 | * |
| 596 | * @node: The ofnode for which a associated device should be looked up |
| 597 | * @devp: Pointer to structure to hold the found device |
| 598 | * Return: 0 if OK, -ve on error |
| 599 | */ |
| 600 | static int device_find_by_ofnode(ofnode node, struct udevice **devp) |
| 601 | { |
| 602 | struct uclass *uc; |
| 603 | struct udevice *dev; |
| 604 | int ret; |
| 605 | |
| 606 | list_for_each_entry(uc, &gd->uclass_root, sibling_node) { |
| 607 | ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, |
| 608 | &dev); |
| 609 | if (!ret || dev) { |
| 610 | *devp = dev; |
| 611 | return 0; |
| 612 | } |
| 613 | } |
| 614 | |
| 615 | return -ENODEV; |
| 616 | } |
Marek Vasut | 7f18c34 | 2019-08-31 18:03:28 +0200 | [diff] [blame] | 617 | #endif |
Mario Six | 3bedfbe | 2018-06-26 08:46:50 +0200 | [diff] [blame] | 618 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 619 | int device_get_child(const struct udevice *parent, int index, |
| 620 | struct udevice **devp) |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 621 | { |
| 622 | struct udevice *dev; |
| 623 | |
| 624 | list_for_each_entry(dev, &parent->child_head, sibling_node) { |
| 625 | if (!index--) |
| 626 | return device_get_device_tail(dev, 0, devp); |
| 627 | } |
| 628 | |
| 629 | return -ENODEV; |
| 630 | } |
| 631 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 632 | int device_get_child_count(const struct udevice *parent) |
Lokesh Vutla | fa45a08 | 2019-09-04 16:01:26 +0530 | [diff] [blame] | 633 | { |
| 634 | struct udevice *dev; |
| 635 | int count = 0; |
| 636 | |
| 637 | list_for_each_entry(dev, &parent->child_head, sibling_node) |
| 638 | count++; |
| 639 | |
| 640 | return count; |
| 641 | } |
| 642 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 643 | int device_find_child_by_seq(const struct udevice *parent, int seq_or_req_seq, |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 644 | bool find_req_seq, struct udevice **devp) |
| 645 | { |
| 646 | struct udevice *dev; |
| 647 | |
| 648 | *devp = NULL; |
| 649 | if (seq_or_req_seq == -1) |
| 650 | return -ENODEV; |
| 651 | |
| 652 | list_for_each_entry(dev, &parent->child_head, sibling_node) { |
| 653 | if ((find_req_seq ? dev->req_seq : dev->seq) == |
| 654 | seq_or_req_seq) { |
| 655 | *devp = dev; |
| 656 | return 0; |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | return -ENODEV; |
| 661 | } |
| 662 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 663 | int device_get_child_by_seq(const struct udevice *parent, int seq, |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 664 | struct udevice **devp) |
| 665 | { |
| 666 | struct udevice *dev; |
| 667 | int ret; |
| 668 | |
| 669 | *devp = NULL; |
| 670 | ret = device_find_child_by_seq(parent, seq, false, &dev); |
| 671 | if (ret == -ENODEV) { |
| 672 | /* |
| 673 | * We didn't find it in probed devices. See if there is one |
| 674 | * that will request this seq if probed. |
| 675 | */ |
| 676 | ret = device_find_child_by_seq(parent, seq, true, &dev); |
| 677 | } |
| 678 | return device_get_device_tail(dev, ret, devp); |
| 679 | } |
| 680 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 681 | int device_find_child_by_of_offset(const struct udevice *parent, int of_offset, |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 682 | struct udevice **devp) |
| 683 | { |
| 684 | struct udevice *dev; |
| 685 | |
| 686 | *devp = NULL; |
| 687 | |
| 688 | list_for_each_entry(dev, &parent->child_head, sibling_node) { |
Simon Glass | dd79d6e | 2017-01-17 16:52:55 -0700 | [diff] [blame] | 689 | if (dev_of_offset(dev) == of_offset) { |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 690 | *devp = dev; |
| 691 | return 0; |
| 692 | } |
| 693 | } |
| 694 | |
| 695 | return -ENODEV; |
| 696 | } |
| 697 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 698 | int device_get_child_by_of_offset(const struct udevice *parent, int node, |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 699 | struct udevice **devp) |
| 700 | { |
| 701 | struct udevice *dev; |
| 702 | int ret; |
| 703 | |
| 704 | *devp = NULL; |
Simon Glass | 861bc9f | 2015-06-23 15:38:38 -0600 | [diff] [blame] | 705 | ret = device_find_child_by_of_offset(parent, node, &dev); |
Simon Glass | 48d4e29 | 2014-07-23 06:55:19 -0600 | [diff] [blame] | 706 | return device_get_device_tail(dev, ret, devp); |
| 707 | } |
Simon Glass | 44da735 | 2014-10-13 23:41:49 -0600 | [diff] [blame] | 708 | |
Jean-Jacques Hiblot | a7b0d6a | 2018-08-09 16:17:44 +0200 | [diff] [blame] | 709 | static struct udevice *_device_find_global_by_ofnode(struct udevice *parent, |
| 710 | ofnode ofnode) |
Simon Glass | ae2efac | 2015-06-23 15:38:37 -0600 | [diff] [blame] | 711 | { |
| 712 | struct udevice *dev, *found; |
| 713 | |
Jean-Jacques Hiblot | a7b0d6a | 2018-08-09 16:17:44 +0200 | [diff] [blame] | 714 | if (ofnode_equal(dev_ofnode(parent), ofnode)) |
Simon Glass | ae2efac | 2015-06-23 15:38:37 -0600 | [diff] [blame] | 715 | return parent; |
| 716 | |
| 717 | list_for_each_entry(dev, &parent->child_head, sibling_node) { |
Jean-Jacques Hiblot | a7b0d6a | 2018-08-09 16:17:44 +0200 | [diff] [blame] | 718 | found = _device_find_global_by_ofnode(dev, ofnode); |
Simon Glass | ae2efac | 2015-06-23 15:38:37 -0600 | [diff] [blame] | 719 | if (found) |
| 720 | return found; |
| 721 | } |
| 722 | |
| 723 | return NULL; |
| 724 | } |
| 725 | |
Jean-Jacques Hiblot | a7b0d6a | 2018-08-09 16:17:44 +0200 | [diff] [blame] | 726 | int device_find_global_by_ofnode(ofnode ofnode, struct udevice **devp) |
| 727 | { |
| 728 | *devp = _device_find_global_by_ofnode(gd->dm_root, ofnode); |
| 729 | |
| 730 | return *devp ? 0 : -ENOENT; |
| 731 | } |
| 732 | |
| 733 | int device_get_global_by_ofnode(ofnode ofnode, struct udevice **devp) |
Simon Glass | ae2efac | 2015-06-23 15:38:37 -0600 | [diff] [blame] | 734 | { |
| 735 | struct udevice *dev; |
| 736 | |
Jean-Jacques Hiblot | a7b0d6a | 2018-08-09 16:17:44 +0200 | [diff] [blame] | 737 | dev = _device_find_global_by_ofnode(gd->dm_root, ofnode); |
Simon Glass | ae2efac | 2015-06-23 15:38:37 -0600 | [diff] [blame] | 738 | return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp); |
| 739 | } |
Walter Lozano | ffc41b0 | 2020-06-25 01:10:11 -0300 | [diff] [blame] | 740 | |
| 741 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
| 742 | int device_get_by_driver_info(const struct driver_info *info, |
| 743 | struct udevice **devp) |
| 744 | { |
| 745 | struct udevice *dev; |
| 746 | |
| 747 | dev = info->dev; |
| 748 | |
| 749 | return device_get_device_tail(dev, dev ? 0 : -ENOENT, devp); |
| 750 | } |
| 751 | #endif |
Simon Glass | ae2efac | 2015-06-23 15:38:37 -0600 | [diff] [blame] | 752 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 753 | int device_find_first_child(const struct udevice *parent, struct udevice **devp) |
Simon Glass | 44da735 | 2014-10-13 23:41:49 -0600 | [diff] [blame] | 754 | { |
| 755 | if (list_empty(&parent->child_head)) { |
| 756 | *devp = NULL; |
| 757 | } else { |
| 758 | *devp = list_first_entry(&parent->child_head, struct udevice, |
| 759 | sibling_node); |
| 760 | } |
| 761 | |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | int device_find_next_child(struct udevice **devp) |
| 766 | { |
| 767 | struct udevice *dev = *devp; |
| 768 | struct udevice *parent = dev->parent; |
| 769 | |
| 770 | if (list_is_last(&dev->sibling_node, &parent->child_head)) { |
| 771 | *devp = NULL; |
| 772 | } else { |
| 773 | *devp = list_entry(dev->sibling_node.next, struct udevice, |
| 774 | sibling_node); |
| 775 | } |
| 776 | |
| 777 | return 0; |
| 778 | } |
Simon Glass | 70c3a0e | 2014-11-11 10:46:18 -0700 | [diff] [blame] | 779 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 780 | int device_find_first_inactive_child(const struct udevice *parent, |
Simon Glass | b775e87 | 2018-10-01 12:22:07 -0600 | [diff] [blame] | 781 | enum uclass_id uclass_id, |
| 782 | struct udevice **devp) |
| 783 | { |
| 784 | struct udevice *dev; |
| 785 | |
| 786 | *devp = NULL; |
| 787 | list_for_each_entry(dev, &parent->child_head, sibling_node) { |
| 788 | if (!device_active(dev) && |
| 789 | device_get_uclass_id(dev) == uclass_id) { |
| 790 | *devp = dev; |
| 791 | return 0; |
| 792 | } |
| 793 | } |
| 794 | |
| 795 | return -ENODEV; |
| 796 | } |
| 797 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 798 | int device_find_first_child_by_uclass(const struct udevice *parent, |
Simon Glass | a11341a | 2018-11-18 08:14:31 -0700 | [diff] [blame] | 799 | enum uclass_id uclass_id, |
| 800 | struct udevice **devp) |
| 801 | { |
| 802 | struct udevice *dev; |
| 803 | |
| 804 | *devp = NULL; |
| 805 | list_for_each_entry(dev, &parent->child_head, sibling_node) { |
| 806 | if (device_get_uclass_id(dev) == uclass_id) { |
| 807 | *devp = dev; |
| 808 | return 0; |
| 809 | } |
| 810 | } |
| 811 | |
| 812 | return -ENODEV; |
| 813 | } |
| 814 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 815 | int device_find_child_by_name(const struct udevice *parent, const char *name, |
Simon Glass | a11341a | 2018-11-18 08:14:31 -0700 | [diff] [blame] | 816 | struct udevice **devp) |
| 817 | { |
| 818 | struct udevice *dev; |
| 819 | |
| 820 | *devp = NULL; |
| 821 | |
| 822 | list_for_each_entry(dev, &parent->child_head, sibling_node) { |
| 823 | if (!strcmp(dev->name, name)) { |
| 824 | *devp = dev; |
| 825 | return 0; |
| 826 | } |
| 827 | } |
| 828 | |
| 829 | return -ENODEV; |
| 830 | } |
| 831 | |
Simon Glass | 76db9b7 | 2020-01-27 08:49:48 -0700 | [diff] [blame] | 832 | int device_first_child_err(struct udevice *parent, struct udevice **devp) |
| 833 | { |
| 834 | struct udevice *dev; |
| 835 | |
| 836 | device_find_first_child(parent, &dev); |
| 837 | if (!dev) |
| 838 | return -ENODEV; |
| 839 | |
| 840 | return device_get_device_tail(dev, 0, devp); |
| 841 | } |
| 842 | |
| 843 | int device_next_child_err(struct udevice **devp) |
| 844 | { |
| 845 | struct udevice *dev = *devp; |
| 846 | |
| 847 | device_find_next_child(&dev); |
| 848 | if (!dev) |
| 849 | return -ENODEV; |
| 850 | |
| 851 | return device_get_device_tail(dev, 0, devp); |
| 852 | } |
| 853 | |
Simon Glass | 000676b | 2020-01-27 08:49:47 -0700 | [diff] [blame] | 854 | int device_first_child_ofdata_err(struct udevice *parent, struct udevice **devp) |
| 855 | { |
| 856 | struct udevice *dev; |
| 857 | int ret; |
| 858 | |
| 859 | device_find_first_child(parent, &dev); |
| 860 | if (!dev) |
| 861 | return -ENODEV; |
| 862 | |
| 863 | ret = device_ofdata_to_platdata(dev); |
| 864 | if (ret) |
| 865 | return ret; |
| 866 | |
| 867 | *devp = dev; |
| 868 | |
| 869 | return 0; |
| 870 | } |
| 871 | |
| 872 | int device_next_child_ofdata_err(struct udevice **devp) |
| 873 | { |
| 874 | struct udevice *dev = *devp; |
| 875 | int ret; |
| 876 | |
| 877 | device_find_next_child(&dev); |
| 878 | if (!dev) |
| 879 | return -ENODEV; |
| 880 | |
| 881 | ret = device_ofdata_to_platdata(dev); |
| 882 | if (ret) |
| 883 | return ret; |
| 884 | |
| 885 | *devp = dev; |
| 886 | |
| 887 | return 0; |
| 888 | } |
| 889 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 890 | struct udevice *dev_get_parent(const struct udevice *child) |
Simon Glass | 43f488a | 2014-11-11 10:46:19 -0700 | [diff] [blame] | 891 | { |
| 892 | return child->parent; |
| 893 | } |
| 894 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 895 | ulong dev_get_driver_data(const struct udevice *dev) |
Simon Glass | 70c3a0e | 2014-11-11 10:46:18 -0700 | [diff] [blame] | 896 | { |
Simon Glass | 46227bd | 2015-03-25 12:21:55 -0600 | [diff] [blame] | 897 | return dev->driver_data; |
Simon Glass | 70c3a0e | 2014-11-11 10:46:18 -0700 | [diff] [blame] | 898 | } |
Simon Glass | 98fd5d1 | 2015-01-25 08:27:04 -0700 | [diff] [blame] | 899 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 900 | const void *dev_get_driver_ops(const struct udevice *dev) |
Przemyslaw Marczak | d3ef0d7 | 2015-04-15 13:07:24 +0200 | [diff] [blame] | 901 | { |
| 902 | if (!dev || !dev->driver->ops) |
| 903 | return NULL; |
| 904 | |
| 905 | return dev->driver->ops; |
| 906 | } |
| 907 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 908 | enum uclass_id device_get_uclass_id(const struct udevice *dev) |
Simon Glass | 98fd5d1 | 2015-01-25 08:27:04 -0700 | [diff] [blame] | 909 | { |
| 910 | return dev->uclass->uc_drv->id; |
| 911 | } |
Peng Fan | 99b7235 | 2015-02-10 14:46:32 +0800 | [diff] [blame] | 912 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 913 | const char *dev_get_uclass_name(const struct udevice *dev) |
Przemyslaw Marczak | 5ed2e42 | 2015-04-15 13:07:25 +0200 | [diff] [blame] | 914 | { |
| 915 | if (!dev) |
| 916 | return NULL; |
| 917 | |
| 918 | return dev->uclass->uc_drv->name; |
| 919 | } |
| 920 | |
Simon Glass | 2e5e5ec | 2018-10-01 12:22:06 -0600 | [diff] [blame] | 921 | bool device_has_children(const struct udevice *dev) |
Simon Glass | 40f829a | 2015-03-25 12:21:57 -0600 | [diff] [blame] | 922 | { |
| 923 | return !list_empty(&dev->child_head); |
| 924 | } |
| 925 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 926 | bool device_has_active_children(const struct udevice *dev) |
Simon Glass | 40f829a | 2015-03-25 12:21:57 -0600 | [diff] [blame] | 927 | { |
| 928 | struct udevice *child; |
| 929 | |
| 930 | for (device_find_first_child(dev, &child); |
| 931 | child; |
| 932 | device_find_next_child(&child)) { |
| 933 | if (device_active(child)) |
| 934 | return true; |
| 935 | } |
| 936 | |
| 937 | return false; |
| 938 | } |
| 939 | |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 940 | bool device_is_last_sibling(const struct udevice *dev) |
Simon Glass | 40f829a | 2015-03-25 12:21:57 -0600 | [diff] [blame] | 941 | { |
| 942 | struct udevice *parent = dev->parent; |
| 943 | |
| 944 | if (!parent) |
| 945 | return false; |
| 946 | return list_is_last(&dev->sibling_node, &parent->child_head); |
| 947 | } |
Simon Glass | e3b23e2 | 2015-07-30 13:40:39 -0600 | [diff] [blame] | 948 | |
Simon Glass | 7760ba2 | 2016-05-01 13:52:23 -0600 | [diff] [blame] | 949 | void device_set_name_alloced(struct udevice *dev) |
| 950 | { |
Simon Glass | 2d4c7dc | 2016-07-04 11:58:15 -0600 | [diff] [blame] | 951 | dev->flags |= DM_FLAG_NAME_ALLOCED; |
Simon Glass | 7760ba2 | 2016-05-01 13:52:23 -0600 | [diff] [blame] | 952 | } |
| 953 | |
Simon Glass | e3b23e2 | 2015-07-30 13:40:39 -0600 | [diff] [blame] | 954 | int device_set_name(struct udevice *dev, const char *name) |
| 955 | { |
| 956 | name = strdup(name); |
| 957 | if (!name) |
| 958 | return -ENOMEM; |
| 959 | dev->name = name; |
Simon Glass | 7760ba2 | 2016-05-01 13:52:23 -0600 | [diff] [blame] | 960 | device_set_name_alloced(dev); |
Simon Glass | e3b23e2 | 2015-07-30 13:40:39 -0600 | [diff] [blame] | 961 | |
| 962 | return 0; |
| 963 | } |
Mugunthan V N | 4666bd9 | 2016-04-28 15:36:02 +0530 | [diff] [blame] | 964 | |
Marek Vasut | 7f18c34 | 2019-08-31 18:03:28 +0200 | [diff] [blame] | 965 | #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | 2a58088 | 2020-01-27 08:49:36 -0700 | [diff] [blame] | 966 | bool device_is_compatible(const struct udevice *dev, const char *compat) |
Mugunthan V N | 4666bd9 | 2016-04-28 15:36:02 +0530 | [diff] [blame] | 967 | { |
Masahiro Yamada | 9349bcc | 2018-04-19 12:14:02 +0900 | [diff] [blame] | 968 | return ofnode_device_is_compatible(dev_ofnode(dev), compat); |
Mugunthan V N | 4666bd9 | 2016-04-28 15:36:02 +0530 | [diff] [blame] | 969 | } |
| 970 | |
| 971 | bool of_machine_is_compatible(const char *compat) |
| 972 | { |
| 973 | const void *fdt = gd->fdt_blob; |
| 974 | |
| 975 | return !fdt_node_check_compatible(fdt, 0, compat); |
| 976 | } |
Mario Six | 3bedfbe | 2018-06-26 08:46:50 +0200 | [diff] [blame] | 977 | |
| 978 | int dev_disable_by_path(const char *path) |
| 979 | { |
| 980 | struct uclass *uc; |
| 981 | ofnode node = ofnode_path(path); |
| 982 | struct udevice *dev; |
| 983 | int ret = 1; |
| 984 | |
| 985 | if (!of_live_active()) |
| 986 | return -ENOSYS; |
| 987 | |
| 988 | list_for_each_entry(uc, &gd->uclass_root, sibling_node) { |
| 989 | ret = uclass_find_device_by_ofnode(uc->uc_drv->id, node, &dev); |
| 990 | if (!ret) |
| 991 | break; |
| 992 | } |
| 993 | |
| 994 | if (ret) |
| 995 | return ret; |
| 996 | |
| 997 | ret = device_remove(dev, DM_REMOVE_NORMAL); |
| 998 | if (ret) |
| 999 | return ret; |
| 1000 | |
| 1001 | ret = device_unbind(dev); |
| 1002 | if (ret) |
| 1003 | return ret; |
| 1004 | |
| 1005 | return ofnode_set_enabled(node, false); |
| 1006 | } |
| 1007 | |
| 1008 | int dev_enable_by_path(const char *path) |
| 1009 | { |
| 1010 | ofnode node = ofnode_path(path); |
| 1011 | ofnode pnode = ofnode_get_parent(node); |
| 1012 | struct udevice *parent; |
| 1013 | int ret = 1; |
| 1014 | |
| 1015 | if (!of_live_active()) |
| 1016 | return -ENOSYS; |
| 1017 | |
| 1018 | ret = device_find_by_ofnode(pnode, &parent); |
| 1019 | if (ret) |
| 1020 | return ret; |
| 1021 | |
| 1022 | ret = ofnode_set_enabled(node, true); |
| 1023 | if (ret) |
| 1024 | return ret; |
| 1025 | |
Bin Meng | 9a9b074 | 2018-10-10 22:06:58 -0700 | [diff] [blame] | 1026 | return lists_bind_fdt(parent, node, NULL, false); |
Mario Six | 3bedfbe | 2018-06-26 08:46:50 +0200 | [diff] [blame] | 1027 | } |
Marek Vasut | 7f18c34 | 2019-08-31 18:03:28 +0200 | [diff] [blame] | 1028 | #endif |