2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2017-04-14 02:10:24 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
*/
|
|
|
|
|
2017-05-17 23:18:07 +00:00
|
|
|
#include <common.h>
|
2017-05-17 23:18:03 +00:00
|
|
|
#include <dm.h>
|
2017-04-14 02:10:24 +00:00
|
|
|
#include <sysreset.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/psci.h>
|
|
|
|
|
|
|
|
static int psci_sysreset_request(struct udevice *dev, enum sysreset_t type)
|
|
|
|
{
|
|
|
|
switch (type) {
|
|
|
|
case SYSRESET_WARM:
|
|
|
|
case SYSRESET_COLD:
|
2021-03-31 23:01:54 +00:00
|
|
|
psci_sys_reset(type);
|
2017-04-14 02:10:24 +00:00
|
|
|
break;
|
2019-05-16 21:48:41 +00:00
|
|
|
case SYSRESET_POWER_OFF:
|
2021-03-31 23:01:54 +00:00
|
|
|
psci_sys_poweroff();
|
2017-04-14 02:10:24 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINPROGRESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct sysreset_ops psci_sysreset_ops = {
|
|
|
|
.request = psci_sysreset_request,
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(psci_sysreset) = {
|
|
|
|
.name = "psci-sysreset",
|
|
|
|
.id = UCLASS_SYSRESET,
|
|
|
|
.ops = &psci_sysreset_ops,
|
|
|
|
};
|