]>
Commit | Line | Data |
---|---|---|
3ac435d3 SG |
1 | /* |
2 | * Device manager | |
3 | * | |
4 | * Copyright (c) 2014 Google, Inc | |
5 | * | |
6 | * (C) Copyright 2012 | |
7 | * Pavel Herrmann <[email protected]> | |
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 | ||
79725ca4 SG |
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) | |
3ac435d3 SG |
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 | ||
79725ca4 SG |
46 | /** |
47 | * device_chld_remove() - Stop all device's children | |
48 | * @dev: The device whose children are to be removed | |
706865af | 49 | * @pre_os_remove: Flag, if this functions is called in the pre-OS stage |
79725ca4 SG |
50 | * @return 0 on success, -ve on error |
51 | */ | |
706865af | 52 | static int device_chld_remove(struct udevice *dev, uint flags) |
3ac435d3 SG |
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) { | |
706865af | 60 | ret = device_remove(pos, flags); |
3ac435d3 SG |
61 | if (ret) |
62 | return ret; | |
63 | } | |
64 | ||
65 | return 0; | |
66 | } | |
67 | ||
68 | int device_unbind(struct udevice *dev) | |
69 | { | |
3479253d | 70 | const struct driver *drv; |
3ac435d3 SG |
71 | int ret; |
72 | ||
73 | if (!dev) | |
74 | return -EINVAL; | |
75 | ||
76 | if (dev->flags & DM_FLAG_ACTIVATED) | |
77 | return -EINVAL; | |
78 | ||
aed1a4dd MY |
79 | if (!(dev->flags & DM_FLAG_BOUND)) |
80 | return -EINVAL; | |
81 | ||
3ac435d3 SG |
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 | ||
79725ca4 | 91 | ret = device_chld_unbind(dev); |
3ac435d3 SG |
92 | if (ret) |
93 | return ret; | |
94 | ||
f8a85449 SG |
95 | if (dev->flags & DM_FLAG_ALLOC_PDATA) { |
96 | free(dev->platdata); | |
97 | dev->platdata = NULL; | |
98 | } | |
5eaed880 PM |
99 | if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) { |
100 | free(dev->uclass_platdata); | |
101 | dev->uclass_platdata = NULL; | |
102 | } | |
cdc133bd SG |
103 | if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) { |
104 | free(dev->parent_platdata); | |
105 | dev->parent_platdata = NULL; | |
106 | } | |
3ac435d3 SG |
107 | ret = uclass_unbind_device(dev); |
108 | if (ret) | |
109 | return ret; | |
110 | ||
111 | if (dev->parent) | |
112 | list_del(&dev->sibling_node); | |
608f26c5 MY |
113 | |
114 | devres_release_all(dev); | |
115 | ||
fd1c2d9b | 116 | if (dev->flags & DM_FLAG_NAME_ALLOCED) |
a2040fac | 117 | free((char *)dev->name); |
3ac435d3 SG |
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 | } | |
3ac435d3 SG |
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; | |
dac8db2c SG |
142 | if (!size) { |
143 | size = dev->parent->uclass->uc_drv-> | |
144 | per_child_auto_alloc_size; | |
145 | } | |
3ac435d3 SG |
146 | if (size) { |
147 | free(dev->parent_priv); | |
148 | dev->parent_priv = NULL; | |
149 | } | |
150 | } | |
608f26c5 MY |
151 | |
152 | devres_release_probe(dev); | |
3ac435d3 SG |
153 | } |
154 | ||
706865af | 155 | int device_remove(struct udevice *dev, uint flags) |
3ac435d3 | 156 | { |
3479253d | 157 | const struct driver *drv; |
3ac435d3 SG |
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 | ||
706865af | 173 | ret = device_chld_remove(dev, flags); |
3ac435d3 SG |
174 | if (ret) |
175 | goto err; | |
176 | ||
177 | if (drv->remove) { | |
178 | ret = drv->remove(dev); | |
179 | if (ret) | |
180 | goto err_remove; | |
181 | } | |
182 | ||
183 | if (dev->parent && dev->parent->driver->child_post_remove) { | |
184 | ret = dev->parent->driver->child_post_remove(dev); | |
185 | if (ret) { | |
186 | dm_warn("%s: Device '%s' failed child_post_remove()", | |
187 | __func__, dev->name); | |
188 | } | |
189 | } | |
190 | ||
191 | device_free(dev); | |
192 | ||
193 | dev->seq = -1; | |
194 | dev->flags &= ~DM_FLAG_ACTIVATED; | |
195 | ||
196 | return ret; | |
197 | ||
198 | err_remove: | |
199 | /* We can't put the children back */ | |
200 | dm_warn("%s: Device '%s' failed to remove, but children are gone\n", | |
201 | __func__, dev->name); | |
202 | err: | |
203 | ret = uclass_post_probe_device(dev); | |
204 | if (ret) { | |
205 | dm_warn("%s: Device '%s' failed to post_probe on error path\n", | |
206 | __func__, dev->name); | |
207 | } | |
208 | ||
209 | return ret; | |
210 | } |