blob: a3ccb12f53a124b91fdea28839dc17f8454317bd [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glasse76cb922015-08-22 18:31:42 -06002/*
3 * Copyright (c) 2015 Google, Inc
Simon Glasse76cb922015-08-22 18:31:42 -06004 */
5
6#include <common.h>
7#include <command.h>
Simon Glass9a3b4ce2019-12-28 10:45:01 -07008#include <cpu_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Miquel Raynald677bfe2018-05-15 11:57:06 +020010#include <tpm-v1.h>
Simon Glassabdc7b82018-11-18 14:22:27 -070011#include "tpm-user-utils.h"
Simon Glassd6a885f2021-02-06 14:23:36 -070012#include <tpm_api.h>
Simon Glasse76cb922015-08-22 18:31:42 -060013
14/* Prints error and returns on failure */
15#define TPM_CHECK(tpm_command) do { \
16 uint32_t result; \
17 \
18 result = (tpm_command); \
19 if (result != TPM_SUCCESS) { \
20 printf("TEST FAILED: line %d: " #tpm_command ": 0x%x\n", \
21 __LINE__, result); \
22 return result; \
23 } \
24} while (0)
25
26#define INDEX0 0xda70
27#define INDEX1 0xda71
28#define INDEX2 0xda72
29#define INDEX3 0xda73
30#define INDEX_INITIALISED 0xda80
31#define PHYS_PRESENCE 4
32#define PRESENCE 8
33
Simon Glassabdc7b82018-11-18 14:22:27 -070034static uint32_t TlclStartupIfNeeded(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -060035{
Simon Glassabdc7b82018-11-18 14:22:27 -070036 uint32_t result = tpm_startup(dev, TPM_ST_CLEAR);
Simon Glasse76cb922015-08-22 18:31:42 -060037
38 return result == TPM_INVALID_POSTINIT ? TPM_SUCCESS : result;
39}
40
Simon Glassabdc7b82018-11-18 14:22:27 -070041static int test_timer(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -060042{
43 printf("get_timer(0) = %lu\n", get_timer(0));
44 return 0;
45}
46
Simon Glassabdc7b82018-11-18 14:22:27 -070047static uint32_t tpm_get_flags(struct udevice *dev, uint8_t *disable,
48 uint8_t *deactivated, uint8_t *nvlocked)
Simon Glasse76cb922015-08-22 18:31:42 -060049{
50 struct tpm_permanent_flags pflags;
51 uint32_t result;
52
Simon Glassd6a885f2021-02-06 14:23:36 -070053 result = tpm1_get_permanent_flags(dev, &pflags);
Simon Glasse76cb922015-08-22 18:31:42 -060054 if (result)
55 return result;
56 if (disable)
57 *disable = pflags.disable;
58 if (deactivated)
59 *deactivated = pflags.deactivated;
60 if (nvlocked)
61 *nvlocked = pflags.nv_locked;
62 debug("TPM: Got flags disable=%d, deactivated=%d, nvlocked=%d\n",
63 pflags.disable, pflags.deactivated, pflags.nv_locked);
64
65 return 0;
66}
67
Simon Glassabdc7b82018-11-18 14:22:27 -070068static uint32_t tpm_nv_write_value_lock(struct udevice *dev, uint32_t index)
Simon Glasse76cb922015-08-22 18:31:42 -060069{
70 debug("TPM: Write lock 0x%x\n", index);
71
Simon Glassabdc7b82018-11-18 14:22:27 -070072 return tpm_nv_write_value(dev, index, NULL, 0);
Simon Glasse76cb922015-08-22 18:31:42 -060073}
74
Simon Glassabdc7b82018-11-18 14:22:27 -070075static int tpm_is_owned(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -060076{
77 uint8_t response[TPM_PUBEK_SIZE];
78 uint32_t result;
79
Simon Glassabdc7b82018-11-18 14:22:27 -070080 result = tpm_read_pubek(dev, response, sizeof(response));
Simon Glasse76cb922015-08-22 18:31:42 -060081
82 return result != TPM_SUCCESS;
83}
84
Simon Glassabdc7b82018-11-18 14:22:27 -070085static int test_early_extend(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -060086{
87 uint8_t value_in[20];
88 uint8_t value_out[20];
89
90 printf("Testing earlyextend ...");
Simon Glassabdc7b82018-11-18 14:22:27 -070091 tpm_init(dev);
92 TPM_CHECK(tpm_startup(dev, TPM_ST_CLEAR));
93 TPM_CHECK(tpm_continue_self_test(dev));
Simon Glassd6a885f2021-02-06 14:23:36 -070094 TPM_CHECK(tpm_pcr_extend(dev, 1, value_in, value_out));
Simon Glasse76cb922015-08-22 18:31:42 -060095 printf("done\n");
96 return 0;
97}
98
Simon Glassabdc7b82018-11-18 14:22:27 -070099static int test_early_nvram(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600100{
101 uint32_t x;
102
103 printf("Testing earlynvram ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700104 tpm_init(dev);
105 TPM_CHECK(tpm_startup(dev, TPM_ST_CLEAR));
106 TPM_CHECK(tpm_continue_self_test(dev));
107 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
108 TPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600109 printf("done\n");
110 return 0;
111}
112
Simon Glassabdc7b82018-11-18 14:22:27 -0700113static int test_early_nvram2(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600114{
115 uint32_t x;
116
117 printf("Testing earlynvram2 ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700118 tpm_init(dev);
119 TPM_CHECK(tpm_startup(dev, TPM_ST_CLEAR));
120 TPM_CHECK(tpm_continue_self_test(dev));
121 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
122 TPM_CHECK(tpm_nv_write_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600123 printf("done\n");
124 return 0;
125}
126
Simon Glassabdc7b82018-11-18 14:22:27 -0700127static int test_enable(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600128{
129 uint8_t disable = 0, deactivated = 0;
130
131 printf("Testing enable ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700132 tpm_init(dev);
133 TPM_CHECK(TlclStartupIfNeeded(dev));
134 TPM_CHECK(tpm_self_test_full(dev));
135 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
136 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600137 printf("\tdisable is %d, deactivated is %d\n", disable, deactivated);
Simon Glassabdc7b82018-11-18 14:22:27 -0700138 TPM_CHECK(tpm_physical_enable(dev));
139 TPM_CHECK(tpm_physical_set_deactivated(dev, 0));
140 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600141 printf("\tdisable is %d, deactivated is %d\n", disable, deactivated);
142 if (disable == 1 || deactivated == 1)
143 printf("\tfailed to enable or activate\n");
144 printf("\tdone\n");
145 return 0;
146}
147
148#define reboot() do { \
149 printf("\trebooting...\n"); \
Harald Seiler35b65dd2020-12-15 16:47:52 +0100150 reset_cpu(); \
Simon Glasse76cb922015-08-22 18:31:42 -0600151} while (0)
152
Simon Glassabdc7b82018-11-18 14:22:27 -0700153static int test_fast_enable(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600154{
155 uint8_t disable = 0, deactivated = 0;
156 int i;
157
158 printf("Testing fastenable ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700159 tpm_init(dev);
160 TPM_CHECK(TlclStartupIfNeeded(dev));
161 TPM_CHECK(tpm_self_test_full(dev));
162 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
163 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600164 printf("\tdisable is %d, deactivated is %d\n", disable, deactivated);
165 for (i = 0; i < 2; i++) {
Simon Glassabdc7b82018-11-18 14:22:27 -0700166 TPM_CHECK(tpm_force_clear(dev));
167 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600168 printf("\tdisable is %d, deactivated is %d\n", disable,
169 deactivated);
170 assert(disable == 1 && deactivated == 1);
Simon Glassabdc7b82018-11-18 14:22:27 -0700171 TPM_CHECK(tpm_physical_enable(dev));
172 TPM_CHECK(tpm_physical_set_deactivated(dev, 0));
173 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600174 printf("\tdisable is %d, deactivated is %d\n", disable,
175 deactivated);
176 assert(disable == 0 && deactivated == 0);
177 }
178 printf("\tdone\n");
179 return 0;
180}
181
Simon Glassabdc7b82018-11-18 14:22:27 -0700182static int test_global_lock(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600183{
184 uint32_t zero = 0;
185 uint32_t result;
186 uint32_t x;
187
188 printf("Testing globallock ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700189 tpm_init(dev);
190 TPM_CHECK(TlclStartupIfNeeded(dev));
191 TPM_CHECK(tpm_self_test_full(dev));
192 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
193 TPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
194 TPM_CHECK(tpm_nv_write_value(dev, INDEX0, (uint8_t *)&zero,
Simon Glasse76cb922015-08-22 18:31:42 -0600195 sizeof(uint32_t)));
Simon Glassabdc7b82018-11-18 14:22:27 -0700196 TPM_CHECK(tpm_nv_read_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
197 TPM_CHECK(tpm_nv_write_value(dev, INDEX1, (uint8_t *)&zero,
Simon Glasse76cb922015-08-22 18:31:42 -0600198 sizeof(uint32_t)));
Simon Glassabdc7b82018-11-18 14:22:27 -0700199 TPM_CHECK(tpm_set_global_lock(dev));
Simon Glasse76cb922015-08-22 18:31:42 -0600200 /* Verifies that write to index0 fails */
201 x = 1;
Simon Glassabdc7b82018-11-18 14:22:27 -0700202 result = tpm_nv_write_value(dev, INDEX0, (uint8_t *)&x, sizeof(x));
Simon Glasse76cb922015-08-22 18:31:42 -0600203 assert(result == TPM_AREA_LOCKED);
Simon Glassabdc7b82018-11-18 14:22:27 -0700204 TPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600205 assert(x == 0);
206 /* Verifies that write to index1 is still possible */
207 x = 2;
Simon Glassabdc7b82018-11-18 14:22:27 -0700208 TPM_CHECK(tpm_nv_write_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
209 TPM_CHECK(tpm_nv_read_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600210 assert(x == 2);
211 /* Turns off PP */
Simon Glassabdc7b82018-11-18 14:22:27 -0700212 tpm_tsc_physical_presence(dev, PHYS_PRESENCE);
Simon Glasse76cb922015-08-22 18:31:42 -0600213 /* Verifies that write to index1 fails */
214 x = 3;
Simon Glassabdc7b82018-11-18 14:22:27 -0700215 result = tpm_nv_write_value(dev, INDEX1, (uint8_t *)&x, sizeof(x));
Simon Glasse76cb922015-08-22 18:31:42 -0600216 assert(result == TPM_BAD_PRESENCE);
Simon Glassabdc7b82018-11-18 14:22:27 -0700217 TPM_CHECK(tpm_nv_read_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600218 assert(x == 2);
219 printf("\tdone\n");
220 return 0;
221}
222
Simon Glassabdc7b82018-11-18 14:22:27 -0700223static int test_lock(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600224{
225 printf("Testing lock ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700226 tpm_init(dev);
227 tpm_startup(dev, TPM_ST_CLEAR);
228 tpm_self_test_full(dev);
229 tpm_tsc_physical_presence(dev, PRESENCE);
230 tpm_nv_write_value_lock(dev, INDEX0);
Simon Glasse76cb922015-08-22 18:31:42 -0600231 printf("\tLocked 0x%x\n", INDEX0);
232 printf("\tdone\n");
233 return 0;
234}
235
Simon Glassabdc7b82018-11-18 14:22:27 -0700236static void initialise_spaces(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600237{
238 uint32_t zero = 0;
239 uint32_t perm = TPM_NV_PER_WRITE_STCLEAR | TPM_NV_PER_PPWRITE;
240
241 printf("\tInitialising spaces\n");
Simon Glassd6a885f2021-02-06 14:23:36 -0700242 tpm1_nv_set_locked(dev); /* useful only the first time */
243 tpm1_nv_define_space(dev, INDEX0, perm, 4);
Simon Glassabdc7b82018-11-18 14:22:27 -0700244 tpm_nv_write_value(dev, INDEX0, (uint8_t *)&zero, 4);
Simon Glassd6a885f2021-02-06 14:23:36 -0700245 tpm1_nv_define_space(dev, INDEX1, perm, 4);
Simon Glassabdc7b82018-11-18 14:22:27 -0700246 tpm_nv_write_value(dev, INDEX1, (uint8_t *)&zero, 4);
Simon Glassd6a885f2021-02-06 14:23:36 -0700247 tpm1_nv_define_space(dev, INDEX2, perm, 4);
Simon Glassabdc7b82018-11-18 14:22:27 -0700248 tpm_nv_write_value(dev, INDEX2, (uint8_t *)&zero, 4);
Simon Glassd6a885f2021-02-06 14:23:36 -0700249 tpm1_nv_define_space(dev, INDEX3, perm, 4);
Simon Glassabdc7b82018-11-18 14:22:27 -0700250 tpm_nv_write_value(dev, INDEX3, (uint8_t *)&zero, 4);
Simon Glasse76cb922015-08-22 18:31:42 -0600251 perm = TPM_NV_PER_READ_STCLEAR | TPM_NV_PER_WRITE_STCLEAR |
252 TPM_NV_PER_PPWRITE;
Simon Glassd6a885f2021-02-06 14:23:36 -0700253 tpm1_nv_define_space(dev, INDEX_INITIALISED, perm, 1);
Simon Glasse76cb922015-08-22 18:31:42 -0600254}
255
Simon Glassabdc7b82018-11-18 14:22:27 -0700256static int test_readonly(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600257{
258 uint8_t c;
259 uint32_t index_0, index_1, index_2, index_3;
260 int read0, read1, read2, read3;
261
262 printf("Testing readonly ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700263 tpm_init(dev);
264 tpm_startup(dev, TPM_ST_CLEAR);
265 tpm_self_test_full(dev);
266 tpm_tsc_physical_presence(dev, PRESENCE);
Simon Glasse76cb922015-08-22 18:31:42 -0600267 /*
268 * Checks if initialisation has completed by trying to read-lock a
269 * space that's created at the end of initialisation
270 */
Simon Glassabdc7b82018-11-18 14:22:27 -0700271 if (tpm_nv_read_value(dev, INDEX_INITIALISED, &c, 0) == TPM_BADINDEX) {
Simon Glasse76cb922015-08-22 18:31:42 -0600272 /* The initialisation did not complete */
Simon Glassabdc7b82018-11-18 14:22:27 -0700273 initialise_spaces(dev);
Simon Glasse76cb922015-08-22 18:31:42 -0600274 }
275
276 /* Checks if spaces are OK or messed up */
Simon Glassabdc7b82018-11-18 14:22:27 -0700277 read0 = tpm_nv_read_value(dev, INDEX0, (uint8_t *)&index_0,
278 sizeof(index_0));
279 read1 = tpm_nv_read_value(dev, INDEX1, (uint8_t *)&index_1,
280 sizeof(index_1));
281 read2 = tpm_nv_read_value(dev, INDEX2, (uint8_t *)&index_2,
282 sizeof(index_2));
283 read3 = tpm_nv_read_value(dev, INDEX3, (uint8_t *)&index_3,
284 sizeof(index_3));
Simon Glasse76cb922015-08-22 18:31:42 -0600285 if (read0 || read1 || read2 || read3) {
286 printf("Invalid contents\n");
287 return 0;
288 }
289
290 /*
291 * Writes space, and locks it. Then attempts to write again.
292 * I really wish I could use the imperative.
293 */
294 index_0 += 1;
Simon Glassabdc7b82018-11-18 14:22:27 -0700295 if (tpm_nv_write_value(dev, INDEX0, (uint8_t *)&index_0,
296 sizeof(index_0) !=
Simon Glasse76cb922015-08-22 18:31:42 -0600297 TPM_SUCCESS)) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900298 pr_err("\tcould not write index 0\n");
Simon Glasse76cb922015-08-22 18:31:42 -0600299 }
Simon Glassabdc7b82018-11-18 14:22:27 -0700300 tpm_nv_write_value_lock(dev, INDEX0);
301 if (tpm_nv_write_value(dev, INDEX0, (uint8_t *)&index_0,
302 sizeof(index_0)) ==
Simon Glasse76cb922015-08-22 18:31:42 -0600303 TPM_SUCCESS)
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900304 pr_err("\tindex 0 is not locked\n");
Simon Glasse76cb922015-08-22 18:31:42 -0600305
306 printf("\tdone\n");
307 return 0;
308}
309
Simon Glassabdc7b82018-11-18 14:22:27 -0700310static int test_redefine_unowned(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600311{
312 uint32_t perm;
313 uint32_t result;
314 uint32_t x;
315
316 printf("Testing redefine_unowned ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700317 tpm_init(dev);
318 TPM_CHECK(TlclStartupIfNeeded(dev));
319 TPM_CHECK(tpm_self_test_full(dev));
320 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
321 assert(!tpm_is_owned(dev));
Simon Glasse76cb922015-08-22 18:31:42 -0600322
323 /* Ensures spaces exist. */
Simon Glassabdc7b82018-11-18 14:22:27 -0700324 TPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
325 TPM_CHECK(tpm_nv_read_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600326
327 /* Redefines spaces a couple of times. */
328 perm = TPM_NV_PER_PPWRITE | TPM_NV_PER_GLOBALLOCK;
Simon Glassd6a885f2021-02-06 14:23:36 -0700329 TPM_CHECK(tpm1_nv_define_space(dev, INDEX0, perm,
330 2 * sizeof(uint32_t)));
331 TPM_CHECK(tpm1_nv_define_space(dev, INDEX0, perm, sizeof(uint32_t)));
Simon Glasse76cb922015-08-22 18:31:42 -0600332 perm = TPM_NV_PER_PPWRITE;
Simon Glassd6a885f2021-02-06 14:23:36 -0700333 TPM_CHECK(tpm1_nv_define_space(dev, INDEX1, perm,
334 2 * sizeof(uint32_t)));
335 TPM_CHECK(tpm1_nv_define_space(dev, INDEX1, perm, sizeof(uint32_t)));
Simon Glasse76cb922015-08-22 18:31:42 -0600336
337 /* Sets the global lock */
Simon Glassabdc7b82018-11-18 14:22:27 -0700338 tpm_set_global_lock(dev);
Simon Glasse76cb922015-08-22 18:31:42 -0600339
340 /* Verifies that index0 cannot be redefined */
Simon Glassd6a885f2021-02-06 14:23:36 -0700341 result = tpm1_nv_define_space(dev, INDEX0, perm, sizeof(uint32_t));
Simon Glasse76cb922015-08-22 18:31:42 -0600342 assert(result == TPM_AREA_LOCKED);
343
344 /* Checks that index1 can */
Simon Glassd6a885f2021-02-06 14:23:36 -0700345 TPM_CHECK(tpm1_nv_define_space(dev, INDEX1, perm,
346 2 * sizeof(uint32_t)));
347 TPM_CHECK(tpm1_nv_define_space(dev, INDEX1, perm, sizeof(uint32_t)));
Simon Glasse76cb922015-08-22 18:31:42 -0600348
349 /* Turns off PP */
Simon Glassabdc7b82018-11-18 14:22:27 -0700350 tpm_tsc_physical_presence(dev, PHYS_PRESENCE);
Simon Glasse76cb922015-08-22 18:31:42 -0600351
352 /* Verifies that neither index0 nor index1 can be redefined */
Simon Glassd6a885f2021-02-06 14:23:36 -0700353 result = tpm1_nv_define_space(dev, INDEX0, perm, sizeof(uint32_t));
Simon Glasse76cb922015-08-22 18:31:42 -0600354 assert(result == TPM_BAD_PRESENCE);
Simon Glassd6a885f2021-02-06 14:23:36 -0700355 result = tpm1_nv_define_space(dev, INDEX1, perm, sizeof(uint32_t));
Simon Glasse76cb922015-08-22 18:31:42 -0600356 assert(result == TPM_BAD_PRESENCE);
357
358 printf("done\n");
359 return 0;
360}
361
362#define PERMPPGL (TPM_NV_PER_PPWRITE | TPM_NV_PER_GLOBALLOCK)
363#define PERMPP TPM_NV_PER_PPWRITE
364
Simon Glassabdc7b82018-11-18 14:22:27 -0700365static int test_space_perm(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600366{
367 uint32_t perm;
368
369 printf("Testing spaceperm ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700370 tpm_init(dev);
371 TPM_CHECK(TlclStartupIfNeeded(dev));
372 TPM_CHECK(tpm_continue_self_test(dev));
373 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
374 TPM_CHECK(tpm_get_permissions(dev, INDEX0, &perm));
Simon Glasse76cb922015-08-22 18:31:42 -0600375 assert((perm & PERMPPGL) == PERMPPGL);
Simon Glassabdc7b82018-11-18 14:22:27 -0700376 TPM_CHECK(tpm_get_permissions(dev, INDEX1, &perm));
Simon Glasse76cb922015-08-22 18:31:42 -0600377 assert((perm & PERMPP) == PERMPP);
378 printf("done\n");
379 return 0;
380}
381
Simon Glassabdc7b82018-11-18 14:22:27 -0700382static int test_startup(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600383{
384 uint32_t result;
Simon Glassabdc7b82018-11-18 14:22:27 -0700385
Simon Glasse76cb922015-08-22 18:31:42 -0600386 printf("Testing startup ...\n");
387
Simon Glassabdc7b82018-11-18 14:22:27 -0700388 tpm_init(dev);
389 result = tpm_startup(dev, TPM_ST_CLEAR);
Simon Glasse76cb922015-08-22 18:31:42 -0600390 if (result != 0 && result != TPM_INVALID_POSTINIT)
391 printf("\ttpm startup failed with 0x%x\n", result);
Simon Glassabdc7b82018-11-18 14:22:27 -0700392 result = tpm_get_flags(dev, NULL, NULL, NULL);
Simon Glasse76cb922015-08-22 18:31:42 -0600393 if (result != 0)
394 printf("\ttpm getflags failed with 0x%x\n", result);
395 printf("\texecuting SelfTestFull\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700396 tpm_self_test_full(dev);
397 result = tpm_get_flags(dev, NULL, NULL, NULL);
Simon Glasse76cb922015-08-22 18:31:42 -0600398 if (result != 0)
399 printf("\ttpm getflags failed with 0x%x\n", result);
400 printf("\tdone\n");
401 return 0;
402}
403
404/*
405 * Runs [op] and ensures it returns success and doesn't run longer than
406 * [time_limit] in milliseconds.
407 */
408#define TTPM_CHECK(op, time_limit) do { \
409 ulong start, time; \
410 uint32_t __result; \
411 \
412 start = get_timer(0); \
413 __result = op; \
414 if (__result != TPM_SUCCESS) { \
415 printf("\t" #op ": error 0x%x\n", __result); \
416 return -1; \
417 } \
418 time = get_timer(start); \
419 printf("\t" #op ": %lu ms\n", time); \
420 if (time > (ulong)time_limit) { \
421 printf("\t" #op " exceeded " #time_limit " ms\n"); \
422 } \
423} while (0)
424
425
Simon Glassabdc7b82018-11-18 14:22:27 -0700426static int test_timing(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600427{
Simon Glasse76cb922015-08-22 18:31:42 -0600428 uint8_t in[20], out[20];
Simon Glassabdc7b82018-11-18 14:22:27 -0700429 uint32_t x;
Simon Glasse76cb922015-08-22 18:31:42 -0600430
431 printf("Testing timing ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700432 tpm_init(dev);
433 TTPM_CHECK(TlclStartupIfNeeded(dev), 50);
434 TTPM_CHECK(tpm_continue_self_test(dev), 100);
435 TTPM_CHECK(tpm_self_test_full(dev), 1000);
436 TTPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE), 100);
437 TTPM_CHECK(tpm_nv_write_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)),
438 100);
439 TTPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)),
440 100);
Simon Glassd6a885f2021-02-06 14:23:36 -0700441 TTPM_CHECK(tpm_pcr_extend(dev, 0, in, out), 200);
Simon Glassabdc7b82018-11-18 14:22:27 -0700442 TTPM_CHECK(tpm_set_global_lock(dev), 50);
443 TTPM_CHECK(tpm_tsc_physical_presence(dev, PHYS_PRESENCE), 100);
Simon Glasse76cb922015-08-22 18:31:42 -0600444 printf("done\n");
445 return 0;
446}
447
448#define TPM_MAX_NV_WRITES_NOOWNER 64
449
Simon Glassabdc7b82018-11-18 14:22:27 -0700450static int test_write_limit(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600451{
Simon Glasse76cb922015-08-22 18:31:42 -0600452 uint32_t result;
Simon Glassabdc7b82018-11-18 14:22:27 -0700453 int i;
Simon Glasse76cb922015-08-22 18:31:42 -0600454
Simon Glassabdc7b82018-11-18 14:22:27 -0700455 printf("Testing writelimit ...\n");
456 tpm_init(dev);
457 TPM_CHECK(TlclStartupIfNeeded(dev));
458 TPM_CHECK(tpm_self_test_full(dev));
459 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
460 TPM_CHECK(tpm_force_clear(dev));
461 TPM_CHECK(tpm_physical_enable(dev));
462 TPM_CHECK(tpm_physical_set_deactivated(dev, 0));
Simon Glasse76cb922015-08-22 18:31:42 -0600463
464 for (i = 0; i < TPM_MAX_NV_WRITES_NOOWNER + 2; i++) {
465 printf("\twriting %d\n", i);
Simon Glassabdc7b82018-11-18 14:22:27 -0700466 result = tpm_nv_write_value(dev, INDEX0, (uint8_t *)&i,
467 sizeof(i));
Simon Glasse76cb922015-08-22 18:31:42 -0600468 switch (result) {
469 case TPM_SUCCESS:
470 break;
471 case TPM_MAXNVWRITES:
472 assert(i >= TPM_MAX_NV_WRITES_NOOWNER);
473 default:
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900474 pr_err("\tunexpected error code %d (0x%x)\n",
Simon Glasse76cb922015-08-22 18:31:42 -0600475 result, result);
476 }
477 }
478
479 /* Reset write count */
Simon Glassabdc7b82018-11-18 14:22:27 -0700480 TPM_CHECK(tpm_force_clear(dev));
481 TPM_CHECK(tpm_physical_enable(dev));
482 TPM_CHECK(tpm_physical_set_deactivated(dev, 0));
Simon Glasse76cb922015-08-22 18:31:42 -0600483
484 /* Try writing again. */
Simon Glassabdc7b82018-11-18 14:22:27 -0700485 TPM_CHECK(tpm_nv_write_value(dev, INDEX0, (uint8_t *)&i, sizeof(i)));
Simon Glasse76cb922015-08-22 18:31:42 -0600486 printf("\tdone\n");
487 return 0;
488}
489
490#define VOIDTEST(XFUNC) \
Simon Glass09140112020-05-10 11:40:03 -0600491 int do_test_##XFUNC(struct cmd_tbl *cmd_tbl, int flag, int argc, \
492 char *const argv[]) \
Simon Glasse76cb922015-08-22 18:31:42 -0600493 { \
Simon Glassabdc7b82018-11-18 14:22:27 -0700494 struct udevice *dev; \
495 int ret; \
496\
497 ret = get_tpm(&dev); \
498 if (ret) \
499 return ret; \
500 return test_##XFUNC(dev); \
Simon Glasse76cb922015-08-22 18:31:42 -0600501 }
502
503#define VOIDENT(XNAME) \
504 U_BOOT_CMD_MKENT(XNAME, 0, 1, do_test_##XNAME, "", ""),
505
506VOIDTEST(early_extend)
507VOIDTEST(early_nvram)
508VOIDTEST(early_nvram2)
509VOIDTEST(enable)
510VOIDTEST(fast_enable)
511VOIDTEST(global_lock)
512VOIDTEST(lock)
513VOIDTEST(readonly)
514VOIDTEST(redefine_unowned)
515VOIDTEST(space_perm)
516VOIDTEST(startup)
517VOIDTEST(timing)
518VOIDTEST(write_limit)
519VOIDTEST(timer)
520
Simon Glass09140112020-05-10 11:40:03 -0600521static struct cmd_tbl cmd_cros_tpm_sub[] = {
Simon Glasse76cb922015-08-22 18:31:42 -0600522 VOIDENT(early_extend)
523 VOIDENT(early_nvram)
524 VOIDENT(early_nvram2)
525 VOIDENT(enable)
526 VOIDENT(fast_enable)
527 VOIDENT(global_lock)
528 VOIDENT(lock)
529 VOIDENT(readonly)
530 VOIDENT(redefine_unowned)
531 VOIDENT(space_perm)
532 VOIDENT(startup)
533 VOIDENT(timing)
534 VOIDENT(write_limit)
535 VOIDENT(timer)
536};
537
Simon Glass09140112020-05-10 11:40:03 -0600538static int do_tpmtest(struct cmd_tbl *cmdtp, int flag, int argc,
539 char *const argv[])
Simon Glasse76cb922015-08-22 18:31:42 -0600540{
Simon Glass09140112020-05-10 11:40:03 -0600541 struct cmd_tbl *c;
Stefan Brüns0427b9c2016-10-16 17:13:55 +0200542 int i;
Simon Glasse76cb922015-08-22 18:31:42 -0600543
544 printf("argc = %d, argv = ", argc);
Simon Glasse76cb922015-08-22 18:31:42 -0600545
Stefan Brüns0427b9c2016-10-16 17:13:55 +0200546 for (i = 0; i < argc; i++)
547 printf(" %s", argv[i]);
548
549 printf("\n------\n");
550
Simon Glasse76cb922015-08-22 18:31:42 -0600551 argc--;
552 argv++;
553 c = find_cmd_tbl(argv[0], cmd_cros_tpm_sub,
554 ARRAY_SIZE(cmd_cros_tpm_sub));
555 return c ? c->cmd(cmdtp, flag, argc, argv) : cmd_usage(cmdtp);
556}
557
558U_BOOT_CMD(tpmtest, 2, 1, do_tpmtest, "TPM tests",
559 "\n\tearly_extend\n"
560 "\tearly_nvram\n"
561 "\tearly_nvram2\n"
562 "\tenable\n"
563 "\tfast_enable\n"
564 "\tglobal_lock\n"
565 "\tlock\n"
566 "\treadonly\n"
567 "\tredefine_unowned\n"
568 "\tspace_perm\n"
569 "\tstartup\n"
570 "\ttiming\n"
571 "\twrite_limit\n");