mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
552418658a
ARCH_SOCFPGA is being renamed to ARCH_INTEL_SOCFPGA so adjust the 32-bit ARM drivers to rely on new symbol. There is little point to share clock controller drivers between 32-bit and 64-bit platforms because there will not be a generic image for both of them. Therefore add a new Kconfig entry for building 32-bit clock driverss, similar to one for 64-bit. This allows enabling compile testing. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
19 lines
706 B
Text
19 lines
706 B
Text
# SPDX-License-Identifier: GPL-2.0
|
|
config CLK_INTEL_SOCFPGA
|
|
bool "Intel SoCFPGA family clock support" if COMPILE_TEST && !ARCH_INTEL_SOCFPGA
|
|
default ARCH_INTEL_SOCFPGA
|
|
help
|
|
Support for the clock controllers present on Intel SoCFPGA and eASIC
|
|
devices like Aria, Cyclone, Stratix 10, Agilex and N5X eASIC.
|
|
|
|
if CLK_INTEL_SOCFPGA
|
|
|
|
config CLK_INTEL_SOCFPGA32
|
|
bool "Intel Aria / Cyclone clock controller support" if COMPILE_TEST && (!ARM || !ARCH_INTEL_SOCFPGA)
|
|
default ARM && ARCH_INTEL_SOCFPGA
|
|
|
|
config CLK_INTEL_SOCFPGA64
|
|
bool "Intel Stratix / Agilex / N5X clock controller support" if COMPILE_TEST && (!ARM64 || !ARCH_INTEL_SOCFPGA)
|
|
default ARM64 && ARCH_INTEL_SOCFPGA
|
|
|
|
endif # CLK_INTEL_SOCFPGA
|