blob: 6858bfc548a920e57b6f25675bf974ee94744d9d [file] [log] [blame]
Mike Turquette9d9f78e2012-03-15 23:11:20 -07001/*
2 * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
3 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * Fixed rate clock implementation
10 */
11
12#include <linux/clk-provider.h>
13#include <linux/module.h>
14#include <linux/slab.h>
15#include <linux/io.h>
16#include <linux/err.h>
Grant Likely015ba402012-04-07 21:39:39 -050017#include <linux/of.h>
Mike Turquette9d9f78e2012-03-15 23:11:20 -070018
19/*
20 * DOC: basic fixed-rate clock that cannot gate
21 *
22 * Traits of this clock:
23 * prepare - clk_(un)prepare only ensures parents are prepared
24 * enable - clk_enable only ensures parents are enabled
25 * rate - rate is always a fixed value. No clk_set_rate support
26 * parent - fixed parent. No clk_set_parent support
27 */
28
Mike Turquette9d9f78e2012-03-15 23:11:20 -070029static unsigned long clk_fixed_rate_recalc_rate(struct clk_hw *hw,
30 unsigned long parent_rate)
31{
32 return to_clk_fixed_rate(hw)->fixed_rate;
33}
Mike Turquette9d9f78e2012-03-15 23:11:20 -070034
Boris BREZILLON0903ea62013-12-21 10:34:48 +010035static unsigned long clk_fixed_rate_recalc_accuracy(struct clk_hw *hw,
36 unsigned long parent_accuracy)
37{
38 return to_clk_fixed_rate(hw)->fixed_accuracy;
39}
40
Shawn Guo822c2502012-03-27 15:23:22 +080041const struct clk_ops clk_fixed_rate_ops = {
Mike Turquette9d9f78e2012-03-15 23:11:20 -070042 .recalc_rate = clk_fixed_rate_recalc_rate,
Boris BREZILLON0903ea62013-12-21 10:34:48 +010043 .recalc_accuracy = clk_fixed_rate_recalc_accuracy,
Mike Turquette9d9f78e2012-03-15 23:11:20 -070044};
45EXPORT_SYMBOL_GPL(clk_fixed_rate_ops);
46
Mike Turquette27d54592012-03-26 17:51:03 -070047/**
Boris BREZILLON0903ea62013-12-21 10:34:48 +010048 * clk_register_fixed_rate_with_accuracy - register fixed-rate clock with the
49 * clock framework
Mike Turquette27d54592012-03-26 17:51:03 -070050 * @dev: device that is registering this clock
51 * @name: name of this clock
52 * @parent_name: name of clock's parent
53 * @flags: framework-specific flags
54 * @fixed_rate: non-adjustable clock rate
Boris BREZILLON0903ea62013-12-21 10:34:48 +010055 * @fixed_accuracy: non-adjustable clock rate
Mike Turquette27d54592012-03-26 17:51:03 -070056 */
Boris BREZILLON0903ea62013-12-21 10:34:48 +010057struct clk *clk_register_fixed_rate_with_accuracy(struct device *dev,
58 const char *name, const char *parent_name, unsigned long flags,
59 unsigned long fixed_rate, unsigned long fixed_accuracy)
Mike Turquette9d9f78e2012-03-15 23:11:20 -070060{
61 struct clk_fixed_rate *fixed;
Mike Turquette27d54592012-03-26 17:51:03 -070062 struct clk *clk;
Saravana Kannan0197b3e2012-04-25 22:58:56 -070063 struct clk_init_data init;
Mike Turquette9d9f78e2012-03-15 23:11:20 -070064
Mike Turquette27d54592012-03-26 17:51:03 -070065 /* allocate fixed-rate clock */
Stephen Boydd122db72015-05-14 16:47:10 -070066 fixed = kzalloc(sizeof(*fixed), GFP_KERNEL);
67 if (!fixed)
Mike Turquette9d9f78e2012-03-15 23:11:20 -070068 return ERR_PTR(-ENOMEM);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070069
Saravana Kannan0197b3e2012-04-25 22:58:56 -070070 init.name = name;
71 init.ops = &clk_fixed_rate_ops;
Rajendra Nayakf7d8caa2012-06-01 14:02:47 +053072 init.flags = flags | CLK_IS_BASIC;
Saravana Kannan0197b3e2012-04-25 22:58:56 -070073 init.parent_names = (parent_name ? &parent_name: NULL);
74 init.num_parents = (parent_name ? 1 : 0);
75
Mike Turquette9d9f78e2012-03-15 23:11:20 -070076 /* struct clk_fixed_rate assignments */
77 fixed->fixed_rate = fixed_rate;
Boris BREZILLON0903ea62013-12-21 10:34:48 +010078 fixed->fixed_accuracy = fixed_accuracy;
Saravana Kannan0197b3e2012-04-25 22:58:56 -070079 fixed->hw.init = &init;
Mike Turquette9d9f78e2012-03-15 23:11:20 -070080
Mike Turquette27d54592012-03-26 17:51:03 -070081 /* register the clock */
Saravana Kannan0197b3e2012-04-25 22:58:56 -070082 clk = clk_register(dev, &fixed->hw);
Mike Turquette27d54592012-03-26 17:51:03 -070083 if (IS_ERR(clk))
84 kfree(fixed);
85
86 return clk;
Mike Turquette9d9f78e2012-03-15 23:11:20 -070087}
Boris BREZILLON0903ea62013-12-21 10:34:48 +010088EXPORT_SYMBOL_GPL(clk_register_fixed_rate_with_accuracy);
89
90/**
91 * clk_register_fixed_rate - register fixed-rate clock with the clock framework
92 * @dev: device that is registering this clock
93 * @name: name of this clock
94 * @parent_name: name of clock's parent
95 * @flags: framework-specific flags
96 * @fixed_rate: non-adjustable clock rate
97 */
98struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
99 const char *parent_name, unsigned long flags,
100 unsigned long fixed_rate)
101{
102 return clk_register_fixed_rate_with_accuracy(dev, name, parent_name,
103 flags, fixed_rate, 0);
104}
Stephen Boyd389ae052013-07-24 17:43:29 -0700105EXPORT_SYMBOL_GPL(clk_register_fixed_rate);
Grant Likely015ba402012-04-07 21:39:39 -0500106
Masahiro Yamada0b225e42016-01-06 13:25:10 +0900107void clk_unregister_fixed_rate(struct clk *clk)
108{
109 struct clk_hw *hw;
110
111 hw = __clk_get_hw(clk);
112 if (!hw)
113 return;
114
115 clk_unregister(clk);
116 kfree(to_clk_fixed_rate(hw));
117}
118EXPORT_SYMBOL_GPL(clk_unregister_fixed_rate);
119
Grant Likely015ba402012-04-07 21:39:39 -0500120#ifdef CONFIG_OF
121/**
122 * of_fixed_clk_setup() - Setup function for simple fixed rate clock
123 */
Denis Efremove4eda8e2013-01-06 18:21:43 +0400124void of_fixed_clk_setup(struct device_node *node)
Grant Likely015ba402012-04-07 21:39:39 -0500125{
126 struct clk *clk;
127 const char *clk_name = node->name;
128 u32 rate;
Boris BREZILLON0903ea62013-12-21 10:34:48 +0100129 u32 accuracy = 0;
Grant Likely015ba402012-04-07 21:39:39 -0500130
131 if (of_property_read_u32(node, "clock-frequency", &rate))
132 return;
133
Boris BREZILLON0903ea62013-12-21 10:34:48 +0100134 of_property_read_u32(node, "clock-accuracy", &accuracy);
135
Grant Likely015ba402012-04-07 21:39:39 -0500136 of_property_read_string(node, "clock-output-names", &clk_name);
137
Boris BREZILLON0903ea62013-12-21 10:34:48 +0100138 clk = clk_register_fixed_rate_with_accuracy(NULL, clk_name, NULL,
139 CLK_IS_ROOT, rate,
140 accuracy);
Wei Yongjuncdfed3b2012-09-21 14:35:18 +0800141 if (!IS_ERR(clk))
Grant Likely015ba402012-04-07 21:39:39 -0500142 of_clk_add_provider(node, of_clk_src_simple_get, clk);
143}
144EXPORT_SYMBOL_GPL(of_fixed_clk_setup);
Prashant Gaikwadf2f6c252013-01-04 12:30:52 +0530145CLK_OF_DECLARE(fixed_clk, "fixed-clock", of_fixed_clk_setup);
Grant Likely015ba402012-04-07 21:39:39 -0500146#endif