mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
66ecbfea76
This commit adds a core clock driver for the Orion5x SoC, with support for the tclk, the CPU frequency and the DDR frequency. All the details about the Sample-At-Reset register were extracted from the U-Boot sources for Orion5x. Note that Orion5x does not have gatable clocks, so this core clock driver is sufficient to support clocking on Orion5x platforms. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Link: https://lkml.kernel.org/r/1398202002-28530-5-git-send-email-thomas.petazzoni@free-electrons.com Cc: Mike Turquette <mturquette@linaro.org> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
12 lines
424 B
Makefile
12 lines
424 B
Makefile
obj-$(CONFIG_MVEBU_CLK_COMMON) += common.o
|
|
obj-$(CONFIG_MVEBU_CLK_CPU) += clk-cpu.o
|
|
obj-$(CONFIG_MVEBU_CLK_COREDIV) += clk-corediv.o
|
|
|
|
obj-$(CONFIG_ARMADA_370_CLK) += armada-370.o
|
|
obj-$(CONFIG_ARMADA_375_CLK) += armada-375.o
|
|
obj-$(CONFIG_ARMADA_38X_CLK) += armada-38x.o
|
|
obj-$(CONFIG_ARMADA_XP_CLK) += armada-xp.o
|
|
obj-$(CONFIG_DOVE_CLK) += dove.o
|
|
obj-$(CONFIG_KIRKWOOD_CLK) += kirkwood.o
|
|
obj-$(CONFIG_ORION_CLK) += orion.o
|