coreboot-kgpe-d16/src/lib/hexdump.c
Felix Held 2a29d45350 lib/hexdump: remove hexdump32 and use hexdump instead
hexdump and hexdump32 do similar things, but hexdump32 is mostly a
reimplementation that has additional support to configure the console
log level, but has a very unexpected len parameter that isn't in bytes,
but in DWORDs.
With the move to hexdump() the console log level for the hexdump is
changed to BIOS_DEBUG.

Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I6138d17f0ce8e4a14f22d132bf5c64d0c343b80d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/54925
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
2021-05-27 15:41:15 +00:00

50 lines
1 KiB
C

/* SPDX-License-Identifier: GPL-2.0-or-later */
#include <console/console.h>
#include <ctype.h>
#include <lib.h>
void hexdump(const void *memory, size_t length)
{
size_t i, j;
uint8_t *line;
int all_zero = 0;
int all_one = 0;
size_t num_bytes;
for (i = 0; i < length; i += 16) {
num_bytes = MIN(length - i, 16);
line = ((uint8_t *)memory) + i;
all_zero++;
all_one++;
for (j = 0; j < num_bytes; j++) {
if (line[j] != 0) {
all_zero = 0;
break;
}
}
for (j = 0; j < num_bytes; j++) {
if (line[j] != 0xff) {
all_one = 0;
break;
}
}
if ((all_zero < 2) && (all_one < 2)) {
printk(BIOS_DEBUG, "%p:", memory + i);
for (j = 0; j < num_bytes; j++)
printk(BIOS_DEBUG, " %02x", line[j]);
for (; j < 16; j++)
printk(BIOS_DEBUG, " ");
printk(BIOS_DEBUG, " ");
for (j = 0; j < num_bytes; j++)
printk(BIOS_DEBUG, "%c",
isprint(line[j]) ? line[j] : '.');
printk(BIOS_DEBUG, "\n");
} else if ((all_zero == 2) || (all_one == 2)) {
printk(BIOS_DEBUG, "...\n");
}
}
}