blob: b35eae81dc3e2151c326c5985b013e0b14112cdc [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 Glassa557d252022-08-30 21:05:32 -060094 TPM_CHECK(tpm_pcr_extend(dev, 1, value_in, sizeof(value_in), value_out,
95 "test"));
Simon Glasse76cb922015-08-22 18:31:42 -060096 printf("done\n");
97 return 0;
98}
99
Simon Glassabdc7b82018-11-18 14:22:27 -0700100static int test_early_nvram(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600101{
102 uint32_t x;
103
104 printf("Testing earlynvram ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700105 tpm_init(dev);
106 TPM_CHECK(tpm_startup(dev, TPM_ST_CLEAR));
107 TPM_CHECK(tpm_continue_self_test(dev));
108 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
109 TPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600110 printf("done\n");
111 return 0;
112}
113
Simon Glassabdc7b82018-11-18 14:22:27 -0700114static int test_early_nvram2(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600115{
116 uint32_t x;
117
118 printf("Testing earlynvram2 ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700119 tpm_init(dev);
120 TPM_CHECK(tpm_startup(dev, TPM_ST_CLEAR));
121 TPM_CHECK(tpm_continue_self_test(dev));
122 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
123 TPM_CHECK(tpm_nv_write_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600124 printf("done\n");
125 return 0;
126}
127
Simon Glassabdc7b82018-11-18 14:22:27 -0700128static int test_enable(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600129{
130 uint8_t disable = 0, deactivated = 0;
131
132 printf("Testing enable ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700133 tpm_init(dev);
134 TPM_CHECK(TlclStartupIfNeeded(dev));
135 TPM_CHECK(tpm_self_test_full(dev));
136 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
137 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600138 printf("\tdisable is %d, deactivated is %d\n", disable, deactivated);
Simon Glassabdc7b82018-11-18 14:22:27 -0700139 TPM_CHECK(tpm_physical_enable(dev));
140 TPM_CHECK(tpm_physical_set_deactivated(dev, 0));
141 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600142 printf("\tdisable is %d, deactivated is %d\n", disable, deactivated);
143 if (disable == 1 || deactivated == 1)
144 printf("\tfailed to enable or activate\n");
145 printf("\tdone\n");
146 return 0;
147}
148
149#define reboot() do { \
150 printf("\trebooting...\n"); \
Harald Seiler35b65dd2020-12-15 16:47:52 +0100151 reset_cpu(); \
Simon Glasse76cb922015-08-22 18:31:42 -0600152} while (0)
153
Simon Glassabdc7b82018-11-18 14:22:27 -0700154static int test_fast_enable(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600155{
156 uint8_t disable = 0, deactivated = 0;
157 int i;
158
159 printf("Testing fastenable ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700160 tpm_init(dev);
161 TPM_CHECK(TlclStartupIfNeeded(dev));
162 TPM_CHECK(tpm_self_test_full(dev));
163 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
164 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600165 printf("\tdisable is %d, deactivated is %d\n", disable, deactivated);
166 for (i = 0; i < 2; i++) {
Simon Glassabdc7b82018-11-18 14:22:27 -0700167 TPM_CHECK(tpm_force_clear(dev));
168 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600169 printf("\tdisable is %d, deactivated is %d\n", disable,
170 deactivated);
171 assert(disable == 1 && deactivated == 1);
Simon Glassabdc7b82018-11-18 14:22:27 -0700172 TPM_CHECK(tpm_physical_enable(dev));
173 TPM_CHECK(tpm_physical_set_deactivated(dev, 0));
174 TPM_CHECK(tpm_get_flags(dev, &disable, &deactivated, NULL));
Simon Glasse76cb922015-08-22 18:31:42 -0600175 printf("\tdisable is %d, deactivated is %d\n", disable,
176 deactivated);
177 assert(disable == 0 && deactivated == 0);
178 }
179 printf("\tdone\n");
180 return 0;
181}
182
Simon Glassabdc7b82018-11-18 14:22:27 -0700183static int test_global_lock(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600184{
185 uint32_t zero = 0;
186 uint32_t result;
187 uint32_t x;
188
189 printf("Testing globallock ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700190 tpm_init(dev);
191 TPM_CHECK(TlclStartupIfNeeded(dev));
192 TPM_CHECK(tpm_self_test_full(dev));
193 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
194 TPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
195 TPM_CHECK(tpm_nv_write_value(dev, INDEX0, (uint8_t *)&zero,
Simon Glasse76cb922015-08-22 18:31:42 -0600196 sizeof(uint32_t)));
Simon Glassabdc7b82018-11-18 14:22:27 -0700197 TPM_CHECK(tpm_nv_read_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
198 TPM_CHECK(tpm_nv_write_value(dev, INDEX1, (uint8_t *)&zero,
Simon Glasse76cb922015-08-22 18:31:42 -0600199 sizeof(uint32_t)));
Simon Glassabdc7b82018-11-18 14:22:27 -0700200 TPM_CHECK(tpm_set_global_lock(dev));
Simon Glasse76cb922015-08-22 18:31:42 -0600201 /* Verifies that write to index0 fails */
202 x = 1;
Simon Glassabdc7b82018-11-18 14:22:27 -0700203 result = tpm_nv_write_value(dev, INDEX0, (uint8_t *)&x, sizeof(x));
Simon Glasse76cb922015-08-22 18:31:42 -0600204 assert(result == TPM_AREA_LOCKED);
Simon Glassabdc7b82018-11-18 14:22:27 -0700205 TPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600206 assert(x == 0);
207 /* Verifies that write to index1 is still possible */
208 x = 2;
Simon Glassabdc7b82018-11-18 14:22:27 -0700209 TPM_CHECK(tpm_nv_write_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
210 TPM_CHECK(tpm_nv_read_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600211 assert(x == 2);
212 /* Turns off PP */
Simon Glassabdc7b82018-11-18 14:22:27 -0700213 tpm_tsc_physical_presence(dev, PHYS_PRESENCE);
Simon Glasse76cb922015-08-22 18:31:42 -0600214 /* Verifies that write to index1 fails */
215 x = 3;
Simon Glassabdc7b82018-11-18 14:22:27 -0700216 result = tpm_nv_write_value(dev, INDEX1, (uint8_t *)&x, sizeof(x));
Simon Glasse76cb922015-08-22 18:31:42 -0600217 assert(result == TPM_BAD_PRESENCE);
Simon Glassabdc7b82018-11-18 14:22:27 -0700218 TPM_CHECK(tpm_nv_read_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600219 assert(x == 2);
220 printf("\tdone\n");
221 return 0;
222}
223
Simon Glassabdc7b82018-11-18 14:22:27 -0700224static int test_lock(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600225{
226 printf("Testing lock ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700227 tpm_init(dev);
228 tpm_startup(dev, TPM_ST_CLEAR);
229 tpm_self_test_full(dev);
230 tpm_tsc_physical_presence(dev, PRESENCE);
231 tpm_nv_write_value_lock(dev, INDEX0);
Simon Glasse76cb922015-08-22 18:31:42 -0600232 printf("\tLocked 0x%x\n", INDEX0);
233 printf("\tdone\n");
234 return 0;
235}
236
Simon Glassabdc7b82018-11-18 14:22:27 -0700237static void initialise_spaces(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600238{
239 uint32_t zero = 0;
240 uint32_t perm = TPM_NV_PER_WRITE_STCLEAR | TPM_NV_PER_PPWRITE;
241
242 printf("\tInitialising spaces\n");
Simon Glassd6a885f2021-02-06 14:23:36 -0700243 tpm1_nv_set_locked(dev); /* useful only the first time */
244 tpm1_nv_define_space(dev, INDEX0, perm, 4);
Simon Glassabdc7b82018-11-18 14:22:27 -0700245 tpm_nv_write_value(dev, INDEX0, (uint8_t *)&zero, 4);
Simon Glassd6a885f2021-02-06 14:23:36 -0700246 tpm1_nv_define_space(dev, INDEX1, perm, 4);
Simon Glassabdc7b82018-11-18 14:22:27 -0700247 tpm_nv_write_value(dev, INDEX1, (uint8_t *)&zero, 4);
Simon Glassd6a885f2021-02-06 14:23:36 -0700248 tpm1_nv_define_space(dev, INDEX2, perm, 4);
Simon Glassabdc7b82018-11-18 14:22:27 -0700249 tpm_nv_write_value(dev, INDEX2, (uint8_t *)&zero, 4);
Simon Glassd6a885f2021-02-06 14:23:36 -0700250 tpm1_nv_define_space(dev, INDEX3, perm, 4);
Simon Glassabdc7b82018-11-18 14:22:27 -0700251 tpm_nv_write_value(dev, INDEX3, (uint8_t *)&zero, 4);
Simon Glasse76cb922015-08-22 18:31:42 -0600252 perm = TPM_NV_PER_READ_STCLEAR | TPM_NV_PER_WRITE_STCLEAR |
253 TPM_NV_PER_PPWRITE;
Simon Glassd6a885f2021-02-06 14:23:36 -0700254 tpm1_nv_define_space(dev, INDEX_INITIALISED, perm, 1);
Simon Glasse76cb922015-08-22 18:31:42 -0600255}
256
Simon Glassabdc7b82018-11-18 14:22:27 -0700257static int test_readonly(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600258{
259 uint8_t c;
260 uint32_t index_0, index_1, index_2, index_3;
261 int read0, read1, read2, read3;
262
263 printf("Testing readonly ...\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700264 tpm_init(dev);
265 tpm_startup(dev, TPM_ST_CLEAR);
266 tpm_self_test_full(dev);
267 tpm_tsc_physical_presence(dev, PRESENCE);
Simon Glasse76cb922015-08-22 18:31:42 -0600268 /*
269 * Checks if initialisation has completed by trying to read-lock a
270 * space that's created at the end of initialisation
271 */
Simon Glassabdc7b82018-11-18 14:22:27 -0700272 if (tpm_nv_read_value(dev, INDEX_INITIALISED, &c, 0) == TPM_BADINDEX) {
Simon Glasse76cb922015-08-22 18:31:42 -0600273 /* The initialisation did not complete */
Simon Glassabdc7b82018-11-18 14:22:27 -0700274 initialise_spaces(dev);
Simon Glasse76cb922015-08-22 18:31:42 -0600275 }
276
277 /* Checks if spaces are OK or messed up */
Simon Glassabdc7b82018-11-18 14:22:27 -0700278 read0 = tpm_nv_read_value(dev, INDEX0, (uint8_t *)&index_0,
279 sizeof(index_0));
280 read1 = tpm_nv_read_value(dev, INDEX1, (uint8_t *)&index_1,
281 sizeof(index_1));
282 read2 = tpm_nv_read_value(dev, INDEX2, (uint8_t *)&index_2,
283 sizeof(index_2));
284 read3 = tpm_nv_read_value(dev, INDEX3, (uint8_t *)&index_3,
285 sizeof(index_3));
Simon Glasse76cb922015-08-22 18:31:42 -0600286 if (read0 || read1 || read2 || read3) {
287 printf("Invalid contents\n");
288 return 0;
289 }
290
291 /*
292 * Writes space, and locks it. Then attempts to write again.
293 * I really wish I could use the imperative.
294 */
295 index_0 += 1;
Simon Glassabdc7b82018-11-18 14:22:27 -0700296 if (tpm_nv_write_value(dev, INDEX0, (uint8_t *)&index_0,
297 sizeof(index_0) !=
Simon Glasse76cb922015-08-22 18:31:42 -0600298 TPM_SUCCESS)) {
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900299 pr_err("\tcould not write index 0\n");
Simon Glasse76cb922015-08-22 18:31:42 -0600300 }
Simon Glassabdc7b82018-11-18 14:22:27 -0700301 tpm_nv_write_value_lock(dev, INDEX0);
302 if (tpm_nv_write_value(dev, INDEX0, (uint8_t *)&index_0,
303 sizeof(index_0)) ==
Simon Glasse76cb922015-08-22 18:31:42 -0600304 TPM_SUCCESS)
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900305 pr_err("\tindex 0 is not locked\n");
Simon Glasse76cb922015-08-22 18:31:42 -0600306
307 printf("\tdone\n");
308 return 0;
309}
310
Simon Glassabdc7b82018-11-18 14:22:27 -0700311static int test_redefine_unowned(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600312{
313 uint32_t perm;
314 uint32_t result;
315 uint32_t x;
316
317 printf("Testing redefine_unowned ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700318 tpm_init(dev);
319 TPM_CHECK(TlclStartupIfNeeded(dev));
320 TPM_CHECK(tpm_self_test_full(dev));
321 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
322 assert(!tpm_is_owned(dev));
Simon Glasse76cb922015-08-22 18:31:42 -0600323
324 /* Ensures spaces exist. */
Simon Glassabdc7b82018-11-18 14:22:27 -0700325 TPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)));
326 TPM_CHECK(tpm_nv_read_value(dev, INDEX1, (uint8_t *)&x, sizeof(x)));
Simon Glasse76cb922015-08-22 18:31:42 -0600327
328 /* Redefines spaces a couple of times. */
329 perm = TPM_NV_PER_PPWRITE | TPM_NV_PER_GLOBALLOCK;
Simon Glassd6a885f2021-02-06 14:23:36 -0700330 TPM_CHECK(tpm1_nv_define_space(dev, INDEX0, perm,
331 2 * sizeof(uint32_t)));
332 TPM_CHECK(tpm1_nv_define_space(dev, INDEX0, perm, sizeof(uint32_t)));
Simon Glasse76cb922015-08-22 18:31:42 -0600333 perm = TPM_NV_PER_PPWRITE;
Simon Glassd6a885f2021-02-06 14:23:36 -0700334 TPM_CHECK(tpm1_nv_define_space(dev, INDEX1, perm,
335 2 * sizeof(uint32_t)));
336 TPM_CHECK(tpm1_nv_define_space(dev, INDEX1, perm, sizeof(uint32_t)));
Simon Glasse76cb922015-08-22 18:31:42 -0600337
338 /* Sets the global lock */
Simon Glassabdc7b82018-11-18 14:22:27 -0700339 tpm_set_global_lock(dev);
Simon Glasse76cb922015-08-22 18:31:42 -0600340
341 /* Verifies that index0 cannot be redefined */
Simon Glassd6a885f2021-02-06 14:23:36 -0700342 result = tpm1_nv_define_space(dev, INDEX0, perm, sizeof(uint32_t));
Simon Glasse76cb922015-08-22 18:31:42 -0600343 assert(result == TPM_AREA_LOCKED);
344
345 /* Checks that index1 can */
Simon Glassd6a885f2021-02-06 14:23:36 -0700346 TPM_CHECK(tpm1_nv_define_space(dev, INDEX1, perm,
347 2 * sizeof(uint32_t)));
348 TPM_CHECK(tpm1_nv_define_space(dev, INDEX1, perm, sizeof(uint32_t)));
Simon Glasse76cb922015-08-22 18:31:42 -0600349
350 /* Turns off PP */
Simon Glassabdc7b82018-11-18 14:22:27 -0700351 tpm_tsc_physical_presence(dev, PHYS_PRESENCE);
Simon Glasse76cb922015-08-22 18:31:42 -0600352
353 /* Verifies that neither index0 nor index1 can be redefined */
Simon Glassd6a885f2021-02-06 14:23:36 -0700354 result = tpm1_nv_define_space(dev, INDEX0, perm, sizeof(uint32_t));
Simon Glasse76cb922015-08-22 18:31:42 -0600355 assert(result == TPM_BAD_PRESENCE);
Simon Glassd6a885f2021-02-06 14:23:36 -0700356 result = tpm1_nv_define_space(dev, INDEX1, perm, sizeof(uint32_t));
Simon Glasse76cb922015-08-22 18:31:42 -0600357 assert(result == TPM_BAD_PRESENCE);
358
359 printf("done\n");
360 return 0;
361}
362
363#define PERMPPGL (TPM_NV_PER_PPWRITE | TPM_NV_PER_GLOBALLOCK)
364#define PERMPP TPM_NV_PER_PPWRITE
365
Simon Glassabdc7b82018-11-18 14:22:27 -0700366static int test_space_perm(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600367{
368 uint32_t perm;
369
370 printf("Testing spaceperm ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700371 tpm_init(dev);
372 TPM_CHECK(TlclStartupIfNeeded(dev));
373 TPM_CHECK(tpm_continue_self_test(dev));
374 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
375 TPM_CHECK(tpm_get_permissions(dev, INDEX0, &perm));
Simon Glasse76cb922015-08-22 18:31:42 -0600376 assert((perm & PERMPPGL) == PERMPPGL);
Simon Glassabdc7b82018-11-18 14:22:27 -0700377 TPM_CHECK(tpm_get_permissions(dev, INDEX1, &perm));
Simon Glasse76cb922015-08-22 18:31:42 -0600378 assert((perm & PERMPP) == PERMPP);
379 printf("done\n");
380 return 0;
381}
382
Simon Glassabdc7b82018-11-18 14:22:27 -0700383static int test_startup(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600384{
385 uint32_t result;
Simon Glassabdc7b82018-11-18 14:22:27 -0700386
Simon Glasse76cb922015-08-22 18:31:42 -0600387 printf("Testing startup ...\n");
388
Simon Glassabdc7b82018-11-18 14:22:27 -0700389 tpm_init(dev);
390 result = tpm_startup(dev, TPM_ST_CLEAR);
Simon Glasse76cb922015-08-22 18:31:42 -0600391 if (result != 0 && result != TPM_INVALID_POSTINIT)
392 printf("\ttpm startup failed with 0x%x\n", result);
Simon Glassabdc7b82018-11-18 14:22:27 -0700393 result = tpm_get_flags(dev, NULL, NULL, NULL);
Simon Glasse76cb922015-08-22 18:31:42 -0600394 if (result != 0)
395 printf("\ttpm getflags failed with 0x%x\n", result);
396 printf("\texecuting SelfTestFull\n");
Simon Glassabdc7b82018-11-18 14:22:27 -0700397 tpm_self_test_full(dev);
398 result = tpm_get_flags(dev, NULL, NULL, NULL);
Simon Glasse76cb922015-08-22 18:31:42 -0600399 if (result != 0)
400 printf("\ttpm getflags failed with 0x%x\n", result);
401 printf("\tdone\n");
402 return 0;
403}
404
405/*
406 * Runs [op] and ensures it returns success and doesn't run longer than
407 * [time_limit] in milliseconds.
408 */
409#define TTPM_CHECK(op, time_limit) do { \
410 ulong start, time; \
411 uint32_t __result; \
412 \
413 start = get_timer(0); \
414 __result = op; \
415 if (__result != TPM_SUCCESS) { \
416 printf("\t" #op ": error 0x%x\n", __result); \
417 return -1; \
418 } \
419 time = get_timer(start); \
420 printf("\t" #op ": %lu ms\n", time); \
421 if (time > (ulong)time_limit) { \
422 printf("\t" #op " exceeded " #time_limit " ms\n"); \
423 } \
424} while (0)
425
426
Simon Glassabdc7b82018-11-18 14:22:27 -0700427static int test_timing(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600428{
Simon Glasse76cb922015-08-22 18:31:42 -0600429 uint8_t in[20], out[20];
Simon Glassabdc7b82018-11-18 14:22:27 -0700430 uint32_t x;
Simon Glasse76cb922015-08-22 18:31:42 -0600431
432 printf("Testing timing ...");
Simon Glassabdc7b82018-11-18 14:22:27 -0700433 tpm_init(dev);
434 TTPM_CHECK(TlclStartupIfNeeded(dev), 50);
435 TTPM_CHECK(tpm_continue_self_test(dev), 100);
436 TTPM_CHECK(tpm_self_test_full(dev), 1000);
437 TTPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE), 100);
438 TTPM_CHECK(tpm_nv_write_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)),
439 100);
440 TTPM_CHECK(tpm_nv_read_value(dev, INDEX0, (uint8_t *)&x, sizeof(x)),
441 100);
Simon Glassa557d252022-08-30 21:05:32 -0600442 TTPM_CHECK(tpm_pcr_extend(dev, 0, in, sizeof(in), out, "test"), 200);
Simon Glassabdc7b82018-11-18 14:22:27 -0700443 TTPM_CHECK(tpm_set_global_lock(dev), 50);
444 TTPM_CHECK(tpm_tsc_physical_presence(dev, PHYS_PRESENCE), 100);
Simon Glasse76cb922015-08-22 18:31:42 -0600445 printf("done\n");
446 return 0;
447}
448
449#define TPM_MAX_NV_WRITES_NOOWNER 64
450
Simon Glassabdc7b82018-11-18 14:22:27 -0700451static int test_write_limit(struct udevice *dev)
Simon Glasse76cb922015-08-22 18:31:42 -0600452{
Simon Glasse76cb922015-08-22 18:31:42 -0600453 uint32_t result;
Simon Glassabdc7b82018-11-18 14:22:27 -0700454 int i;
Simon Glasse76cb922015-08-22 18:31:42 -0600455
Simon Glassabdc7b82018-11-18 14:22:27 -0700456 printf("Testing writelimit ...\n");
457 tpm_init(dev);
458 TPM_CHECK(TlclStartupIfNeeded(dev));
459 TPM_CHECK(tpm_self_test_full(dev));
460 TPM_CHECK(tpm_tsc_physical_presence(dev, PRESENCE));
461 TPM_CHECK(tpm_force_clear(dev));
462 TPM_CHECK(tpm_physical_enable(dev));
463 TPM_CHECK(tpm_physical_set_deactivated(dev, 0));
Simon Glasse76cb922015-08-22 18:31:42 -0600464
465 for (i = 0; i < TPM_MAX_NV_WRITES_NOOWNER + 2; i++) {
466 printf("\twriting %d\n", i);
Simon Glassabdc7b82018-11-18 14:22:27 -0700467 result = tpm_nv_write_value(dev, INDEX0, (uint8_t *)&i,
468 sizeof(i));
Simon Glasse76cb922015-08-22 18:31:42 -0600469 switch (result) {
470 case TPM_SUCCESS:
471 break;
472 case TPM_MAXNVWRITES:
473 assert(i >= TPM_MAX_NV_WRITES_NOOWNER);
474 default:
Masahiro Yamada9b643e32017-09-16 14:10:41 +0900475 pr_err("\tunexpected error code %d (0x%x)\n",
Simon Glasse76cb922015-08-22 18:31:42 -0600476 result, result);
477 }
478 }
479
480 /* Reset write count */
Simon Glassabdc7b82018-11-18 14:22:27 -0700481 TPM_CHECK(tpm_force_clear(dev));
482 TPM_CHECK(tpm_physical_enable(dev));
483 TPM_CHECK(tpm_physical_set_deactivated(dev, 0));
Simon Glasse76cb922015-08-22 18:31:42 -0600484
485 /* Try writing again. */
Simon Glassabdc7b82018-11-18 14:22:27 -0700486 TPM_CHECK(tpm_nv_write_value(dev, INDEX0, (uint8_t *)&i, sizeof(i)));
Simon Glasse76cb922015-08-22 18:31:42 -0600487 printf("\tdone\n");
488 return 0;
489}
490
491#define VOIDTEST(XFUNC) \
Simon Glass09140112020-05-10 11:40:03 -0600492 int do_test_##XFUNC(struct cmd_tbl *cmd_tbl, int flag, int argc, \
493 char *const argv[]) \
Simon Glasse76cb922015-08-22 18:31:42 -0600494 { \
Simon Glassabdc7b82018-11-18 14:22:27 -0700495 struct udevice *dev; \
496 int ret; \
497\
498 ret = get_tpm(&dev); \
499 if (ret) \
500 return ret; \
501 return test_##XFUNC(dev); \
Simon Glasse76cb922015-08-22 18:31:42 -0600502 }
503
504#define VOIDENT(XNAME) \
505 U_BOOT_CMD_MKENT(XNAME, 0, 1, do_test_##XNAME, "", ""),
506
507VOIDTEST(early_extend)
508VOIDTEST(early_nvram)
509VOIDTEST(early_nvram2)
510VOIDTEST(enable)
511VOIDTEST(fast_enable)
512VOIDTEST(global_lock)
513VOIDTEST(lock)
514VOIDTEST(readonly)
515VOIDTEST(redefine_unowned)
516VOIDTEST(space_perm)
517VOIDTEST(startup)
518VOIDTEST(timing)
519VOIDTEST(write_limit)
520VOIDTEST(timer)
521
Simon Glass09140112020-05-10 11:40:03 -0600522static struct cmd_tbl cmd_cros_tpm_sub[] = {
Simon Glasse76cb922015-08-22 18:31:42 -0600523 VOIDENT(early_extend)
524 VOIDENT(early_nvram)
525 VOIDENT(early_nvram2)
526 VOIDENT(enable)
527 VOIDENT(fast_enable)
528 VOIDENT(global_lock)
529 VOIDENT(lock)
530 VOIDENT(readonly)
531 VOIDENT(redefine_unowned)
532 VOIDENT(space_perm)
533 VOIDENT(startup)
534 VOIDENT(timing)
535 VOIDENT(write_limit)
536 VOIDENT(timer)
537};
538
Simon Glass09140112020-05-10 11:40:03 -0600539static int do_tpmtest(struct cmd_tbl *cmdtp, int flag, int argc,
540 char *const argv[])
Simon Glasse76cb922015-08-22 18:31:42 -0600541{
Simon Glass09140112020-05-10 11:40:03 -0600542 struct cmd_tbl *c;
Stefan Brüns0427b9c2016-10-16 17:13:55 +0200543 int i;
Simon Glasse76cb922015-08-22 18:31:42 -0600544
545 printf("argc = %d, argv = ", argc);
Simon Glasse76cb922015-08-22 18:31:42 -0600546
Stefan Brüns0427b9c2016-10-16 17:13:55 +0200547 for (i = 0; i < argc; i++)
548 printf(" %s", argv[i]);
549
550 printf("\n------\n");
551
Simon Glasse76cb922015-08-22 18:31:42 -0600552 argc--;
553 argv++;
554 c = find_cmd_tbl(argv[0], cmd_cros_tpm_sub,
555 ARRAY_SIZE(cmd_cros_tpm_sub));
556 return c ? c->cmd(cmdtp, flag, argc, argv) : cmd_usage(cmdtp);
557}
558
559U_BOOT_CMD(tpmtest, 2, 1, do_tpmtest, "TPM tests",
560 "\n\tearly_extend\n"
561 "\tearly_nvram\n"
562 "\tearly_nvram2\n"
563 "\tenable\n"
564 "\tfast_enable\n"
565 "\tglobal_lock\n"
566 "\tlock\n"
567 "\treadonly\n"
568 "\tredefine_unowned\n"
569 "\tspace_perm\n"
570 "\tstartup\n"
571 "\ttiming\n"
572 "\twrite_limit\n");