]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/arm/include/asm/arch-s5pc1xx/clk.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / arm / include / asm / arch-s5pc1xx / clk.h
CommitLineData
399e5ae0
MK
1/*
2 * (C) Copyright 2009 Samsung Electronics
3 * Minkyu Kang <mk7.kang@samsung.com>
4 * Heungjun Kim <riverful.kim@samsung.com>
5 *
1a459660 6 * SPDX-License-Identifier: GPL-2.0+
399e5ae0
MK
7 */
8
9#ifndef __ASM_ARM_ARCH_CLK_H_
10#define __ASM_ARM_ARCH_CLK_H_
11
6c71a8fe
NKC
12#define APLL 0
13#define MPLL 1
14#define EPLL 2
15#define HPLL 3
16#define VPLL 4
17
3c152165
MK
18unsigned long get_pll_clk(int pllreg);
19unsigned long get_arm_clk(void);
20unsigned long get_pwm_clk(void);
21unsigned long get_uart_clk(int dev_index);
68a8cbfa 22void set_mmc_clk(int dev_index, unsigned int div);
399e5ae0
MK
23
24#endif