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