5799ea12a4
This adds a driver for controlling the external clock outputs of s3c24xx architectures including the dclk muxes and dividers. The driver at the moment only supports the legacy non-dt boards using these clock outputs. The clock-output control itself is part of the system-controller mainly controlled by the pinctrl drivers. So it should most likely be integrated there for dt platforms. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Acked-by: Mike Turquette <mturquette@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
15 lines
519 B
Makefile
15 lines
519 B
Makefile
#
|
|
# Samsung Clock specific Makefile
|
|
#
|
|
|
|
obj-$(CONFIG_COMMON_CLK) += clk.o clk-pll.o
|
|
obj-$(CONFIG_ARCH_EXYNOS4) += clk-exynos4.o
|
|
obj-$(CONFIG_SOC_EXYNOS5250) += clk-exynos5250.o
|
|
obj-$(CONFIG_SOC_EXYNOS5420) += clk-exynos5420.o
|
|
obj-$(CONFIG_SOC_EXYNOS5440) += clk-exynos5440.o
|
|
obj-$(CONFIG_ARCH_EXYNOS) += clk-exynos-audss.o
|
|
obj-$(CONFIG_S3C2410_COMMON_DCLK)+= clk-s3c2410-dclk.o
|
|
obj-$(CONFIG_S3C2412_COMMON_CLK)+= clk-s3c2412.o
|
|
obj-$(CONFIG_S3C2443_COMMON_CLK)+= clk-s3c2443.o
|
|
obj-$(CONFIG_ARCH_S3C64XX) += clk-s3c64xx.o
|