memory: brcmstb_dpfe: add separate entry for compile test
Add separate entry for Broadcom STB DPFE driver, enabled by default on ARCH_BRCMSTB. This allows compile testing. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Acked-by: Florian Fainelli <f.fainelli@gmail.com>
This commit is contained in:
parent
4a661364e6
commit
904ffa81b7
|
@ -52,6 +52,18 @@ config ATMEL_EBI
|
||||||
tree is used. This bus supports NANDs, external ethernet controller,
|
tree is used. This bus supports NANDs, external ethernet controller,
|
||||||
SRAMs, ATA devices, etc.
|
SRAMs, ATA devices, etc.
|
||||||
|
|
||||||
|
config BRCMSTB_DPFE
|
||||||
|
bool "Broadcom STB DPFE driver" if COMPILE_TEST
|
||||||
|
default y if ARCH_BRCMSTB
|
||||||
|
depends on ARCH_BRCMSTB || COMPILE_TEST
|
||||||
|
help
|
||||||
|
This driver provides access to the DPFE interface of Broadcom
|
||||||
|
STB SoCs. The firmware running on the DCPU inside the DDR PHY can
|
||||||
|
provide current information about the system's RAM, for instance
|
||||||
|
the DRAM refresh rate. This can be used as an indirect indicator
|
||||||
|
for the DRAM's temperature. Slower refresh rate means cooler RAM,
|
||||||
|
higher refresh rate means hotter RAM.
|
||||||
|
|
||||||
config BT1_L2_CTL
|
config BT1_L2_CTL
|
||||||
bool "Baikal-T1 CM2 L2-RAM Cache Control Block"
|
bool "Baikal-T1 CM2 L2-RAM Cache Control Block"
|
||||||
depends on MIPS_BAIKAL_T1 || COMPILE_TEST
|
depends on MIPS_BAIKAL_T1 || COMPILE_TEST
|
||||||
|
|
|
@ -10,7 +10,7 @@ endif
|
||||||
obj-$(CONFIG_ARM_PL172_MPMC) += pl172.o
|
obj-$(CONFIG_ARM_PL172_MPMC) += pl172.o
|
||||||
obj-$(CONFIG_ATMEL_SDRAMC) += atmel-sdramc.o
|
obj-$(CONFIG_ATMEL_SDRAMC) += atmel-sdramc.o
|
||||||
obj-$(CONFIG_ATMEL_EBI) += atmel-ebi.o
|
obj-$(CONFIG_ATMEL_EBI) += atmel-ebi.o
|
||||||
obj-$(CONFIG_ARCH_BRCMSTB) += brcmstb_dpfe.o
|
obj-$(CONFIG_BRCMSTB_DPFE) += brcmstb_dpfe.o
|
||||||
obj-$(CONFIG_BT1_L2_CTL) += bt1-l2-ctl.o
|
obj-$(CONFIG_BT1_L2_CTL) += bt1-l2-ctl.o
|
||||||
obj-$(CONFIG_TI_AEMIF) += ti-aemif.o
|
obj-$(CONFIG_TI_AEMIF) += ti-aemif.o
|
||||||
obj-$(CONFIG_TI_EMIF) += emif.o
|
obj-$(CONFIG_TI_EMIF) += emif.o
|
||||||
|
|
Loading…
Reference in New Issue