Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Device manager |
| 3 | * |
| 4 | * Copyright (c) 2014 Google, Inc |
| 5 | * |
| 6 | * (C) Copyright 2012 |
| 7 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
| 8 | * |
| 9 | * SPDX-License-Identifier: GPL-2.0+ |
| 10 | */ |
| 11 | |
| 12 | #include <common.h> |
| 13 | #include <errno.h> |
| 14 | #include <malloc.h> |
| 15 | #include <dm/device.h> |
| 16 | #include <dm/device-internal.h> |
| 17 | #include <dm/uclass.h> |
| 18 | #include <dm/uclass-internal.h> |
| 19 | #include <dm/util.h> |
| 20 | |
Simon Glass | 7e7573c | 2015-11-08 23:47:58 -0700 | [diff] [blame] | 21 | /** |
| 22 | * device_chld_unbind() - Unbind all device's children from the device |
| 23 | * |
| 24 | * On error, the function continues to unbind all children, and reports the |
| 25 | * first error. |
| 26 | * |
| 27 | * @dev: The device that is to be stripped of its children |
| 28 | * @return 0 on success, -ve on error |
| 29 | */ |
| 30 | static int device_chld_unbind(struct udevice *dev) |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 31 | { |
| 32 | struct udevice *pos, *n; |
| 33 | int ret, saved_ret = 0; |
| 34 | |
| 35 | assert(dev); |
| 36 | |
| 37 | list_for_each_entry_safe(pos, n, &dev->child_head, sibling_node) { |
| 38 | ret = device_unbind(pos); |
| 39 | if (ret && !saved_ret) |
| 40 | saved_ret = ret; |
| 41 | } |
| 42 | |
| 43 | return saved_ret; |
| 44 | } |
| 45 | |
Simon Glass | 7e7573c | 2015-11-08 23:47:58 -0700 | [diff] [blame] | 46 | /** |
| 47 | * device_chld_remove() - Stop all device's children |
| 48 | * @dev: The device whose children are to be removed |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 49 | * @pre_os_remove: Flag, if this functions is called in the pre-OS stage |
Simon Glass | 7e7573c | 2015-11-08 23:47:58 -0700 | [diff] [blame] | 50 | * @return 0 on success, -ve on error |
| 51 | */ |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 52 | static int device_chld_remove(struct udevice *dev, uint flags) |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 53 | { |
| 54 | struct udevice *pos, *n; |
| 55 | int ret; |
| 56 | |
| 57 | assert(dev); |
| 58 | |
| 59 | list_for_each_entry_safe(pos, n, &dev->child_head, sibling_node) { |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 60 | ret = device_remove(pos, flags); |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 61 | if (ret) |
| 62 | return ret; |
| 63 | } |
| 64 | |
| 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | int device_unbind(struct udevice *dev) |
| 69 | { |
Simon Glass | a626dff | 2015-03-25 12:21:54 -0600 | [diff] [blame] | 70 | const struct driver *drv; |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 71 | int ret; |
| 72 | |
| 73 | if (!dev) |
| 74 | return -EINVAL; |
| 75 | |
| 76 | if (dev->flags & DM_FLAG_ACTIVATED) |
| 77 | return -EINVAL; |
| 78 | |
Masahiro Yamada | bdbb5dd | 2015-07-25 21:52:34 +0900 | [diff] [blame] | 79 | if (!(dev->flags & DM_FLAG_BOUND)) |
| 80 | return -EINVAL; |
| 81 | |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 82 | drv = dev->driver; |
| 83 | assert(drv); |
| 84 | |
| 85 | if (drv->unbind) { |
| 86 | ret = drv->unbind(dev); |
| 87 | if (ret) |
| 88 | return ret; |
| 89 | } |
| 90 | |
Simon Glass | 7e7573c | 2015-11-08 23:47:58 -0700 | [diff] [blame] | 91 | ret = device_chld_unbind(dev); |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 92 | if (ret) |
| 93 | return ret; |
| 94 | |
Simon Glass | ba75049 | 2015-01-25 08:27:00 -0700 | [diff] [blame] | 95 | if (dev->flags & DM_FLAG_ALLOC_PDATA) { |
| 96 | free(dev->platdata); |
| 97 | dev->platdata = NULL; |
| 98 | } |
Przemyslaw Marczak | d850e67 | 2015-04-15 13:07:18 +0200 | [diff] [blame] | 99 | if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) { |
| 100 | free(dev->uclass_platdata); |
| 101 | dev->uclass_platdata = NULL; |
| 102 | } |
Simon Glass | 11b6173 | 2015-01-25 08:27:01 -0700 | [diff] [blame] | 103 | if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) { |
| 104 | free(dev->parent_platdata); |
| 105 | dev->parent_platdata = NULL; |
| 106 | } |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 107 | ret = uclass_unbind_device(dev); |
| 108 | if (ret) |
| 109 | return ret; |
| 110 | |
| 111 | if (dev->parent) |
| 112 | list_del(&dev->sibling_node); |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 113 | |
| 114 | devres_release_all(dev); |
| 115 | |
Simon Glass | 2d4c7dc | 2016-07-04 11:58:15 -0600 | [diff] [blame] | 116 | if (dev->flags & DM_FLAG_NAME_ALLOCED) |
Simon Glass | 7760ba2 | 2016-05-01 13:52:23 -0600 | [diff] [blame] | 117 | free((char *)dev->name); |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 118 | free(dev); |
| 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * device_free() - Free memory buffers allocated by a device |
| 125 | * @dev: Device that is to be started |
| 126 | */ |
| 127 | void device_free(struct udevice *dev) |
| 128 | { |
| 129 | int size; |
| 130 | |
| 131 | if (dev->driver->priv_auto_alloc_size) { |
| 132 | free(dev->priv); |
| 133 | dev->priv = NULL; |
| 134 | } |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 135 | size = dev->uclass->uc_drv->per_device_auto_alloc_size; |
| 136 | if (size) { |
| 137 | free(dev->uclass_priv); |
| 138 | dev->uclass_priv = NULL; |
| 139 | } |
| 140 | if (dev->parent) { |
| 141 | size = dev->parent->driver->per_child_auto_alloc_size; |
Simon Glass | c23b428 | 2015-01-25 08:27:06 -0700 | [diff] [blame] | 142 | if (!size) { |
| 143 | size = dev->parent->uclass->uc_drv-> |
| 144 | per_child_auto_alloc_size; |
| 145 | } |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 146 | if (size) { |
| 147 | free(dev->parent_priv); |
| 148 | dev->parent_priv = NULL; |
| 149 | } |
| 150 | } |
Masahiro Yamada | 8b15b16 | 2015-07-25 21:52:35 +0900 | [diff] [blame] | 151 | |
| 152 | devres_release_probe(dev); |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 155 | int device_remove(struct udevice *dev, uint flags) |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 156 | { |
Simon Glass | a626dff | 2015-03-25 12:21:54 -0600 | [diff] [blame] | 157 | const struct driver *drv; |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 158 | int ret; |
| 159 | |
| 160 | if (!dev) |
| 161 | return -EINVAL; |
| 162 | |
| 163 | if (!(dev->flags & DM_FLAG_ACTIVATED)) |
| 164 | return 0; |
| 165 | |
| 166 | drv = dev->driver; |
| 167 | assert(drv); |
| 168 | |
| 169 | ret = uclass_pre_remove_device(dev); |
| 170 | if (ret) |
| 171 | return ret; |
| 172 | |
Stefan Roese | 80b5bc9 | 2017-03-20 12:51:48 +0100 | [diff] [blame] | 173 | ret = device_chld_remove(dev, flags); |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 174 | if (ret) |
| 175 | goto err; |
| 176 | |
Stefan Roese | 505045d | 2017-03-27 10:58:53 +0200 | [diff] [blame] | 177 | /* |
| 178 | * Remove the device if called with the "normal" remove flag set, |
| 179 | * or if the remove flag matches any of the drivers remove flags |
| 180 | */ |
| 181 | if (drv->remove && |
| 182 | ((flags & DM_REMOVE_NORMAL) || |
| 183 | (flags & (drv->flags & DM_FLAG_ACTIVE_DMA)))) { |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 184 | ret = drv->remove(dev); |
| 185 | if (ret) |
| 186 | goto err_remove; |
| 187 | } |
| 188 | |
| 189 | if (dev->parent && dev->parent->driver->child_post_remove) { |
| 190 | ret = dev->parent->driver->child_post_remove(dev); |
| 191 | if (ret) { |
| 192 | dm_warn("%s: Device '%s' failed child_post_remove()", |
| 193 | __func__, dev->name); |
| 194 | } |
| 195 | } |
| 196 | |
Stefan Roese | 505045d | 2017-03-27 10:58:53 +0200 | [diff] [blame] | 197 | if ((flags & DM_REMOVE_NORMAL) || |
| 198 | (flags & (drv->flags & DM_FLAG_ACTIVE_DMA))) { |
| 199 | device_free(dev); |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 200 | |
Stefan Roese | 505045d | 2017-03-27 10:58:53 +0200 | [diff] [blame] | 201 | dev->seq = -1; |
| 202 | dev->flags &= ~DM_FLAG_ACTIVATED; |
| 203 | } |
Simon Glass | b38ea5a | 2014-11-10 17:16:47 -0700 | [diff] [blame] | 204 | |
| 205 | return ret; |
| 206 | |
| 207 | err_remove: |
| 208 | /* We can't put the children back */ |
| 209 | dm_warn("%s: Device '%s' failed to remove, but children are gone\n", |
| 210 | __func__, dev->name); |
| 211 | err: |
| 212 | ret = uclass_post_probe_device(dev); |
| 213 | if (ret) { |
| 214 | dm_warn("%s: Device '%s' failed to post_probe on error path\n", |
| 215 | __func__, dev->name); |
| 216 | } |
| 217 | |
| 218 | return ret; |
| 219 | } |