2 * Copyright (c) 2011 The Chromium OS Authors.
4 * See file CREDITS for list of people who contributed to this
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 #define MAX_TRANSACTION_SIZE 30
30 * tpm_write() expects a variable number of parameters: the internal address
31 * followed by data to write, byte by byte.
33 * Returns 0 on success or -1 on errors (wrong arguments or TPM failure).
35 static int tpm_process(int argc, char * const argv[], cmd_tbl_t *cmdtp)
37 u8 tpm_buffer[MAX_TRANSACTION_SIZE];
38 u32 write_size, read_size;
42 for (write_size = 0; write_size < argc; write_size++) {
43 u32 datum = simple_strtoul(argv[write_size], &p, 0);
44 if (*p || (datum > 0xff)) {
45 printf("\n%s: bad data value\n\n", argv[write_size]);
49 tpm_buffer[write_size] = (u8)datum;
52 read_size = sizeof(tpm_buffer);
53 if (!tis_sendrecv(tpm_buffer, write_size, tpm_buffer, &read_size)) {
55 puts("Got TPM response:\n");
56 for (i = 0; i < read_size; i++)
57 printf(" %2.2x", tpm_buffer[i]);
61 puts("tpm command failed\n");
66 #define CHECK(exp) do { \
69 printf("CHECK: %s %d %x\n", #exp, __LINE__, _rv);\
73 static int tpm_process_stress(int repeat_count)
77 u8 request[] = {0x0, 0xc1,
83 u8 response[MAX_TRANSACTION_SIZE];
84 u32 rlength = MAX_TRANSACTION_SIZE;
88 for (i = 0; i < repeat_count; i++) {
90 rv = tis_sendrecv(request, sizeof(request), response, &rlength);
92 printf("tpm test failed at step %d with 0x%x\n", i, rv);
97 if ((response[6] || response[7] || response[8] || response[9])
98 && response[9] != 0x26) {
99 /* Ignore postinit errors */
100 printf("tpm command failed at step %d\n"
101 "tpm error code: %02x%02x%02x%02x\n", i,
102 response[6], response[7],
103 response[8], response[9]);
112 static int do_tpm_many(cmd_tbl_t *cmdtp, int flag,
113 int argc, char * const argv[], int repeat_count)
118 if (argc < 7 && repeat_count == 0) {
119 puts("command should be at least six bytes in size\n");
123 if (repeat_count > 0) {
124 rv = tpm_process_stress(repeat_count);
129 puts("tis_init() failed!\n");
134 puts("tis_open() failed!\n");
138 rv = tpm_process(argc - 1, argv + 1, cmdtp);
141 puts("tis_close() failed!\n");
149 static int do_tpm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
151 return do_tpm_many(cmdtp, flag, argc, argv, 0);
155 U_BOOT_CMD(tpm, MAX_TRANSACTION_SIZE, 1, do_tpm,
156 "<byte> [<byte> ...] - write data and read response",
157 "send arbitrary data (at least 6 bytes) to the TPM "
158 "device and read the response"
161 static int do_tpm_stress(cmd_tbl_t *cmdtp, int flag,
162 int argc, char * const argv[])
168 puts("usage: tpm_stress <count>\n");
172 rv = strict_strtoul(argv[1], 10, &n);
174 puts("tpm_stress: bad count");
178 return do_tpm_many(cmdtp, flag, argc, argv, n);
181 U_BOOT_CMD(tpm_stress, 2, 1, do_tpm_stress,
182 "<n> - stress-test communication with TPM",
183 "Repeat a TPM transaction (request-response) N times"