diff options
author | James Liao <jamesjj.liao@mediatek.com> | 2015-07-10 06:39:15 +0300 |
---|---|---|
committer | James Liao <jamesjj.liao@mediatek.com> | 2015-10-01 07:04:49 +0300 |
commit | 4fa043806a2cdbf86503068276ab9bba91a726f6 (patch) | |
tree | 4f878df90b90187c39b96290c7868e626cecf997 /drivers/clk/mediatek/clk-mtk.h | |
parent | e02940fc9ed323ae512f3ded62abaf9d6a3d3265 (diff) | |
download | linux-4fa043806a2cdbf86503068276ab9bba91a726f6.tar.xz |
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.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/clk/mediatek/clk-mtk.h b/drivers/clk/mediatek/clk-mtk.h index 9f1982059cff..24b73ff84e06 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; |