diff options
author | Jerome Brunet <jbrunet@baylibre.com> | 2018-05-22 19:34:55 +0300 |
---|---|---|
committer | Jerome Brunet <jbrunet@baylibre.com> | 2018-07-09 14:48:25 +0300 |
commit | 3054a55c5dd2619a597d6e96d8589318f2b210ad (patch) | |
tree | fe9be3961ce0ce1e7000ed28a5962b0659dfdda2 /drivers/clk/meson/Makefile | |
parent | 2eb2a01b6477ac50ec686f4b0a74f2c3b6a55fe4 (diff) | |
download | linux-3054a55c5dd2619a597d6e96d8589318f2b210ad.tar.xz |
clk: meson: add axg audio sclk divider driver
Add a driver to control the clock divider found in the sample clock
generator of the axg audio clock controller.
The sclk divider accumulates specific features which make the generic
divider unsuitable to control it:
- zero based divider (div = val + 1), but zero value gates the clock,
so minimum divider value is 2.
- lrclk variant may adjust the duty cycle depending the divider value
and the 'hi' value.
Acked-by: Neil Armstrong <narmstrong@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 74ec070b0974..1574e3f0de5c 100644 --- a/drivers/clk/meson/Makefile +++ b/drivers/clk/meson/Makefile @@ -4,7 +4,7 @@ obj-$(CONFIG_COMMON_CLK_AMLOGIC) += clk-pll.o clk-mpll.o clk-audio-divider.o obj-$(CONFIG_COMMON_CLK_AMLOGIC) += clk-phase.o -obj-$(CONFIG_COMMON_CLK_AMLOGIC_AUDIO) += clk-triphase.o +obj-$(CONFIG_COMMON_CLK_AMLOGIC_AUDIO) += clk-triphase.o sclk-div.o obj-$(CONFIG_COMMON_CLK_MESON_AO) += meson-aoclk.o obj-$(CONFIG_COMMON_CLK_MESON8B) += meson8b.o obj-$(CONFIG_COMMON_CLK_GXBB) += gxbb.o gxbb-aoclk.o gxbb-aoclk-32k.o |