mirror of
https://github.com/torvalds/linux.git
synced 2024-11-04 11:04:38 +00:00
df5338d9fe
Add initial clock support for Marvell PXA1928. The PXA1928 is a mobile SOC and is similar to other MMP/PXA series of SOCs, so a lot of the existing infrastructure is reused here. Currently the PLLs are just fixed clocks, and not all leaf clocks are implemented. Signed-off-by: Rob Herring <robh@kernel.org> Cc: Mike Turquette <mturquette@linaro.org> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
17 lines
402 B
Makefile
17 lines
402 B
Makefile
#
|
|
# Makefile for mmp specific clk
|
|
#
|
|
|
|
obj-y += clk-apbc.o clk-apmu.o clk-frac.o clk-mix.o clk-gate.o clk.o
|
|
|
|
obj-$(CONFIG_RESET_CONTROLLER) += reset.o
|
|
|
|
obj-$(CONFIG_MACH_MMP_DT) += clk-of-pxa168.o clk-of-pxa910.o
|
|
obj-$(CONFIG_MACH_MMP2_DT) += clk-of-mmp2.o
|
|
|
|
obj-$(CONFIG_CPU_PXA168) += clk-pxa168.o
|
|
obj-$(CONFIG_CPU_PXA910) += clk-pxa910.o
|
|
obj-$(CONFIG_CPU_MMP2) += clk-mmp2.o
|
|
|
|
obj-y += clk-of-pxa1928.o
|