mirror of
https://github.com/torvalds/linux.git
synced 2024-12-10 21:21:54 +00:00
e8dd920776
Add a driver to control the output of the sample clock generator found in the axg audio clock controller. The goal of this driver is to coherently control the phase provided to the different element using the sample clock generator. This simplify the usage of the sample clock generator a lot, without comprising the ability of the SoC. Acked-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
13 lines
494 B
Makefile
13 lines
494 B
Makefile
#
|
|
# Makefile for Meson specific clk
|
|
#
|
|
|
|
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_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
|
|
obj-$(CONFIG_COMMON_CLK_AXG) += axg.o axg-aoclk.o
|
|
obj-$(CONFIG_COMMON_CLK_REGMAP_MESON) += clk-regmap.o
|