Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 1 | #ifndef __MACH_IMX_CLK_H |
| 2 | #define __MACH_IMX_CLK_H |
| 3 | |
| 4 | #include <linux/spinlock.h> |
| 5 | #include <linux/clk-provider.h> |
Sascha Hauer | 3a84d17 | 2012-09-11 08:50:00 +0200 | [diff] [blame] | 6 | |
| 7 | extern spinlock_t imx_ccm_lock; |
Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 8 | |
Alexander Shiyan | 229be9c | 2014-06-10 19:40:26 +0400 | [diff] [blame] | 9 | void imx_check_clocks(struct clk *clks[], unsigned int count); |
| 10 | |
Liu Ying | dfd8714 | 2013-07-04 17:57:17 +0800 | [diff] [blame] | 11 | extern void imx_cscmr1_fixup(u32 *val); |
| 12 | |
Shawn Guo | 3bec5f8 | 2015-04-26 13:33:39 +0800 | [diff] [blame^] | 13 | enum imx_pllv1_type { |
| 14 | IMX_PLLV1_IMX1, |
| 15 | IMX_PLLV1_IMX21, |
| 16 | IMX_PLLV1_IMX25, |
| 17 | IMX_PLLV1_IMX27, |
| 18 | IMX_PLLV1_IMX31, |
| 19 | IMX_PLLV1_IMX35, |
| 20 | }; |
| 21 | |
| 22 | struct clk *imx_clk_pllv1(enum imx_pllv1_type type, const char *name, |
| 23 | const char *parent, void __iomem *base); |
Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 24 | |
Sascha Hauer | a547b81 | 2012-03-19 12:36:10 +0100 | [diff] [blame] | 25 | struct clk *imx_clk_pllv2(const char *name, const char *parent, |
| 26 | void __iomem *base); |
| 27 | |
Shawn Guo | a3f6b9d | 2012-04-04 16:02:28 +0800 | [diff] [blame] | 28 | enum imx_pllv3_type { |
| 29 | IMX_PLLV3_GENERIC, |
| 30 | IMX_PLLV3_SYS, |
| 31 | IMX_PLLV3_USB, |
Stefan Agner | 60ad846 | 2014-12-02 17:59:42 +0100 | [diff] [blame] | 32 | IMX_PLLV3_USB_VF610, |
Shawn Guo | a3f6b9d | 2012-04-04 16:02:28 +0800 | [diff] [blame] | 33 | IMX_PLLV3_AV, |
| 34 | IMX_PLLV3_ENET, |
Shawn Guo | a3f6b9d | 2012-04-04 16:02:28 +0800 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | struct clk *imx_clk_pllv3(enum imx_pllv3_type type, const char *name, |
Sascha Hauer | 2b25469 | 2012-11-22 10:18:41 +0100 | [diff] [blame] | 38 | const char *parent_name, void __iomem *base, u32 div_mask); |
Shawn Guo | a3f6b9d | 2012-04-04 16:02:28 +0800 | [diff] [blame] | 39 | |
Sascha Hauer | b75c015 | 2011-04-19 08:33:45 +0200 | [diff] [blame] | 40 | struct clk *clk_register_gate2(struct device *dev, const char *name, |
| 41 | const char *parent_name, unsigned long flags, |
| 42 | void __iomem *reg, u8 bit_idx, |
Shawn Guo | f9f28cd | 2014-04-19 10:58:22 +0800 | [diff] [blame] | 43 | u8 clk_gate_flags, spinlock_t *lock, |
| 44 | unsigned int *share_count); |
Sascha Hauer | b75c015 | 2011-04-19 08:33:45 +0200 | [diff] [blame] | 45 | |
Martin Fuzzey | 75f83d0 | 2013-04-23 20:16:59 +0800 | [diff] [blame] | 46 | struct clk * imx_obtain_fixed_clock( |
| 47 | const char *name, unsigned long rate); |
| 48 | |
Shawn Guo | 19d8634 | 2014-08-26 15:06:33 +0800 | [diff] [blame] | 49 | struct clk *imx_clk_gate_exclusive(const char *name, const char *parent, |
| 50 | void __iomem *reg, u8 shift, u32 exclusive_mask); |
| 51 | |
Sascha Hauer | b75c015 | 2011-04-19 08:33:45 +0200 | [diff] [blame] | 52 | static inline struct clk *imx_clk_gate2(const char *name, const char *parent, |
| 53 | void __iomem *reg, u8 shift) |
| 54 | { |
| 55 | return clk_register_gate2(NULL, name, parent, CLK_SET_RATE_PARENT, reg, |
Shawn Guo | f9f28cd | 2014-04-19 10:58:22 +0800 | [diff] [blame] | 56 | shift, 0, &imx_ccm_lock, NULL); |
| 57 | } |
| 58 | |
| 59 | static inline struct clk *imx_clk_gate2_shared(const char *name, |
| 60 | const char *parent, void __iomem *reg, u8 shift, |
| 61 | unsigned int *share_count) |
| 62 | { |
| 63 | return clk_register_gate2(NULL, name, parent, CLK_SET_RATE_PARENT, reg, |
| 64 | shift, 0, &imx_ccm_lock, share_count); |
Sascha Hauer | b75c015 | 2011-04-19 08:33:45 +0200 | [diff] [blame] | 65 | } |
| 66 | |
Shawn Guo | a10bd67 | 2012-04-04 16:07:53 +0800 | [diff] [blame] | 67 | struct clk *imx_clk_pfd(const char *name, const char *parent_name, |
| 68 | void __iomem *reg, u8 idx); |
| 69 | |
Shawn Guo | 32af7a8 | 2012-04-04 16:20:56 +0800 | [diff] [blame] | 70 | struct clk *imx_clk_busy_divider(const char *name, const char *parent_name, |
| 71 | void __iomem *reg, u8 shift, u8 width, |
| 72 | void __iomem *busy_reg, u8 busy_shift); |
| 73 | |
| 74 | struct clk *imx_clk_busy_mux(const char *name, void __iomem *reg, u8 shift, |
| 75 | u8 width, void __iomem *busy_reg, u8 busy_shift, |
| 76 | const char **parent_names, int num_parents); |
| 77 | |
Liu Ying | cbe7fc8 | 2013-07-04 17:22:26 +0800 | [diff] [blame] | 78 | struct clk *imx_clk_fixup_divider(const char *name, const char *parent, |
| 79 | void __iomem *reg, u8 shift, u8 width, |
| 80 | void (*fixup)(u32 *val)); |
| 81 | |
Liu Ying | a49e6c4 | 2013-07-04 17:35:46 +0800 | [diff] [blame] | 82 | struct clk *imx_clk_fixup_mux(const char *name, void __iomem *reg, |
| 83 | u8 shift, u8 width, const char **parents, |
| 84 | int num_parents, void (*fixup)(u32 *val)); |
| 85 | |
Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 86 | static inline struct clk *imx_clk_fixed(const char *name, int rate) |
| 87 | { |
| 88 | return clk_register_fixed_rate(NULL, name, NULL, CLK_IS_ROOT, rate); |
| 89 | } |
| 90 | |
| 91 | static inline struct clk *imx_clk_divider(const char *name, const char *parent, |
| 92 | void __iomem *reg, u8 shift, u8 width) |
| 93 | { |
| 94 | return clk_register_divider(NULL, name, parent, CLK_SET_RATE_PARENT, |
| 95 | reg, shift, width, 0, &imx_ccm_lock); |
| 96 | } |
| 97 | |
Philipp Zabel | 3ce9217 | 2013-03-27 18:30:40 +0100 | [diff] [blame] | 98 | static inline struct clk *imx_clk_divider_flags(const char *name, |
| 99 | const char *parent, void __iomem *reg, u8 shift, u8 width, |
| 100 | unsigned long flags) |
| 101 | { |
| 102 | return clk_register_divider(NULL, name, parent, flags, |
| 103 | reg, shift, width, 0, &imx_ccm_lock); |
| 104 | } |
| 105 | |
Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 106 | static inline struct clk *imx_clk_gate(const char *name, const char *parent, |
| 107 | void __iomem *reg, u8 shift) |
| 108 | { |
| 109 | return clk_register_gate(NULL, name, parent, CLK_SET_RATE_PARENT, reg, |
| 110 | shift, 0, &imx_ccm_lock); |
| 111 | } |
| 112 | |
Alexander Shiyan | 6525169 | 2014-06-22 17:17:06 +0400 | [diff] [blame] | 113 | static inline struct clk *imx_clk_gate_dis(const char *name, const char *parent, |
| 114 | void __iomem *reg, u8 shift) |
| 115 | { |
| 116 | return clk_register_gate(NULL, name, parent, CLK_SET_RATE_PARENT, reg, |
| 117 | shift, CLK_GATE_SET_TO_DISABLE, &imx_ccm_lock); |
| 118 | } |
| 119 | |
Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 120 | static inline struct clk *imx_clk_mux(const char *name, void __iomem *reg, |
| 121 | u8 shift, u8 width, const char **parents, int num_parents) |
| 122 | { |
James Hogan | 819c1de | 2013-07-29 12:25:01 +0100 | [diff] [blame] | 123 | return clk_register_mux(NULL, name, parents, num_parents, |
| 124 | CLK_SET_RATE_NO_REPARENT, reg, shift, |
Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 125 | width, 0, &imx_ccm_lock); |
| 126 | } |
| 127 | |
Philipp Zabel | 3ce9217 | 2013-03-27 18:30:40 +0100 | [diff] [blame] | 128 | static inline struct clk *imx_clk_mux_flags(const char *name, |
| 129 | void __iomem *reg, u8 shift, u8 width, const char **parents, |
| 130 | int num_parents, unsigned long flags) |
| 131 | { |
| 132 | return clk_register_mux(NULL, name, parents, num_parents, |
James Hogan | 819c1de | 2013-07-29 12:25:01 +0100 | [diff] [blame] | 133 | flags | CLK_SET_RATE_NO_REPARENT, reg, shift, width, 0, |
Philipp Zabel | 3ce9217 | 2013-03-27 18:30:40 +0100 | [diff] [blame] | 134 | &imx_ccm_lock); |
| 135 | } |
| 136 | |
Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 137 | static inline struct clk *imx_clk_fixed_factor(const char *name, |
| 138 | const char *parent, unsigned int mult, unsigned int div) |
| 139 | { |
| 140 | return clk_register_fixed_factor(NULL, name, parent, |
| 141 | CLK_SET_RATE_PARENT, mult, div); |
| 142 | } |
| 143 | |
Lucas Stach | e0fed51 | 2014-09-26 15:41:01 +0200 | [diff] [blame] | 144 | struct clk *imx_clk_cpu(const char *name, const char *parent_name, |
| 145 | struct clk *div, struct clk *mux, struct clk *pll, |
| 146 | struct clk *step); |
| 147 | |
Sascha Hauer | 6c7b06850 | 2012-03-07 21:01:28 +0100 | [diff] [blame] | 148 | #endif |