Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 838631b5 authored by Guenter Roeck's avatar Guenter Roeck Committed by Elliot Berman
Browse files

drivers: firmware: psci: Register with kernel restart handler



Register with kernel restart handler instead of setting arm_pm_restart
directly. This enables support for replacing the PSCI restart handler
with a different handler if necessary for a specific board.

Select a priority of 129 to indicate a higher than default priority, but
keep it as low as possible since PSCI reset is known to fail on some
boards.

Change-Id: I74d824186de527bde39b1e8a3d96351261e73a60
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
Reviewed-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Tested-by: default avatarWolfram Sang <wsa+renesas@sang-engineering.com>
Signed-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Acked-by: default avatarLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
Reviewed-by: default avatarStefan Agner <stefan.agner@toradex.com>
Patch-mainline: https://lore.kernel.org/patchwork/patch/1139628/


Signed-off-by: default avatarElliot Berman <eberman@codeaurora.org>
parent a0aff6fc
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -250,7 +250,8 @@ static int get_set_conduit_method(struct device_node *np)
	return 0;
}

static void psci_sys_reset(enum reboot_mode reboot_mode, const char *cmd)
static int psci_sys_reset(struct notifier_block *nb, unsigned long action,
			  void *data)
{
	if ((reboot_mode == REBOOT_WARM || reboot_mode == REBOOT_SOFT) &&
	    psci_system_reset2_supported) {
@@ -263,8 +264,15 @@ static void psci_sys_reset(enum reboot_mode reboot_mode, const char *cmd)
	} else {
		invoke_psci_fn(PSCI_0_2_FN_SYSTEM_RESET, 0, 0, 0);
	}

	return NOTIFY_DONE;
}

static struct notifier_block psci_sys_reset_nb = {
	.notifier_call = psci_sys_reset,
	.priority = 129,
};

static void psci_sys_poweroff(void)
{
	invoke_psci_fn(PSCI_0_2_FN_SYSTEM_OFF, 0, 0, 0);
@@ -431,7 +439,7 @@ static void __init psci_0_2_set_functions(void)

	psci_ops.migrate_info_type = psci_migrate_info_type;

	arm_pm_restart = psci_sys_reset;
	register_restart_handler(&psci_sys_reset_nb);

	pm_power_off = psci_sys_poweroff;
}