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
15 #include <linux/clk.h>
16 #include <linux/clk-provider.h>
17 #include <linux/spinlock.h>
22 extern spinlock_t mxs_lock
;
24 int mxs_clk_wait(void __iomem
*reg
, u8 shift
);
26 struct clk
*mxs_clk_pll(const char *name
, const char *parent_name
,
27 void __iomem
*base
, u8 power
, unsigned long rate
);
29 struct clk
*mxs_clk_ref(const char *name
, const char *parent_name
,
30 void __iomem
*reg
, u8 idx
);
32 struct clk
*mxs_clk_div(const char *name
, const char *parent_name
,
33 void __iomem
*reg
, u8 shift
, u8 width
, u8 busy
);
35 struct clk
*mxs_clk_frac(const char *name
, const char *parent_name
,
36 void __iomem
*reg
, u8 shift
, u8 width
, u8 busy
);
38 static inline struct clk
*mxs_clk_fixed(const char *name
, int rate
)
40 return clk_register_fixed_rate(NULL
, name
, NULL
, CLK_IS_ROOT
, rate
);
43 static inline struct clk
*mxs_clk_gate(const char *name
,
44 const char *parent_name
, void __iomem
*reg
, u8 shift
)
46 return clk_register_gate(NULL
, name
, parent_name
, CLK_SET_RATE_PARENT
,
47 reg
, shift
, CLK_GATE_SET_TO_DISABLE
,
51 static inline struct clk
*mxs_clk_mux(const char *name
, void __iomem
*reg
,
52 u8 shift
, u8 width
, const char **parent_names
, int num_parents
)
54 return clk_register_mux(NULL
, name
, parent_names
, num_parents
,
55 CLK_SET_RATE_PARENT
| CLK_SET_RATE_NO_REPARENT
,
56 reg
, shift
, width
, 0, &mxs_lock
);
59 static inline struct clk
*mxs_clk_fixed_factor(const char *name
,
60 const char *parent_name
, unsigned int mult
, unsigned int div
)
62 return clk_register_fixed_factor(NULL
, name
, parent_name
,
63 CLK_SET_RATE_PARENT
, mult
, div
);
66 #endif /* __MXS_CLK_H */