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

Commit 48b851df authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "lpm-levels: Do not disable non-sec interrupts in suspend"

parents c36fa94e 8834c35b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -27,6 +27,7 @@ struct gic_quirk {
	u32 iidr;
	u32 mask;
};
extern bool from_suspend;

#ifdef CONFIG_QCOM_SHOW_RESUME_IRQ
extern int msm_show_resume_irq_mask;
+3 −0
Original line number Diff line number Diff line
@@ -894,6 +894,9 @@ static bool gic_dist_security_disabled(void)
static int gic_cpu_pm_notifier(struct notifier_block *self,
			       unsigned long cmd, void *v)
{
	if (from_suspend)
		return NOTIFY_OK;

	if (cmd == CPU_PM_EXIT) {
		if (gic_dist_security_disabled())
			gic_enable_redist(true);
+4 −0
Original line number Diff line number Diff line
@@ -22,6 +22,8 @@
#include <linux/spinlock.h>
#include <linux/syscore_ops.h>

bool from_suspend;

static ATOMIC_NOTIFIER_HEAD(cpu_pm_notifier_chain);

static int cpu_pm_notify(enum cpu_pm_event event, int nr_to_call, int *nr_calls)
@@ -181,6 +183,7 @@ static int cpu_pm_suspend(void)
{
	int ret;

	from_suspend = true;
	ret = cpu_pm_enter();
	if (ret)
		return ret;
@@ -191,6 +194,7 @@ static int cpu_pm_suspend(void)

static void cpu_pm_resume(void)
{
	from_suspend = false;
	cpu_cluster_pm_exit();
	cpu_pm_exit();
}