printf: Automatically prefix %p with 0x

According to the POSIX standard, %p is supposed to print a pointer "as
if by %#x", meaning the "0x" prefix should automatically be prepended.
All other implementations out there (glibc, Linux, even libpayload) do
this, so we should make coreboot match. This patch changes vtxprintf()
accordingly and removes any explicit instances of "0x%p" from existing
format strings.

How to handle zero padding is less clear: the official POSIX definition
above technically says there should be no automatic zero padding, but in
practice most other implementations seem to do it and I assume most
programmers would prefer it. The way chosen here is to always zero-pad
to 32 bits, even on a 64-bit system. The rationale for this is that even
on 64-bit systems, coreboot always avoids using any memory above 4GB for
itself, so in practice all pointers should fit in that range and padding
everything to 64 bits would just hurt readability. Padding it this way
also helps pointers that do exceed 4GB (e.g. prints from MMU config on
some arm64 systems) stand out better from the others.

Change-Id: I0171b52f7288abb40e3fc3c8b874aee14b9bdcd6
Signed-off-by: Julius Werner <jwerner@chromium.org>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/37626
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-by: David Guckian
diff --git a/src/soc/amd/common/block/s3/s3_resume.c b/src/soc/amd/common/block/s3/s3_resume.c
index 598036a..a0de406 100644
--- a/src/soc/amd/common/block/s3/s3_resume.c
+++ b/src/soc/amd/common/block/s3/s3_resume.c
@@ -58,7 +58,7 @@
 
 	dataBlock->NvStorage = base;
 	dataBlock->NvStorageSize = size;
-	printk(BIOS_SPEW, "S3 NV data @0x%p, 0x%0zx bytes\n",
+	printk(BIOS_SPEW, "S3 NV data @%p, 0x%0zx bytes\n",
 		dataBlock->NvStorage, (size_t)dataBlock->NvStorageSize);
 
 	return AGESA_SUCCESS;
@@ -77,7 +77,7 @@
 
 	dataBlock->VolatileStorage = base;
 	dataBlock->VolatileStorageSize = size;
-	printk(BIOS_SPEW, "S3 volatile data @0x%p, 0x%0zx bytes\n",
+	printk(BIOS_SPEW, "S3 volatile data @%p, 0x%0zx bytes\n",
 		dataBlock->VolatileStorage, (size_t)dataBlock->VolatileStorageSize);
 
 	return AGESA_SUCCESS;