blob: 49f6e9b6eda20a22258cd8e95da9012f61f06b3e [file] [log] [blame]
Magnus Dammd28bdf02010-05-11 13:29:17 +00001#ifndef __SH_CLOCK_H
2#define __SH_CLOCK_H
3
4#include <linux/list.h>
5#include <linux/seq_file.h>
6#include <linux/cpufreq.h>
Paul Mundt28085bc2010-10-15 16:46:37 +09007#include <linux/types.h>
8#include <linux/kref.h>
Magnus Dammd28bdf02010-05-11 13:29:17 +00009#include <linux/clk.h>
10#include <linux/err.h>
11
12struct clk;
13
Paul Mundt28085bc2010-10-15 16:46:37 +090014struct clk_mapping {
15 phys_addr_t phys;
16 void __iomem *base;
17 unsigned long len;
18 struct kref ref;
19};
20
Magnus Dammd28bdf02010-05-11 13:29:17 +000021struct clk_ops {
22 void (*init)(struct clk *clk);
23 int (*enable)(struct clk *clk);
24 void (*disable)(struct clk *clk);
25 unsigned long (*recalc)(struct clk *clk);
26 int (*set_rate)(struct clk *clk, unsigned long rate, int algo_id);
27 int (*set_parent)(struct clk *clk, struct clk *parent);
28 long (*round_rate)(struct clk *clk, unsigned long rate);
29};
30
31struct clk {
32 struct list_head node;
Magnus Dammd28bdf02010-05-11 13:29:17 +000033 struct clk *parent;
Guennadi Liakhovetskib5272b502010-07-21 10:13:06 +000034 struct clk **parent_table; /* list of parents to */
35 unsigned short parent_num; /* choose between */
36 unsigned char src_shift; /* source clock field in the */
37 unsigned char src_width; /* configuration register */
Magnus Dammd28bdf02010-05-11 13:29:17 +000038 struct clk_ops *ops;
39
40 struct list_head children;
41 struct list_head sibling; /* node for children */
42
43 int usecount;
44
45 unsigned long rate;
46 unsigned long flags;
47
48 void __iomem *enable_reg;
49 unsigned int enable_bit;
50
51 unsigned long arch_flags;
52 void *priv;
53 struct dentry *dentry;
Paul Mundt28085bc2010-10-15 16:46:37 +090054 struct clk_mapping *mapping;
Magnus Dammd28bdf02010-05-11 13:29:17 +000055 struct cpufreq_frequency_table *freq_table;
Paul Mundtf5869032010-10-15 18:17:35 +090056 unsigned int nr_freqs;
Magnus Dammd28bdf02010-05-11 13:29:17 +000057};
58
59#define CLK_ENABLE_ON_INIT (1 << 0)
60
Paul Mundta71ba092010-05-13 18:42:25 +090061/* drivers/sh/clk.c */
Magnus Dammd28bdf02010-05-11 13:29:17 +000062unsigned long followparent_recalc(struct clk *);
63void recalculate_root_clocks(void);
64void propagate_rate(struct clk *);
65int clk_reparent(struct clk *child, struct clk *parent);
66int clk_register(struct clk *);
67void clk_unregister(struct clk *);
Magnus Damm8b5ee112010-05-11 13:29:25 +000068void clk_enable_init_clocks(void);
Magnus Dammd28bdf02010-05-11 13:29:17 +000069
Magnus Dammd28bdf02010-05-11 13:29:17 +000070/**
71 * clk_set_rate_ex - set the clock rate for a clock source, with additional parameter
72 * @clk: clock source
73 * @rate: desired clock rate in Hz
74 * @algo_id: algorithm id to be passed down to ops->set_rate
75 *
76 * Returns success (0) or negative errno.
77 */
78int clk_set_rate_ex(struct clk *clk, unsigned long rate, int algo_id);
79
80enum clk_sh_algo_id {
81 NO_CHANGE = 0,
82
83 IUS_N1_N1,
84 IUS_322,
85 IUS_522,
86 IUS_N11,
87
88 SB_N1,
89
90 SB3_N1,
91 SB3_32,
92 SB3_43,
93 SB3_54,
94
95 BP_N1,
96
97 IP_N1,
98};
99
100struct clk_div_mult_table {
101 unsigned int *divisors;
102 unsigned int nr_divisors;
103 unsigned int *multipliers;
104 unsigned int nr_multipliers;
105};
106
107struct cpufreq_frequency_table;
108void clk_rate_table_build(struct clk *clk,
109 struct cpufreq_frequency_table *freq_table,
110 int nr_freqs,
111 struct clk_div_mult_table *src_table,
112 unsigned long *bitmap);
113
114long clk_rate_table_round(struct clk *clk,
115 struct cpufreq_frequency_table *freq_table,
116 unsigned long rate);
117
118int clk_rate_table_find(struct clk *clk,
119 struct cpufreq_frequency_table *freq_table,
120 unsigned long rate);
121
122#define SH_CLK_MSTP32(_parent, _enable_reg, _enable_bit, _flags) \
123{ \
124 .parent = _parent, \
125 .enable_reg = (void __iomem *)_enable_reg, \
126 .enable_bit = _enable_bit, \
127 .flags = _flags, \
128}
129
130int sh_clk_mstp32_register(struct clk *clks, int nr);
131
132#define SH_CLK_DIV4(_parent, _reg, _shift, _div_bitmap, _flags) \
133{ \
134 .parent = _parent, \
135 .enable_reg = (void __iomem *)_reg, \
136 .enable_bit = _shift, \
137 .arch_flags = _div_bitmap, \
138 .flags = _flags, \
139}
140
141struct clk_div4_table {
142 struct clk_div_mult_table *div_mult_table;
143 void (*kick)(struct clk *clk);
144};
145
146int sh_clk_div4_register(struct clk *clks, int nr,
147 struct clk_div4_table *table);
148int sh_clk_div4_enable_register(struct clk *clks, int nr,
149 struct clk_div4_table *table);
150int sh_clk_div4_reparent_register(struct clk *clks, int nr,
151 struct clk_div4_table *table);
152
Guennadi Liakhovetskib3dd51a2010-07-21 10:13:10 +0000153#define SH_CLK_DIV6_EXT(_parent, _reg, _flags, _parents, \
154 _num_parents, _src_shift, _src_width) \
155{ \
156 .parent = _parent, \
157 .enable_reg = (void __iomem *)_reg, \
158 .flags = _flags, \
159 .parent_table = _parents, \
160 .parent_num = _num_parents, \
161 .src_shift = _src_shift, \
162 .src_width = _src_width, \
Magnus Dammd28bdf02010-05-11 13:29:17 +0000163}
164
Guennadi Liakhovetskib3dd51a2010-07-21 10:13:10 +0000165#define SH_CLK_DIV6(_parent, _reg, _flags) \
166 SH_CLK_DIV6_EXT(_parent, _reg, _flags, NULL, 0, 0, 0)
167
Magnus Dammd28bdf02010-05-11 13:29:17 +0000168int sh_clk_div6_register(struct clk *clks, int nr);
Guennadi Liakhovetskib3dd51a2010-07-21 10:13:10 +0000169int sh_clk_div6_reparent_register(struct clk *clks, int nr);
Magnus Dammd28bdf02010-05-11 13:29:17 +0000170
171#endif /* __SH_CLOCK_H */