[BOOT-WRAPPER 10/11] Add printing functions
Mark Rutland
mark.rutland at arm.com
Mon Jul 29 09:15:00 PDT 2024
In subsequent patches we'll want to log messages from specific CPUs. Add
helpers to make this simpler.
Signed-off-by: Mark Rutland <mark.rutland at arm.com>
Cc: Akos Denke <akos.denke at arm.com>
Cc: Andre Przywara <andre.przywara at arm.com>
Cc: Luca Fancellu <luca.fancellu at arm.com>
Cc: Marc Zyngier <maz at kernel.org>
---
common/platform.c | 35 +++++++++++++++++++++++++++++++++++
include/platform.h | 4 ++++
2 files changed, 39 insertions(+)
diff --git a/common/platform.c b/common/platform.c
index 1607ee6..4e390e1 100644
--- a/common/platform.c
+++ b/common/platform.c
@@ -65,6 +65,41 @@ void print_ulong_hex(unsigned long val)
}
}
+// 2^32 is 4,294,967,296
+#define DEC_CHARS_PER_UINT 10
+
+void print_uint_dec(unsigned int val)
+{
+ char digits[DEC_CHARS_PER_UINT];
+ int d = 0;
+
+ do {
+ digits[d] = val % 10;
+ val /= 10;
+ d++;
+ } while (val);
+
+ while (d--) {
+ print_char('0' + digits[d]);
+ }
+}
+
+void print_cpu_warn(unsigned int cpu, const char *str)
+{
+ print_string("CPU");
+ print_uint_dec(cpu);
+ print_string(" WARNING: ");
+ print_string(str);
+}
+
+void print_cpu_msg(unsigned int cpu, const char *str)
+{
+ print_string("CPU");
+ print_uint_dec(cpu);
+ print_string(": ");
+ print_string(str);
+}
+
void init_uart(void)
{
/*
diff --git a/include/platform.h b/include/platform.h
index c88e124..09712b1 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -12,6 +12,10 @@
void print_char(char c);
void print_string(const char *str);
void print_ulong_hex(unsigned long val);
+void print_uint_dec(unsigned int val);
+
+void print_cpu_warn(unsigned int cpu, const char *str);
+void print_cpu_msg(unsigned int cpu, const char *str);
void init_uart(void);
--
2.30.2
More information about the linux-arm-kernel
mailing list