summaryrefslogtreecommitdiff
path: root/util/amdfwtool
diff options
context:
space:
mode:
authorZheng Bao <fishbaozi@gmail.com>2020-10-28 11:39:13 +0800
committerPatrick Georgi <pgeorgi@google.com>2020-11-04 09:41:58 +0000
commit9e90807b40529e1e8b236fe73505c3c43f5ca5b5 (patch)
treec1eae2ec2ba2728097ffbc6912c401dbb6b14bba /util/amdfwtool
parent2f1b51ac2b4b11866ae998cc09bfc6273edb2f14 (diff)
downloadcoreboot-9e90807b40529e1e8b236fe73505c3c43f5ca5b5.tar.xz
amdfwtool: Add an option to show debug message
Change-Id: I3e3bcc2c9e1b3edfed1ce845c1603b2a9a2bb044 Signed-off-by: Zheng Bao <fishbaozi@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46867 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'util/amdfwtool')
-rw-r--r--util/amdfwtool/amdfwtool.c39
1 files changed, 37 insertions, 2 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c
index 561b511e3d..0c4153e10d 100644
--- a/util/amdfwtool/amdfwtool.c
+++ b/util/amdfwtool/amdfwtool.c
@@ -216,6 +216,7 @@ static void usage(void)
printf(" 0x2 Micron parts optional, this option is only\n");
printf(" supported with RN/LCN SOC\n");
printf("-c | --config <config file> Config file\n");
+ printf("-d | --debug Print debug message\n");
printf("-D | --depend List out the firmware files\n");
}
@@ -596,6 +597,29 @@ static void integrate_firmwares(context *ctx,
}
}
+/* For debugging */
+static void dump_psp_firmwares(amd_fw_entry *fw_table)
+{
+ amd_fw_entry *index;
+
+ printf("PSP firmware components:");
+ for (index = fw_table; index->type != AMD_FW_INVALID; index++) {
+ if (index->filename)
+ printf(" filename=%s\n", index->filename);
+ }
+}
+
+static void dump_bdt_firmwares(amd_bios_entry *fw_table)
+{
+ amd_bios_entry *index;
+
+ printf("BIOS Directory Table (BDT) components:");
+ for (index = fw_table; index->type != AMD_BIOS_INVALID; index++) {
+ if (index->filename)
+ printf(" filename=%s\n", index->filename);
+ }
+}
+
static void free_psp_firmware_filenames(amd_fw_entry *fw_table)
{
amd_fw_entry *index;
@@ -1007,9 +1031,9 @@ enum {
LONGOPT_SPI_MICRON_FLAG = 258,
};
-/* Unused values: BGJKNXYbdkmprstuwyz*/
+/* Unused values: BGJKNXYbkmprstuwyz*/
static const char *optstring = "x:i:g:AMn:T:SPLUW:I:a:Q:V:e:v:j:O:F:"
- "H:o:f:l:hZ:qR:C:c:E:D";
+ "H:o:f:l:hZ:qR:C:c:E:dD";
static struct option long_options[] = {
{"xhci", required_argument, 0, 'x' },
@@ -1052,6 +1076,7 @@ static struct option long_options[] = {
{"soc-name", required_argument, 0, 'C' },
{"config", required_argument, 0, 'c' },
+ {"debug", no_argument, 0, 'd' },
{"help", no_argument, 0, 'h' },
{"depend", no_argument, 0, 'D' },
{NULL, 0, 0, 0 }
@@ -1250,6 +1275,7 @@ int main(int argc, char **argv)
int multi = 0;
amd_cb_config cb_config;
+ int debug = 0;
int list_deps = 0;
cb_config.have_whitelist = 0;
@@ -1425,6 +1451,9 @@ int main(int argc, char **argv)
case 'c':
config = optarg;
break;
+ case 'd':
+ debug = 1;
+ break;
case 'h':
usage();
return 0;
@@ -1450,6 +1479,12 @@ int main(int argc, char **argv)
}
fclose(config_handle);
}
+ /* For debug. */
+ if (debug) {
+ dump_psp_firmwares(amd_psp_fw_table);
+ dump_bdt_firmwares(amd_bios_table);
+ }
+
if (!fuse_defined)
register_fw_fuse(DEFAULT_SOFT_FUSE_CHAIN);