summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-layerscape/Kconfig
diff options
context:
space:
mode:
authorRenaud Barbier <Renaud.Barbier@ametek.com>2023-03-13 14:43:36 +0000
committerSascha Hauer <s.hauer@pengutronix.de>2023-03-15 13:20:26 +0100
commit8eef0af681f7b98e549fe385b94861c2a0651597 (patch)
treef6d804aa1ee94936d2e81c12f181d287ef5c7e61 /arch/arm/mach-layerscape/Kconfig
parente016fde42297e0713af87783c6ee4058f179b07b (diff)
downloadbarebox-8eef0af681f7b98e549fe385b94861c2a0651597.tar.gz
barebox-8eef0af681f7b98e549fe385b94861c2a0651597.tar.xz
ARM: add LS1021A to Layerscape machine support
This updates the Layerscape support in preparation for the introduction of the LS1021A-IOT: - Makefile/Kconfig - LS1021A specific register maps and configurations - errata workarounds update Signed-off-by: Renaud Barbier <renaud.barbier@ametek.com> Link: https://lore.barebox.org/BL0PR07MB56654DCD4F18A3B1A6A2F2E4ECB99@BL0PR07MB5665.namprd07.prod.outlook.com Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-layerscape/Kconfig')
-rw-r--r--arch/arm/mach-layerscape/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/mach-layerscape/Kconfig b/arch/arm/mach-layerscape/Kconfig
index 943a474808..670a7b38c1 100644
--- a/arch/arm/mach-layerscape/Kconfig
+++ b/arch/arm/mach-layerscape/Kconfig
@@ -2,6 +2,10 @@
if ARCH_LAYERSCAPE
+config ARCH_TEXT_BASE
+ hex
+ default 0x40000000 if MACH_LS1021AIOT
+
config ARCH_LAYERSCAPE_PPA
bool "Include PPA firmware"
select ARM_PSCI_OF
@@ -36,4 +40,14 @@ config MACH_TQMLS1046A
select DDR_FSL
select DDR_FSL_DDR4
+config ARCH_LS1021
+ select CPU_V7
+ bool
+
+config MACH_LS1021AIOT
+ bool "LS1021AIOT Board"
+ select ARCH_LS1021
+ select DDR_FSL
+ select DDR_FSL_DDR3
+
endif