WIP FPC-III support
[linux/fpc-iii.git] / arch / m68k / include / asm / mcfclk.h
blob722627e06d6659a50dcbf715154142c791e62557
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * mcfclk.h -- coldfire specific clock structure
4 */
7 #ifndef mcfclk_h
8 #define mcfclk_h
10 struct clk;
12 struct clk_ops {
13 void (*enable)(struct clk *);
14 void (*disable)(struct clk *);
17 struct clk {
18 const char *name;
19 struct clk_ops *clk_ops;
20 unsigned long rate;
21 unsigned long enabled;
22 u8 slot;
25 extern struct clk *mcf_clks[];
27 #ifdef MCFPM_PPMCR0
28 extern struct clk_ops clk_ops0;
29 #ifdef MCFPM_PPMCR1
30 extern struct clk_ops clk_ops1;
31 #endif /* MCFPM_PPMCR1 */
33 extern struct clk_ops clk_ops2;
35 #define DEFINE_CLK(clk_bank, clk_name, clk_slot, clk_rate) \
36 static struct clk __clk_##clk_bank##_##clk_slot = { \
37 .name = clk_name, \
38 .clk_ops = &clk_ops##clk_bank, \
39 .rate = clk_rate, \
40 .slot = clk_slot, \
43 void __clk_init_enabled(struct clk *);
44 void __clk_init_disabled(struct clk *);
45 #else
46 #define DEFINE_CLK(clk_ref, clk_name, clk_rate) \
47 static struct clk clk_##clk_ref = { \
48 .name = clk_name, \
49 .rate = clk_rate, \
51 #endif /* MCFPM_PPMCR0 */
53 #endif /* mcfclk_h */