aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-exynos/include/mach/clock-domain.h
blob: 91013d1cf5d6e11a480109a1e2cdd3580f154408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* linux/arch/arm/mach-exynos/include/mach/clock-domain.h
 *
 * Copyright (c) 2010 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com/
 *
 * EXYNOS - Clock Domain support
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
*/

#ifndef __ASM_ARCH_CLOCK_DOMAIN_H
#define __ASM_ARCH_CLOCK_DOMAIN_H __FILE__

#define LPA_DOMAIN	0x00000001

struct clock {
	struct list_head node;

	struct clk *clk;
};

struct clock_domain {
	struct list_head node;

	unsigned int flag;
	struct list_head domain_list;
};

int clock_add_domain(unsigned int flag, struct clk *clk);
int clock_domain_enabled(unsigned int flag);
#endif /* __ASM_ARCH_CLOCK_DOMAIN_H */