blob: 7f5464c83c4aae0c4701b8c7671328315051bcf5 [file] [log] [blame]
Patrick Williams8dd68482022-10-04 07:57:18 -05001From a84f6be14f1bb31edea987fc02efd5a079a28db1 Mon Sep 17 00:00:00 2001
Brad Bishopbec4ebc2022-08-03 09:55:16 -04002From: Gowtham Suresh Kumar <gowtham.sureshkumar@arm.com>
3Date: Wed, 17 Nov 2021 15:28:06 +0000
Patrick Williams8dd68482022-10-04 07:57:18 -05004Subject: [PATCH 17/26] corstone1000: Update FFA shared buffer address
Brad Bishopbec4ebc2022-08-03 09:55:16 -04005
6FFA shared buffer address changed to 0x02000000.
7
8The existing address 0x023F8000 is currently being used by
9Optee so the virtual address returned to the SMM gateway is 0x0000.
10So the buffer is moved to 0x02000000.
11
12Signed-off-by: Gowtham Suresh Kumar <gowtham.sureshkumar@arm.com>
Brad Bishopbec4ebc2022-08-03 09:55:16 -040013Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
Patrick Williams8dd68482022-10-04 07:57:18 -050014Upstream-Status: Pending [Not submitted to upstream yet]
Brad Bishopbec4ebc2022-08-03 09:55:16 -040015---
16 include/configs/corstone1000.h | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/include/configs/corstone1000.h b/include/configs/corstone1000.h
Patrick Williams8dd68482022-10-04 07:57:18 -050020index fe5ec0adcd..2d89a8966e 100644
Brad Bishopbec4ebc2022-08-03 09:55:16 -040021--- a/include/configs/corstone1000.h
22+++ b/include/configs/corstone1000.h
Patrick Williams8dd68482022-10-04 07:57:18 -050023@@ -38,7 +38,7 @@
Brad Bishopbec4ebc2022-08-03 09:55:16 -040024 * shared buffer physical address used for communication between
25 * u-boot and the MM SP
26 */
27-#define FFA_SHARED_MM_BUFFER_ADDR (0x023F8000)
28+#define FFA_SHARED_MM_BUFFER_ADDR (0x02000000)
Patrick Williams8dd68482022-10-04 07:57:18 -050029 #define FFA_SHARED_MM_BUFFER_OFFSET (0)
Brad Bishopbec4ebc2022-08-03 09:55:16 -040030
31 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x03f00000)
Brad Bishopbec4ebc2022-08-03 09:55:16 -040032--
Patrick Williams8dd68482022-10-04 07:57:18 -0500332.17.1
Brad Bishopbec4ebc2022-08-03 09:55:16 -040034