diff options
author | Peng Fan <peng.fan@nxp.com> | 2023-04-06 18:23:19 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-04-25 15:31:28 -0400 |
commit | 6326519f5755bbb72ff2f1b4747236790b5bb980 (patch) | |
tree | 8dbec1fd11f6a9613d310c6b261cbcf0bfcf591f /drivers/sysreset | |
parent | 439b9383ee1a22ffb589e007745ffbeaf7806465 (diff) | |
download | u-boot-6326519f5755bbb72ff2f1b4747236790b5bb980.tar.gz |
sysreset: psci: add psci_sysreset_get_status
Add weak function psci_sysreset_get_status for platform to define
their own reset status with CONFIG_SYSRESET enabled.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Diffstat (limited to 'drivers/sysreset')
-rw-r--r-- | drivers/sysreset/sysreset_psci.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/sysreset/sysreset_psci.c b/drivers/sysreset/sysreset_psci.c index 30c4b9c1f5d..a8a41528a84 100644 --- a/drivers/sysreset/sysreset_psci.c +++ b/drivers/sysreset/sysreset_psci.c @@ -9,6 +9,11 @@ #include <linux/errno.h> #include <linux/psci.h> +__weak int psci_sysreset_get_status(struct udevice *dev, char *buf, int size) +{ + return -EOPNOTSUPP; +} + static int psci_sysreset_request(struct udevice *dev, enum sysreset_t type) { switch (type) { @@ -28,6 +33,7 @@ static int psci_sysreset_request(struct udevice *dev, enum sysreset_t type) static struct sysreset_ops psci_sysreset_ops = { .request = psci_sysreset_request, + .get_status = psci_sysreset_get_status, }; U_BOOT_DRIVER(psci_sysreset) = { |