Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- From 9f5b2f794ce5823833289547658910615ba8a4b5 Mon Sep 17 00:00:00 2001
- From: Oliver Gaskell <[email protected]>
- Date: Thu, 25 Jul 2024 15:32:01 +0100
- Subject: [PATCH] arm: Fix errors in Analog Devices SC5xx Machine Kconfig
- Signed-off-by: Oliver Gaskell <[email protected]>
- ---
- arch/arm/mach-sc5xx/Kconfig | 13 +++++++++++--
- 1 file changed, 11 insertions(+), 2 deletions(-)
- diff --git a/arch/arm/mach-sc5xx/Kconfig b/arch/arm/mach-sc5xx/Kconfig
- index 3846b4fd5b..2da2e4b385 100644
- --- a/arch/arm/mach-sc5xx/Kconfig
- +++ b/arch/arm/mach-sc5xx/Kconfig
- @@ -13,8 +13,12 @@
- if ARCH_SC5XX
- +choice
- + prompt "SC5xx SoC Select"
- +
- config SC57X
- bool
- + prompt "SC57x series"
- select SUPPORT_SPL
- select CPU_V7A
- select PANIC_HANG
- @@ -24,6 +28,7 @@ config SC57X
- config SC58X
- bool
- + prompt "SC58x series"
- select SUPPORT_SPL
- select CPU_V7A
- select PANIC_HANG
- @@ -33,16 +38,18 @@ config SC58X
- config SC59X
- bool
- + prompt "32-bit SC59x series"
- select SUPPORT_SPL
- select CPU_V7A
- select PANIC_HANG
- select COMMON_CLK_ADI_SC594
- select TIMER
- select ADI_SC5XX_TIMER
- - select NOP_PHY
- + select NOP_PHY if PHY
- config SC59X_64
- bool
- + prompt "64-bit SC59x series"
- select SUPPORT_SPL
- select PANIC_HANG
- select MMC_SDHCI_ADMA_FORCE_32BIT
- @@ -52,7 +59,9 @@ config SC59X_64
- select COMMON_CLK_ADI_SC598
- select GICV3
- select GIC_600_CLEAR_RDPD
- - select NOP_PHY
- + select NOP_PHY if PHY
- +
- +endchoice
- config SC_BOOT_MODE
- int "SC5XX boot mode select"
- --
- 2.34.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement