mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
a9372a5fb2
Similar to MMP2, which this patch is based on. Known differencies from MMP2 are: * Two PJ4B cores instead of one PJ4 * Tauros 3 L2 cache controller instead of Tauros 2 * A GIC interrupt controller optionally used instead of the MMP one * A TWD local timer * Different USB2 PHY * A USB3 SS controller * More interrupt muxes Hard to tell what else is different, because documentation is not available. Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
18 lines
440 B
Makefile
18 lines
440 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# 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_COMMON_CLK_MMP2) += 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
|