blob: bf238a9f2e3a2bd15da3158d3e0595988af288a3 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vadim Bendebury576fb1e2011-10-15 15:13:34 +00002/*
Che-liang Chiou8732b072013-02-28 09:34:57 +00003 * Copyright (c) 2013 The Chromium OS Authors.
Vadim Bendebury576fb1e2011-10-15 15:13:34 +00004 */
5
6#include <common.h>
Simon Glass09140112020-05-10 11:40:03 -06007#include <command.h>
Simon Glassc7694dd2019-08-01 09:46:46 -06008#include <env.h>
Che-liang Chiou8732b072013-02-28 09:34:57 +00009#include <malloc.h>
Che-liang Chiou8732b072013-02-28 09:34:57 +000010#include <asm/unaligned.h>
Miquel Raynald677bfe2018-05-15 11:57:06 +020011#include <tpm-common.h>
12#include <tpm-v1.h>
13#include "tpm-user-utils.h"
Simon Glassd6a885f2021-02-06 14:23:36 -070014#include <tpm_api.h>
Che-liang Chiou8732b072013-02-28 09:34:57 +000015
Simon Glass09140112020-05-10 11:40:03 -060016static int do_tpm_startup(struct cmd_tbl *cmdtp, int flag, int argc,
17 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +000018{
19 enum tpm_startup_type mode;
Simon Glassabdc7b82018-11-18 14:22:27 -070020 struct udevice *dev;
21 int rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +000022
Simon Glassabdc7b82018-11-18 14:22:27 -070023 rc = get_tpm(&dev);
24 if (rc)
25 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +000026 if (argc != 2)
27 return CMD_RET_USAGE;
28 if (!strcasecmp("TPM_ST_CLEAR", argv[1])) {
29 mode = TPM_ST_CLEAR;
30 } else if (!strcasecmp("TPM_ST_STATE", argv[1])) {
31 mode = TPM_ST_STATE;
32 } else if (!strcasecmp("TPM_ST_DEACTIVATED", argv[1])) {
33 mode = TPM_ST_DEACTIVATED;
34 } else {
35 printf("Couldn't recognize mode string: %s\n", argv[1]);
36 return CMD_RET_FAILURE;
37 }
38
Simon Glassabdc7b82018-11-18 14:22:27 -070039 return report_return_code(tpm_startup(dev, mode));
Che-liang Chiou8732b072013-02-28 09:34:57 +000040}
41
Simon Glass09140112020-05-10 11:40:03 -060042static int do_tpm_nv_define_space(struct cmd_tbl *cmdtp, int flag, int argc,
43 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +000044{
Miquel Raynalb9804e52018-05-15 11:56:59 +020045 u32 index, perm, size;
Simon Glassabdc7b82018-11-18 14:22:27 -070046 struct udevice *dev;
47 int rc;
48
49 rc = get_tpm(&dev);
50 if (rc)
51 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +000052
53 if (argc != 4)
54 return CMD_RET_USAGE;
55 index = simple_strtoul(argv[1], NULL, 0);
56 perm = simple_strtoul(argv[2], NULL, 0);
57 size = simple_strtoul(argv[3], NULL, 0);
58
Simon Glassd6a885f2021-02-06 14:23:36 -070059 return report_return_code(tpm1_nv_define_space(dev, index, perm, size));
Che-liang Chiou8732b072013-02-28 09:34:57 +000060}
61
Simon Glass09140112020-05-10 11:40:03 -060062static int do_tpm_nv_read_value(struct cmd_tbl *cmdtp, int flag, int argc,
63 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +000064{
Miquel Raynalb9804e52018-05-15 11:56:59 +020065 u32 index, count, rc;
Simon Glassabdc7b82018-11-18 14:22:27 -070066 struct udevice *dev;
Che-liang Chiou8732b072013-02-28 09:34:57 +000067 void *data;
68
Simon Glassabdc7b82018-11-18 14:22:27 -070069 rc = get_tpm(&dev);
70 if (rc)
71 return rc;
72
Che-liang Chiou8732b072013-02-28 09:34:57 +000073 if (argc != 4)
74 return CMD_RET_USAGE;
75 index = simple_strtoul(argv[1], NULL, 0);
76 data = (void *)simple_strtoul(argv[2], NULL, 0);
77 count = simple_strtoul(argv[3], NULL, 0);
78
Simon Glassabdc7b82018-11-18 14:22:27 -070079 rc = tpm_nv_read_value(dev, index, data, count);
Che-liang Chiou8732b072013-02-28 09:34:57 +000080 if (!rc) {
81 puts("area content:\n");
82 print_byte_string(data, count);
83 }
84
Simon Glassf8f1fe12015-08-22 18:31:34 -060085 return report_return_code(rc);
Che-liang Chiou8732b072013-02-28 09:34:57 +000086}
87
Simon Glass09140112020-05-10 11:40:03 -060088static int do_tpm_nv_write_value(struct cmd_tbl *cmdtp, int flag, int argc,
89 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +000090{
Simon Glassabdc7b82018-11-18 14:22:27 -070091 struct udevice *dev;
Miquel Raynalb9804e52018-05-15 11:56:59 +020092 u32 index, rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +000093 size_t count;
94 void *data;
95
Simon Glassabdc7b82018-11-18 14:22:27 -070096 rc = get_tpm(&dev);
97 if (rc)
98 return rc;
99
Che-liang Chiou8732b072013-02-28 09:34:57 +0000100 if (argc != 3)
101 return CMD_RET_USAGE;
102 index = simple_strtoul(argv[1], NULL, 0);
103 data = parse_byte_string(argv[2], NULL, &count);
104 if (!data) {
105 printf("Couldn't parse byte string %s\n", argv[2]);
106 return CMD_RET_FAILURE;
107 }
108
Simon Glassabdc7b82018-11-18 14:22:27 -0700109 rc = tpm_nv_write_value(dev, index, data, count);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000110 free(data);
111
Simon Glassf8f1fe12015-08-22 18:31:34 -0600112 return report_return_code(rc);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000113}
114
Simon Glass09140112020-05-10 11:40:03 -0600115static int do_tpm_extend(struct cmd_tbl *cmdtp, int flag, int argc,
116 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000117{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200118 u8 in_digest[20], out_digest[20];
Simon Glassabdc7b82018-11-18 14:22:27 -0700119 struct udevice *dev;
120 u32 index, rc;
121
122 rc = get_tpm(&dev);
123 if (rc)
124 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000125
126 if (argc != 3)
127 return CMD_RET_USAGE;
128 index = simple_strtoul(argv[1], NULL, 0);
129 if (!parse_byte_string(argv[2], in_digest, NULL)) {
130 printf("Couldn't parse byte string %s\n", argv[2]);
131 return CMD_RET_FAILURE;
132 }
133
Simon Glassd6a885f2021-02-06 14:23:36 -0700134 rc = tpm_pcr_extend(dev, index, in_digest, out_digest);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000135 if (!rc) {
136 puts("PCR value after execution of the command:\n");
137 print_byte_string(out_digest, sizeof(out_digest));
138 }
139
Simon Glassf8f1fe12015-08-22 18:31:34 -0600140 return report_return_code(rc);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000141}
142
Simon Glass09140112020-05-10 11:40:03 -0600143static int do_tpm_pcr_read(struct cmd_tbl *cmdtp, int flag, int argc,
144 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000145{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200146 u32 index, count, rc;
Simon Glassabdc7b82018-11-18 14:22:27 -0700147 struct udevice *dev;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000148 void *data;
149
Simon Glassabdc7b82018-11-18 14:22:27 -0700150 rc = get_tpm(&dev);
151 if (rc)
152 return rc;
153
Che-liang Chiou8732b072013-02-28 09:34:57 +0000154 if (argc != 4)
155 return CMD_RET_USAGE;
156 index = simple_strtoul(argv[1], NULL, 0);
157 data = (void *)simple_strtoul(argv[2], NULL, 0);
158 count = simple_strtoul(argv[3], NULL, 0);
159
Simon Glassabdc7b82018-11-18 14:22:27 -0700160 rc = tpm_pcr_read(dev, index, data, count);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000161 if (!rc) {
162 puts("Named PCR content:\n");
163 print_byte_string(data, count);
164 }
165
Simon Glassf8f1fe12015-08-22 18:31:34 -0600166 return report_return_code(rc);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000167}
168
Simon Glass09140112020-05-10 11:40:03 -0600169static int do_tpm_tsc_physical_presence(struct cmd_tbl *cmdtp, int flag,
170 int argc, char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000171{
Simon Glassabdc7b82018-11-18 14:22:27 -0700172 struct udevice *dev;
Miquel Raynalb9804e52018-05-15 11:56:59 +0200173 u16 presence;
Simon Glassabdc7b82018-11-18 14:22:27 -0700174 int rc;
175
176 rc = get_tpm(&dev);
177 if (rc)
178 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000179
180 if (argc != 2)
181 return CMD_RET_USAGE;
Miquel Raynalb9804e52018-05-15 11:56:59 +0200182 presence = (u16)simple_strtoul(argv[1], NULL, 0);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000183
Simon Glassabdc7b82018-11-18 14:22:27 -0700184 return report_return_code(tpm_tsc_physical_presence(dev, presence));
Che-liang Chiou8732b072013-02-28 09:34:57 +0000185}
186
Simon Glass09140112020-05-10 11:40:03 -0600187static int do_tpm_read_pubek(struct cmd_tbl *cmdtp, int flag, int argc,
188 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000189{
Simon Glassabdc7b82018-11-18 14:22:27 -0700190 struct udevice *dev;
Miquel Raynalb9804e52018-05-15 11:56:59 +0200191 u32 count, rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000192 void *data;
193
Simon Glassabdc7b82018-11-18 14:22:27 -0700194 rc = get_tpm(&dev);
195 if (rc)
196 return rc;
197
Che-liang Chiou8732b072013-02-28 09:34:57 +0000198 if (argc != 3)
199 return CMD_RET_USAGE;
200 data = (void *)simple_strtoul(argv[1], NULL, 0);
201 count = simple_strtoul(argv[2], NULL, 0);
202
Simon Glassabdc7b82018-11-18 14:22:27 -0700203 rc = tpm_read_pubek(dev, data, count);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000204 if (!rc) {
205 puts("pubek value:\n");
206 print_byte_string(data, count);
207 }
208
Simon Glassf8f1fe12015-08-22 18:31:34 -0600209 return report_return_code(rc);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000210}
211
Simon Glass09140112020-05-10 11:40:03 -0600212static int do_tpm_physical_set_deactivated(struct cmd_tbl *cmdtp, int flag,
213 int argc, char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000214{
Simon Glassabdc7b82018-11-18 14:22:27 -0700215 struct udevice *dev;
Miquel Raynalb9804e52018-05-15 11:56:59 +0200216 u8 state;
Simon Glassabdc7b82018-11-18 14:22:27 -0700217 int rc;
218
219 rc = get_tpm(&dev);
220 if (rc)
221 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000222
223 if (argc != 2)
224 return CMD_RET_USAGE;
Miquel Raynalb9804e52018-05-15 11:56:59 +0200225 state = (u8)simple_strtoul(argv[1], NULL, 0);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000226
Simon Glassabdc7b82018-11-18 14:22:27 -0700227 return report_return_code(tpm_physical_set_deactivated(dev, state));
Che-liang Chiou8732b072013-02-28 09:34:57 +0000228}
229
Simon Glass09140112020-05-10 11:40:03 -0600230static int do_tpm_get_capability(struct cmd_tbl *cmdtp, int flag, int argc,
231 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000232{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200233 u32 cap_area, sub_cap, rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000234 void *cap;
235 size_t count;
Simon Glassabdc7b82018-11-18 14:22:27 -0700236 struct udevice *dev;
237
238 rc = get_tpm(&dev);
239 if (rc)
240 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000241
242 if (argc != 5)
243 return CMD_RET_USAGE;
244 cap_area = simple_strtoul(argv[1], NULL, 0);
245 sub_cap = simple_strtoul(argv[2], NULL, 0);
246 cap = (void *)simple_strtoul(argv[3], NULL, 0);
247 count = simple_strtoul(argv[4], NULL, 0);
248
Simon Glassabdc7b82018-11-18 14:22:27 -0700249 rc = tpm_get_capability(dev, cap_area, sub_cap, cap, count);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000250 if (!rc) {
251 puts("capability information:\n");
252 print_byte_string(cap, count);
253 }
254
Simon Glassf8f1fe12015-08-22 18:31:34 -0600255 return report_return_code(rc);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000256}
257
Simon Glass09140112020-05-10 11:40:03 -0600258static int do_tpm_raw_transfer(struct cmd_tbl *cmdtp, int flag, int argc,
259 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000260{
Christophe Ricardc2b0f602015-10-06 22:54:43 +0200261 struct udevice *dev;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000262 void *command;
Miquel Raynalb9804e52018-05-15 11:56:59 +0200263 u8 response[1024];
Che-liang Chiou8732b072013-02-28 09:34:57 +0000264 size_t count, response_length = sizeof(response);
Miquel Raynalb9804e52018-05-15 11:56:59 +0200265 u32 rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000266
267 command = parse_byte_string(argv[1], NULL, &count);
268 if (!command) {
269 printf("Couldn't parse byte string %s\n", argv[1]);
270 return CMD_RET_FAILURE;
271 }
272
Simon Glassc8a8c512015-08-22 18:31:32 -0600273 rc = get_tpm(&dev);
274 if (rc)
275 return rc;
276
277 rc = tpm_xfer(dev, command, count, response, &response_length);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000278 free(command);
279 if (!rc) {
280 puts("tpm response:\n");
281 print_byte_string(response, response_length);
282 }
283
Simon Glassf8f1fe12015-08-22 18:31:34 -0600284 return report_return_code(rc);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000285}
286
Simon Glass09140112020-05-10 11:40:03 -0600287static int do_tpm_nv_define(struct cmd_tbl *cmdtp, int flag, int argc,
288 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000289{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200290 u32 index, perm, size;
Simon Glassabdc7b82018-11-18 14:22:27 -0700291 struct udevice *dev;
292 int rc;
293
294 rc = get_tpm(&dev);
295 if (rc)
296 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000297
298 if (argc != 4)
299 return CMD_RET_USAGE;
300 size = type_string_get_space_size(argv[1]);
301 if (!size) {
302 printf("Couldn't parse arguments\n");
303 return CMD_RET_USAGE;
304 }
305 index = simple_strtoul(argv[2], NULL, 0);
306 perm = simple_strtoul(argv[3], NULL, 0);
307
Simon Glassd6a885f2021-02-06 14:23:36 -0700308 return report_return_code(tpm1_nv_define_space(dev, index, perm, size));
Che-liang Chiou8732b072013-02-28 09:34:57 +0000309}
310
Simon Glass09140112020-05-10 11:40:03 -0600311static int do_tpm_nv_read(struct cmd_tbl *cmdtp, int flag, int argc,
312 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000313{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200314 u32 index, count, err;
Simon Glassabdc7b82018-11-18 14:22:27 -0700315 struct udevice *dev;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000316 void *data;
Simon Glassabdc7b82018-11-18 14:22:27 -0700317 int rc;
318
319 rc = get_tpm(&dev);
320 if (rc)
321 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000322
323 if (argc < 3)
324 return CMD_RET_USAGE;
325 if (argc != 3 + type_string_get_num_values(argv[1]))
326 return CMD_RET_USAGE;
327 index = simple_strtoul(argv[2], NULL, 0);
328 data = type_string_alloc(argv[1], &count);
329 if (!data) {
330 printf("Couldn't parse arguments\n");
331 return CMD_RET_USAGE;
332 }
333
Simon Glassabdc7b82018-11-18 14:22:27 -0700334 err = tpm_nv_read_value(dev, index, data, count);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000335 if (!err) {
336 if (type_string_write_vars(argv[1], data, argv + 3)) {
337 printf("Couldn't write to variables\n");
338 err = ~0;
339 }
340 }
341 free(data);
342
Simon Glassf8f1fe12015-08-22 18:31:34 -0600343 return report_return_code(err);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000344}
345
Simon Glass09140112020-05-10 11:40:03 -0600346static int do_tpm_nv_write(struct cmd_tbl *cmdtp, int flag, int argc,
347 char *const argv[])
Che-liang Chiou8732b072013-02-28 09:34:57 +0000348{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200349 u32 index, count, err;
Simon Glassabdc7b82018-11-18 14:22:27 -0700350 struct udevice *dev;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000351 void *data;
Simon Glassabdc7b82018-11-18 14:22:27 -0700352 int rc;
353
354 rc = get_tpm(&dev);
355 if (rc)
356 return rc;
Che-liang Chiou8732b072013-02-28 09:34:57 +0000357
358 if (argc < 3)
359 return CMD_RET_USAGE;
360 if (argc != 3 + type_string_get_num_values(argv[1]))
361 return CMD_RET_USAGE;
362 index = simple_strtoul(argv[2], NULL, 0);
363 data = type_string_alloc(argv[1], &count);
364 if (!data) {
365 printf("Couldn't parse arguments\n");
366 return CMD_RET_USAGE;
367 }
368 if (type_string_pack(argv[1], argv + 3, data)) {
369 printf("Couldn't parse arguments\n");
370 free(data);
371 return CMD_RET_USAGE;
372 }
373
Simon Glassabdc7b82018-11-18 14:22:27 -0700374 err = tpm_nv_write_value(dev, index, data, count);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000375 free(data);
376
Simon Glassf8f1fe12015-08-22 18:31:34 -0600377 return report_return_code(err);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000378}
379
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200380#ifdef CONFIG_TPM_AUTH_SESSIONS
381
Simon Glass09140112020-05-10 11:40:03 -0600382static int do_tpm_oiap(struct cmd_tbl *cmdtp, int flag, int argc,
383 char *const argv[])
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200384{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200385 u32 auth_handle, err;
Simon Glassabdc7b82018-11-18 14:22:27 -0700386 struct udevice *dev;
387 int rc;
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200388
Simon Glassabdc7b82018-11-18 14:22:27 -0700389 rc = get_tpm(&dev);
390 if (rc)
391 return rc;
392
Simon Glassd6a885f2021-02-06 14:23:36 -0700393 err = tpm1_oiap(dev, &auth_handle);
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200394
Simon Glassf8f1fe12015-08-22 18:31:34 -0600395 return report_return_code(err);
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200396}
397
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100398#ifdef CONFIG_TPM_LOAD_KEY_BY_SHA1
Simon Glass09140112020-05-10 11:40:03 -0600399static int do_tpm_load_key_by_sha1(struct cmd_tbl *cmdtp, int flag, int argc,
400 char *const argv[])
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100401{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200402 u32 parent_handle = 0;
403 u32 key_len, key_handle, err;
404 u8 usage_auth[DIGEST_LENGTH];
405 u8 parent_hash[DIGEST_LENGTH];
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100406 void *key;
Simon Glassabdc7b82018-11-18 14:22:27 -0700407 struct udevice *dev;
408
Mathew McBridee845dd72021-11-11 04:06:27 +0000409 err = get_tpm(&dev);
410 if (err)
411 return err;
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100412
413 if (argc < 5)
414 return CMD_RET_USAGE;
415
416 parse_byte_string(argv[1], parent_hash, NULL);
417 key = (void *)simple_strtoul(argv[2], NULL, 0);
418 key_len = simple_strtoul(argv[3], NULL, 0);
419 if (strlen(argv[4]) != 2 * DIGEST_LENGTH)
420 return CMD_RET_FAILURE;
421 parse_byte_string(argv[4], usage_auth, NULL);
422
Mathew McBridee845dd72021-11-11 04:06:27 +0000423 err = tpm1_find_key_sha1(dev, usage_auth, parent_hash, &parent_handle);
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100424 if (err) {
425 printf("Could not find matching parent key (err = %d)\n", err);
426 return CMD_RET_FAILURE;
427 }
428
429 printf("Found parent key %08x\n", parent_handle);
430
Mathew McBridee845dd72021-11-11 04:06:27 +0000431 err = tpm1_load_key2_oiap(dev, parent_handle, key, key_len, usage_auth,
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100432 &key_handle);
433 if (!err) {
434 printf("Key handle is 0x%x\n", key_handle);
Simon Glass018f5302017-08-03 12:22:10 -0600435 env_set_hex("key_handle", key_handle);
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100436 }
437
438 return report_return_code(err);
439}
440#endif /* CONFIG_TPM_LOAD_KEY_BY_SHA1 */
441
Simon Glass09140112020-05-10 11:40:03 -0600442static int do_tpm_load_key2_oiap(struct cmd_tbl *cmdtp, int flag, int argc,
443 char *const argv[])
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200444{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200445 u32 parent_handle, key_len, key_handle, err;
446 u8 usage_auth[DIGEST_LENGTH];
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200447 void *key;
Simon Glassabdc7b82018-11-18 14:22:27 -0700448 struct udevice *dev;
449 int rc;
450
451 rc = get_tpm(&dev);
452 if (rc)
453 return rc;
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200454
455 if (argc < 5)
456 return CMD_RET_USAGE;
457
458 parent_handle = simple_strtoul(argv[1], NULL, 0);
459 key = (void *)simple_strtoul(argv[2], NULL, 0);
460 key_len = simple_strtoul(argv[3], NULL, 0);
461 if (strlen(argv[4]) != 2 * DIGEST_LENGTH)
462 return CMD_RET_FAILURE;
463 parse_byte_string(argv[4], usage_auth, NULL);
464
Simon Glassd6a885f2021-02-06 14:23:36 -0700465 err = tpm1_load_key2_oiap(dev, parent_handle, key, key_len, usage_auth,
466 &key_handle);
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200467 if (!err)
468 printf("Key handle is 0x%x\n", key_handle);
469
Simon Glassf8f1fe12015-08-22 18:31:34 -0600470 return report_return_code(err);
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200471}
472
Simon Glass09140112020-05-10 11:40:03 -0600473static int do_tpm_get_pub_key_oiap(struct cmd_tbl *cmdtp, int flag, int argc,
474 char *const argv[])
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200475{
Miquel Raynalb9804e52018-05-15 11:56:59 +0200476 u32 key_handle, err;
477 u8 usage_auth[DIGEST_LENGTH];
478 u8 pub_key_buffer[TPM_PUBKEY_MAX_LENGTH];
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200479 size_t pub_key_len = sizeof(pub_key_buffer);
Simon Glassabdc7b82018-11-18 14:22:27 -0700480 struct udevice *dev;
481 int rc;
482
483 rc = get_tpm(&dev);
484 if (rc)
485 return rc;
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200486
487 if (argc < 3)
488 return CMD_RET_USAGE;
489
490 key_handle = simple_strtoul(argv[1], NULL, 0);
491 if (strlen(argv[2]) != 2 * DIGEST_LENGTH)
492 return CMD_RET_FAILURE;
493 parse_byte_string(argv[2], usage_auth, NULL);
494
Simon Glassd6a885f2021-02-06 14:23:36 -0700495 err = tpm1_get_pub_key_oiap(dev, key_handle, usage_auth, pub_key_buffer,
496 &pub_key_len);
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200497 if (!err) {
498 printf("dump of received pub key structure:\n");
499 print_byte_string(pub_key_buffer, pub_key_len);
500 }
Simon Glassf8f1fe12015-08-22 18:31:34 -0600501 return report_return_code(err);
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200502}
503
Simon Glassd6a885f2021-02-06 14:23:36 -0700504TPM_COMMAND_NO_ARG(tpm1_end_oiap)
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200505
506#endif /* CONFIG_TPM_AUTH_SESSIONS */
507
Mario Six7690be32017-01-11 16:00:50 +0100508#ifdef CONFIG_TPM_FLUSH_RESOURCES
Simon Glass09140112020-05-10 11:40:03 -0600509static int do_tpm_flush(struct cmd_tbl *cmdtp, int flag, int argc,
510 char *const argv[])
Mario Six7690be32017-01-11 16:00:50 +0100511{
Simon Glassabdc7b82018-11-18 14:22:27 -0700512 struct udevice *dev;
Mario Six7690be32017-01-11 16:00:50 +0100513 int type = 0;
Simon Glassabdc7b82018-11-18 14:22:27 -0700514 int rc;
515
516 rc = get_tpm(&dev);
517 if (rc)
518 return rc;
Mario Six7690be32017-01-11 16:00:50 +0100519
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100520 if (argc != 3)
Mario Six7690be32017-01-11 16:00:50 +0100521 return CMD_RET_USAGE;
522
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100523 if (!strcasecmp(argv[1], "key"))
Mario Six7690be32017-01-11 16:00:50 +0100524 type = TPM_RT_KEY;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100525 else if (!strcasecmp(argv[1], "auth"))
Mario Six7690be32017-01-11 16:00:50 +0100526 type = TPM_RT_AUTH;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100527 else if (!strcasecmp(argv[1], "hash"))
Mario Six7690be32017-01-11 16:00:50 +0100528 type = TPM_RT_HASH;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100529 else if (!strcasecmp(argv[1], "trans"))
Mario Six7690be32017-01-11 16:00:50 +0100530 type = TPM_RT_TRANS;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100531 else if (!strcasecmp(argv[1], "context"))
Mario Six7690be32017-01-11 16:00:50 +0100532 type = TPM_RT_CONTEXT;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100533 else if (!strcasecmp(argv[1], "counter"))
Mario Six7690be32017-01-11 16:00:50 +0100534 type = TPM_RT_COUNTER;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100535 else if (!strcasecmp(argv[1], "delegate"))
Mario Six7690be32017-01-11 16:00:50 +0100536 type = TPM_RT_DELEGATE;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100537 else if (!strcasecmp(argv[1], "daa_tpm"))
Mario Six7690be32017-01-11 16:00:50 +0100538 type = TPM_RT_DAA_TPM;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100539 else if (!strcasecmp(argv[1], "daa_v0"))
Mario Six7690be32017-01-11 16:00:50 +0100540 type = TPM_RT_DAA_V0;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100541 else if (!strcasecmp(argv[1], "daa_v1"))
Mario Six7690be32017-01-11 16:00:50 +0100542 type = TPM_RT_DAA_V1;
543
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100544 if (!type) {
545 printf("Resource type %s unknown.\n", argv[1]);
546 return -1;
547 }
548
549 if (!strcasecmp(argv[2], "all")) {
Miquel Raynalb9804e52018-05-15 11:56:59 +0200550 u16 res_count;
551 u8 buf[288];
552 u8 *ptr;
Mario Six7690be32017-01-11 16:00:50 +0100553 int err;
554 uint i;
555
556 /* fetch list of already loaded resources in the TPM */
Simon Glassabdc7b82018-11-18 14:22:27 -0700557 err = tpm_get_capability(dev, TPM_CAP_HANDLE, type, buf,
Mario Six7690be32017-01-11 16:00:50 +0100558 sizeof(buf));
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100559 if (err) {
560 printf("tpm_get_capability returned error %d.\n", err);
Mario Six7690be32017-01-11 16:00:50 +0100561 return -1;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100562 }
Mario Six7690be32017-01-11 16:00:50 +0100563 res_count = get_unaligned_be16(buf);
564 ptr = buf + 2;
565 for (i = 0; i < res_count; ++i, ptr += 4)
Simon Glassd6a885f2021-02-06 14:23:36 -0700566 tpm1_flush_specific(dev, get_unaligned_be32(ptr), type);
Mario Six7690be32017-01-11 16:00:50 +0100567 } else {
Miquel Raynalb9804e52018-05-15 11:56:59 +0200568 u32 handle = simple_strtoul(argv[2], NULL, 0);
Mario Six7690be32017-01-11 16:00:50 +0100569
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100570 if (!handle) {
571 printf("Illegal resource handle %s\n", argv[2]);
Mario Six7690be32017-01-11 16:00:50 +0100572 return -1;
mario.six@gdsys.cc1c08b212017-03-20 10:28:29 +0100573 }
Simon Glassd6a885f2021-02-06 14:23:36 -0700574 tpm1_flush_specific(dev, cpu_to_be32(handle), type);
Mario Six7690be32017-01-11 16:00:50 +0100575 }
576
577 return 0;
578}
579#endif /* CONFIG_TPM_FLUSH_RESOURCES */
580
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100581#ifdef CONFIG_TPM_LIST_RESOURCES
Simon Glass09140112020-05-10 11:40:03 -0600582static int do_tpm_list(struct cmd_tbl *cmdtp, int flag, int argc,
583 char *const argv[])
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100584{
Mathew McBrideebb6d742021-11-11 04:06:26 +0000585 struct udevice *dev;
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100586 int type = 0;
Miquel Raynalb9804e52018-05-15 11:56:59 +0200587 u16 res_count;
588 u8 buf[288];
589 u8 *ptr;
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100590 int err;
591 uint i;
592
Mathew McBrideebb6d742021-11-11 04:06:26 +0000593 err = get_tpm(&dev);
594 if (err)
595 return err;
596
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100597 if (argc != 2)
598 return CMD_RET_USAGE;
599
600 if (!strcasecmp(argv[1], "key"))
601 type = TPM_RT_KEY;
602 else if (!strcasecmp(argv[1], "auth"))
603 type = TPM_RT_AUTH;
604 else if (!strcasecmp(argv[1], "hash"))
605 type = TPM_RT_HASH;
606 else if (!strcasecmp(argv[1], "trans"))
607 type = TPM_RT_TRANS;
608 else if (!strcasecmp(argv[1], "context"))
609 type = TPM_RT_CONTEXT;
610 else if (!strcasecmp(argv[1], "counter"))
611 type = TPM_RT_COUNTER;
612 else if (!strcasecmp(argv[1], "delegate"))
613 type = TPM_RT_DELEGATE;
614 else if (!strcasecmp(argv[1], "daa_tpm"))
615 type = TPM_RT_DAA_TPM;
616 else if (!strcasecmp(argv[1], "daa_v0"))
617 type = TPM_RT_DAA_V0;
618 else if (!strcasecmp(argv[1], "daa_v1"))
619 type = TPM_RT_DAA_V1;
620
621 if (!type) {
622 printf("Resource type %s unknown.\n", argv[1]);
623 return -1;
624 }
625
626 /* fetch list of already loaded resources in the TPM */
Mathew McBrideebb6d742021-11-11 04:06:26 +0000627 err = tpm_get_capability(dev, TPM_CAP_HANDLE, type, buf,
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100628 sizeof(buf));
629 if (err) {
630 printf("tpm_get_capability returned error %d.\n", err);
631 return -1;
632 }
633 res_count = get_unaligned_be16(buf);
634 ptr = buf + 2;
635
636 printf("Resources of type %s (%02x):\n", argv[1], type);
637 if (!res_count) {
638 puts("None\n");
639 } else {
640 for (i = 0; i < res_count; ++i, ptr += 4)
641 printf("Index %d: %08x\n", i, get_unaligned_be32(ptr));
642 }
643
644 return 0;
645}
646#endif /* CONFIG_TPM_LIST_RESOURCES */
647
Miquel Raynald677bfe2018-05-15 11:57:06 +0200648TPM_COMMAND_NO_ARG(tpm_self_test_full)
649TPM_COMMAND_NO_ARG(tpm_continue_self_test)
650TPM_COMMAND_NO_ARG(tpm_force_clear)
651TPM_COMMAND_NO_ARG(tpm_physical_enable)
652TPM_COMMAND_NO_ARG(tpm_physical_disable)
Che-liang Chiou8732b072013-02-28 09:34:57 +0000653
Simon Glass09140112020-05-10 11:40:03 -0600654static struct cmd_tbl tpm1_commands[] = {
Philippe Reynes3780e2d2020-01-09 18:45:46 +0100655 U_BOOT_CMD_MKENT(device, 0, 1, do_tpm_device, "", ""),
Simon Glassad776942015-08-22 18:31:40 -0600656 U_BOOT_CMD_MKENT(info, 0, 1, do_tpm_info, "", ""),
Miquel Raynalc6179182018-05-15 11:57:00 +0200657 U_BOOT_CMD_MKENT(init, 0, 1, do_tpm_init, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000658 U_BOOT_CMD_MKENT(startup, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200659 do_tpm_startup, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000660 U_BOOT_CMD_MKENT(self_test_full, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200661 do_tpm_self_test_full, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000662 U_BOOT_CMD_MKENT(continue_self_test, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200663 do_tpm_continue_self_test, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000664 U_BOOT_CMD_MKENT(force_clear, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200665 do_tpm_force_clear, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000666 U_BOOT_CMD_MKENT(physical_enable, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200667 do_tpm_physical_enable, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000668 U_BOOT_CMD_MKENT(physical_disable, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200669 do_tpm_physical_disable, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000670 U_BOOT_CMD_MKENT(nv_define_space, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200671 do_tpm_nv_define_space, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000672 U_BOOT_CMD_MKENT(nv_read_value, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200673 do_tpm_nv_read_value, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000674 U_BOOT_CMD_MKENT(nv_write_value, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200675 do_tpm_nv_write_value, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000676 U_BOOT_CMD_MKENT(extend, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200677 do_tpm_extend, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000678 U_BOOT_CMD_MKENT(pcr_read, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200679 do_tpm_pcr_read, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000680 U_BOOT_CMD_MKENT(tsc_physical_presence, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200681 do_tpm_tsc_physical_presence, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000682 U_BOOT_CMD_MKENT(read_pubek, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200683 do_tpm_read_pubek, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000684 U_BOOT_CMD_MKENT(physical_set_deactivated, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200685 do_tpm_physical_set_deactivated, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000686 U_BOOT_CMD_MKENT(get_capability, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200687 do_tpm_get_capability, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000688 U_BOOT_CMD_MKENT(raw_transfer, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200689 do_tpm_raw_transfer, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000690 U_BOOT_CMD_MKENT(nv_define, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200691 do_tpm_nv_define, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000692 U_BOOT_CMD_MKENT(nv_read, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200693 do_tpm_nv_read, "", ""),
Che-liang Chiou8732b072013-02-28 09:34:57 +0000694 U_BOOT_CMD_MKENT(nv_write, 0, 1,
Miquel Raynalc6179182018-05-15 11:57:00 +0200695 do_tpm_nv_write, "", ""),
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200696#ifdef CONFIG_TPM_AUTH_SESSIONS
697 U_BOOT_CMD_MKENT(oiap, 0, 1,
698 do_tpm_oiap, "", ""),
699 U_BOOT_CMD_MKENT(end_oiap, 0, 1,
Simon Glassd6a885f2021-02-06 14:23:36 -0700700 do_tpm1_end_oiap, "", ""),
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200701 U_BOOT_CMD_MKENT(load_key2_oiap, 0, 1,
702 do_tpm_load_key2_oiap, "", ""),
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100703#ifdef CONFIG_TPM_LOAD_KEY_BY_SHA1
704 U_BOOT_CMD_MKENT(load_key_by_sha1, 0, 1,
705 do_tpm_load_key_by_sha1, "", ""),
706#endif /* CONFIG_TPM_LOAD_KEY_BY_SHA1 */
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200707 U_BOOT_CMD_MKENT(get_pub_key_oiap, 0, 1,
708 do_tpm_get_pub_key_oiap, "", ""),
709#endif /* CONFIG_TPM_AUTH_SESSIONS */
Mario Six7690be32017-01-11 16:00:50 +0100710#ifdef CONFIG_TPM_FLUSH_RESOURCES
711 U_BOOT_CMD_MKENT(flush, 0, 1,
712 do_tpm_flush, "", ""),
713#endif /* CONFIG_TPM_FLUSH_RESOURCES */
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100714#ifdef CONFIG_TPM_LIST_RESOURCES
715 U_BOOT_CMD_MKENT(list, 0, 1,
716 do_tpm_list, "", ""),
717#endif /* CONFIG_TPM_LIST_RESOURCES */
Che-liang Chiou8732b072013-02-28 09:34:57 +0000718};
Luigi Semenzatoeea3f4d2012-12-05 14:46:44 +0000719
Simon Glass09140112020-05-10 11:40:03 -0600720struct cmd_tbl *get_tpm1_commands(unsigned int *size)
Luigi Semenzatoeea3f4d2012-12-05 14:46:44 +0000721{
Miquel Raynald677bfe2018-05-15 11:57:06 +0200722 *size = ARRAY_SIZE(tpm1_commands);
Che-liang Chiou8732b072013-02-28 09:34:57 +0000723
Miquel Raynald677bfe2018-05-15 11:57:06 +0200724 return tpm1_commands;
Luigi Semenzatoeea3f4d2012-12-05 14:46:44 +0000725}
726
Che-liang Chiou8732b072013-02-28 09:34:57 +0000727U_BOOT_CMD(tpm, CONFIG_SYS_MAXARGS, 1, do_tpm,
Miquel Raynald677bfe2018-05-15 11:57:06 +0200728"Issue a TPMv1.x command",
Che-liang Chiou8732b072013-02-28 09:34:57 +0000729"cmd args...\n"
730" - Issue TPM command <cmd> with arguments <args...>.\n"
731"Admin Startup and State Commands:\n"
Philippe Reynes3780e2d2020-01-09 18:45:46 +0100732" device [num device]\n"
733" - Show all devices or set the specified device\n"
Simon Glassad776942015-08-22 18:31:40 -0600734" info - Show information about the TPM\n"
Che-liang Chiou8732b072013-02-28 09:34:57 +0000735" init\n"
736" - Put TPM into a state where it waits for 'startup' command.\n"
737" startup mode\n"
738" - Issue TPM_Starup command. <mode> is one of TPM_ST_CLEAR,\n"
739" TPM_ST_STATE, and TPM_ST_DEACTIVATED.\n"
740"Admin Testing Commands:\n"
741" self_test_full\n"
742" - Test all of the TPM capabilities.\n"
743" continue_self_test\n"
744" - Inform TPM that it should complete the self-test.\n"
745"Admin Opt-in Commands:\n"
746" physical_enable\n"
747" - Set the PERMANENT disable flag to FALSE using physical presence as\n"
748" authorization.\n"
749" physical_disable\n"
750" - Set the PERMANENT disable flag to TRUE using physical presence as\n"
751" authorization.\n"
752" physical_set_deactivated 0|1\n"
753" - Set deactivated flag.\n"
754"Admin Ownership Commands:\n"
755" force_clear\n"
756" - Issue TPM_ForceClear command.\n"
757" tsc_physical_presence flags\n"
758" - Set TPM device's Physical Presence flags to <flags>.\n"
759"The Capability Commands:\n"
760" get_capability cap_area sub_cap addr count\n"
761" - Read <count> bytes of TPM capability indexed by <cap_area> and\n"
762" <sub_cap> to memory address <addr>.\n"
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100763#if defined(CONFIG_TPM_FLUSH_RESOURCES) || defined(CONFIG_TPM_LIST_RESOURCES)
Mario Six7690be32017-01-11 16:00:50 +0100764"Resource management functions\n"
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100765#endif
766#ifdef CONFIG_TPM_FLUSH_RESOURCES
Mario Six7690be32017-01-11 16:00:50 +0100767" flush resource_type id\n"
768" - flushes a resource of type <resource_type> (may be one of key, auth,\n"
769" hash, trans, context, counter, delegate, daa_tpm, daa_v0, daa_v1),\n"
770" and id <id> from the TPM. Use an <id> of \"all\" to flush all\n"
771" resources of that type.\n"
772#endif /* CONFIG_TPM_FLUSH_RESOURCES */
mario.six@gdsys.cc3d1df0e2017-03-20 10:28:30 +0100773#ifdef CONFIG_TPM_LIST_RESOURCES
774" list resource_type\n"
775" - lists resources of type <resource_type> (may be one of key, auth,\n"
776" hash, trans, context, counter, delegate, daa_tpm, daa_v0, daa_v1),\n"
777" contained in the TPM.\n"
778#endif /* CONFIG_TPM_LIST_RESOURCES */
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200779#ifdef CONFIG_TPM_AUTH_SESSIONS
780"Storage functions\n"
781" loadkey2_oiap parent_handle key_addr key_len usage_auth\n"
782" - loads a key data from memory address <key_addr>, <key_len> bytes\n"
783" into TPM using the parent key <parent_handle> with authorization\n"
784" <usage_auth> (20 bytes hex string).\n"
mario.six@gdsys.cc0f4b2ba2017-03-20 10:28:28 +0100785#ifdef CONFIG_TPM_LOAD_KEY_BY_SHA1
786" load_key_by_sha1 parent_hash key_addr key_len usage_auth\n"
787" - loads a key data from memory address <key_addr>, <key_len> bytes\n"
788" into TPM using the parent hash <parent_hash> (20 bytes hex string)\n"
789" with authorization <usage_auth> (20 bytes hex string).\n"
790#endif /* CONFIG_TPM_LOAD_KEY_BY_SHA1 */
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200791" get_pub_key_oiap key_handle usage_auth\n"
792" - get the public key portion of a loaded key <key_handle> using\n"
793" authorization <usage auth> (20 bytes hex string)\n"
794#endif /* CONFIG_TPM_AUTH_SESSIONS */
Che-liang Chiou8732b072013-02-28 09:34:57 +0000795"Endorsement Key Handling Commands:\n"
796" read_pubek addr count\n"
797" - Read <count> bytes of the public endorsement key to memory\n"
798" address <addr>\n"
799"Integrity Collection and Reporting Commands:\n"
800" extend index digest_hex_string\n"
801" - Add a new measurement to a PCR. Update PCR <index> with the 20-bytes\n"
802" <digest_hex_string>\n"
803" pcr_read index addr count\n"
804" - Read <count> bytes from PCR <index> to memory address <addr>.\n"
Reinhard Pfaube6c1522013-06-26 15:55:13 +0200805#ifdef CONFIG_TPM_AUTH_SESSIONS
806"Authorization Sessions\n"
807" oiap\n"
808" - setup an OIAP session\n"
809" end_oiap\n"
810" - terminates an active OIAP session\n"
811#endif /* CONFIG_TPM_AUTH_SESSIONS */
Che-liang Chiou8732b072013-02-28 09:34:57 +0000812"Non-volatile Storage Commands:\n"
813" nv_define_space index permission size\n"
814" - Establish a space at index <index> with <permission> of <size> bytes.\n"
815" nv_read_value index addr count\n"
816" - Read <count> bytes from space <index> to memory address <addr>.\n"
817" nv_write_value index addr count\n"
818" - Write <count> bytes from memory address <addr> to space <index>.\n"
819"Miscellaneous helper functions:\n"
820" raw_transfer byte_string\n"
821" - Send a byte string <byte_string> to TPM and print the response.\n"
822" Non-volatile storage helper functions:\n"
823" These helper functions treat a non-volatile space as a non-padded\n"
824" sequence of integer values. These integer values are defined by a type\n"
825" string, which is a text string of 'bwd' characters: 'b' means a 8-bit\n"
826" value, 'w' 16-bit value, 'd' 32-bit value. All helper functions take\n"
827" a type string as their first argument.\n"
828" nv_define type_string index perm\n"
829" - Define a space <index> with permission <perm>.\n"
830" nv_read types_string index vars...\n"
831" - Read from space <index> to environment variables <vars...>.\n"
832" nv_write types_string index values...\n"
833" - Write to space <index> from values <values...>.\n"
Luigi Semenzatoeea3f4d2012-12-05 14:46:44 +0000834);