blob: 1cf2278e9ef982803a50b1fd3568e083ae90c8b5 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass3ac435d2014-11-10 17:16:47 -07002/*
3 * Device manager
4 *
5 * Copyright (c) 2014 Google, Inc
6 *
7 * (C) Copyright 2012
8 * Pavel Herrmann <morpheus.ibis@gmail.com>
Simon Glass3ac435d2014-11-10 17:16:47 -07009 */
10
11#include <common.h>
12#include <errno.h>
13#include <malloc.h>
14#include <dm/device.h>
15#include <dm/device-internal.h>
16#include <dm/uclass.h>
17#include <dm/uclass-internal.h>
18#include <dm/util.h>
19
Simon Glass79725ca2015-11-08 23:47:58 -070020/**
21 * device_chld_unbind() - Unbind all device's children from the device
22 *
23 * On error, the function continues to unbind all children, and reports the
24 * first error.
25 *
26 * @dev: The device that is to be stripped of its children
27 * @return 0 on success, -ve on error
28 */
29static int device_chld_unbind(struct udevice *dev)
Simon Glass3ac435d2014-11-10 17:16:47 -070030{
31 struct udevice *pos, *n;
32 int ret, saved_ret = 0;
33
34 assert(dev);
35
36 list_for_each_entry_safe(pos, n, &dev->child_head, sibling_node) {
37 ret = device_unbind(pos);
38 if (ret && !saved_ret)
39 saved_ret = ret;
40 }
41
42 return saved_ret;
43}
44
Simon Glass79725ca2015-11-08 23:47:58 -070045/**
46 * device_chld_remove() - Stop all device's children
47 * @dev: The device whose children are to be removed
Stefan Roese706865a2017-03-20 12:51:48 +010048 * @pre_os_remove: Flag, if this functions is called in the pre-OS stage
Simon Glass79725ca2015-11-08 23:47:58 -070049 * @return 0 on success, -ve on error
50 */
Stefan Roese706865a2017-03-20 12:51:48 +010051static int device_chld_remove(struct udevice *dev, uint flags)
Simon Glass3ac435d2014-11-10 17:16:47 -070052{
53 struct udevice *pos, *n;
54 int ret;
55
56 assert(dev);
57
58 list_for_each_entry_safe(pos, n, &dev->child_head, sibling_node) {
Stefan Roese706865a2017-03-20 12:51:48 +010059 ret = device_remove(pos, flags);
Simon Glass3ac435d2014-11-10 17:16:47 -070060 if (ret)
61 return ret;
62 }
63
64 return 0;
65}
66
67int device_unbind(struct udevice *dev)
68{
Simon Glass34792532015-03-25 12:21:54 -060069 const struct driver *drv;
Simon Glass3ac435d2014-11-10 17:16:47 -070070 int ret;
71
72 if (!dev)
73 return -EINVAL;
74
75 if (dev->flags & DM_FLAG_ACTIVATED)
76 return -EINVAL;
77
Masahiro Yamadaaed1a4d2015-07-25 21:52:34 +090078 if (!(dev->flags & DM_FLAG_BOUND))
79 return -EINVAL;
80
Simon Glass3ac435d2014-11-10 17:16:47 -070081 drv = dev->driver;
82 assert(drv);
83
84 if (drv->unbind) {
85 ret = drv->unbind(dev);
86 if (ret)
87 return ret;
88 }
89
Simon Glass79725ca2015-11-08 23:47:58 -070090 ret = device_chld_unbind(dev);
Simon Glass3ac435d2014-11-10 17:16:47 -070091 if (ret)
92 return ret;
93
Simon Glassf8a85442015-01-25 08:27:00 -070094 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
95 free(dev->platdata);
96 dev->platdata = NULL;
97 }
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020098 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
99 free(dev->uclass_platdata);
100 dev->uclass_platdata = NULL;
101 }
Simon Glasscdc133b2015-01-25 08:27:01 -0700102 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
103 free(dev->parent_platdata);
104 dev->parent_platdata = NULL;
105 }
Simon Glass3ac435d2014-11-10 17:16:47 -0700106 ret = uclass_unbind_device(dev);
107 if (ret)
108 return ret;
109
110 if (dev->parent)
111 list_del(&dev->sibling_node);
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900112
113 devres_release_all(dev);
114
Simon Glassfd1c2d92016-07-04 11:58:15 -0600115 if (dev->flags & DM_FLAG_NAME_ALLOCED)
Simon Glassa2040fa2016-05-01 13:52:23 -0600116 free((char *)dev->name);
Simon Glass3ac435d2014-11-10 17:16:47 -0700117 free(dev);
118
119 return 0;
120}
121
122/**
123 * device_free() - Free memory buffers allocated by a device
124 * @dev: Device that is to be started
125 */
126void device_free(struct udevice *dev)
127{
128 int size;
129
130 if (dev->driver->priv_auto_alloc_size) {
131 free(dev->priv);
132 dev->priv = NULL;
133 }
Simon Glass3ac435d2014-11-10 17:16:47 -0700134 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
135 if (size) {
136 free(dev->uclass_priv);
137 dev->uclass_priv = NULL;
138 }
139 if (dev->parent) {
140 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassdac8db22015-01-25 08:27:06 -0700141 if (!size) {
142 size = dev->parent->uclass->uc_drv->
143 per_child_auto_alloc_size;
144 }
Simon Glass3ac435d2014-11-10 17:16:47 -0700145 if (size) {
146 free(dev->parent_priv);
147 dev->parent_priv = NULL;
148 }
149 }
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900150
151 devres_release_probe(dev);
Simon Glass3ac435d2014-11-10 17:16:47 -0700152}
153
Stefan Roese426f99f2017-04-24 09:48:02 +0200154static bool flags_remove(uint flags, uint drv_flags)
155{
156 if ((flags & DM_REMOVE_NORMAL) ||
157 (flags & (drv_flags & (DM_FLAG_ACTIVE_DMA | DM_FLAG_OS_PREPARE))))
158 return true;
159
160 return false;
161}
162
Stefan Roese706865a2017-03-20 12:51:48 +0100163int device_remove(struct udevice *dev, uint flags)
Simon Glass3ac435d2014-11-10 17:16:47 -0700164{
Simon Glass34792532015-03-25 12:21:54 -0600165 const struct driver *drv;
Simon Glass3ac435d2014-11-10 17:16:47 -0700166 int ret;
167
168 if (!dev)
169 return -EINVAL;
170
171 if (!(dev->flags & DM_FLAG_ACTIVATED))
172 return 0;
173
174 drv = dev->driver;
175 assert(drv);
176
177 ret = uclass_pre_remove_device(dev);
178 if (ret)
179 return ret;
180
Stefan Roese706865a2017-03-20 12:51:48 +0100181 ret = device_chld_remove(dev, flags);
Simon Glass3ac435d2014-11-10 17:16:47 -0700182 if (ret)
183 goto err;
184
Stefan Roesebc85aa42017-03-27 10:58:53 +0200185 /*
186 * Remove the device if called with the "normal" remove flag set,
187 * or if the remove flag matches any of the drivers remove flags
188 */
Stefan Roese426f99f2017-04-24 09:48:02 +0200189 if (drv->remove && flags_remove(flags, drv->flags)) {
Simon Glass3ac435d2014-11-10 17:16:47 -0700190 ret = drv->remove(dev);
191 if (ret)
192 goto err_remove;
193 }
194
195 if (dev->parent && dev->parent->driver->child_post_remove) {
196 ret = dev->parent->driver->child_post_remove(dev);
197 if (ret) {
198 dm_warn("%s: Device '%s' failed child_post_remove()",
199 __func__, dev->name);
200 }
201 }
202
Stefan Roese426f99f2017-04-24 09:48:02 +0200203 if (flags_remove(flags, drv->flags)) {
Stefan Roesebc85aa42017-03-27 10:58:53 +0200204 device_free(dev);
Simon Glass3ac435d2014-11-10 17:16:47 -0700205
Stefan Roesebc85aa42017-03-27 10:58:53 +0200206 dev->seq = -1;
207 dev->flags &= ~DM_FLAG_ACTIVATED;
208 }
Simon Glass3ac435d2014-11-10 17:16:47 -0700209
210 return ret;
211
212err_remove:
213 /* We can't put the children back */
214 dm_warn("%s: Device '%s' failed to remove, but children are gone\n",
215 __func__, dev->name);
216err:
217 ret = uclass_post_probe_device(dev);
218 if (ret) {
219 dm_warn("%s: Device '%s' failed to post_probe on error path\n",
220 __func__, dev->name);
221 }
222
223 return ret;
224}