diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2010-07-21 06:13:10 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-08-04 03:12:01 -0400 |
commit | b3dd51a8a6ce2e618e8a1be8fa0e7d3d4733c300 (patch) | |
tree | 7a843ef70cb0a680dbf118d1e7a9a73e56f0d45c /include/linux/sh_clk.h | |
parent | b5272b509a8570bb559156001e74ee162c5cb96a (diff) |
sh: add a reparent function to DIV6 clocks
Add support for reparenting of div6 clocks on SuperH and SH-Mobile SoCs.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Acked-by: Magnus Damm <damm@opensource.se>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/linux/sh_clk.h')
-rw-r--r-- | include/linux/sh_clk.h | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/include/linux/sh_clk.h b/include/linux/sh_clk.h index 08a07b9a894f..875ce50719a9 100644 --- a/include/linux/sh_clk.h +++ b/include/linux/sh_clk.h | |||
@@ -142,13 +142,22 @@ int sh_clk_div4_enable_register(struct clk *clks, int nr, | |||
142 | int sh_clk_div4_reparent_register(struct clk *clks, int nr, | 142 | int sh_clk_div4_reparent_register(struct clk *clks, int nr, |
143 | struct clk_div4_table *table); | 143 | struct clk_div4_table *table); |
144 | 144 | ||
145 | #define SH_CLK_DIV6(_parent, _reg, _flags) \ | 145 | #define SH_CLK_DIV6_EXT(_parent, _reg, _flags, _parents, \ |
146 | { \ | 146 | _num_parents, _src_shift, _src_width) \ |
147 | .parent = _parent, \ | 147 | { \ |
148 | .enable_reg = (void __iomem *)_reg, \ | 148 | .parent = _parent, \ |
149 | .flags = _flags, \ | 149 | .enable_reg = (void __iomem *)_reg, \ |
150 | .flags = _flags, \ | ||
151 | .parent_table = _parents, \ | ||
152 | .parent_num = _num_parents, \ | ||
153 | .src_shift = _src_shift, \ | ||
154 | .src_width = _src_width, \ | ||
150 | } | 155 | } |
151 | 156 | ||
157 | #define SH_CLK_DIV6(_parent, _reg, _flags) \ | ||
158 | SH_CLK_DIV6_EXT(_parent, _reg, _flags, NULL, 0, 0, 0) | ||
159 | |||
152 | int sh_clk_div6_register(struct clk *clks, int nr); | 160 | int sh_clk_div6_register(struct clk *clks, int nr); |
161 | int sh_clk_div6_reparent_register(struct clk *clks, int nr); | ||
153 | 162 | ||
154 | #endif /* __SH_CLOCK_H */ | 163 | #endif /* __SH_CLOCK_H */ |