blob: afdc83602e9fe08c1db788b6569f04b0ce350ded [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2004 IBM Corporation
Jarkko Sakkinenafb5abc2014-12-12 11:46:34 -08003 * Copyright (C) 2014 Intel Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
6 * Leendert van Doorn <leendert@watson.ibm.com>
7 * Dave Safford <safford@watson.ibm.com>
8 * Reiner Sailer <sailer@watson.ibm.com>
9 * Kylene Hall <kjhall@us.ibm.com>
10 *
Kent Yoder8e81cc12007-08-22 14:01:04 -070011 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 *
13 * Device driver for TCG/TCPA TPM (trusted platform module).
Peter Huewe0a418262013-10-22 00:29:14 +020014 * Specifications at www.trustedcomputinggroup.org
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation, version 2 of the
19 * License.
Peter Huewe0a418262013-10-22 00:29:14 +020020 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Note, the TPM chip is not interrupt driven (only polling)
22 * and can have very long timeouts (minutes!). Hence the unusual
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -070023 * calls to msleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 *
25 */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/poll.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Matthias Kaehlcked081d472007-05-08 00:32:02 -070029#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/spinlock.h>
Rajiv Andradefd048862011-09-16 14:39:40 -030031#include <linux/freezer.h>
Matthias Kaehlcked081d472007-05-08 00:32:02 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "tpm.h"
Kent Yodere5dcd872012-07-11 10:08:12 -050034#include "tpm_eventlog.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070036#define TPM_MAX_ORDINAL 243
Peter Huewe07b133e2012-11-16 00:31:29 +010037#define TSC_MAX_ORDINAL 12
38#define TPM_PROTECTED_COMMAND 0x00
39#define TPM_CONNECTION_COMMAND 0x40
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070040
Dmitry Torokhov9b3056c2010-10-01 14:16:39 -070041/*
42 * Bug workaround - some TPM's don't flush the most
43 * recently changed pcr on suspend, so force the flush
44 * with an extend to the selected _unused_ non-volatile pcr.
45 */
46static int tpm_suspend_pcr;
47module_param_named(suspend_pcr, tpm_suspend_pcr, uint, 0644);
48MODULE_PARM_DESC(suspend_pcr,
49 "PCR to use for dummy writes to faciltate flush on suspend.");
50
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070051/*
52 * Array with one entry per ordinal defining the maximum amount
53 * of time the chip could take to return the result. The ordinal
54 * designation of short, medium or long is defined in a table in
55 * TCG Specification TPM Main Part 2 TPM Structures Section 17. The
56 * values of the SHORT, MEDIUM, and LONG durations are retrieved
57 * from the chip during initialization with a call to tpm_get_timeouts.
58 */
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -070059static const u8 tpm_ordinal_duration[TPM_MAX_ORDINAL] = {
60 TPM_UNDEFINED, /* 0 */
61 TPM_UNDEFINED,
62 TPM_UNDEFINED,
63 TPM_UNDEFINED,
64 TPM_UNDEFINED,
65 TPM_UNDEFINED, /* 5 */
66 TPM_UNDEFINED,
67 TPM_UNDEFINED,
68 TPM_UNDEFINED,
69 TPM_UNDEFINED,
70 TPM_SHORT, /* 10 */
71 TPM_SHORT,
72 TPM_MEDIUM,
73 TPM_LONG,
74 TPM_LONG,
75 TPM_MEDIUM, /* 15 */
76 TPM_SHORT,
77 TPM_SHORT,
78 TPM_MEDIUM,
79 TPM_LONG,
80 TPM_SHORT, /* 20 */
81 TPM_SHORT,
82 TPM_MEDIUM,
83 TPM_MEDIUM,
84 TPM_MEDIUM,
85 TPM_SHORT, /* 25 */
86 TPM_SHORT,
87 TPM_MEDIUM,
88 TPM_SHORT,
89 TPM_SHORT,
90 TPM_MEDIUM, /* 30 */
91 TPM_LONG,
92 TPM_MEDIUM,
93 TPM_SHORT,
94 TPM_SHORT,
95 TPM_SHORT, /* 35 */
96 TPM_MEDIUM,
97 TPM_MEDIUM,
98 TPM_UNDEFINED,
99 TPM_UNDEFINED,
100 TPM_MEDIUM, /* 40 */
101 TPM_LONG,
102 TPM_MEDIUM,
103 TPM_SHORT,
104 TPM_SHORT,
105 TPM_SHORT, /* 45 */
106 TPM_SHORT,
107 TPM_SHORT,
108 TPM_SHORT,
109 TPM_LONG,
110 TPM_MEDIUM, /* 50 */
111 TPM_MEDIUM,
112 TPM_UNDEFINED,
113 TPM_UNDEFINED,
114 TPM_UNDEFINED,
115 TPM_UNDEFINED, /* 55 */
116 TPM_UNDEFINED,
117 TPM_UNDEFINED,
118 TPM_UNDEFINED,
119 TPM_UNDEFINED,
120 TPM_MEDIUM, /* 60 */
121 TPM_MEDIUM,
122 TPM_MEDIUM,
123 TPM_SHORT,
124 TPM_SHORT,
125 TPM_MEDIUM, /* 65 */
126 TPM_UNDEFINED,
127 TPM_UNDEFINED,
128 TPM_UNDEFINED,
129 TPM_UNDEFINED,
130 TPM_SHORT, /* 70 */
131 TPM_SHORT,
132 TPM_UNDEFINED,
133 TPM_UNDEFINED,
134 TPM_UNDEFINED,
135 TPM_UNDEFINED, /* 75 */
136 TPM_UNDEFINED,
137 TPM_UNDEFINED,
138 TPM_UNDEFINED,
139 TPM_UNDEFINED,
140 TPM_LONG, /* 80 */
141 TPM_UNDEFINED,
142 TPM_MEDIUM,
143 TPM_LONG,
144 TPM_SHORT,
145 TPM_UNDEFINED, /* 85 */
146 TPM_UNDEFINED,
147 TPM_UNDEFINED,
148 TPM_UNDEFINED,
149 TPM_UNDEFINED,
150 TPM_SHORT, /* 90 */
151 TPM_SHORT,
152 TPM_SHORT,
153 TPM_SHORT,
154 TPM_SHORT,
155 TPM_UNDEFINED, /* 95 */
156 TPM_UNDEFINED,
157 TPM_UNDEFINED,
158 TPM_UNDEFINED,
159 TPM_UNDEFINED,
160 TPM_MEDIUM, /* 100 */
161 TPM_SHORT,
162 TPM_SHORT,
163 TPM_UNDEFINED,
164 TPM_UNDEFINED,
165 TPM_UNDEFINED, /* 105 */
166 TPM_UNDEFINED,
167 TPM_UNDEFINED,
168 TPM_UNDEFINED,
169 TPM_UNDEFINED,
170 TPM_SHORT, /* 110 */
171 TPM_SHORT,
172 TPM_SHORT,
173 TPM_SHORT,
174 TPM_SHORT,
175 TPM_SHORT, /* 115 */
176 TPM_SHORT,
177 TPM_SHORT,
178 TPM_UNDEFINED,
179 TPM_UNDEFINED,
180 TPM_LONG, /* 120 */
181 TPM_LONG,
182 TPM_MEDIUM,
183 TPM_UNDEFINED,
184 TPM_SHORT,
185 TPM_SHORT, /* 125 */
186 TPM_SHORT,
187 TPM_LONG,
188 TPM_SHORT,
189 TPM_SHORT,
190 TPM_SHORT, /* 130 */
191 TPM_MEDIUM,
192 TPM_UNDEFINED,
193 TPM_SHORT,
194 TPM_MEDIUM,
195 TPM_UNDEFINED, /* 135 */
196 TPM_UNDEFINED,
197 TPM_UNDEFINED,
198 TPM_UNDEFINED,
199 TPM_UNDEFINED,
200 TPM_SHORT, /* 140 */
201 TPM_SHORT,
202 TPM_UNDEFINED,
203 TPM_UNDEFINED,
204 TPM_UNDEFINED,
205 TPM_UNDEFINED, /* 145 */
206 TPM_UNDEFINED,
207 TPM_UNDEFINED,
208 TPM_UNDEFINED,
209 TPM_UNDEFINED,
210 TPM_SHORT, /* 150 */
211 TPM_MEDIUM,
212 TPM_MEDIUM,
213 TPM_SHORT,
214 TPM_SHORT,
215 TPM_UNDEFINED, /* 155 */
216 TPM_UNDEFINED,
217 TPM_UNDEFINED,
218 TPM_UNDEFINED,
219 TPM_UNDEFINED,
220 TPM_SHORT, /* 160 */
221 TPM_SHORT,
222 TPM_SHORT,
223 TPM_SHORT,
224 TPM_UNDEFINED,
225 TPM_UNDEFINED, /* 165 */
226 TPM_UNDEFINED,
227 TPM_UNDEFINED,
228 TPM_UNDEFINED,
229 TPM_UNDEFINED,
230 TPM_LONG, /* 170 */
231 TPM_UNDEFINED,
232 TPM_UNDEFINED,
233 TPM_UNDEFINED,
234 TPM_UNDEFINED,
235 TPM_UNDEFINED, /* 175 */
236 TPM_UNDEFINED,
237 TPM_UNDEFINED,
238 TPM_UNDEFINED,
239 TPM_UNDEFINED,
240 TPM_MEDIUM, /* 180 */
241 TPM_SHORT,
242 TPM_MEDIUM,
243 TPM_MEDIUM,
244 TPM_MEDIUM,
245 TPM_MEDIUM, /* 185 */
246 TPM_SHORT,
247 TPM_UNDEFINED,
248 TPM_UNDEFINED,
249 TPM_UNDEFINED,
250 TPM_UNDEFINED, /* 190 */
251 TPM_UNDEFINED,
252 TPM_UNDEFINED,
253 TPM_UNDEFINED,
254 TPM_UNDEFINED,
255 TPM_UNDEFINED, /* 195 */
256 TPM_UNDEFINED,
257 TPM_UNDEFINED,
258 TPM_UNDEFINED,
259 TPM_UNDEFINED,
260 TPM_SHORT, /* 200 */
261 TPM_UNDEFINED,
262 TPM_UNDEFINED,
263 TPM_UNDEFINED,
264 TPM_SHORT,
265 TPM_SHORT, /* 205 */
266 TPM_SHORT,
267 TPM_SHORT,
268 TPM_SHORT,
269 TPM_SHORT,
270 TPM_MEDIUM, /* 210 */
271 TPM_UNDEFINED,
272 TPM_MEDIUM,
273 TPM_MEDIUM,
274 TPM_MEDIUM,
275 TPM_UNDEFINED, /* 215 */
276 TPM_MEDIUM,
277 TPM_UNDEFINED,
278 TPM_UNDEFINED,
279 TPM_SHORT,
280 TPM_SHORT, /* 220 */
281 TPM_SHORT,
282 TPM_SHORT,
283 TPM_SHORT,
284 TPM_SHORT,
285 TPM_UNDEFINED, /* 225 */
286 TPM_UNDEFINED,
287 TPM_UNDEFINED,
288 TPM_UNDEFINED,
289 TPM_UNDEFINED,
290 TPM_SHORT, /* 230 */
291 TPM_LONG,
292 TPM_MEDIUM,
293 TPM_UNDEFINED,
294 TPM_UNDEFINED,
295 TPM_UNDEFINED, /* 235 */
296 TPM_UNDEFINED,
297 TPM_UNDEFINED,
298 TPM_UNDEFINED,
299 TPM_UNDEFINED,
300 TPM_SHORT, /* 240 */
301 TPM_UNDEFINED,
302 TPM_MEDIUM,
303};
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/*
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700306 * Returns max number of jiffies to wait
307 */
308unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip,
309 u32 ordinal)
310{
311 int duration_idx = TPM_UNDEFINED;
312 int duration = 0;
313
Martin Wilckf7286432015-11-20 14:32:33 +0100314 /*
315 * We only have a duration table for protected commands, where the upper
316 * 16 bits are 0. For the few other ordinals the fallback will be used.
317 */
318 if (ordinal < TPM_MAX_ORDINAL)
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700319 duration_idx = tpm_ordinal_duration[ordinal];
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700320
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800321 if (duration_idx != TPM_UNDEFINED)
Kylene Jo Hall36b20022006-04-22 02:38:19 -0700322 duration = chip->vendor.duration[duration_idx];
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800323 if (duration <= 0)
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700324 return 2 * 60 * HZ;
Linus Torvalds8d1dc202011-03-01 13:23:27 -0800325 else
326 return duration;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700327}
328EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration);
329
330/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * Internal kernel interface to transmit TPM commands
332 */
Jason Gunthorpeafdba322013-11-26 13:30:40 -0700333ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf,
334 size_t bufsiz)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700336 ssize_t rc;
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700337 u32 count, ordinal;
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700338 unsigned long stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Peter Huewe6b07d302011-09-15 14:37:43 -0300340 if (bufsiz > TPM_BUFSIZE)
341 bufsiz = TPM_BUFSIZE;
342
Kylene Hall81179bb2005-06-23 22:01:59 -0700343 count = be32_to_cpu(*((__be32 *) (buf + 2)));
Kylene Jo Hall9e18ee12006-04-22 02:37:38 -0700344 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 if (count == 0)
346 return -ENODATA;
347 if (count > bufsiz) {
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800348 dev_err(chip->pdev,
Peter Huewe0a418262013-10-22 00:29:14 +0200349 "invalid count value %x %zx\n", count, bufsiz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return -E2BIG;
351 }
352
Matthias Kaehlcked081d472007-05-08 00:32:02 -0700353 mutex_lock(&chip->tpm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700355 rc = chip->ops->send(chip, (u8 *) buf, count);
Peter Huewe0a418262013-10-22 00:29:14 +0200356 if (rc < 0) {
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800357 dev_err(chip->pdev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700358 "tpm_transmit: tpm_send: error %zd\n", rc);
359 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700362 if (chip->vendor.irq)
363 goto out_recv;
364
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800365 if (chip->flags & TPM_CHIP_FLAG_TPM2)
366 stop = jiffies + tpm2_calc_ordinal_duration(chip, ordinal);
367 else
368 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 do {
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700370 u8 status = chip->ops->status(chip);
371 if ((status & chip->ops->req_complete_mask) ==
372 chip->ops->req_complete_val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 goto out_recv;
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700374
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700375 if (chip->ops->req_canceled(chip, status)) {
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800376 dev_err(chip->pdev, "Operation Canceled\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700377 rc = -ECANCELED;
378 goto out;
379 }
380
381 msleep(TPM_TIMEOUT); /* CHECK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 rmb();
Nishanth Aravamudan700d8bd2005-06-23 22:01:47 -0700383 } while (time_before(jiffies, stop));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700385 chip->ops->cancel(chip);
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800386 dev_err(chip->pdev, "Operation Timed out\n");
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700387 rc = -ETIME;
388 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390out_recv:
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700391 rc = chip->ops->recv(chip, (u8 *) buf, bufsiz);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700392 if (rc < 0)
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800393 dev_err(chip->pdev,
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700394 "tpm_transmit: tpm_recv: error %zd\n", rc);
395out:
Matthias Kaehlcked081d472007-05-08 00:32:02 -0700396 mutex_unlock(&chip->tpm_mutex);
Kylene Halld9e5b6b2005-06-23 22:02:02 -0700397 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400#define TPM_DIGEST_SIZE 20
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700401#define TPM_RET_CODE_IDX 6
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700402
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800403ssize_t tpm_transmit_cmd(struct tpm_chip *chip, void *cmd,
404 int len, const char *desc)
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700405{
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800406 struct tpm_output_header *header;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700407 int err;
408
Peter Huewe0a418262013-10-22 00:29:14 +0200409 len = tpm_transmit(chip, (u8 *) cmd, len);
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700410 if (len < 0)
411 return len;
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200412 else if (len < TPM_HEADER_SIZE)
413 return -EFAULT;
414
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800415 header = cmd;
416
417 err = be32_to_cpu(header->return_code);
Jason Gunthorpec584af12012-11-21 13:54:33 -0700418 if (err != 0 && desc)
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800419 dev_err(chip->pdev, "A TPM error (%d) occurred %s\n", err,
420 desc);
Rajiv Andradeb9e32382011-11-01 17:00:52 -0200421
422 return err;
Kylene Jo Hallbeed53a2006-04-22 02:37:05 -0700423}
424
Rajiv Andrade08837432009-02-02 15:23:43 -0200425#define TPM_INTERNAL_RESULT_SIZE 200
Rajiv Andrade08837432009-02-02 15:23:43 -0200426#define TPM_ORD_GET_CAP cpu_to_be32(101)
Kent Yoder41ab9992012-06-07 13:47:14 -0500427#define TPM_ORD_GET_RANDOM cpu_to_be32(70)
Rajiv Andrade08837432009-02-02 15:23:43 -0200428
429static const struct tpm_input_header tpm_getcap_header = {
430 .tag = TPM_TAG_RQU_COMMAND,
431 .length = cpu_to_be32(22),
432 .ordinal = TPM_ORD_GET_CAP
433};
434
435ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap,
436 const char *desc)
437{
438 struct tpm_cmd_t tpm_cmd;
439 int rc;
440 struct tpm_chip *chip = dev_get_drvdata(dev);
441
442 tpm_cmd.header.in = tpm_getcap_header;
443 if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) {
444 tpm_cmd.params.getcap_in.cap = subcap_id;
445 /*subcap field not necessary */
446 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(0);
447 tpm_cmd.header.in.length -= cpu_to_be32(sizeof(__be32));
448 } else {
449 if (subcap_id == TPM_CAP_FLAG_PERM ||
450 subcap_id == TPM_CAP_FLAG_VOL)
451 tpm_cmd.params.getcap_in.cap = TPM_CAP_FLAG;
452 else
453 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
454 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
455 tpm_cmd.params.getcap_in.subcap = subcap_id;
456 }
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800457 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, desc);
Rajiv Andrade08837432009-02-02 15:23:43 -0200458 if (!rc)
459 *cap = tpm_cmd.params.getcap_out.cap;
460 return rc;
461}
462
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700463void tpm_gen_interrupt(struct tpm_chip *chip)
464{
Rajiv Andrade08837432009-02-02 15:23:43 -0200465 struct tpm_cmd_t tpm_cmd;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700466 ssize_t rc;
467
Rajiv Andrade08837432009-02-02 15:23:43 -0200468 tpm_cmd.header.in = tpm_getcap_header;
469 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
470 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
471 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700472
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800473 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
474 "attempting to determine the timeouts");
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700475}
476EXPORT_SYMBOL_GPL(tpm_gen_interrupt);
477
Jason Gunthorpec584af12012-11-21 13:54:33 -0700478#define TPM_ORD_STARTUP cpu_to_be32(153)
479#define TPM_ST_CLEAR cpu_to_be16(1)
480#define TPM_ST_STATE cpu_to_be16(2)
481#define TPM_ST_DEACTIVATED cpu_to_be16(3)
482static const struct tpm_input_header tpm_startup_header = {
483 .tag = TPM_TAG_RQU_COMMAND,
484 .length = cpu_to_be32(12),
485 .ordinal = TPM_ORD_STARTUP
486};
487
488static int tpm_startup(struct tpm_chip *chip, __be16 startup_type)
489{
490 struct tpm_cmd_t start_cmd;
491 start_cmd.header.in = tpm_startup_header;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800492
Jason Gunthorpec584af12012-11-21 13:54:33 -0700493 start_cmd.params.startup_in.startup_type = startup_type;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800494 return tpm_transmit_cmd(chip, &start_cmd, TPM_INTERNAL_RESULT_SIZE,
495 "attempting to start the TPM");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700496}
497
Stefan Berger2b30a902011-11-11 12:57:02 -0500498int tpm_get_timeouts(struct tpm_chip *chip)
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700499{
Rajiv Andrade08837432009-02-02 15:23:43 -0200500 struct tpm_cmd_t tpm_cmd;
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600501 unsigned long new_timeout[4];
502 unsigned long old_timeout[4];
Rajiv Andrade08837432009-02-02 15:23:43 -0200503 struct duration_t *duration_cap;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700504 ssize_t rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700505
Rajiv Andrade08837432009-02-02 15:23:43 -0200506 tpm_cmd.header.in = tpm_getcap_header;
507 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
508 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
509 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800510 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, NULL);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700511
Jason Gunthorpec584af12012-11-21 13:54:33 -0700512 if (rc == TPM_ERR_INVALID_POSTINIT) {
513 /* The TPM is not started, we are the first to talk to it.
514 Execute a startup command. */
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800515 dev_info(chip->pdev, "Issuing TPM_STARTUP");
Jason Gunthorpec584af12012-11-21 13:54:33 -0700516 if (tpm_startup(chip, TPM_ST_CLEAR))
517 return rc;
518
519 tpm_cmd.header.in = tpm_getcap_header;
520 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
521 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
522 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800523 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
Jason Gunthorpec584af12012-11-21 13:54:33 -0700524 NULL);
525 }
526 if (rc) {
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800527 dev_err(chip->pdev,
Jason Gunthorpec584af12012-11-21 13:54:33 -0700528 "A TPM error (%zd) occurred attempting to determine the timeouts\n",
529 rc);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700530 goto duration;
Jason Gunthorpec584af12012-11-21 13:54:33 -0700531 }
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700532
Stefan Berger829bf062011-03-30 12:13:26 -0400533 if (be32_to_cpu(tpm_cmd.header.out.return_code) != 0 ||
534 be32_to_cpu(tpm_cmd.header.out.length)
535 != sizeof(tpm_cmd.header.out) + sizeof(u32) + 4 * sizeof(u32))
Stefan Berger2b30a902011-11-11 12:57:02 -0500536 return -EINVAL;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700537
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600538 old_timeout[0] = be32_to_cpu(tpm_cmd.params.getcap_out.cap.timeout.a);
539 old_timeout[1] = be32_to_cpu(tpm_cmd.params.getcap_out.cap.timeout.b);
540 old_timeout[2] = be32_to_cpu(tpm_cmd.params.getcap_out.cap.timeout.c);
541 old_timeout[3] = be32_to_cpu(tpm_cmd.params.getcap_out.cap.timeout.d);
542 memcpy(new_timeout, old_timeout, sizeof(new_timeout));
543
544 /*
545 * Provide ability for vendor overrides of timeout values in case
546 * of misreporting.
547 */
548 if (chip->ops->update_timeouts != NULL)
549 chip->vendor.timeout_adjusted =
550 chip->ops->update_timeouts(chip, new_timeout);
551
552 if (!chip->vendor.timeout_adjusted) {
553 /* Don't overwrite default if value is 0 */
554 if (new_timeout[0] != 0 && new_timeout[0] < 1000) {
555 int i;
556
557 /* timeouts in msec rather usec */
558 for (i = 0; i != ARRAY_SIZE(new_timeout); i++)
559 new_timeout[i] *= 1000;
560 chip->vendor.timeout_adjusted = true;
561 }
Stefan Bergere3e1a1e2011-03-30 12:13:27 -0400562 }
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600563
564 /* Report adjusted timeouts */
565 if (chip->vendor.timeout_adjusted) {
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800566 dev_info(chip->pdev,
Jason Gunthorpe8e54caf2014-05-21 18:26:44 -0600567 HW_ERR "Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n",
568 old_timeout[0], new_timeout[0],
569 old_timeout[1], new_timeout[1],
570 old_timeout[2], new_timeout[2],
571 old_timeout[3], new_timeout[3]);
572 }
573
574 chip->vendor.timeout_a = usecs_to_jiffies(new_timeout[0]);
575 chip->vendor.timeout_b = usecs_to_jiffies(new_timeout[1]);
576 chip->vendor.timeout_c = usecs_to_jiffies(new_timeout[2]);
577 chip->vendor.timeout_d = usecs_to_jiffies(new_timeout[3]);
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700578
579duration:
Rajiv Andrade08837432009-02-02 15:23:43 -0200580 tpm_cmd.header.in = tpm_getcap_header;
581 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
582 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
583 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_DURATION;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700584
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800585 rc = tpm_transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
586 "attempting to determine the durations");
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700587 if (rc)
Stefan Berger2b30a902011-11-11 12:57:02 -0500588 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700589
Stefan Berger979b1402011-03-30 12:13:23 -0400590 if (be32_to_cpu(tpm_cmd.header.out.return_code) != 0 ||
591 be32_to_cpu(tpm_cmd.header.out.length)
592 != sizeof(tpm_cmd.header.out) + sizeof(u32) + 3 * sizeof(u32))
Stefan Berger2b30a902011-11-11 12:57:02 -0500593 return -EINVAL;
Stefan Berger979b1402011-03-30 12:13:23 -0400594
Rajiv Andrade08837432009-02-02 15:23:43 -0200595 duration_cap = &tpm_cmd.params.getcap_out.cap.duration;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700596 chip->vendor.duration[TPM_SHORT] =
Rajiv Andrade08837432009-02-02 15:23:43 -0200597 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_short));
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700598 chip->vendor.duration[TPM_MEDIUM] =
Rajiv Andrade08837432009-02-02 15:23:43 -0200599 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_medium));
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700600 chip->vendor.duration[TPM_LONG] =
Rajiv Andrade08837432009-02-02 15:23:43 -0200601 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_long));
Stefan Bergere934acc2011-03-30 12:13:24 -0400602
603 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
604 * value wrong and apparently reports msecs rather than usecs. So we
605 * fix up the resulting too-small TPM_SHORT value to make things work.
606 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
607 */
608 if (chip->vendor.duration[TPM_SHORT] < (HZ / 100)) {
609 chip->vendor.duration[TPM_SHORT] = HZ;
610 chip->vendor.duration[TPM_MEDIUM] *= 1000;
611 chip->vendor.duration[TPM_LONG] *= 1000;
Stefan Berger04ab2292011-03-30 12:13:25 -0400612 chip->vendor.duration_adjusted = true;
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800613 dev_info(chip->pdev, "Adjusting TPM timeout parameters.");
Stefan Bergere934acc2011-03-30 12:13:24 -0400614 }
Stefan Berger2b30a902011-11-11 12:57:02 -0500615 return 0;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700616}
617EXPORT_SYMBOL_GPL(tpm_get_timeouts);
618
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500619#define TPM_ORD_CONTINUE_SELFTEST 83
620#define CONTINUE_SELFTEST_RESULT_SIZE 10
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700621
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500622static struct tpm_input_header continue_selftest_header = {
623 .tag = TPM_TAG_RQU_COMMAND,
624 .length = cpu_to_be32(10),
625 .ordinal = cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST),
626};
627
628/**
629 * tpm_continue_selftest -- run TPM's selftest
630 * @chip: TPM chip to use
631 *
632 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
633 * a TPM error code.
634 */
Stefan Berger68d6e672011-11-11 12:57:04 -0500635static int tpm_continue_selftest(struct tpm_chip *chip)
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500636{
637 int rc;
638 struct tpm_cmd_t cmd;
639
640 cmd.header.in = continue_selftest_header;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800641 rc = tpm_transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE,
642 "continue selftest");
Stefan Bergerd97c6ad2011-11-11 12:57:03 -0500643 return rc;
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700644}
Kylene Jo Hall08e96e42006-04-22 02:37:50 -0700645
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200646#define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
647#define READ_PCR_RESULT_SIZE 30
648static struct tpm_input_header pcrread_header = {
649 .tag = TPM_TAG_RQU_COMMAND,
650 .length = cpu_to_be32(14),
651 .ordinal = TPM_ORDINAL_PCRREAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652};
653
Jason Gunthorpe000a07b2013-11-26 13:30:41 -0700654int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200655{
656 int rc;
657 struct tpm_cmd_t cmd;
658
659 cmd.header.in = pcrread_header;
660 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800661 rc = tpm_transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE,
662 "attempting to read a pcr value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200663
664 if (rc == 0)
665 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
666 TPM_DIGEST_SIZE);
667 return rc;
668}
669
670/**
Jarkko Sakkinen954650e2015-05-30 08:09:04 +0300671 * tpm_is_tpm2 - is the chip a TPM2 chip?
672 * @chip_num: tpm idx # or ANY
673 *
674 * Returns < 0 on error, and 1 or 0 on success depending whether the chip
675 * is a TPM2 chip.
676 */
677int tpm_is_tpm2(u32 chip_num)
678{
679 struct tpm_chip *chip;
680 int rc;
681
682 chip = tpm_chip_find_get(chip_num);
683 if (chip == NULL)
684 return -ENODEV;
685
686 rc = (chip->flags & TPM_CHIP_FLAG_TPM2) != 0;
687
688 tpm_chip_put(chip);
689
690 return rc;
691}
692EXPORT_SYMBOL_GPL(tpm_is_tpm2);
693
694/**
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200695 * tpm_pcr_read - read a pcr value
Peter Huewe0a418262013-10-22 00:29:14 +0200696 * @chip_num: tpm idx # or ANY
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200697 * @pcr_idx: pcr idx to retrieve
Peter Huewe0a418262013-10-22 00:29:14 +0200698 * @res_buf: TPM_PCR value
699 * size of res_buf is 20 bytes (or NULL if you don't care)
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200700 *
701 * The TPM driver should be built-in, but for whatever reason it
702 * isn't, protect against the chip disappearing, by incrementing
703 * the module usage count.
704 */
705int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf)
706{
707 struct tpm_chip *chip;
708 int rc;
709
710 chip = tpm_chip_find_get(chip_num);
711 if (chip == NULL)
712 return -ENODEV;
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800713 if (chip->flags & TPM_CHIP_FLAG_TPM2)
714 rc = tpm2_pcr_read(chip, pcr_idx, res_buf);
715 else
716 rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf);
Mimi Zohara0e39342010-11-23 17:50:32 -0500717 tpm_chip_put(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200718 return rc;
719}
720EXPORT_SYMBOL_GPL(tpm_pcr_read);
721
722/**
723 * tpm_pcr_extend - extend pcr value with hash
Peter Huewe0a418262013-10-22 00:29:14 +0200724 * @chip_num: tpm idx # or AN&
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200725 * @pcr_idx: pcr idx to extend
Peter Huewe0a418262013-10-22 00:29:14 +0200726 * @hash: hash value used to extend pcr value
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200727 *
728 * The TPM driver should be built-in, but for whatever reason it
729 * isn't, protect against the chip disappearing, by incrementing
730 * the module usage count.
731 */
732#define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
Jason Gunthorpe0afd9052009-09-18 12:54:24 -0700733#define EXTEND_PCR_RESULT_SIZE 34
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200734static struct tpm_input_header pcrextend_header = {
735 .tag = TPM_TAG_RQU_COMMAND,
736 .length = cpu_to_be32(34),
737 .ordinal = TPM_ORD_PCR_EXTEND
738};
739
740int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash)
741{
742 struct tpm_cmd_t cmd;
743 int rc;
744 struct tpm_chip *chip;
745
746 chip = tpm_chip_find_get(chip_num);
747 if (chip == NULL)
748 return -ENODEV;
749
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -0800750 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
751 rc = tpm2_pcr_extend(chip, pcr_idx, hash);
752 tpm_chip_put(chip);
753 return rc;
754 }
755
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200756 cmd.header.in = pcrextend_header;
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200757 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx);
758 memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE);
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800759 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE,
760 "attempting extend a PCR value");
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200761
Mimi Zohara0e39342010-11-23 17:50:32 -0500762 tpm_chip_put(chip);
Rajiv Andrade659aaf22009-02-02 15:23:44 -0200763 return rc;
764}
765EXPORT_SYMBOL_GPL(tpm_pcr_extend);
766
Stefan Berger68d6e672011-11-11 12:57:04 -0500767/**
768 * tpm_do_selftest - have the TPM continue its selftest and wait until it
769 * can receive further commands
770 * @chip: TPM chip to use
771 *
772 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
773 * a TPM error code.
774 */
775int tpm_do_selftest(struct tpm_chip *chip)
776{
777 int rc;
Stefan Berger68d6e672011-11-11 12:57:04 -0500778 unsigned int loops;
Jason Gunthorpe46438262012-11-21 13:15:54 -0800779 unsigned int delay_msec = 100;
Stefan Berger68d6e672011-11-11 12:57:04 -0500780 unsigned long duration;
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300781 struct tpm_cmd_t cmd;
Stefan Berger68d6e672011-11-11 12:57:04 -0500782
Peter Huewe0a418262013-10-22 00:29:14 +0200783 duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST);
Stefan Berger68d6e672011-11-11 12:57:04 -0500784
785 loops = jiffies_to_msecs(duration) / delay_msec;
786
787 rc = tpm_continue_selftest(chip);
788 /* This may fail if there was no TPM driver during a suspend/resume
789 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
790 */
791 if (rc)
792 return rc;
793
794 do {
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300795 /* Attempt to read a PCR value */
796 cmd.header.in = pcrread_header;
797 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(0);
798 rc = tpm_transmit(chip, (u8 *) &cmd, READ_PCR_RESULT_SIZE);
Jason Gunthorpe46438262012-11-21 13:15:54 -0800799 /* Some buggy TPMs will not respond to tpm_tis_ready() for
800 * around 300ms while the self test is ongoing, keep trying
801 * until the self test duration expires. */
802 if (rc == -ETIME) {
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800803 dev_info(chip->pdev, HW_ERR "TPM command timed out during continue self test");
Jason Gunthorpe46438262012-11-21 13:15:54 -0800804 msleep(delay_msec);
805 continue;
806 }
Rajiv Andrade24ebe662012-04-24 17:38:17 -0300807
808 if (rc < TPM_HEADER_SIZE)
809 return -EFAULT;
810
811 rc = be32_to_cpu(cmd.header.out.return_code);
Stefan Bergerbe405412012-01-17 22:07:30 -0500812 if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) {
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800813 dev_info(chip->pdev,
Stefan Bergerbe405412012-01-17 22:07:30 -0500814 "TPM is disabled/deactivated (0x%X)\n", rc);
815 /* TPM is disabled and/or deactivated; driver can
816 * proceed and TPM does handle commands for
817 * suspend/resume correctly
818 */
819 return 0;
820 }
Stefan Berger68d6e672011-11-11 12:57:04 -0500821 if (rc != TPM_WARN_DOING_SELFTEST)
822 return rc;
823 msleep(delay_msec);
824 } while (--loops > 0);
825
826 return rc;
827}
828EXPORT_SYMBOL_GPL(tpm_do_selftest);
829
Mimi Zoharc749ba92010-11-23 18:54:16 -0500830int tpm_send(u32 chip_num, void *cmd, size_t buflen)
831{
832 struct tpm_chip *chip;
833 int rc;
834
835 chip = tpm_chip_find_get(chip_num);
836 if (chip == NULL)
837 return -ENODEV;
838
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800839 rc = tpm_transmit_cmd(chip, cmd, buflen, "attempting tpm_cmd");
Mimi Zoharc749ba92010-11-23 18:54:16 -0500840
841 tpm_chip_put(chip);
842 return rc;
843}
844EXPORT_SYMBOL_GPL(tpm_send);
845
Peter Huewe0a418262013-10-22 00:29:14 +0200846static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask,
847 bool check_cancel, bool *canceled)
Stefan Berger78f09cc2013-01-22 13:57:53 -0600848{
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700849 u8 status = chip->ops->status(chip);
Stefan Berger78f09cc2013-01-22 13:57:53 -0600850
851 *canceled = false;
852 if ((status & mask) == mask)
853 return true;
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700854 if (check_cancel && chip->ops->req_canceled(chip, status)) {
Stefan Berger78f09cc2013-01-22 13:57:53 -0600855 *canceled = true;
856 return true;
857 }
858 return false;
859}
860
Rajiv Andradefd048862011-09-16 14:39:40 -0300861int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600862 wait_queue_head_t *queue, bool check_cancel)
Rajiv Andradefd048862011-09-16 14:39:40 -0300863{
864 unsigned long stop;
865 long rc;
866 u8 status;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600867 bool canceled = false;
Rajiv Andradefd048862011-09-16 14:39:40 -0300868
869 /* check current status */
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700870 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300871 if ((status & mask) == mask)
872 return 0;
873
874 stop = jiffies + timeout;
875
876 if (chip->vendor.irq) {
877again:
878 timeout = stop - jiffies;
879 if ((long)timeout <= 0)
880 return -ETIME;
881 rc = wait_event_interruptible_timeout(*queue,
Stefan Berger78f09cc2013-01-22 13:57:53 -0600882 wait_for_tpm_stat_cond(chip, mask, check_cancel,
883 &canceled),
884 timeout);
885 if (rc > 0) {
886 if (canceled)
887 return -ECANCELED;
Rajiv Andradefd048862011-09-16 14:39:40 -0300888 return 0;
Stefan Berger78f09cc2013-01-22 13:57:53 -0600889 }
Rajiv Andradefd048862011-09-16 14:39:40 -0300890 if (rc == -ERESTARTSYS && freezing(current)) {
891 clear_thread_flag(TIF_SIGPENDING);
892 goto again;
893 }
894 } else {
895 do {
896 msleep(TPM_TIMEOUT);
Jason Gunthorpe5f82e9f2013-11-26 13:30:44 -0700897 status = chip->ops->status(chip);
Rajiv Andradefd048862011-09-16 14:39:40 -0300898 if ((status & mask) == mask)
899 return 0;
900 } while (time_before(jiffies, stop));
901 }
902 return -ETIME;
903}
904EXPORT_SYMBOL_GPL(wait_for_tpm_stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300906#define TPM_ORD_SAVESTATE cpu_to_be32(152)
907#define SAVESTATE_RESULT_SIZE 10
908
909static struct tpm_input_header savestate_header = {
910 .tag = TPM_TAG_RQU_COMMAND,
911 .length = cpu_to_be32(10),
912 .ordinal = TPM_ORD_SAVESTATE
913};
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915/*
916 * We are about to suspend. Save the TPM state
917 * so that it can be restored.
918 */
Rafael J. Wysocki035e2ce2012-07-06 19:09:01 +0200919int tpm_pm_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -0800921 struct tpm_chip *chip = dev_get_drvdata(dev);
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300922 struct tpm_cmd_t cmd;
Duncan Laurie32d33b22013-03-17 14:56:39 -0700923 int rc, try;
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300924
925 u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 };
David Smith2490c682008-01-14 00:55:12 -0800926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (chip == NULL)
928 return -ENODEV;
929
Jarkko Sakkinen74d6b3c2015-01-29 07:43:47 +0200930 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
931 tpm2_shutdown(chip, TPM2_SU_STATE);
932 return 0;
933 }
Jarkko Sakkinen30fc8d12014-12-12 11:46:39 -0800934
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300935 /* for buggy tpm, flush pcrs with extend to selected dummy */
936 if (tpm_suspend_pcr) {
937 cmd.header.in = pcrextend_header;
938 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(tpm_suspend_pcr);
939 memcpy(cmd.params.pcrextend_in.hash, dummy_hash,
940 TPM_DIGEST_SIZE);
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800941 rc = tpm_transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE,
942 "extending dummy pcr before suspend");
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300943 }
944
945 /* now do the actual savestate */
Duncan Laurie32d33b22013-03-17 14:56:39 -0700946 for (try = 0; try < TPM_RETRY; try++) {
947 cmd.header.in = savestate_header;
Jarkko Sakkinen87155b72014-12-12 11:46:33 -0800948 rc = tpm_transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, NULL);
Duncan Laurie32d33b22013-03-17 14:56:39 -0700949
950 /*
951 * If the TPM indicates that it is too busy to respond to
952 * this command then retry before giving up. It can take
953 * several seconds for this TPM to be ready.
954 *
955 * This can happen if the TPM has already been sent the
956 * SaveState command before the driver has loaded. TCG 1.2
957 * specification states that any communication after SaveState
958 * may cause the TPM to invalidate previously saved state.
959 */
960 if (rc != TPM_WARN_RETRY)
961 break;
962 msleep(TPM_TIMEOUT_RETRY);
963 }
964
965 if (rc)
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800966 dev_err(chip->pdev,
Duncan Laurie32d33b22013-03-17 14:56:39 -0700967 "Error (%d) sending savestate before suspend\n", rc);
968 else if (try > 0)
Jarkko Sakkinen71ed8482014-12-12 11:46:36 -0800969 dev_warn(chip->pdev, "TPM savestate took %dms\n",
Duncan Laurie32d33b22013-03-17 14:56:39 -0700970 try * TPM_TIMEOUT_RETRY);
971
Rajiv Andrade225a9be2010-03-25 00:55:32 -0300972 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974EXPORT_SYMBOL_GPL(tpm_pm_suspend);
975
976/*
977 * Resume from a power safe. The BIOS already restored
978 * the TPM state.
979 */
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -0800980int tpm_pm_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
Kylene Jo Hallce2c87d2005-10-30 15:03:25 -0800982 struct tpm_chip *chip = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 if (chip == NULL)
985 return -ENODEV;
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return 0;
988}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989EXPORT_SYMBOL_GPL(tpm_pm_resume);
990
Kent Yoder41ab9992012-06-07 13:47:14 -0500991#define TPM_GETRANDOM_RESULT_SIZE 18
992static struct tpm_input_header tpm_getrandom_header = {
993 .tag = TPM_TAG_RQU_COMMAND,
994 .length = cpu_to_be32(14),
995 .ordinal = TPM_ORD_GET_RANDOM
996};
997
998/**
999 * tpm_get_random() - Get random bytes from the tpm's RNG
1000 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1001 * @out: destination buffer for the random bytes
1002 * @max: the max number of bytes to write to @out
1003 *
1004 * Returns < 0 on error and the number of bytes read on success
1005 */
1006int tpm_get_random(u32 chip_num, u8 *out, size_t max)
1007{
1008 struct tpm_chip *chip;
1009 struct tpm_cmd_t tpm_cmd;
1010 u32 recd, num_bytes = min_t(u32, max, TPM_MAX_RNG_DATA);
1011 int err, total = 0, retries = 5;
1012 u8 *dest = out;
1013
Jarkko Sakkinen3e14d832014-05-09 14:23:10 +03001014 if (!out || !num_bytes || max > TPM_MAX_RNG_DATA)
1015 return -EINVAL;
1016
Kent Yoder41ab9992012-06-07 13:47:14 -05001017 chip = tpm_chip_find_get(chip_num);
1018 if (chip == NULL)
1019 return -ENODEV;
1020
Jarkko Sakkinen7a1d7e62014-12-12 11:46:38 -08001021 if (chip->flags & TPM_CHIP_FLAG_TPM2) {
1022 err = tpm2_get_random(chip, out, max);
1023 tpm_chip_put(chip);
1024 return err;
1025 }
1026
Kent Yoder41ab9992012-06-07 13:47:14 -05001027 do {
1028 tpm_cmd.header.in = tpm_getrandom_header;
1029 tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes);
1030
Jarkko Sakkinen87155b72014-12-12 11:46:33 -08001031 err = tpm_transmit_cmd(chip, &tpm_cmd,
Kent Yoder41ab9992012-06-07 13:47:14 -05001032 TPM_GETRANDOM_RESULT_SIZE + num_bytes,
1033 "attempting get random");
1034 if (err)
1035 break;
1036
1037 recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len);
1038 memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd);
1039
1040 dest += recd;
1041 total += recd;
1042 num_bytes -= recd;
1043 } while (retries-- && total < max);
1044
Jarkko Sakkinen3e14d832014-05-09 14:23:10 +03001045 tpm_chip_put(chip);
Kent Yoder41ab9992012-06-07 13:47:14 -05001046 return total ? total : -EIO;
1047}
1048EXPORT_SYMBOL_GPL(tpm_get_random);
1049
Jarkko Sakkinen954650e2015-05-30 08:09:04 +03001050/**
1051 * tpm_seal_trusted() - seal a trusted key
1052 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1053 * @options: authentication values and other options
1054 * @payload: the key data in clear and encrypted form
1055 *
1056 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1057 * are supported.
1058 */
1059int tpm_seal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1060 struct trusted_key_options *options)
1061{
1062 struct tpm_chip *chip;
1063 int rc;
1064
1065 chip = tpm_chip_find_get(chip_num);
1066 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1067 return -ENODEV;
1068
1069 rc = tpm2_seal_trusted(chip, payload, options);
1070
1071 tpm_chip_put(chip);
1072 return rc;
1073}
1074EXPORT_SYMBOL_GPL(tpm_seal_trusted);
1075
1076/**
1077 * tpm_unseal_trusted() - unseal a trusted key
1078 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1079 * @options: authentication values and other options
1080 * @payload: the key data in clear and encrypted form
1081 *
1082 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1083 * are supported.
1084 */
1085int tpm_unseal_trusted(u32 chip_num, struct trusted_key_payload *payload,
1086 struct trusted_key_options *options)
1087{
1088 struct tpm_chip *chip;
1089 int rc;
1090
1091 chip = tpm_chip_find_get(chip_num);
1092 if (chip == NULL || !(chip->flags & TPM_CHIP_FLAG_TPM2))
1093 return -ENODEV;
1094
1095 rc = tpm2_unseal_trusted(chip, payload, options);
1096
1097 tpm_chip_put(chip);
1098 return rc;
1099}
1100EXPORT_SYMBOL_GPL(tpm_unseal_trusted);
1101
Jarkko Sakkinen313d21e2014-12-12 11:46:37 -08001102static int __init tpm_init(void)
1103{
1104 int rc;
1105
1106 tpm_class = class_create(THIS_MODULE, "tpm");
1107 if (IS_ERR(tpm_class)) {
1108 pr_err("couldn't create tpm class\n");
1109 return PTR_ERR(tpm_class);
1110 }
1111
1112 rc = alloc_chrdev_region(&tpm_devt, 0, TPM_NUM_DEVICES, "tpm");
1113 if (rc < 0) {
1114 pr_err("tpm: failed to allocate char dev region\n");
1115 class_destroy(tpm_class);
1116 return rc;
1117 }
1118
1119 return 0;
1120}
1121
1122static void __exit tpm_exit(void)
1123{
1124 class_destroy(tpm_class);
1125 unregister_chrdev_region(tpm_devt, TPM_NUM_DEVICES);
1126}
1127
1128subsys_initcall(tpm_init);
1129module_exit(tpm_exit);
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1132MODULE_DESCRIPTION("TPM Driver");
1133MODULE_VERSION("2.0");
1134MODULE_LICENSE("GPL");