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