summaryrefslogtreecommitdiff
path: root/lib/tiny-printf.c
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2016-07-08 14:18:35 (GMT)
committerTom Rini <trini@konsulko.com>2016-07-08 16:50:34 (GMT)
commit59d07ee08e858bf2c121d0cdc6c8ddd3b26ee5b1 (patch)
tree3c98c2eea6dd4085c4db2989f371e92a8f7aaad0 /lib/tiny-printf.c
parenta82642f39856c0b9edb2545570b599a157b73f63 (diff)
downloadu-boot-59d07ee08e858bf2c121d0cdc6c8ddd3b26ee5b1.tar.xz
SPL: tiny-printf: avoid any BSS usage
As printf calls may be executed quite early, we should avoid using any BSS stored variables, since some boards put BSS in DRAM, which may not have been initialised yet. Explicitly mark those "static global" variables as belonging to the .data section, to keep tiny-printf clear of any BSS usage. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'lib/tiny-printf.c')
-rw-r--r--lib/tiny-printf.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/tiny-printf.c b/lib/tiny-printf.c
index 451f4f7..b334f05 100644
--- a/lib/tiny-printf.c
+++ b/lib/tiny-printf.c
@@ -13,11 +13,16 @@
#include <stdarg.h>
#include <serial.h>
-static char *bf;
-static char zs;
+/*
+ * This code in here may execute before the DRAM is initialised, so
+ * we should make sure that it doesn't touch BSS, which some boards
+ * put in DRAM.
+ */
+static char *bf __attribute__ ((section(".data")));
+static char zs __attribute__ ((section(".data")));
/* Current position in sprintf() output string */
-static char *outstr;
+static char *outstr __attribute__ ((section(".data")));
static void out(char c)
{