mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-25 05:49:56 +07:00
a641f3a6ab
A number of configurations spit out warnings similar to: warning: (SOC_IMX6 && SOC_VF610 && ARCH_OMAP4) selects PL310_ERRATA_588369 which has unmet direct dependencies (CACHE_L2X0) warning: (SOC_IMX6 && SOC_VF610 && ARCH_OMAP4) selects PL310_ERRATA_727915 which has unmet direct dependencies (CACHE_L2X0) Clean up the dependencies here: * PL310 symbols should only be selected when CACHE_L2X0 is enabled. * Since the cache-l2x0 code detects PL310 presence at runtime, and we will eventually get rid of CACHE_PL310, surround these errata options with an if CACHE_L2X0 conditional rather than repeating the dependency against each. Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
menuconfig ARCH_STI
|
|
bool "STMicroelectronics Consumer Electronics SOCs with Device Trees" if ARCH_MULTI_V7
|
|
select ARM_GIC
|
|
select ARM_GLOBAL_TIMER
|
|
select PINCTRL
|
|
select PINCTRL_ST
|
|
select MFD_SYSCON
|
|
select ARCH_HAS_RESET_CONTROLLER
|
|
select HAVE_ARM_SCU if SMP
|
|
select ARCH_REQUIRE_GPIOLIB
|
|
select ARM_ERRATA_754322
|
|
select ARM_ERRATA_764369 if SMP
|
|
select ARM_ERRATA_775420
|
|
select PL310_ERRATA_753970 if CACHE_L2X0
|
|
select PL310_ERRATA_769419 if CACHE_L2X0
|
|
help
|
|
Include support for STiH41x SOCs like STiH415/416 using the device tree
|
|
for discovery
|
|
More information at Documentation/arm/STiH41x and
|
|
at Documentation/devicetree
|
|
|
|
|
|
if ARCH_STI
|
|
|
|
config SOC_STIH415
|
|
bool "STiH415 STMicroelectronics Consumer Electronics family"
|
|
default y
|
|
select STIH415_RESET
|
|
help
|
|
This enables support for STMicroelectronics Digital Consumer
|
|
Electronics family StiH415 parts, primarily targeted at set-top-box
|
|
and other digital audio/video applications using Flattned Device
|
|
Trees.
|
|
|
|
config SOC_STIH416
|
|
bool "STiH416 STMicroelectronics Consumer Electronics family"
|
|
default y
|
|
select STIH416_RESET
|
|
help
|
|
This enables support for STMicroelectronics Digital Consumer
|
|
Electronics family StiH416 parts, primarily targeted at set-top-box
|
|
and other digital audio/video applications using Flattened Device
|
|
Trees.
|
|
|
|
endif
|