diff options
author | Jose Abreu <Jose.Abreu@synopsys.com> | 2016-05-02 05:39:05 -0400 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-05-06 13:35:04 -0400 |
commit | 923587aafc2c41ed516d39651d5750ea402cfc06 (patch) | |
tree | 533a48d7ef3592984d117786b7de2900a1abf554 /drivers/clk/Makefile | |
parent | c47265ad64fa793657ce7ecf1a8f636c794e9f40 (diff) |
clk/axs10x: Add I2S PLL clock driver
The ARC SDP I2S clock can be programmed using a
specific PLL.
This patch has the goal of adding a clock driver
that programs this PLL.
At this moment the rate values are hardcoded in
a table but in the future it would be ideal to
use a function which determines the PLL values
given the desired rate.
Signed-off-by: Jose Abreu <joabreu@synopsys.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/Makefile')
-rw-r--r-- | drivers/clk/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile index 4ef71a13ab37..6d1e3bef4e30 100644 --- a/drivers/clk/Makefile +++ b/drivers/clk/Makefile | |||
@@ -86,3 +86,4 @@ obj-$(CONFIG_X86) += x86/ | |||
86 | obj-$(CONFIG_ARCH_ZX) += zte/ | 86 | obj-$(CONFIG_ARCH_ZX) += zte/ |
87 | obj-$(CONFIG_ARCH_ZYNQ) += zynq/ | 87 | obj-$(CONFIG_ARCH_ZYNQ) += zynq/ |
88 | obj-$(CONFIG_H8300) += h8300/ | 88 | obj-$(CONFIG_H8300) += h8300/ |
89 | obj-$(CONFIG_ARC_PLAT_AXS10X) += axs10x/ | ||