1 // SPDX-License-Identifier: GPL-2.0-only
8 #include <linux/export.h>
9 #include <linux/init.h>
10 #include <linux/kernel.h>
11 #include <linux/types.h>
12 #include <linux/clk.h>
13 #include <linux/clkdev.h>
14 #include <linux/err.h>
15 #include <linux/list.h>
19 #include <asm/div64.h>
21 #include <lantiq_soc.h>
26 /* lantiq socs have 3 static clocks */
27 static struct clk cpu_clk_generic[4];
29 void clkdev_add_static(unsigned long cpu, unsigned long fpi,
30 unsigned long io, unsigned long ppe)
32 cpu_clk_generic[0].rate = cpu;
33 cpu_clk_generic[1].rate = fpi;
34 cpu_clk_generic[2].rate = io;
35 cpu_clk_generic[3].rate = ppe;
38 struct clk *clk_get_cpu(void)
40 return &cpu_clk_generic[0];
43 struct clk *clk_get_fpi(void)
45 return &cpu_clk_generic[1];
47 EXPORT_SYMBOL_GPL(clk_get_fpi);
49 struct clk *clk_get_io(void)
51 return &cpu_clk_generic[2];
53 EXPORT_SYMBOL_GPL(clk_get_io);
55 struct clk *clk_get_ppe(void)
57 return &cpu_clk_generic[3];
59 EXPORT_SYMBOL_GPL(clk_get_ppe);
61 static inline int clk_good(struct clk *clk)
63 return clk && !IS_ERR(clk);
66 unsigned long clk_get_rate(struct clk *clk)
68 if (unlikely(!clk_good(clk)))
74 if (clk->get_rate != NULL)
75 return clk->get_rate();
79 EXPORT_SYMBOL(clk_get_rate);
81 int clk_set_rate(struct clk *clk, unsigned long rate)
83 if (unlikely(!clk_good(clk)))
85 if (clk->rates && *clk->rates) {
86 unsigned long *r = clk->rates;
88 while (*r && (*r != rate))
91 pr_err("clk %s.%s: trying to set invalid rate %ld\n",
92 clk->cl.dev_id, clk->cl.con_id, rate);
99 EXPORT_SYMBOL(clk_set_rate);
101 long clk_round_rate(struct clk *clk, unsigned long rate)
103 if (unlikely(!clk_good(clk)))
105 if (clk->rates && *clk->rates) {
106 unsigned long *r = clk->rates;
108 while (*r && (*r != rate))
116 EXPORT_SYMBOL(clk_round_rate);
118 int clk_enable(struct clk *clk)
120 if (unlikely(!clk_good(clk)))
124 return clk->enable(clk);
128 EXPORT_SYMBOL(clk_enable);
130 void clk_disable(struct clk *clk)
132 if (unlikely(!clk_good(clk)))
138 EXPORT_SYMBOL(clk_disable);
140 int clk_activate(struct clk *clk)
142 if (unlikely(!clk_good(clk)))
146 return clk->activate(clk);
150 EXPORT_SYMBOL(clk_activate);
152 void clk_deactivate(struct clk *clk)
154 if (unlikely(!clk_good(clk)))
158 clk->deactivate(clk);
160 EXPORT_SYMBOL(clk_deactivate);
162 struct clk *clk_get_parent(struct clk *clk)
166 EXPORT_SYMBOL(clk_get_parent);
168 int clk_set_parent(struct clk *clk, struct clk *parent)
172 EXPORT_SYMBOL(clk_set_parent);
174 static inline u32 get_counter_resolution(void)
178 __asm__ __volatile__(
190 void __init plat_time_init(void)
197 mips_hpt_frequency = clk_get_rate(clk) / get_counter_resolution();
198 write_c0_compare(read_c0_count());
199 pr_info("CPU Clock: %ldMHz\n", clk_get_rate(clk) / 1000000);