diff options
author | Jerome Brunet <jbrunet@baylibre.com> | 2017-02-14 00:13:55 +0100 |
---|---|---|
committer | Jerome Brunet <jbrunet@baylibre.com> | 2017-04-07 16:50:44 +0200 |
commit | 59e85335dda9826284a1f0f160ea8f10b59e0568 (patch) | |
tree | 6cf1f00b7d262230abc34f8cce4cb1c2b9fc25d7 /drivers/clk/meson/Makefile | |
parent | clk: meson: gxbb: protect against holes in the onecell_data array (diff) | |
download | linux-59e85335dda9826284a1f0f160ea8f10b59e0568.tar.xz linux-59e85335dda9826284a1f0f160ea8f10b59e0568.zip |
clk: meson: add audio clock divider support
The audio divider needs a specific clock divider driver.
With am mpll parent clock, which is able to provide a fairly precise rate,
the generic divider tends to select low value of the divider. In such case
the quality of the clock is very poor. For the same final rate, maximizing
the audio clock divider value and selecting the corresponding mpll rate
gives better results. This is what this driver aims to acheive. So far, so
good.
Cc: Hendrik v. Raven <hendrik@consetetur.de>
Acked-by: Michael Turquette <mturquette@baylibre.com>
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Diffstat (limited to 'drivers/clk/meson/Makefile')
-rw-r--r-- | drivers/clk/meson/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/meson/Makefile b/drivers/clk/meson/Makefile index 349583405b7c..83b6d9d65aa1 100644 --- a/drivers/clk/meson/Makefile +++ b/drivers/clk/meson/Makefile @@ -2,6 +2,6 @@ # Makefile for Meson specific clk # -obj-$(CONFIG_COMMON_CLK_AMLOGIC) += clk-pll.o clk-cpu.o clk-mpll.o +obj-$(CONFIG_COMMON_CLK_AMLOGIC) += clk-pll.o clk-cpu.o clk-mpll.o clk-audio-divider.o obj-$(CONFIG_COMMON_CLK_MESON8B) += meson8b.o obj-$(CONFIG_COMMON_CLK_GXBB) += gxbb.o gxbb-aoclk.o |