[PATCH 23/30] x86: Define a region for device priv/plat data
Simon Glass
sjg at chromium.org
Thu Dec 31 05:09:53 CET 2020
Collect this together in one place, so driver model can access set it up
in a new place if needed.
Signed-off-by: Simon Glass <sjg at chromium.org>
---
arch/x86/cpu/u-boot-spl.lds | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/arch/x86/cpu/u-boot-spl.lds b/arch/x86/cpu/u-boot-spl.lds
index e6c22895b35..7ff037a781a 100644
--- a/arch/x86/cpu/u-boot-spl.lds
+++ b/arch/x86/cpu/u-boot-spl.lds
@@ -32,6 +32,14 @@ SECTIONS
. = ALIGN(4);
.rodata : { *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*))) }
+ . = ALIGN(4);
+
+ .priv_data : {
+ __priv_data_start = .;
+ *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.priv_data*)))
+ __priv_data_end = .;
+ }
+
. = ALIGN(4);
.data : { *(.data*) }
--
2.29.2.729.g45daf8777d-goog
More information about the U-Boot
mailing list