2 * Copyright 2012 Freescale Semiconductor, Inc.
4 * The code contained herein is licensed under the GNU General Public
5 * License. You may obtain a copy of the GNU General Public License
6 * Version 2 or later at the following locations:
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
17 #include <linux/clk-provider.h>
18 #include <linux/spinlock.h>
23 extern spinlock_t mxs_lock
;
25 int mxs_clk_wait(void __iomem
*reg
, u8 shift
);
27 struct clk
*mxs_clk_pll(const char *name
, const char *parent_name
,
28 void __iomem
*base
, u8 power
, unsigned long rate
);
30 struct clk
*mxs_clk_ref(const char *name
, const char *parent_name
,
31 void __iomem
*reg
, u8 idx
);
33 struct clk
*mxs_clk_div(const char *name
, const char *parent_name
,
34 void __iomem
*reg
, u8 shift
, u8 width
, u8 busy
);
36 struct clk
*mxs_clk_frac(const char *name
, const char *parent_name
,
37 void __iomem
*reg
, u8 shift
, u8 width
, u8 busy
);
39 static inline struct clk
*mxs_clk_fixed(const char *name
, int rate
)
41 return clk_register_fixed_rate(NULL
, name
, NULL
, 0, rate
);
44 static inline struct clk
*mxs_clk_gate(const char *name
,
45 const char *parent_name
, void __iomem
*reg
, u8 shift
)
47 return clk_register_gate(NULL
, name
, parent_name
, CLK_SET_RATE_PARENT
,
48 reg
, shift
, CLK_GATE_SET_TO_DISABLE
,
52 static inline struct clk
*mxs_clk_mux(const char *name
, void __iomem
*reg
,
53 u8 shift
, u8 width
, const char *const *parent_names
, int num_parents
)
55 return clk_register_mux(NULL
, name
, parent_names
, num_parents
,
56 CLK_SET_RATE_PARENT
| CLK_SET_RATE_NO_REPARENT
,
57 reg
, shift
, width
, 0, &mxs_lock
);
60 static inline struct clk
*mxs_clk_fixed_factor(const char *name
,
61 const char *parent_name
, unsigned int mult
, unsigned int div
)
63 return clk_register_fixed_factor(NULL
, name
, parent_name
,
64 CLK_SET_RATE_PARENT
, mult
, div
);
67 #endif /* __MXS_CLK_H */