summaryrefslogtreecommitdiffstats
path: root/drivers/clk/sunxi-ng/ccu_common.h
diff options
context:
space:
mode:
authorChen-Yu Tsai <wens@csie.org>2017-01-28 20:22:33 +0800
committerMaxime Ripard <maxime.ripard@free-electrons.com>2017-01-30 08:36:20 +0100
commit3de64bf187ce838b78ccd6ee7c1cc25e0aba07bd (patch)
treed8ac6c61d15f902b0a31f3f9e5e86752449ac532 /drivers/clk/sunxi-ng/ccu_common.h
parent82aab516ec96ab9f9ad4b80a0bab9368b1cd5cdc (diff)
downloadlinux-stable-3de64bf187ce838b78ccd6ee7c1cc25e0aba07bd.tar.gz
linux-stable-3de64bf187ce838b78ccd6ee7c1cc25e0aba07bd.tar.bz2
linux-stable-3de64bf187ce838b78ccd6ee7c1cc25e0aba07bd.zip
clk: sunxi-ng: Support separately grouped PLL lock status register
On the Allwinner A80 SoC, the PLL lock status indicators are grouped together in a separate register, as opposed to being scattered in each PLL's configuration register. Add a flag to support this. Signed-off-by: Chen-Yu Tsai <wens@csie.org> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'drivers/clk/sunxi-ng/ccu_common.h')
-rw-r--r--drivers/clk/sunxi-ng/ccu_common.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/clk/sunxi-ng/ccu_common.h b/drivers/clk/sunxi-ng/ccu_common.h
index cdd69eb2e0b9..73d81dc58fc5 100644
--- a/drivers/clk/sunxi-ng/ccu_common.h
+++ b/drivers/clk/sunxi-ng/ccu_common.h
@@ -22,6 +22,7 @@
#define CCU_FEATURE_FIXED_PREDIV BIT(2)
#define CCU_FEATURE_FIXED_POSTDIV BIT(3)
#define CCU_FEATURE_ALL_PREDIV BIT(4)
+#define CCU_FEATURE_LOCK_REG BIT(5)
struct device_node;
@@ -57,6 +58,7 @@ struct device_node;
struct ccu_common {
void __iomem *base;
u16 reg;
+ u16 lock_reg;
u32 prediv;
unsigned long features;