diff options
author | Tom Rini <trini@konsulko.com> | 2023-06-13 13:14:49 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-13 13:14:49 -0400 |
commit | cb4fe56eca1109780e97c68329e6b71ef33bf0e6 (patch) | |
tree | 55d67b8fea6be17e32964d52b276a7b200faa1e9 /cmd/tpm-v1.c | |
parent | 7da82de916d6aaeeef62431810cb3335e1207b28 (diff) | |
parent | 011f015540d788227a1a2d16dd6245120827bdec (diff) |
Merge tag 'tpm-for_tom-13062023' of https://source.denx.de/u-boot/custodians/u-boot-tpm into next
tpm autostart
Diffstat (limited to 'cmd/tpm-v1.c')
-rw-r--r-- | cmd/tpm-v1.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cmd/tpm-v1.c b/cmd/tpm-v1.c index 0efb079b0a9..3b95c950cc9 100644 --- a/cmd/tpm-v1.c +++ b/cmd/tpm-v1.c @@ -655,6 +655,7 @@ TPM_COMMAND_NO_ARG(tpm_physical_disable) static struct cmd_tbl tpm1_commands[] = { U_BOOT_CMD_MKENT(device, 0, 1, do_tpm_device, "", ""), U_BOOT_CMD_MKENT(info, 0, 1, do_tpm_info, "", ""), + U_BOOT_CMD_MKENT(init, 0, 1, do_tpm_autostart, "", ""), U_BOOT_CMD_MKENT(init, 0, 1, do_tpm_init, "", ""), U_BOOT_CMD_MKENT(startup, 0, 1, do_tpm_startup, "", ""), @@ -733,9 +734,12 @@ U_BOOT_CMD(tpm, CONFIG_SYS_MAXARGS, 1, do_tpm, " device [num device]\n" " - Show all devices or set the specified device\n" " info - Show information about the TPM\n" +" autostart\n" +" - Initalize the tpm, perform a Startup(clear) and run a full selftest\n" +" sequence\n" " init\n" " - Put TPM into a state where it waits for 'startup' command.\n" -" startup mode\n" +" startup mode\n" " - Issue TPM_Starup command. <mode> is one of TPM_ST_CLEAR,\n" " TPM_ST_STATE, and TPM_ST_DEACTIVATED.\n" "Admin Testing Commands:\n" |