summaryrefslogtreecommitdiffstats
path: root/drivers/clk/mediatek/clk-mtk.h
diff options
context:
space:
mode:
authorJames Liao <jamesjj.liao@mediatek.com>2015-07-10 11:39:15 +0800
committerJames Liao <jamesjj.liao@mediatek.com>2015-10-01 12:04:49 +0800
commit4fa043806a2cdbf86503068276ab9bba91a726f6 (patch)
tree4f878df90b90187c39b96290c7868e626cecf997 /drivers/clk/mediatek/clk-mtk.h
parente02940fc9ed323ae512f3ded62abaf9d6a3d3265 (diff)
downloadop-kernel-dev-4fa043806a2cdbf86503068276ab9bba91a726f6.zip
op-kernel-dev-4fa043806a2cdbf86503068276ab9bba91a726f6.tar.gz
clk: mediatek: Add fixed clocks support for Mediatek SoC.
This patch adds fixed clocks support by using CCF fixed-rate clock implementation. Signed-off-by: James Liao <jamesjj.liao@mediatek.com> Reviewed-by: Daniel Kurtz <djkurtz@chromium.org>
Diffstat (limited to 'drivers/clk/mediatek/clk-mtk.h')
-rw-r--r--drivers/clk/mediatek/clk-mtk.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/clk/mediatek/clk-mtk.h b/drivers/clk/mediatek/clk-mtk.h
index 9f19820..24b73ff 100644
--- a/drivers/clk/mediatek/clk-mtk.h
+++ b/drivers/clk/mediatek/clk-mtk.h
@@ -26,6 +26,23 @@ struct clk;
#define MHZ (1000 * 1000)
+struct mtk_fixed_clk {
+ int id;
+ const char *name;
+ const char *parent;
+ unsigned long rate;
+};
+
+#define FIXED_CLK(_id, _name, _parent, _rate) { \
+ .id = _id, \
+ .name = _name, \
+ .parent = _parent, \
+ .rate = _rate, \
+ }
+
+void mtk_clk_register_fixed_clks(const struct mtk_fixed_clk *clks,
+ int num, struct clk_onecell_data *clk_data);
+
struct mtk_fixed_factor {
int id;
const char *name;
OpenPOWER on IntegriCloud