diff options
author | Oliver Gaskell <Oliver.Gaskell@analog.com> | 2024-09-12 16:50:55 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-03 09:29:23 -0600 |
commit | dd9baf0bbdfd128b10d5396f9ca39c54b7758f6e (patch) | |
tree | b60307ad65ce0d6ed7dc6bcd1cb90d3df0bdb1f4 /arch | |
parent | 38742c748562d0faee9f6831858322e7b5feb670 (diff) |
arm: SC598-SOM-EZLITE initial support
Adds support for Analog Devices' SC598-SOM-EZLITE board. Includes:
- Board specific configs in mach-sc5xx/Kconfig
- Board-specific Kconfig and environment in board/adi/
Signed-off-by: Oliver Gaskell <Oliver.Gaskell@analog.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-sc5xx/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-sc5xx/Kconfig b/arch/arm/mach-sc5xx/Kconfig index 4e587eb0b3c..e3d3a4c89ec 100644 --- a/arch/arm/mach-sc5xx/Kconfig +++ b/arch/arm/mach-sc5xx/Kconfig @@ -54,6 +54,11 @@ if SC59X_64 choice prompt "SC59x 64-bit board select" +config TARGET_SC598_SOM_EZLITE + bool + prompt "SC598-SOM with SOMCRR-EZLITE" + select ADI_CARRIER_SOMCRR_EZLITE + config TARGET_SC598_SOM_EZKIT bool prompt "SC598-SOM with SOMCRR-EZKIT" @@ -503,5 +508,6 @@ config PINCTRL_ADI default y source "board/adi/sc598-som-ezkit/Kconfig" +source "board/adi/sc598-som-ezlite/Kconfig" endif |