iwlwifi: make mac80211 ops a device config
[linux-2.6/libata-dev.git] / include / linux / sh_clk.h
blob4dca992f3093771993ac9d98d1233df5e2f33cfa
1 #ifndef __SH_CLOCK_H
2 #define __SH_CLOCK_H
4 #include <linux/list.h>
5 #include <linux/seq_file.h>
6 #include <linux/cpufreq.h>
7 #include <linux/types.h>
8 #include <linux/kref.h>
9 #include <linux/clk.h>
10 #include <linux/err.h>
12 struct clk;
14 struct clk_mapping {
15 phys_addr_t phys;
16 void __iomem *base;
17 unsigned long len;
18 struct kref ref;
21 struct 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);
31 struct clk {
32 struct list_head node;
33 struct clk *parent;
34 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 */
38 struct clk_ops *ops;
40 struct list_head children;
41 struct list_head sibling; /* node for children */
43 int usecount;
45 unsigned long rate;
46 unsigned long flags;
48 void __iomem *enable_reg;
49 unsigned int enable_bit;
51 unsigned long arch_flags;
52 void *priv;
53 struct dentry *dentry;
54 struct clk_mapping *mapping;
55 struct cpufreq_frequency_table *freq_table;
56 unsigned int nr_freqs;
59 #define CLK_ENABLE_ON_INIT (1 << 0)
61 /* drivers/sh/clk.c */
62 unsigned long followparent_recalc(struct clk *);
63 void recalculate_root_clocks(void);
64 void propagate_rate(struct clk *);
65 int clk_reparent(struct clk *child, struct clk *parent);
66 int clk_register(struct clk *);
67 void clk_unregister(struct clk *);
68 void clk_enable_init_clocks(void);
70 /**
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
76 * Returns success (0) or negative errno.
78 int clk_set_rate_ex(struct clk *clk, unsigned long rate, int algo_id);
80 enum clk_sh_algo_id {
81 NO_CHANGE = 0,
83 IUS_N1_N1,
84 IUS_322,
85 IUS_522,
86 IUS_N11,
88 SB_N1,
90 SB3_N1,
91 SB3_32,
92 SB3_43,
93 SB3_54,
95 BP_N1,
97 IP_N1,
100 struct clk_div_mult_table {
101 unsigned int *divisors;
102 unsigned int nr_divisors;
103 unsigned int *multipliers;
104 unsigned int nr_multipliers;
107 struct cpufreq_frequency_table;
108 void 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);
114 long clk_rate_table_round(struct clk *clk,
115 struct cpufreq_frequency_table *freq_table,
116 unsigned long rate);
118 int clk_rate_table_find(struct clk *clk,
119 struct cpufreq_frequency_table *freq_table,
120 unsigned long rate);
122 long clk_rate_div_range_round(struct clk *clk, unsigned int div_min,
123 unsigned int div_max, unsigned long rate);
125 #define SH_CLK_MSTP32(_parent, _enable_reg, _enable_bit, _flags) \
127 .parent = _parent, \
128 .enable_reg = (void __iomem *)_enable_reg, \
129 .enable_bit = _enable_bit, \
130 .flags = _flags, \
133 int sh_clk_mstp32_register(struct clk *clks, int nr);
135 #define SH_CLK_DIV4(_parent, _reg, _shift, _div_bitmap, _flags) \
137 .parent = _parent, \
138 .enable_reg = (void __iomem *)_reg, \
139 .enable_bit = _shift, \
140 .arch_flags = _div_bitmap, \
141 .flags = _flags, \
144 struct clk_div4_table {
145 struct clk_div_mult_table *div_mult_table;
146 void (*kick)(struct clk *clk);
149 int sh_clk_div4_register(struct clk *clks, int nr,
150 struct clk_div4_table *table);
151 int sh_clk_div4_enable_register(struct clk *clks, int nr,
152 struct clk_div4_table *table);
153 int sh_clk_div4_reparent_register(struct clk *clks, int nr,
154 struct clk_div4_table *table);
156 #define SH_CLK_DIV6_EXT(_parent, _reg, _flags, _parents, \
157 _num_parents, _src_shift, _src_width) \
159 .parent = _parent, \
160 .enable_reg = (void __iomem *)_reg, \
161 .flags = _flags, \
162 .parent_table = _parents, \
163 .parent_num = _num_parents, \
164 .src_shift = _src_shift, \
165 .src_width = _src_width, \
168 #define SH_CLK_DIV6(_parent, _reg, _flags) \
169 SH_CLK_DIV6_EXT(_parent, _reg, _flags, NULL, 0, 0, 0)
171 int sh_clk_div6_register(struct clk *clks, int nr);
172 int sh_clk_div6_reparent_register(struct clk *clks, int nr);
174 #endif /* __SH_CLOCK_H */