mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
2ee93e3c95
The Low-Power Mode, when enabled, will make the "wait" MIPS instruction suspend the system. This is not really clock-related, but this bit happens to be in the register set of the CGU. Signed-off-by: Paul Cercueil <paul@crapouillou.net> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
46 lines
999 B
C
46 lines
999 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright (C) 2019 Paul Cercueil <paul@crapouillou.net>
|
|
*/
|
|
|
|
#include "cgu.h"
|
|
#include "pm.h"
|
|
|
|
#include <linux/io.h>
|
|
#include <linux/syscore_ops.h>
|
|
|
|
#define CGU_REG_LCR 0x04
|
|
|
|
#define LCR_LOW_POWER_MODE BIT(0)
|
|
|
|
static void __iomem * __maybe_unused ingenic_cgu_base;
|
|
|
|
static int __maybe_unused ingenic_cgu_pm_suspend(void)
|
|
{
|
|
u32 val = readl(ingenic_cgu_base + CGU_REG_LCR);
|
|
|
|
writel(val | LCR_LOW_POWER_MODE, ingenic_cgu_base + CGU_REG_LCR);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void __maybe_unused ingenic_cgu_pm_resume(void)
|
|
{
|
|
u32 val = readl(ingenic_cgu_base + CGU_REG_LCR);
|
|
|
|
writel(val & ~LCR_LOW_POWER_MODE, ingenic_cgu_base + CGU_REG_LCR);
|
|
}
|
|
|
|
static struct syscore_ops __maybe_unused ingenic_cgu_pm_ops = {
|
|
.suspend = ingenic_cgu_pm_suspend,
|
|
.resume = ingenic_cgu_pm_resume,
|
|
};
|
|
|
|
void ingenic_cgu_register_syscore_ops(struct ingenic_cgu *cgu)
|
|
{
|
|
if (IS_ENABLED(CONFIG_PM_SLEEP)) {
|
|
ingenic_cgu_base = cgu->base;
|
|
register_syscore_ops(&ingenic_cgu_pm_ops);
|
|
}
|
|
}
|