mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 05:34:28 +00:00
b11f634b1c
Driver model: Rename U_BOOT_DEVICE et al. dtoc: Tidy up and add more tests ns16550 code clean-up x86 and sandbox minor fixes for of-platdata dtoc prepration for adding build-time instantiation -----BEGIN PGP SIGNATURE----- iQFFBAABCgAvFiEEslwAIq+Gp8wWVbYnfxc6PpAIreYFAl/09LURHHNqZ0BjaHJv bWl1bS5vcmcACgkQfxc6PpAIrebjwwf/fHRjYsAY/Yj/+y1xgo3L3sphIvQUqTDF KkLl+kHdV5r8W/HJULxLQcF2r7pcPEI6TAQxuj3qQ5SUvm2HviS8GHGPawDEwyht HgBp9VD56+HUadMfnbG//DVS73ycbL4XSKlYqpkINEejtnlttsCIawUXX5cTyGM/ 59VkgnKrKvJQRUXvYLa8MTugTs4fkPJGDqhActBk/7SP1SImj+rfalNSqA2/dx6y 2RnPCSzB1x2231KSj+B1NgGlR3Xb8P8zgh20ijcEU/hrlXBTZyi7K7f4SJR30Efu LYkkuj4VbxcV/25RozR0fmknqCs0QyAI+/dql6TNtbTSPC/jAfj0jQ== =9kN3 -----END PGP SIGNATURE----- Merge tag 'dm-pull-5jan21' of git://git.denx.de/u-boot-dm into next Driver model: make some udevice fields private Driver model: Rename U_BOOT_DEVICE et al. dtoc: Tidy up and add more tests ns16550 code clean-up x86 and sandbox minor fixes for of-platdata dtoc prepration for adding build-time instantiation
227 lines
4.5 KiB
C
227 lines
4.5 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Device manager
|
|
*
|
|
* Copyright (c) 2014 Google, Inc
|
|
*
|
|
* (C) Copyright 2012
|
|
* Pavel Herrmann <morpheus.ibis@gmail.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <errno.h>
|
|
#include <log.h>
|
|
#include <malloc.h>
|
|
#include <dm/device.h>
|
|
#include <dm/device-internal.h>
|
|
#include <dm/uclass.h>
|
|
#include <dm/uclass-internal.h>
|
|
#include <dm/util.h>
|
|
#include <power-domain.h>
|
|
|
|
int device_chld_unbind(struct udevice *dev, struct driver *drv)
|
|
{
|
|
struct udevice *pos, *n;
|
|
int ret, saved_ret = 0;
|
|
|
|
assert(dev);
|
|
|
|
list_for_each_entry_safe(pos, n, &dev->child_head, sibling_node) {
|
|
if (drv && (pos->driver != drv))
|
|
continue;
|
|
|
|
ret = device_unbind(pos);
|
|
if (ret && !saved_ret) {
|
|
log_warning("device '%s' failed to unbind\n",
|
|
pos->name);
|
|
saved_ret = ret;
|
|
}
|
|
}
|
|
|
|
return log_ret(saved_ret);
|
|
}
|
|
|
|
int device_chld_remove(struct udevice *dev, struct driver *drv,
|
|
uint flags)
|
|
{
|
|
struct udevice *pos, *n;
|
|
int ret;
|
|
|
|
assert(dev);
|
|
|
|
list_for_each_entry_safe(pos, n, &dev->child_head, sibling_node) {
|
|
if (drv && (pos->driver != drv))
|
|
continue;
|
|
|
|
ret = device_remove(pos, flags);
|
|
if (ret)
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int device_unbind(struct udevice *dev)
|
|
{
|
|
const struct driver *drv;
|
|
int ret;
|
|
|
|
if (!dev)
|
|
return log_msg_ret("dev", -EINVAL);
|
|
|
|
if (dev_get_flags(dev) & DM_FLAG_ACTIVATED)
|
|
return log_msg_ret("active", -EINVAL);
|
|
|
|
if (!(dev_get_flags(dev) & DM_FLAG_BOUND))
|
|
return log_msg_ret("not-bound", -EINVAL);
|
|
|
|
drv = dev->driver;
|
|
assert(drv);
|
|
|
|
if (drv->unbind) {
|
|
ret = drv->unbind(dev);
|
|
if (ret)
|
|
return log_msg_ret("unbind", ret);
|
|
}
|
|
|
|
ret = device_chld_unbind(dev, NULL);
|
|
if (ret)
|
|
return log_msg_ret("child unbind", ret);
|
|
|
|
if (dev_get_flags(dev) & DM_FLAG_ALLOC_PDATA) {
|
|
free(dev_get_plat(dev));
|
|
dev_set_plat(dev, NULL);
|
|
}
|
|
if (dev_get_flags(dev) & DM_FLAG_ALLOC_UCLASS_PDATA) {
|
|
free(dev_get_uclass_plat(dev));
|
|
dev_set_uclass_plat(dev, NULL);
|
|
}
|
|
if (dev_get_flags(dev) & DM_FLAG_ALLOC_PARENT_PDATA) {
|
|
free(dev_get_parent_plat(dev));
|
|
dev_set_parent_plat(dev, NULL);
|
|
}
|
|
ret = uclass_unbind_device(dev);
|
|
if (ret)
|
|
return log_msg_ret("uc", ret);
|
|
|
|
if (dev->parent)
|
|
list_del(&dev->sibling_node);
|
|
|
|
devres_release_all(dev);
|
|
|
|
if (dev_get_flags(dev) & DM_FLAG_NAME_ALLOCED)
|
|
free((char *)dev->name);
|
|
free(dev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* device_free() - Free memory buffers allocated by a device
|
|
* @dev: Device that is to be started
|
|
*/
|
|
void device_free(struct udevice *dev)
|
|
{
|
|
int size;
|
|
|
|
if (dev->driver->priv_auto) {
|
|
free(dev_get_priv(dev));
|
|
dev_set_priv(dev, NULL);
|
|
}
|
|
size = dev->uclass->uc_drv->per_device_auto;
|
|
if (size) {
|
|
free(dev_get_uclass_priv(dev));
|
|
dev_set_uclass_priv(dev, NULL);
|
|
}
|
|
if (dev->parent) {
|
|
size = dev->parent->driver->per_child_auto;
|
|
if (!size) {
|
|
size = dev->parent->uclass->uc_drv->
|
|
per_child_auto;
|
|
}
|
|
if (size) {
|
|
free(dev_get_parent_priv(dev));
|
|
dev_set_parent_priv(dev, NULL);
|
|
}
|
|
}
|
|
dev_bic_flags(dev, DM_FLAG_PLATDATA_VALID);
|
|
|
|
devres_release_probe(dev);
|
|
}
|
|
|
|
static bool flags_remove(uint flags, uint drv_flags)
|
|
{
|
|
if ((flags & DM_REMOVE_NORMAL) ||
|
|
(flags && (drv_flags & (DM_FLAG_ACTIVE_DMA | DM_FLAG_OS_PREPARE))))
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
int device_remove(struct udevice *dev, uint flags)
|
|
{
|
|
const struct driver *drv;
|
|
int ret;
|
|
|
|
if (!dev)
|
|
return -EINVAL;
|
|
|
|
if (!(dev_get_flags(dev) & DM_FLAG_ACTIVATED))
|
|
return 0;
|
|
|
|
drv = dev->driver;
|
|
assert(drv);
|
|
|
|
ret = uclass_pre_remove_device(dev);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = device_chld_remove(dev, NULL, flags);
|
|
if (ret)
|
|
goto err;
|
|
|
|
/*
|
|
* Remove the device if called with the "normal" remove flag set,
|
|
* or if the remove flag matches any of the drivers remove flags
|
|
*/
|
|
if (drv->remove && flags_remove(flags, drv->flags)) {
|
|
ret = drv->remove(dev);
|
|
if (ret)
|
|
goto err_remove;
|
|
}
|
|
|
|
if (dev->parent && dev->parent->driver->child_post_remove) {
|
|
ret = dev->parent->driver->child_post_remove(dev);
|
|
if (ret) {
|
|
dm_warn("%s: Device '%s' failed child_post_remove()",
|
|
__func__, dev->name);
|
|
}
|
|
}
|
|
|
|
if (!(flags & DM_REMOVE_NO_PD) &&
|
|
!(drv->flags &
|
|
(DM_FLAG_DEFAULT_PD_CTRL_OFF | DM_FLAG_REMOVE_WITH_PD_ON)) &&
|
|
dev != gd->cur_serial_dev)
|
|
dev_power_domain_off(dev);
|
|
|
|
if (flags_remove(flags, drv->flags)) {
|
|
device_free(dev);
|
|
|
|
dev_bic_flags(dev, DM_FLAG_ACTIVATED);
|
|
}
|
|
|
|
return ret;
|
|
|
|
err_remove:
|
|
/* We can't put the children back */
|
|
dm_warn("%s: Device '%s' failed to remove, but children are gone\n",
|
|
__func__, dev->name);
|
|
err:
|
|
ret = uclass_post_probe_device(dev);
|
|
if (ret) {
|
|
dm_warn("%s: Device '%s' failed to post_probe on error path\n",
|
|
__func__, dev->name);
|
|
}
|
|
|
|
return ret;
|
|
}
|