diff options
author | Tero Kristo <t-kristo@ti.com> | 2014-10-03 15:57:10 +0200 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2014-11-13 17:25:06 +0100 |
commit | f0d2f68a6387867c4748bc94c9b0165a49701204 (patch) | |
tree | cc53c00581f04a84b514ea5ce571b6b1a38c3a1d /arch/arm/mach-omap2/clock.h | |
parent | Linux 3.18-rc1 (diff) | |
download | linux-f0d2f68a6387867c4748bc94c9b0165a49701204.tar.xz linux-f0d2f68a6387867c4748bc94c9b0165a49701204.zip |
ARM: OMAP3: clock: use clk_features flags for omap3 DPLL4 checks
DPLL4 can't be reprogrammed on OMAP3430 ES1.0 due to hardware limitation.
Currently, the code does runtime omap_rev() check to see the chip it is
being executed on, instead, change this to use clk_features flags.
This avoids need for runtime omap_rev() checks.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm/mach-omap2/clock.h')
-rw-r--r-- | arch/arm/mach-omap2/clock.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/clock.h b/arch/arm/mach-omap2/clock.h index 4592a2762592..641337c6cde9 100644 --- a/arch/arm/mach-omap2/clock.h +++ b/arch/arm/mach-omap2/clock.h @@ -234,6 +234,7 @@ struct ti_clk_features { }; #define TI_CLK_DPLL_HAS_FREQSEL (1 << 0) +#define TI_CLK_DPLL4_DENY_REPROGRAM (1 << 1) extern struct ti_clk_features ti_clk_features; |