clock.h 1.64 KB
Newer Older
1
#include <asm/clkdev.h>
2 3 4 5 6 7 8 9 10 11 12 13 14

struct clkops {
	void			(*enable)(struct clk *);
	void			(*disable)(struct clk *);
	unsigned long		(*getrate)(struct clk *);
};

struct clk {
	const struct clkops	*ops;
	unsigned long		rate;
	unsigned int		cken;
	unsigned int		delay;
	unsigned int		enabled;
Russell King's avatar
Russell King committed
15
	struct clk		*other;
16 17
};

18
#define INIT_CLKREG(_clk,_devname,_conname)		\
19
	{						\
20 21 22 23 24 25 26
		.clk		= _clk,			\
		.dev_id		= _devname,		\
		.con_id		= _conname,		\
	}

#define DEFINE_CKEN(_name, _cken, _rate, _delay)	\
struct clk clk_##_name = {				\
27 28 29 30 31 32
		.ops	= &clk_cken_ops,		\
		.rate	= _rate,			\
		.cken	= CKEN_##_cken,			\
		.delay	= _delay,			\
	}

33 34
#define DEFINE_CK(_name, _cken, _ops)			\
struct clk clk_##_name = {				\
35 36 37 38
		.ops	= _ops,				\
		.cken	= CKEN_##_cken,			\
	}

39 40 41 42
#define DEFINE_CLK(_name, _ops, _rate, _delay)		\
struct clk clk_##_name = {				\
		.ops	= _ops, 			\
		.rate	= _rate,			\
43 44 45
		.delay	= _delay,			\
	}

46 47 48 49 50
extern const struct clkops clk_cken_ops;

void clk_cken_enable(struct clk *clk);
void clk_cken_disable(struct clk *clk);

51
#ifdef CONFIG_PXA3xx
52 53
#define DEFINE_PXA3_CKEN(_name, _cken, _rate, _delay)	\
struct clk clk_##_name = {				\
54 55 56 57 58 59
		.ops	= &clk_pxa3xx_cken_ops,		\
		.rate	= _rate,			\
		.cken	= CKEN_##_cken,			\
		.delay	= _delay,			\
	}

60 61
#define DEFINE_PXA3_CK(_name, _cken, _ops)		\
struct clk clk_##_name = {				\
62 63 64 65 66 67 68 69 70
		.ops	= _ops,				\
		.cken	= CKEN_##_cken,			\
	}

extern const struct clkops clk_pxa3xx_cken_ops;
extern void clk_pxa3xx_cken_enable(struct clk *);
extern void clk_pxa3xx_cken_disable(struct clk *);
#endif

71
void clks_register(struct clk_lookup *clks, size_t num);
72
int clk_add_alias(const char *alias, const char *alias_name, char *id,
73 74
	struct device *dev);