blob: cdeef324ccefaf1bd0a199ced5c538dfd817c451 [file] [log] [blame]
Minkyu Kangb1b24682011-01-24 15:22:23 +09001/*
2 * (C) Copyright 2010 Samsung Electronics
3 * Minkyu Kang <mk7.kang@samsung.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Minkyu Kangb1b24682011-01-24 15:22:23 +09006 */
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
Rajeshwari Shinde84112862012-07-03 20:02:58 +000016#define BPLL 5
Rajeshwari Birjeac892d02013-12-26 09:44:21 +053017#define RPLL 6
Minkyu Kangb1b24682011-01-24 15:22:23 +090018
Padmavathi Venna37feb7b2013-03-28 04:32:21 +000019enum pll_src_bit {
20 EXYNOS_SRC_MPLL = 6,
21 EXYNOS_SRC_EPLL,
22 EXYNOS_SRC_VPLL,
23};
24
Minkyu Kangb1b24682011-01-24 15:22:23 +090025unsigned long get_pll_clk(int pllreg);
26unsigned long get_arm_clk(void);
Rajeshwari Shinde1c9412a2012-07-23 21:23:48 +000027unsigned long get_i2c_clk(void);
Minkyu Kangb1b24682011-01-24 15:22:23 +090028unsigned long get_pwm_clk(void);
29unsigned long get_uart_clk(int dev_index);
Jaehoon Chung8788e062012-12-27 22:30:32 +000030unsigned long get_mmc_clk(int dev_index);
Jaehoon Chung9a772212011-05-17 21:19:17 +000031void set_mmc_clk(int dev_index, unsigned int div);
Donghwa Lee77ba1912012-04-05 19:36:12 +000032unsigned long get_lcd_clk(void);
33void set_lcd_clk(void);
34void set_mipi_clk(void);
Dani Krishna Mohan65c7ee62013-09-11 16:38:48 +053035int set_i2s_clk_source(unsigned int i2s_id);
36int set_i2s_clk_prescaler(unsigned int src_frq, unsigned int dst_frq,
37 unsigned int i2s_id);
Rajeshwari Shinde392a73a2012-10-25 19:49:29 +000038int set_epll_clk(unsigned long rate);
Hatim RVe6365b62012-11-02 01:15:34 +000039int set_spi_clk(int periph_id, unsigned int rate);
Minkyu Kangb1b24682011-01-24 15:22:23 +090040
Padmavathi Venna37feb7b2013-03-28 04:32:21 +000041/**
42 * get the clk frequency of the required peripheral
43 *
44 * @param peripheral Peripheral id
45 *
46 * @return frequency of the peripheral clk
47 */
48unsigned long clock_get_periph_rate(int peripheral);
49
Minkyu Kangb1b24682011-01-24 15:22:23 +090050#endif