]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-exynos/clk.h
ARM: exynos: clock: modify the set_mmc_clk for exynos4
[karo-tx-uboot.git] / arch / arm / include / asm / arch-exynos / clk.h
1 /*
2  * (C) Copyright 2010 Samsung Electronics
3  * Minkyu Kang <mk7.kang@samsung.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef __ASM_ARM_ARCH_CLK_H_
9 #define __ASM_ARM_ARCH_CLK_H_
10
11 #define APLL    0
12 #define MPLL    1
13 #define EPLL    2
14 #define HPLL    3
15 #define VPLL    4
16 #define BPLL    5
17 #define RPLL    6
18
19 #define MASK_PRE_RATIO(x)       (0xff << ((x << 4) + 8))
20 #define MASK_RATIO(x)           (0xf << (x << 4))
21 #define SET_PRE_RATIO(x, y)     ((y & 0xff) << ((x << 4) + 8))
22 #define SET_RATIO(x, y)         ((y & 0xf) << (x << 4))
23
24 enum pll_src_bit {
25         EXYNOS_SRC_MPLL = 6,
26         EXYNOS_SRC_EPLL,
27         EXYNOS_SRC_VPLL,
28 };
29
30 unsigned long get_pll_clk(int pllreg);
31 unsigned long get_arm_clk(void);
32 unsigned long get_i2c_clk(void);
33 unsigned long get_pwm_clk(void);
34 unsigned long get_uart_clk(int dev_index);
35 unsigned long get_mmc_clk(int dev_index);
36 void set_mmc_clk(int dev_index, unsigned int div);
37 unsigned long get_lcd_clk(void);
38 void set_lcd_clk(void);
39 void set_mipi_clk(void);
40 int set_i2s_clk_source(unsigned int i2s_id);
41 int set_i2s_clk_prescaler(unsigned int src_frq, unsigned int dst_frq,
42                                 unsigned int i2s_id);
43 int set_epll_clk(unsigned long rate);
44 int set_spi_clk(int periph_id, unsigned int rate);
45
46 /**
47  * get the clk frequency of the required peripheral
48  *
49  * @param peripheral    Peripheral id
50  *
51  * @return frequency of the peripheral clk
52  */
53 unsigned long clock_get_periph_rate(int peripheral);
54
55 #endif