diff options
author | Ajay Kumar <ajaykumar.rs@samsung.com> | 2015-03-04 19:05:24 +0530 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2015-04-06 14:34:40 +0900 |
commit | 70b4fb660df25d4a150833f7487a0059d1827fee (patch) | |
tree | aa4932677e539b20c7731ad7b6153de44671c5e6 /arch/arm/include/asm | |
parent | d7e1f02efc8e5272015afed596c395b5a4f8e196 (diff) | |
download | u-boot-imx-70b4fb660df25d4a150833f7487a0059d1827fee.zip u-boot-imx-70b4fb660df25d4a150833f7487a0059d1827fee.tar.gz u-boot-imx-70b4fb660df25d4a150833f7487a0059d1827fee.tar.bz2 |
arm: exynos: add display clocks for Exynos5800
Add get_lcd_clk and set_lcd_clk callbacks for Exynos5800 needed by
exynos video driver.
Signed-off-by: Ajay Kumar <ajaykumar.rs@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/arch-exynos/clk.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-exynos/clk.h b/arch/arm/include/asm/arch-exynos/clk.h index 2a17dfc..d20b7d2 100644 --- a/arch/arm/include/asm/arch-exynos/clk.h +++ b/arch/arm/include/asm/arch-exynos/clk.h @@ -16,6 +16,9 @@ #define BPLL 5 #define RPLL 6 #define SPLL 7 +#define CPLL 8 +#define DPLL 9 +#define IPLL 10 #define MASK_PRE_RATIO(x) (0xff << ((x << 4) + 8)) #define MASK_RATIO(x) (0xf << (x << 4)) |