mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
83ca8b3e8f
Baikal-T1 SoC provides a way to tune the MIPS P5600 CM2 L2-cache performance up. It can be done by changing the L2-RAM Data/Tag/WS latencies in a dedicated register exposed by the system controller. The driver added by this commit provides a dts properties-based and sysfs-based interface for it. The device DT node is supposed to be a child of Baikal-T1 System Controller node. Link: https://lore.kernel.org/r/20200526125928.17096-7-Sergey.Semin@baikalelectronics.ru Signed-off-by: Serge Semin <Sergey.Semin@baikalelectronics.ru> Cc: Alexey Malahov <Alexey.Malahov@baikalelectronics.ru> Cc: Paul Burton <paulburton@kernel.org> Cc: Olof Johansson <olof@lixom.net> Cc: Rob Herring <robh+dt@kernel.org> Cc: linux-mips@vger.kernel.org Cc: soc@kernel.org Cc: devicetree@vger.kernel.org Signed-off-by: Arnd Bergmann <arnd@arndb.de>
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for memory devices
|
|
#
|
|
|
|
obj-$(CONFIG_DDR) += jedec_ddr_data.o
|
|
ifeq ($(CONFIG_DDR),y)
|
|
obj-$(CONFIG_OF) += of_memory.o
|
|
endif
|
|
obj-$(CONFIG_ARM_PL172_MPMC) += pl172.o
|
|
obj-$(CONFIG_ATMEL_SDRAMC) += atmel-sdramc.o
|
|
obj-$(CONFIG_ATMEL_EBI) += atmel-ebi.o
|
|
obj-$(CONFIG_ARCH_BRCMSTB) += brcmstb_dpfe.o
|
|
obj-$(CONFIG_BT1_L2_CTL) += bt1-l2-ctl.o
|
|
obj-$(CONFIG_TI_AEMIF) += ti-aemif.o
|
|
obj-$(CONFIG_TI_EMIF) += emif.o
|
|
obj-$(CONFIG_OMAP_GPMC) += omap-gpmc.o
|
|
obj-$(CONFIG_FSL_CORENET_CF) += fsl-corenet-cf.o
|
|
obj-$(CONFIG_FSL_IFC) += fsl_ifc.o
|
|
obj-$(CONFIG_MVEBU_DEVBUS) += mvebu-devbus.o
|
|
obj-$(CONFIG_JZ4780_NEMC) += jz4780-nemc.o
|
|
obj-$(CONFIG_MTK_SMI) += mtk-smi.o
|
|
obj-$(CONFIG_DA8XX_DDRCTL) += da8xx-ddrctl.o
|
|
obj-$(CONFIG_PL353_SMC) += pl353-smc.o
|
|
|
|
obj-$(CONFIG_SAMSUNG_MC) += samsung/
|
|
obj-$(CONFIG_TEGRA_MC) += tegra/
|
|
obj-$(CONFIG_TI_EMIF_SRAM) += ti-emif-sram.o
|
|
ti-emif-sram-objs := ti-emif-pm.o ti-emif-sram-pm.o
|
|
|
|
AFLAGS_ti-emif-sram-pm.o :=-Wa,-march=armv7-a
|
|
|
|
$(obj)/ti-emif-sram-pm.o: $(obj)/ti-emif-asm-offsets.h
|
|
|
|
$(obj)/ti-emif-asm-offsets.h: $(obj)/emif-asm-offsets.s FORCE
|
|
$(call filechk,offsets,__TI_EMIF_ASM_OFFSETS_H__)
|
|
|
|
targets += emif-asm-offsets.s
|
|
clean-files += ti-emif-asm-offsets.h
|