1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/bits.h>
4 #include <linux/clk-provider.h>
7 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/spinlock.h>
14 #define CCDR_MMDC_CH0_MASK BIT(17)
15 #define CCDR_MMDC_CH1_MASK BIT(16)
17 DEFINE_SPINLOCK(imx_ccm_lock);
18 EXPORT_SYMBOL_GPL(imx_ccm_lock);
21 EXPORT_SYMBOL_GPL(mcore_booted);
23 void imx_unregister_clocks(struct clk *clks[], unsigned int count)
27 for (i = 0; i < count; i++)
28 clk_unregister(clks[i]);
31 void imx_unregister_hw_clocks(struct clk_hw *hws[], unsigned int count)
35 for (i = 0; i < count; i++)
36 clk_hw_unregister(hws[i]);
38 EXPORT_SYMBOL_GPL(imx_unregister_hw_clocks);
40 void imx_mmdc_mask_handshake(void __iomem *ccm_base,
45 reg = readl_relaxed(ccm_base + CCM_CCDR);
46 reg |= chn == 0 ? CCDR_MMDC_CH0_MASK : CCDR_MMDC_CH1_MASK;
47 writel_relaxed(reg, ccm_base + CCM_CCDR);
50 void imx_check_clocks(struct clk *clks[], unsigned int count)
54 for (i = 0; i < count; i++)
56 pr_err("i.MX clk %u: register failed with %ld\n",
60 void imx_check_clk_hws(struct clk_hw *clks[], unsigned int count)
64 for (i = 0; i < count; i++)
66 pr_err("i.MX clk %u: register failed with %ld\n",
69 EXPORT_SYMBOL_GPL(imx_check_clk_hws);
71 static struct clk *imx_obtain_fixed_clock_from_dt(const char *name)
73 struct of_phandle_args phandle;
74 struct clk *clk = ERR_PTR(-ENODEV);
77 path = kasprintf(GFP_KERNEL, "/clocks/%s", name);
79 return ERR_PTR(-ENOMEM);
81 phandle.np = of_find_node_by_path(path);
85 clk = of_clk_get_from_provider(&phandle);
86 of_node_put(phandle.np);
91 struct clk *imx_obtain_fixed_clock(
92 const char *name, unsigned long rate)
96 clk = imx_obtain_fixed_clock_from_dt(name);
98 clk = imx_clk_fixed(name, rate);
102 struct clk_hw *imx_obtain_fixed_clock_hw(
103 const char *name, unsigned long rate)
107 clk = imx_obtain_fixed_clock_from_dt(name);
109 clk = imx_clk_fixed(name, rate);
110 return __clk_get_hw(clk);
113 struct clk_hw *imx_obtain_fixed_of_clock(struct device_node *np,
114 const char *name, unsigned long rate)
116 struct clk *clk = of_clk_get_by_name(np, name);
120 hw = imx_obtain_fixed_clock_hw(name, rate);
122 hw = __clk_get_hw(clk);
127 struct clk_hw *imx_get_clk_hw_by_name(struct device_node *np, const char *name)
131 clk = of_clk_get_by_name(np, name);
133 return ERR_PTR(-ENOENT);
135 return __clk_get_hw(clk);
137 EXPORT_SYMBOL_GPL(imx_get_clk_hw_by_name);
140 * This fixups the register CCM_CSCMR1 write value.
141 * The write/read/divider values of the aclk_podf field
142 * of that register have the relationship described by
143 * the following table:
145 * write value read value divider
153 * 3b'111 3b'001 2(default)
155 * That's why we do the xor operation below.
157 #define CSCMR1_FIXUP 0x00600000
159 void imx_cscmr1_fixup(u32 *val)
161 *val ^= CSCMR1_FIXUP;
167 static bool imx_keep_uart_clocks;
168 static int imx_enabled_uart_clocks;
169 static struct clk **imx_uart_clocks;
171 static int __init imx_keep_uart_clocks_param(char *str)
173 imx_keep_uart_clocks = 1;
177 __setup_param("earlycon", imx_keep_uart_earlycon,
178 imx_keep_uart_clocks_param, 0);
179 __setup_param("earlyprintk", imx_keep_uart_earlyprintk,
180 imx_keep_uart_clocks_param, 0);
182 void imx_register_uart_clocks(void)
184 unsigned int num __maybe_unused;
186 imx_enabled_uart_clocks = 0;
188 /* i.MX boards use device trees now. For build tests without CONFIG_OF, do nothing */
190 if (imx_keep_uart_clocks) {
193 num = of_clk_get_parent_count(of_stdout);
200 imx_uart_clocks = kcalloc(num, sizeof(struct clk *), GFP_KERNEL);
201 if (!imx_uart_clocks)
204 for (i = 0; i < num; i++) {
205 imx_uart_clocks[imx_enabled_uart_clocks] = of_clk_get(of_stdout, i);
207 /* Stop if there are no more of_stdout references */
208 if (IS_ERR(imx_uart_clocks[imx_enabled_uart_clocks]))
211 /* Only enable the clock if it's not NULL */
212 if (imx_uart_clocks[imx_enabled_uart_clocks])
213 clk_prepare_enable(imx_uart_clocks[imx_enabled_uart_clocks++]);
219 static int __init imx_clk_disable_uart(void)
221 if (imx_keep_uart_clocks && imx_enabled_uart_clocks) {
224 for (i = 0; i < imx_enabled_uart_clocks; i++) {
225 clk_disable_unprepare(imx_uart_clocks[i]);
226 clk_put(imx_uart_clocks[i]);
230 kfree(imx_uart_clocks);
234 late_initcall_sync(imx_clk_disable_uart);
237 MODULE_LICENSE("GPL v2");