blob: ff5b28cb6a7633753c6060cf9a4e71401a19690d [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>
Anatolij Gustschin52edfed2019-09-27 13:48:15 +053019#include <power-domain.h>
Simon Glass3ac435d2014-11-10 17:16:47 -070020
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +020021int device_chld_unbind(struct udevice *dev, struct driver *drv)
Simon Glass3ac435d2014-11-10 17:16:47 -070022{
23 struct udevice *pos, *n;
24 int ret, saved_ret = 0;
25
26 assert(dev);
27
28 list_for_each_entry_safe(pos, n, &dev->child_head, sibling_node) {
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +020029 if (drv && (pos->driver != drv))
30 continue;
31
Simon Glass3ac435d2014-11-10 17:16:47 -070032 ret = device_unbind(pos);
33 if (ret && !saved_ret)
34 saved_ret = ret;
35 }
36
37 return saved_ret;
38}
39
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +020040int device_chld_remove(struct udevice *dev, struct driver *drv,
41 uint flags)
Simon Glass3ac435d2014-11-10 17:16:47 -070042{
43 struct udevice *pos, *n;
44 int ret;
45
46 assert(dev);
47
48 list_for_each_entry_safe(pos, n, &dev->child_head, sibling_node) {
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +020049 if (drv && (pos->driver != drv))
50 continue;
51
Stefan Roese706865a2017-03-20 12:51:48 +010052 ret = device_remove(pos, flags);
Simon Glass3ac435d2014-11-10 17:16:47 -070053 if (ret)
54 return ret;
55 }
56
57 return 0;
58}
59
60int device_unbind(struct udevice *dev)
61{
Simon Glass34792532015-03-25 12:21:54 -060062 const struct driver *drv;
Simon Glass3ac435d2014-11-10 17:16:47 -070063 int ret;
64
65 if (!dev)
66 return -EINVAL;
67
68 if (dev->flags & DM_FLAG_ACTIVATED)
69 return -EINVAL;
70
Masahiro Yamadaaed1a4d2015-07-25 21:52:34 +090071 if (!(dev->flags & DM_FLAG_BOUND))
72 return -EINVAL;
73
Simon Glass3ac435d2014-11-10 17:16:47 -070074 drv = dev->driver;
75 assert(drv);
76
77 if (drv->unbind) {
78 ret = drv->unbind(dev);
79 if (ret)
80 return ret;
81 }
82
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +020083 ret = device_chld_unbind(dev, NULL);
Simon Glass3ac435d2014-11-10 17:16:47 -070084 if (ret)
85 return ret;
86
Simon Glassf8a85442015-01-25 08:27:00 -070087 if (dev->flags & DM_FLAG_ALLOC_PDATA) {
88 free(dev->platdata);
89 dev->platdata = NULL;
90 }
Przemyslaw Marczak5eaed882015-04-15 13:07:18 +020091 if (dev->flags & DM_FLAG_ALLOC_UCLASS_PDATA) {
92 free(dev->uclass_platdata);
93 dev->uclass_platdata = NULL;
94 }
Simon Glasscdc133b2015-01-25 08:27:01 -070095 if (dev->flags & DM_FLAG_ALLOC_PARENT_PDATA) {
96 free(dev->parent_platdata);
97 dev->parent_platdata = NULL;
98 }
Simon Glass3ac435d2014-11-10 17:16:47 -070099 ret = uclass_unbind_device(dev);
100 if (ret)
101 return ret;
102
103 if (dev->parent)
104 list_del(&dev->sibling_node);
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900105
106 devres_release_all(dev);
107
Simon Glassfd1c2d92016-07-04 11:58:15 -0600108 if (dev->flags & DM_FLAG_NAME_ALLOCED)
Simon Glassa2040fa2016-05-01 13:52:23 -0600109 free((char *)dev->name);
Simon Glass3ac435d2014-11-10 17:16:47 -0700110 free(dev);
111
112 return 0;
113}
114
115/**
116 * device_free() - Free memory buffers allocated by a device
117 * @dev: Device that is to be started
118 */
119void device_free(struct udevice *dev)
120{
121 int size;
122
123 if (dev->driver->priv_auto_alloc_size) {
124 free(dev->priv);
125 dev->priv = NULL;
126 }
Simon Glass3ac435d2014-11-10 17:16:47 -0700127 size = dev->uclass->uc_drv->per_device_auto_alloc_size;
128 if (size) {
129 free(dev->uclass_priv);
130 dev->uclass_priv = NULL;
131 }
132 if (dev->parent) {
133 size = dev->parent->driver->per_child_auto_alloc_size;
Simon Glassdac8db22015-01-25 08:27:06 -0700134 if (!size) {
135 size = dev->parent->uclass->uc_drv->
136 per_child_auto_alloc_size;
137 }
Simon Glass3ac435d2014-11-10 17:16:47 -0700138 if (size) {
139 free(dev->parent_priv);
140 dev->parent_priv = NULL;
141 }
142 }
Simon Glass153851d2019-12-29 21:19:21 -0700143 dev->flags &= ~DM_FLAG_PLATDATA_VALID;
Masahiro Yamada608f26c2015-07-25 21:52:35 +0900144
145 devres_release_probe(dev);
Simon Glass3ac435d2014-11-10 17:16:47 -0700146}
147
Stefan Roese426f99f2017-04-24 09:48:02 +0200148static bool flags_remove(uint flags, uint drv_flags)
149{
150 if ((flags & DM_REMOVE_NORMAL) ||
151 (flags & (drv_flags & (DM_FLAG_ACTIVE_DMA | DM_FLAG_OS_PREPARE))))
152 return true;
153
154 return false;
155}
156
Stefan Roese706865a2017-03-20 12:51:48 +0100157int device_remove(struct udevice *dev, uint flags)
Simon Glass3ac435d2014-11-10 17:16:47 -0700158{
Simon Glass34792532015-03-25 12:21:54 -0600159 const struct driver *drv;
Simon Glass3ac435d2014-11-10 17:16:47 -0700160 int ret;
161
162 if (!dev)
163 return -EINVAL;
164
165 if (!(dev->flags & DM_FLAG_ACTIVATED))
166 return 0;
167
168 drv = dev->driver;
169 assert(drv);
170
171 ret = uclass_pre_remove_device(dev);
172 if (ret)
173 return ret;
174
Jean-Jacques Hiblot3be9bcb2018-08-09 16:17:45 +0200175 ret = device_chld_remove(dev, NULL, flags);
Simon Glass3ac435d2014-11-10 17:16:47 -0700176 if (ret)
177 goto err;
178
Stefan Roesebc85aa42017-03-27 10:58:53 +0200179 /*
180 * Remove the device if called with the "normal" remove flag set,
181 * or if the remove flag matches any of the drivers remove flags
182 */
Stefan Roese426f99f2017-04-24 09:48:02 +0200183 if (drv->remove && flags_remove(flags, drv->flags)) {
Simon Glass3ac435d2014-11-10 17:16:47 -0700184 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
Anatolij Gustschin5349e252020-02-17 12:36:43 +0100197 if (!(drv->flags &
198 (DM_FLAG_DEFAULT_PD_CTRL_OFF | DM_FLAG_REMOVE_WITH_PD_ON)) &&
199 dev != gd->cur_serial_dev)
Anatolij Gustschin52edfed2019-09-27 13:48:15 +0530200 dev_power_domain_off(dev);
201
Stefan Roese426f99f2017-04-24 09:48:02 +0200202 if (flags_remove(flags, drv->flags)) {
Stefan Roesebc85aa42017-03-27 10:58:53 +0200203 device_free(dev);
Simon Glass3ac435d2014-11-10 17:16:47 -0700204
Stefan Roesebc85aa42017-03-27 10:58:53 +0200205 dev->seq = -1;
206 dev->flags &= ~DM_FLAG_ACTIVATED;
207 }
Simon Glass3ac435d2014-11-10 17:16:47 -0700208
209 return ret;
210
211err_remove:
212 /* We can't put the children back */
213 dm_warn("%s: Device '%s' failed to remove, but children are gone\n",
214 __func__, dev->name);
215err:
216 ret = uclass_post_probe_device(dev);
217 if (ret) {
218 dm_warn("%s: Device '%s' failed to post_probe on error path\n",
219 __func__, dev->name);
220 }
221
222 return ret;
223}