diff options
author | Manorit Chawdhry <m-chawdhry@ti.com> | 2023-07-14 11:22:25 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-07-21 19:37:57 -0400 |
commit | 0eef2bf36ed31c29f86e6c59c2ed85c803c92ae4 (patch) | |
tree | b634abec89791ea7913745127bfb8cd11492c46c | |
parent | 44dab785809ac1ef808eacf141abbc75ac89ddba (diff) |
Kconfig: j721s2: Fix the scratchpad base
Fix the regression that occurred during the alignment of binman series
merges along with these HS fixes that caused silent regression in this.
Fixes: 30a7ee87fd1a ("Kconfig: j721s2: Change K3_MCU_SCRATCHPAD_BASE to non firewalled region")
Signed-off-by: Manorit Chawdhry <m-chawdhry@ti.com>
-rw-r--r-- | arch/arm/mach-k3/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-k3/Kconfig b/arch/arm/mach-k3/Kconfig index bae0a827c29..bf1c3c51a41 100644 --- a/arch/arm/mach-k3/Kconfig +++ b/arch/arm/mach-k3/Kconfig @@ -52,7 +52,7 @@ config SYS_K3_MAX_DOWNLODABLE_IMAGE_SIZE config SYS_K3_MCU_SCRATCHPAD_BASE hex default 0x40280000 if SOC_K3_AM654 - default 0x40280000 if SOC_K3_J721S2 + default 0x41cff9fc if SOC_K3_J721S2 default 0x41cff9fc if SOC_K3_J721E help Describes the base address of MCU Scratchpad RAM. |