summaryrefslogtreecommitdiffstats
path: root/util/inteltool
diff options
context:
space:
mode:
authorYouness Alaoui <youness.alaoui@puri.sm>2018-03-13 16:58:52 -0400
committerNico Huber <nico.h@gmx.de>2018-06-11 20:55:06 +0000
commitd8214d7e0e3083de30f269d720ab816736ed79eb (patch)
treeb2efbbe9faa7388e89a3b71bd99cfa3080a76e8e /util/inteltool
parentcfd8929ac610f5e7ca14b92cd617270d800319f2 (diff)
downloadcoreboot-d8214d7e0e3083de30f269d720ab816736ed79eb.tar.gz
coreboot-d8214d7e0e3083de30f269d720ab816736ed79eb.tar.bz2
coreboot-d8214d7e0e3083de30f269d720ab816736ed79eb.zip
inteltool: Add dumping of full PCR ports
SoCs from Skylake on have many settings as so called private con- figuration registers (PCRs). These are organized as 256 ports with a 64KiB space each. We use the Primary to Sideband (P2SB) bridge's BAR to access them. Change-Id: Iede4ac601355e2be377bc986d62d20098980ec35 Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/19593 Reviewed-by: Youness Alaoui <snifikino@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/inteltool')
-rw-r--r--util/inteltool/inteltool.c32
-rw-r--r--util/inteltool/pcr.c37
-rw-r--r--util/inteltool/pcr.h2
3 files changed, 70 insertions, 1 deletions
diff --git a/util/inteltool/inteltool.c b/util/inteltool/inteltool.c
index ac30fdd2425a..24d62e120812 100644
--- a/util/inteltool/inteltool.c
+++ b/util/inteltool/inteltool.c
@@ -24,6 +24,7 @@
#include <fcntl.h>
#include <sys/mman.h>
#include <unistd.h>
+#include <errno.h>
#include "inteltool.h"
#include "pcr.h"
@@ -31,6 +32,12 @@
#include <machine/sysarch.h>
#endif
+#define MAX_PCR_PORTS 8 /* how often may `--pcr` be specified */
+
+enum long_only_opts {
+ LONG_OPT_PCR = 0x100,
+};
+
/*
* http://pci-ids.ucw.cz/read/PC/8086
* http://en.wikipedia.org/wiki/Intel_Tick-Tock
@@ -369,7 +376,9 @@ void print_usage(const char *name)
" -A | --ambs: dump AMB registers\n"
" -x | --sgx: dump SGX status\n"
" -a | --all: dump all known (safe) registers\n"
- "\n");
+ " --pcr=PORT_ID: dump all registers of a PCR port\n"
+ " (may be specified max %d times)\n"
+ "\n", MAX_PCR_PORTS);
exit(1);
}
@@ -388,6 +397,8 @@ int main(int argc, char *argv[])
int dump_pciexbar = 0, dump_coremsrs = 0, dump_ambs = 0;
int dump_spi = 0, dump_gfx = 0, dump_ahci = 0, dump_sgx = 0;
int show_gpio_diffs = 0;
+ size_t pcr_count = 0;
+ uint8_t dump_pcr[MAX_PCR_PORTS];
static struct option long_options[] = {
{"version", 0, 0, 'v'},
@@ -408,6 +419,7 @@ int main(int argc, char *argv[])
{"gfx", 0, 0, 'f'},
{"ahci", 0, 0, 'R'},
{"sgx", 0, 0, 'x'},
+ {"pcr", required_argument, 0, LONG_OPT_PCR},
{0, 0, 0, 0}
};
@@ -479,6 +491,21 @@ int main(int argc, char *argv[])
case 'x':
dump_sgx = 1;
break;
+ case LONG_OPT_PCR:
+ if (pcr_count < MAX_PCR_PORTS) {
+ errno = 0;
+ const unsigned long int pcr =
+ strtoul(optarg, NULL, 0);
+ if (strlen(optarg) == 0 || errno) {
+ print_usage(argv[0]);
+ exit(1);
+ }
+ dump_pcr[pcr_count++] = (uint8_t)pcr;
+ } else {
+ print_usage(argv[0]);
+ exit(1);
+ }
+ break;
case 'h':
case '?':
default:
@@ -685,6 +712,9 @@ int main(int argc, char *argv[])
if (dump_sgx)
print_sgx();
+ if (pcr_count)
+ print_pcr_ports(sb, dump_pcr, pcr_count);
+
/* Clean up */
pcr_cleanup();
if (ahci)
diff --git a/util/inteltool/pcr.c b/util/inteltool/pcr.c
index 0310e2eba1cd..7223e19fff0c 100644
--- a/util/inteltool/pcr.c
+++ b/util/inteltool/pcr.c
@@ -29,6 +29,43 @@ uint32_t read_pcr32(const uint8_t port, const uint16_t offset)
return *(const uint32_t *)(sbbar + (port << 16) + offset);
}
+static void print_pcr_port(const uint8_t port)
+{
+ size_t i = 0;
+ uint32_t last_reg = 0;
+ bool last_printed = true;
+
+ printf("PCR port offset: 0x%06zx\n\n", (size_t)port << 16);
+
+ for (i = 0; i < PCR_PORT_SIZE; i += 4) {
+ const uint32_t reg = read_pcr32(port, i);
+ const bool rep = i && last_reg == reg;
+ if (!rep) {
+ if (!last_printed)
+ printf("*\n");
+ printf("0x%04zx: 0x%08"PRIx32"\n", i, reg);
+ }
+
+ last_reg = reg;
+ last_printed = !rep;
+ }
+ if (!last_printed)
+ printf("*\n");
+}
+
+void print_pcr_ports(struct pci_dev *const sb,
+ const uint8_t *const ports, const size_t count)
+{
+ size_t i;
+
+ pcr_init(sb);
+
+ for (i = 0; i < count; ++i) {
+ printf("\n========== PCR 0x%02x ==========\n\n", ports[i]);
+ print_pcr_port(ports[i]);
+ }
+}
+
void pcr_init(struct pci_dev *const sb)
{
bool error_exit = false;
diff --git a/util/inteltool/pcr.h b/util/inteltool/pcr.h
index 601cfb687427..4c272ff3a415 100644
--- a/util/inteltool/pcr.h
+++ b/util/inteltool/pcr.h
@@ -24,6 +24,8 @@
uint32_t read_pcr32(uint8_t port, uint16_t offset);
+void print_pcr_ports(struct pci_dev *sb, const uint8_t *ports, size_t count);
+
void pcr_init(struct pci_dev *sb);
void pcr_cleanup(void);