2 * Copyright (C) 2004 IBM Corporation
3 * Copyright (C) 2014 Intel Corporation
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>
11 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
13 * Device driver for TCG/TCPA TPM (trusted platform module).
14 * Specifications at www.trustedcomputinggroup.org
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
21 * Note, the TPM chip is not interrupt driven (only polling)
22 * and can have very long timeouts (minutes!). Hence the unusual
27 #include <linux/poll.h>
28 #include <linux/slab.h>
29 #include <linux/mutex.h>
30 #include <linux/spinlock.h>
31 #include <linux/freezer.h>
32 #include <linux/pm_runtime.h>
35 #include "tpm_eventlog.h"
37 #define TPM_MAX_ORDINAL 243
38 #define TSC_MAX_ORDINAL 12
39 #define TPM_PROTECTED_COMMAND 0x00
40 #define TPM_CONNECTION_COMMAND 0x40
43 * Bug workaround - some TPM's don't flush the most
44 * recently changed pcr on suspend, so force the flush
45 * with an extend to the selected _unused_ non-volatile pcr.
47 static int tpm_suspend_pcr
;
48 module_param_named(suspend_pcr
, tpm_suspend_pcr
, uint
, 0644);
49 MODULE_PARM_DESC(suspend_pcr
,
50 "PCR to use for dummy writes to faciltate flush on suspend.");
53 * Array with one entry per ordinal defining the maximum amount
54 * of time the chip could take to return the result. The ordinal
55 * designation of short, medium or long is defined in a table in
56 * TCG Specification TPM Main Part 2 TPM Structures Section 17. The
57 * values of the SHORT, MEDIUM, and LONG durations are retrieved
58 * from the chip during initialization with a call to tpm_get_timeouts.
60 static const u8 tpm_ordinal_duration
[TPM_MAX_ORDINAL
] = {
61 TPM_UNDEFINED
, /* 0 */
66 TPM_UNDEFINED
, /* 5 */
116 TPM_UNDEFINED
, /* 55 */
136 TPM_UNDEFINED
, /* 75 */
146 TPM_UNDEFINED
, /* 85 */
156 TPM_UNDEFINED
, /* 95 */
161 TPM_MEDIUM
, /* 100 */
166 TPM_UNDEFINED
, /* 105 */
196 TPM_UNDEFINED
, /* 135 */
206 TPM_UNDEFINED
, /* 145 */
216 TPM_UNDEFINED
, /* 155 */
226 TPM_UNDEFINED
, /* 165 */
236 TPM_UNDEFINED
, /* 175 */
241 TPM_MEDIUM
, /* 180 */
246 TPM_MEDIUM
, /* 185 */
251 TPM_UNDEFINED
, /* 190 */
256 TPM_UNDEFINED
, /* 195 */
271 TPM_MEDIUM
, /* 210 */
276 TPM_UNDEFINED
, /* 215 */
286 TPM_UNDEFINED
, /* 225 */
296 TPM_UNDEFINED
, /* 235 */
307 * Returns max number of jiffies to wait
309 unsigned long tpm_calc_ordinal_duration(struct tpm_chip
*chip
,
312 int duration_idx
= TPM_UNDEFINED
;
316 * We only have a duration table for protected commands, where the upper
317 * 16 bits are 0. For the few other ordinals the fallback will be used.
319 if (ordinal
< TPM_MAX_ORDINAL
)
320 duration_idx
= tpm_ordinal_duration
[ordinal
];
322 if (duration_idx
!= TPM_UNDEFINED
)
323 duration
= chip
->duration
[duration_idx
];
329 EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration
);
332 * Internal kernel interface to transmit TPM commands
334 ssize_t
tpm_transmit(struct tpm_chip
*chip
, const u8
*buf
, size_t bufsiz
,
341 if (bufsiz
< TPM_HEADER_SIZE
)
344 if (bufsiz
> TPM_BUFSIZE
)
345 bufsiz
= TPM_BUFSIZE
;
347 count
= be32_to_cpu(*((__be32
*) (buf
+ 2)));
348 ordinal
= be32_to_cpu(*((__be32
*) (buf
+ 6)));
351 if (count
> bufsiz
) {
353 "invalid count value %x %zx\n", count
, bufsiz
);
357 if (!(flags
& TPM_TRANSMIT_UNLOCKED
))
358 mutex_lock(&chip
->tpm_mutex
);
360 if (chip
->dev
.parent
)
361 pm_runtime_get_sync(chip
->dev
.parent
);
363 rc
= chip
->ops
->send(chip
, (u8
*) buf
, count
);
366 "tpm_transmit: tpm_send: error %zd\n", rc
);
370 if (chip
->flags
& TPM_CHIP_FLAG_IRQ
)
373 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
)
374 stop
= jiffies
+ tpm2_calc_ordinal_duration(chip
, ordinal
);
376 stop
= jiffies
+ tpm_calc_ordinal_duration(chip
, ordinal
);
378 u8 status
= chip
->ops
->status(chip
);
379 if ((status
& chip
->ops
->req_complete_mask
) ==
380 chip
->ops
->req_complete_val
)
383 if (chip
->ops
->req_canceled(chip
, status
)) {
384 dev_err(&chip
->dev
, "Operation Canceled\n");
389 msleep(TPM_TIMEOUT
); /* CHECK */
391 } while (time_before(jiffies
, stop
));
393 chip
->ops
->cancel(chip
);
394 dev_err(&chip
->dev
, "Operation Timed out\n");
399 rc
= chip
->ops
->recv(chip
, (u8
*) buf
, bufsiz
);
402 "tpm_transmit: tpm_recv: error %zd\n", rc
);
404 if (chip
->dev
.parent
)
405 pm_runtime_put_sync(chip
->dev
.parent
);
407 if (!(flags
& TPM_TRANSMIT_UNLOCKED
))
408 mutex_unlock(&chip
->tpm_mutex
);
412 #define TPM_DIGEST_SIZE 20
413 #define TPM_RET_CODE_IDX 6
415 ssize_t
tpm_transmit_cmd(struct tpm_chip
*chip
, const void *cmd
,
416 int len
, unsigned int flags
, const char *desc
)
418 const struct tpm_output_header
*header
;
421 len
= tpm_transmit(chip
, (const u8
*)cmd
, len
, flags
);
424 else if (len
< TPM_HEADER_SIZE
)
429 err
= be32_to_cpu(header
->return_code
);
430 if (err
!= 0 && desc
)
431 dev_err(&chip
->dev
, "A TPM error (%d) occurred %s\n", err
,
437 #define TPM_INTERNAL_RESULT_SIZE 200
438 #define TPM_ORD_GET_CAP cpu_to_be32(101)
439 #define TPM_ORD_GET_RANDOM cpu_to_be32(70)
441 static const struct tpm_input_header tpm_getcap_header
= {
442 .tag
= TPM_TAG_RQU_COMMAND
,
443 .length
= cpu_to_be32(22),
444 .ordinal
= TPM_ORD_GET_CAP
447 ssize_t
tpm_getcap(struct tpm_chip
*chip
, u32 subcap_id
, cap_t
*cap
,
450 struct tpm_cmd_t tpm_cmd
;
453 tpm_cmd
.header
.in
= tpm_getcap_header
;
454 if (subcap_id
== TPM_CAP_VERSION_1_1
||
455 subcap_id
== TPM_CAP_VERSION_1_2
) {
456 tpm_cmd
.params
.getcap_in
.cap
= cpu_to_be32(subcap_id
);
457 /*subcap field not necessary */
458 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(0);
459 tpm_cmd
.header
.in
.length
-= cpu_to_be32(sizeof(__be32
));
461 if (subcap_id
== TPM_CAP_FLAG_PERM
||
462 subcap_id
== TPM_CAP_FLAG_VOL
)
463 tpm_cmd
.params
.getcap_in
.cap
=
464 cpu_to_be32(TPM_CAP_FLAG
);
466 tpm_cmd
.params
.getcap_in
.cap
=
467 cpu_to_be32(TPM_CAP_PROP
);
468 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
469 tpm_cmd
.params
.getcap_in
.subcap
= cpu_to_be32(subcap_id
);
471 rc
= tpm_transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
, 0,
474 *cap
= tpm_cmd
.params
.getcap_out
.cap
;
477 EXPORT_SYMBOL_GPL(tpm_getcap
);
479 #define TPM_ORD_STARTUP cpu_to_be32(153)
480 #define TPM_ST_CLEAR cpu_to_be16(1)
481 #define TPM_ST_STATE cpu_to_be16(2)
482 #define TPM_ST_DEACTIVATED cpu_to_be16(3)
483 static const struct tpm_input_header tpm_startup_header
= {
484 .tag
= TPM_TAG_RQU_COMMAND
,
485 .length
= cpu_to_be32(12),
486 .ordinal
= TPM_ORD_STARTUP
489 static int tpm_startup(struct tpm_chip
*chip
, __be16 startup_type
)
491 struct tpm_cmd_t start_cmd
;
492 start_cmd
.header
.in
= tpm_startup_header
;
494 start_cmd
.params
.startup_in
.startup_type
= startup_type
;
495 return tpm_transmit_cmd(chip
, &start_cmd
, TPM_INTERNAL_RESULT_SIZE
, 0,
496 "attempting to start the TPM");
499 int tpm_get_timeouts(struct tpm_chip
*chip
)
502 unsigned long new_timeout
[4];
503 unsigned long old_timeout
[4];
506 if (chip
->flags
& TPM_CHIP_FLAG_HAVE_TIMEOUTS
)
509 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
) {
510 /* Fixed timeouts for TPM2 */
511 chip
->timeout_a
= msecs_to_jiffies(TPM2_TIMEOUT_A
);
512 chip
->timeout_b
= msecs_to_jiffies(TPM2_TIMEOUT_B
);
513 chip
->timeout_c
= msecs_to_jiffies(TPM2_TIMEOUT_C
);
514 chip
->timeout_d
= msecs_to_jiffies(TPM2_TIMEOUT_D
);
515 chip
->duration
[TPM_SHORT
] =
516 msecs_to_jiffies(TPM2_DURATION_SHORT
);
517 chip
->duration
[TPM_MEDIUM
] =
518 msecs_to_jiffies(TPM2_DURATION_MEDIUM
);
519 chip
->duration
[TPM_LONG
] =
520 msecs_to_jiffies(TPM2_DURATION_LONG
);
522 chip
->flags
|= TPM_CHIP_FLAG_HAVE_TIMEOUTS
;
526 rc
= tpm_getcap(chip
, TPM_CAP_PROP_TIS_TIMEOUT
, &cap
,
527 "attempting to determine the timeouts");
528 if (rc
== TPM_ERR_INVALID_POSTINIT
) {
529 /* The TPM is not started, we are the first to talk to it.
530 Execute a startup command. */
531 dev_info(&chip
->dev
, "Issuing TPM_STARTUP\n");
532 if (tpm_startup(chip
, TPM_ST_CLEAR
))
535 rc
= tpm_getcap(chip
, TPM_CAP_PROP_TIS_TIMEOUT
, &cap
,
536 "attempting to determine the timeouts");
541 old_timeout
[0] = be32_to_cpu(cap
.timeout
.a
);
542 old_timeout
[1] = be32_to_cpu(cap
.timeout
.b
);
543 old_timeout
[2] = be32_to_cpu(cap
.timeout
.c
);
544 old_timeout
[3] = be32_to_cpu(cap
.timeout
.d
);
545 memcpy(new_timeout
, old_timeout
, sizeof(new_timeout
));
548 * Provide ability for vendor overrides of timeout values in case
551 if (chip
->ops
->update_timeouts
!= NULL
)
552 chip
->timeout_adjusted
=
553 chip
->ops
->update_timeouts(chip
, new_timeout
);
555 if (!chip
->timeout_adjusted
) {
556 /* Don't overwrite default if value is 0 */
557 if (new_timeout
[0] != 0 && new_timeout
[0] < 1000) {
560 /* timeouts in msec rather usec */
561 for (i
= 0; i
!= ARRAY_SIZE(new_timeout
); i
++)
562 new_timeout
[i
] *= 1000;
563 chip
->timeout_adjusted
= true;
567 /* Report adjusted timeouts */
568 if (chip
->timeout_adjusted
) {
570 HW_ERR
"Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n",
571 old_timeout
[0], new_timeout
[0],
572 old_timeout
[1], new_timeout
[1],
573 old_timeout
[2], new_timeout
[2],
574 old_timeout
[3], new_timeout
[3]);
577 chip
->timeout_a
= usecs_to_jiffies(new_timeout
[0]);
578 chip
->timeout_b
= usecs_to_jiffies(new_timeout
[1]);
579 chip
->timeout_c
= usecs_to_jiffies(new_timeout
[2]);
580 chip
->timeout_d
= usecs_to_jiffies(new_timeout
[3]);
582 rc
= tpm_getcap(chip
, TPM_CAP_PROP_TIS_DURATION
, &cap
,
583 "attempting to determine the durations");
587 chip
->duration
[TPM_SHORT
] =
588 usecs_to_jiffies(be32_to_cpu(cap
.duration
.tpm_short
));
589 chip
->duration
[TPM_MEDIUM
] =
590 usecs_to_jiffies(be32_to_cpu(cap
.duration
.tpm_medium
));
591 chip
->duration
[TPM_LONG
] =
592 usecs_to_jiffies(be32_to_cpu(cap
.duration
.tpm_long
));
594 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
595 * value wrong and apparently reports msecs rather than usecs. So we
596 * fix up the resulting too-small TPM_SHORT value to make things work.
597 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
599 if (chip
->duration
[TPM_SHORT
] < (HZ
/ 100)) {
600 chip
->duration
[TPM_SHORT
] = HZ
;
601 chip
->duration
[TPM_MEDIUM
] *= 1000;
602 chip
->duration
[TPM_LONG
] *= 1000;
603 chip
->duration_adjusted
= true;
604 dev_info(&chip
->dev
, "Adjusting TPM timeout parameters.");
607 chip
->flags
|= TPM_CHIP_FLAG_HAVE_TIMEOUTS
;
610 EXPORT_SYMBOL_GPL(tpm_get_timeouts
);
612 #define TPM_ORD_CONTINUE_SELFTEST 83
613 #define CONTINUE_SELFTEST_RESULT_SIZE 10
615 static const struct tpm_input_header continue_selftest_header
= {
616 .tag
= TPM_TAG_RQU_COMMAND
,
617 .length
= cpu_to_be32(10),
618 .ordinal
= cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST
),
622 * tpm_continue_selftest -- run TPM's selftest
623 * @chip: TPM chip to use
625 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
628 static int tpm_continue_selftest(struct tpm_chip
*chip
)
631 struct tpm_cmd_t cmd
;
633 cmd
.header
.in
= continue_selftest_header
;
634 rc
= tpm_transmit_cmd(chip
, &cmd
, CONTINUE_SELFTEST_RESULT_SIZE
, 0,
635 "continue selftest");
639 #define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
640 #define READ_PCR_RESULT_SIZE 30
641 static const struct tpm_input_header pcrread_header
= {
642 .tag
= TPM_TAG_RQU_COMMAND
,
643 .length
= cpu_to_be32(14),
644 .ordinal
= TPM_ORDINAL_PCRREAD
647 int tpm_pcr_read_dev(struct tpm_chip
*chip
, int pcr_idx
, u8
*res_buf
)
650 struct tpm_cmd_t cmd
;
652 cmd
.header
.in
= pcrread_header
;
653 cmd
.params
.pcrread_in
.pcr_idx
= cpu_to_be32(pcr_idx
);
654 rc
= tpm_transmit_cmd(chip
, &cmd
, READ_PCR_RESULT_SIZE
, 0,
655 "attempting to read a pcr value");
658 memcpy(res_buf
, cmd
.params
.pcrread_out
.pcr_result
,
664 * tpm_is_tpm2 - is the chip a TPM2 chip?
665 * @chip_num: tpm idx # or ANY
667 * Returns < 0 on error, and 1 or 0 on success depending whether the chip
670 int tpm_is_tpm2(u32 chip_num
)
672 struct tpm_chip
*chip
;
675 chip
= tpm_chip_find_get(chip_num
);
679 rc
= (chip
->flags
& TPM_CHIP_FLAG_TPM2
) != 0;
685 EXPORT_SYMBOL_GPL(tpm_is_tpm2
);
688 * tpm_pcr_read - read a pcr value
689 * @chip_num: tpm idx # or ANY
690 * @pcr_idx: pcr idx to retrieve
691 * @res_buf: TPM_PCR value
692 * size of res_buf is 20 bytes (or NULL if you don't care)
694 * The TPM driver should be built-in, but for whatever reason it
695 * isn't, protect against the chip disappearing, by incrementing
696 * the module usage count.
698 int tpm_pcr_read(u32 chip_num
, int pcr_idx
, u8
*res_buf
)
700 struct tpm_chip
*chip
;
703 chip
= tpm_chip_find_get(chip_num
);
706 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
)
707 rc
= tpm2_pcr_read(chip
, pcr_idx
, res_buf
);
709 rc
= tpm_pcr_read_dev(chip
, pcr_idx
, res_buf
);
713 EXPORT_SYMBOL_GPL(tpm_pcr_read
);
715 #define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
716 #define EXTEND_PCR_RESULT_SIZE 34
717 static const struct tpm_input_header pcrextend_header
= {
718 .tag
= TPM_TAG_RQU_COMMAND
,
719 .length
= cpu_to_be32(34),
720 .ordinal
= TPM_ORD_PCR_EXTEND
724 * tpm_pcr_extend - extend pcr value with hash
725 * @chip_num: tpm idx # or AN&
726 * @pcr_idx: pcr idx to extend
727 * @hash: hash value used to extend pcr value
729 * The TPM driver should be built-in, but for whatever reason it
730 * isn't, protect against the chip disappearing, by incrementing
731 * the module usage count.
733 int tpm_pcr_extend(u32 chip_num
, int pcr_idx
, const u8
*hash
)
735 struct tpm_cmd_t cmd
;
737 struct tpm_chip
*chip
;
739 chip
= tpm_chip_find_get(chip_num
);
743 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
) {
744 rc
= tpm2_pcr_extend(chip
, pcr_idx
, hash
);
749 cmd
.header
.in
= pcrextend_header
;
750 cmd
.params
.pcrextend_in
.pcr_idx
= cpu_to_be32(pcr_idx
);
751 memcpy(cmd
.params
.pcrextend_in
.hash
, hash
, TPM_DIGEST_SIZE
);
752 rc
= tpm_transmit_cmd(chip
, &cmd
, EXTEND_PCR_RESULT_SIZE
, 0,
753 "attempting extend a PCR value");
758 EXPORT_SYMBOL_GPL(tpm_pcr_extend
);
761 * tpm_do_selftest - have the TPM continue its selftest and wait until it
762 * can receive further commands
763 * @chip: TPM chip to use
765 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
768 int tpm_do_selftest(struct tpm_chip
*chip
)
772 unsigned int delay_msec
= 100;
773 unsigned long duration
;
774 u8 dummy
[TPM_DIGEST_SIZE
];
776 duration
= tpm_calc_ordinal_duration(chip
, TPM_ORD_CONTINUE_SELFTEST
);
778 loops
= jiffies_to_msecs(duration
) / delay_msec
;
780 rc
= tpm_continue_selftest(chip
);
781 /* This may fail if there was no TPM driver during a suspend/resume
782 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
788 /* Attempt to read a PCR value */
789 rc
= tpm_pcr_read_dev(chip
, 0, dummy
);
791 /* Some buggy TPMs will not respond to tpm_tis_ready() for
792 * around 300ms while the self test is ongoing, keep trying
793 * until the self test duration expires. */
797 "TPM command timed out during continue self test");
802 if (rc
== TPM_ERR_DISABLED
|| rc
== TPM_ERR_DEACTIVATED
) {
804 "TPM is disabled/deactivated (0x%X)\n", rc
);
805 /* TPM is disabled and/or deactivated; driver can
806 * proceed and TPM does handle commands for
807 * suspend/resume correctly
811 if (rc
!= TPM_WARN_DOING_SELFTEST
)
814 } while (--loops
> 0);
818 EXPORT_SYMBOL_GPL(tpm_do_selftest
);
821 * tpm1_auto_startup - Perform the standard automatic TPM initialization
823 * @chip: TPM chip to use
825 * Returns 0 on success, < 0 in case of fatal error.
827 int tpm1_auto_startup(struct tpm_chip
*chip
)
831 rc
= tpm_get_timeouts(chip
);
834 rc
= tpm_do_selftest(chip
);
836 dev_err(&chip
->dev
, "TPM self test failed\n");
847 int tpm_send(u32 chip_num
, void *cmd
, size_t buflen
)
849 struct tpm_chip
*chip
;
852 chip
= tpm_chip_find_get(chip_num
);
856 rc
= tpm_transmit_cmd(chip
, cmd
, buflen
, 0, "attempting tpm_cmd");
861 EXPORT_SYMBOL_GPL(tpm_send
);
863 static bool wait_for_tpm_stat_cond(struct tpm_chip
*chip
, u8 mask
,
864 bool check_cancel
, bool *canceled
)
866 u8 status
= chip
->ops
->status(chip
);
869 if ((status
& mask
) == mask
)
871 if (check_cancel
&& chip
->ops
->req_canceled(chip
, status
)) {
878 int wait_for_tpm_stat(struct tpm_chip
*chip
, u8 mask
, unsigned long timeout
,
879 wait_queue_head_t
*queue
, bool check_cancel
)
884 bool canceled
= false;
886 /* check current status */
887 status
= chip
->ops
->status(chip
);
888 if ((status
& mask
) == mask
)
891 stop
= jiffies
+ timeout
;
893 if (chip
->flags
& TPM_CHIP_FLAG_IRQ
) {
895 timeout
= stop
- jiffies
;
896 if ((long)timeout
<= 0)
898 rc
= wait_event_interruptible_timeout(*queue
,
899 wait_for_tpm_stat_cond(chip
, mask
, check_cancel
,
907 if (rc
== -ERESTARTSYS
&& freezing(current
)) {
908 clear_thread_flag(TIF_SIGPENDING
);
914 status
= chip
->ops
->status(chip
);
915 if ((status
& mask
) == mask
)
917 } while (time_before(jiffies
, stop
));
921 EXPORT_SYMBOL_GPL(wait_for_tpm_stat
);
923 #define TPM_ORD_SAVESTATE cpu_to_be32(152)
924 #define SAVESTATE_RESULT_SIZE 10
926 static const struct tpm_input_header savestate_header
= {
927 .tag
= TPM_TAG_RQU_COMMAND
,
928 .length
= cpu_to_be32(10),
929 .ordinal
= TPM_ORD_SAVESTATE
933 * We are about to suspend. Save the TPM state
934 * so that it can be restored.
936 int tpm_pm_suspend(struct device
*dev
)
938 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
939 struct tpm_cmd_t cmd
;
942 u8 dummy_hash
[TPM_DIGEST_SIZE
] = { 0 };
947 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
) {
948 tpm2_shutdown(chip
, TPM2_SU_STATE
);
952 /* for buggy tpm, flush pcrs with extend to selected dummy */
953 if (tpm_suspend_pcr
) {
954 cmd
.header
.in
= pcrextend_header
;
955 cmd
.params
.pcrextend_in
.pcr_idx
= cpu_to_be32(tpm_suspend_pcr
);
956 memcpy(cmd
.params
.pcrextend_in
.hash
, dummy_hash
,
958 rc
= tpm_transmit_cmd(chip
, &cmd
, EXTEND_PCR_RESULT_SIZE
, 0,
959 "extending dummy pcr before suspend");
962 /* now do the actual savestate */
963 for (try = 0; try < TPM_RETRY
; try++) {
964 cmd
.header
.in
= savestate_header
;
965 rc
= tpm_transmit_cmd(chip
, &cmd
, SAVESTATE_RESULT_SIZE
, 0,
969 * If the TPM indicates that it is too busy to respond to
970 * this command then retry before giving up. It can take
971 * several seconds for this TPM to be ready.
973 * This can happen if the TPM has already been sent the
974 * SaveState command before the driver has loaded. TCG 1.2
975 * specification states that any communication after SaveState
976 * may cause the TPM to invalidate previously saved state.
978 if (rc
!= TPM_WARN_RETRY
)
980 msleep(TPM_TIMEOUT_RETRY
);
985 "Error (%d) sending savestate before suspend\n", rc
);
987 dev_warn(&chip
->dev
, "TPM savestate took %dms\n",
988 try * TPM_TIMEOUT_RETRY
);
992 EXPORT_SYMBOL_GPL(tpm_pm_suspend
);
995 * Resume from a power safe. The BIOS already restored
998 int tpm_pm_resume(struct device
*dev
)
1000 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
1007 EXPORT_SYMBOL_GPL(tpm_pm_resume
);
1009 #define TPM_GETRANDOM_RESULT_SIZE 18
1010 static const struct tpm_input_header tpm_getrandom_header
= {
1011 .tag
= TPM_TAG_RQU_COMMAND
,
1012 .length
= cpu_to_be32(14),
1013 .ordinal
= TPM_ORD_GET_RANDOM
1017 * tpm_get_random() - Get random bytes from the tpm's RNG
1018 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1019 * @out: destination buffer for the random bytes
1020 * @max: the max number of bytes to write to @out
1022 * Returns < 0 on error and the number of bytes read on success
1024 int tpm_get_random(u32 chip_num
, u8
*out
, size_t max
)
1026 struct tpm_chip
*chip
;
1027 struct tpm_cmd_t tpm_cmd
;
1028 u32 recd
, num_bytes
= min_t(u32
, max
, TPM_MAX_RNG_DATA
);
1029 int err
, total
= 0, retries
= 5;
1032 if (!out
|| !num_bytes
|| max
> TPM_MAX_RNG_DATA
)
1035 chip
= tpm_chip_find_get(chip_num
);
1039 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
) {
1040 err
= tpm2_get_random(chip
, out
, max
);
1046 tpm_cmd
.header
.in
= tpm_getrandom_header
;
1047 tpm_cmd
.params
.getrandom_in
.num_bytes
= cpu_to_be32(num_bytes
);
1049 err
= tpm_transmit_cmd(chip
, &tpm_cmd
,
1050 TPM_GETRANDOM_RESULT_SIZE
+ num_bytes
,
1051 0, "attempting get random");
1055 recd
= be32_to_cpu(tpm_cmd
.params
.getrandom_out
.rng_data_len
);
1056 memcpy(dest
, tpm_cmd
.params
.getrandom_out
.rng_data
, recd
);
1061 } while (retries
-- && total
< max
);
1064 return total
? total
: -EIO
;
1066 EXPORT_SYMBOL_GPL(tpm_get_random
);
1069 * tpm_seal_trusted() - seal a trusted key
1070 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1071 * @options: authentication values and other options
1072 * @payload: the key data in clear and encrypted form
1074 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1077 int tpm_seal_trusted(u32 chip_num
, struct trusted_key_payload
*payload
,
1078 struct trusted_key_options
*options
)
1080 struct tpm_chip
*chip
;
1083 chip
= tpm_chip_find_get(chip_num
);
1084 if (chip
== NULL
|| !(chip
->flags
& TPM_CHIP_FLAG_TPM2
))
1087 rc
= tpm2_seal_trusted(chip
, payload
, options
);
1092 EXPORT_SYMBOL_GPL(tpm_seal_trusted
);
1095 * tpm_unseal_trusted() - unseal a trusted key
1096 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
1097 * @options: authentication values and other options
1098 * @payload: the key data in clear and encrypted form
1100 * Returns < 0 on error and 0 on success. At the moment, only TPM 2.0 chips
1103 int tpm_unseal_trusted(u32 chip_num
, struct trusted_key_payload
*payload
,
1104 struct trusted_key_options
*options
)
1106 struct tpm_chip
*chip
;
1109 chip
= tpm_chip_find_get(chip_num
);
1110 if (chip
== NULL
|| !(chip
->flags
& TPM_CHIP_FLAG_TPM2
))
1113 rc
= tpm2_unseal_trusted(chip
, payload
, options
);
1119 EXPORT_SYMBOL_GPL(tpm_unseal_trusted
);
1121 static int __init
tpm_init(void)
1125 tpm_class
= class_create(THIS_MODULE
, "tpm");
1126 if (IS_ERR(tpm_class
)) {
1127 pr_err("couldn't create tpm class\n");
1128 return PTR_ERR(tpm_class
);
1131 rc
= alloc_chrdev_region(&tpm_devt
, 0, TPM_NUM_DEVICES
, "tpm");
1133 pr_err("tpm: failed to allocate char dev region\n");
1134 class_destroy(tpm_class
);
1141 static void __exit
tpm_exit(void)
1143 idr_destroy(&dev_nums_idr
);
1144 class_destroy(tpm_class
);
1145 unregister_chrdev_region(tpm_devt
, TPM_NUM_DEVICES
);
1148 subsys_initcall(tpm_init
);
1149 module_exit(tpm_exit
);
1151 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1152 MODULE_DESCRIPTION("TPM Driver");
1153 MODULE_VERSION("2.0");
1154 MODULE_LICENSE("GPL");