* Keerthy <j-keerthy@xxxxxx> [180516 15:21]: > Inroduce cpu_pm notifiers for context save/restore. This will be > needed for am43xx family in case of rtc only mode with ddr in > self-refresh. ... > +static int cpu_notifier(struct notifier_block *nb, unsigned long cmd, void *v) > +{ > + switch (cmd) { > + case CPU_CLUSTER_PM_ENTER: > + if (enable_off_mode) > + clkdm_save_context(); > + break; > + case CPU_CLUSTER_PM_EXIT: > + if (enable_off_mode) > + clkdm_restore_context(); > + break; > + } > + > + return NOTIFY_OK; > +} Can you do this too only on suspend instead of the cpu notifier? If you need to call this eventually from cpuidle also then yeah the notifier makes sense. Regards, Tony -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html