]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/arm/plat-s5p/include/plat/s5p-clock.h
Merge branches 'irq-core-for-linus' and 'core-locking-for-linus' of git://git.kernel...
[net-next-2.6.git] / arch / arm / plat-s5p / include / plat / s5p-clock.h
CommitLineData
1a0e8a52
KK
1/* linux/arch/arm/plat-s5p/include/plat/s5p-clock.h
2 *
3109e550
KK
3 * Copyright (c) 2009-2010 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
1a0e8a52
KK
5 *
6 * Header file for s5p clock support
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11*/
12
13#ifndef __ASM_PLAT_S5P_CLOCK_H
14#define __ASM_PLAT_S5P_CLOCK_H __FILE__
15
16#include <linux/clk.h>
17
18#define GET_DIV(clk, field) ((((clk) & field##_MASK) >> field##_SHIFT) + 1)
19
20#define clk_fin_apll clk_ext_xtal_mux
21#define clk_fin_mpll clk_ext_xtal_mux
22#define clk_fin_epll clk_ext_xtal_mux
3109e550 23#define clk_fin_dpll clk_ext_xtal_mux
0c1945d3 24#define clk_fin_vpll clk_ext_xtal_mux
a443a637 25#define clk_fin_hpll clk_ext_xtal_mux
1a0e8a52
KK
26
27extern struct clk clk_ext_xtal_mux;
f001d5b2 28extern struct clk clk_xusbxti;
1a0e8a52 29extern struct clk clk_48m;
a443a637 30extern struct clk s5p_clk_27m;
1a0e8a52
KK
31extern struct clk clk_fout_apll;
32extern struct clk clk_fout_mpll;
33extern struct clk clk_fout_epll;
3109e550 34extern struct clk clk_fout_dpll;
f445dbd5 35extern struct clk clk_fout_vpll;
1a0e8a52 36extern struct clk clk_arm;
0c1945d3 37extern struct clk clk_vpll;
1a0e8a52
KK
38
39extern struct clksrc_sources clk_src_apll;
40extern struct clksrc_sources clk_src_mpll;
41extern struct clksrc_sources clk_src_epll;
3109e550 42extern struct clksrc_sources clk_src_dpll;
1a0e8a52 43
1a0e8a52
KK
44extern int s5p_gatectrl(void __iomem *reg, struct clk *clk, int enable);
45
d4b34c6c
SY
46/* Common EPLL operations for S5P platform */
47extern int s5p_epll_enable(struct clk *clk, int enable);
48extern unsigned long s5p_epll_get_rate(struct clk *clk);
49
1a0e8a52 50#endif /* __ASM_PLAT_S5P_CLOCK_H */