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>
34 #include "tpm_eventlog.h"
36 #define TPM_MAX_ORDINAL 243
37 #define TSC_MAX_ORDINAL 12
38 #define TPM_PROTECTED_COMMAND 0x00
39 #define TPM_CONNECTION_COMMAND 0x40
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.
46 static int tpm_suspend_pcr
;
47 module_param_named(suspend_pcr
, tpm_suspend_pcr
, uint
, 0644);
48 MODULE_PARM_DESC(suspend_pcr
,
49 "PCR to use for dummy writes to faciltate flush on suspend.");
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.
59 static const u8 tpm_ordinal_duration
[TPM_MAX_ORDINAL
] = {
60 TPM_UNDEFINED
, /* 0 */
65 TPM_UNDEFINED
, /* 5 */
115 TPM_UNDEFINED
, /* 55 */
135 TPM_UNDEFINED
, /* 75 */
145 TPM_UNDEFINED
, /* 85 */
155 TPM_UNDEFINED
, /* 95 */
160 TPM_MEDIUM
, /* 100 */
165 TPM_UNDEFINED
, /* 105 */
195 TPM_UNDEFINED
, /* 135 */
205 TPM_UNDEFINED
, /* 145 */
215 TPM_UNDEFINED
, /* 155 */
225 TPM_UNDEFINED
, /* 165 */
235 TPM_UNDEFINED
, /* 175 */
240 TPM_MEDIUM
, /* 180 */
245 TPM_MEDIUM
, /* 185 */
250 TPM_UNDEFINED
, /* 190 */
255 TPM_UNDEFINED
, /* 195 */
270 TPM_MEDIUM
, /* 210 */
275 TPM_UNDEFINED
, /* 215 */
285 TPM_UNDEFINED
, /* 225 */
295 TPM_UNDEFINED
, /* 235 */
306 * Returns max number of jiffies to wait
308 unsigned long tpm_calc_ordinal_duration(struct tpm_chip
*chip
,
311 int duration_idx
= TPM_UNDEFINED
;
313 u8 category
= (ordinal
>> 24) & 0xFF;
315 if ((category
== TPM_PROTECTED_COMMAND
&& ordinal
< TPM_MAX_ORDINAL
) ||
316 (category
== TPM_CONNECTION_COMMAND
&& ordinal
< TSC_MAX_ORDINAL
))
317 duration_idx
= tpm_ordinal_duration
[ordinal
];
319 if (duration_idx
!= TPM_UNDEFINED
)
320 duration
= chip
->vendor
.duration
[duration_idx
];
326 EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration
);
329 * Internal kernel interface to transmit TPM commands
331 ssize_t
tpm_transmit(struct tpm_chip
*chip
, const char *buf
,
338 if (bufsiz
> TPM_BUFSIZE
)
339 bufsiz
= TPM_BUFSIZE
;
341 count
= be32_to_cpu(*((__be32
*) (buf
+ 2)));
342 ordinal
= be32_to_cpu(*((__be32
*) (buf
+ 6)));
345 if (count
> bufsiz
) {
347 "invalid count value %x %zx\n", count
, bufsiz
);
351 mutex_lock(&chip
->tpm_mutex
);
353 rc
= chip
->ops
->send(chip
, (u8
*) buf
, count
);
356 "tpm_transmit: tpm_send: error %zd\n", rc
);
360 if (chip
->vendor
.irq
)
363 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
)
364 stop
= jiffies
+ tpm2_calc_ordinal_duration(chip
, ordinal
);
366 stop
= jiffies
+ tpm_calc_ordinal_duration(chip
, ordinal
);
368 u8 status
= chip
->ops
->status(chip
);
369 if ((status
& chip
->ops
->req_complete_mask
) ==
370 chip
->ops
->req_complete_val
)
373 if (chip
->ops
->req_canceled(chip
, status
)) {
374 dev_err(chip
->pdev
, "Operation Canceled\n");
379 msleep(TPM_TIMEOUT
); /* CHECK */
381 } while (time_before(jiffies
, stop
));
383 chip
->ops
->cancel(chip
);
384 dev_err(chip
->pdev
, "Operation Timed out\n");
389 rc
= chip
->ops
->recv(chip
, (u8
*) buf
, bufsiz
);
392 "tpm_transmit: tpm_recv: error %zd\n", rc
);
394 mutex_unlock(&chip
->tpm_mutex
);
398 #define TPM_DIGEST_SIZE 20
399 #define TPM_RET_CODE_IDX 6
401 ssize_t
tpm_transmit_cmd(struct tpm_chip
*chip
, void *cmd
,
402 int len
, const char *desc
)
404 struct tpm_output_header
*header
;
407 len
= tpm_transmit(chip
, (u8
*) cmd
, len
);
410 else if (len
< TPM_HEADER_SIZE
)
415 err
= be32_to_cpu(header
->return_code
);
416 if (err
!= 0 && desc
)
417 dev_err(chip
->pdev
, "A TPM error (%d) occurred %s\n", err
,
423 #define TPM_INTERNAL_RESULT_SIZE 200
424 #define TPM_ORD_GET_CAP cpu_to_be32(101)
425 #define TPM_ORD_GET_RANDOM cpu_to_be32(70)
427 static const struct tpm_input_header tpm_getcap_header
= {
428 .tag
= TPM_TAG_RQU_COMMAND
,
429 .length
= cpu_to_be32(22),
430 .ordinal
= TPM_ORD_GET_CAP
433 ssize_t
tpm_getcap(struct device
*dev
, __be32 subcap_id
, cap_t
*cap
,
436 struct tpm_cmd_t tpm_cmd
;
438 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
440 tpm_cmd
.header
.in
= tpm_getcap_header
;
441 if (subcap_id
== CAP_VERSION_1_1
|| subcap_id
== CAP_VERSION_1_2
) {
442 tpm_cmd
.params
.getcap_in
.cap
= subcap_id
;
443 /*subcap field not necessary */
444 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(0);
445 tpm_cmd
.header
.in
.length
-= cpu_to_be32(sizeof(__be32
));
447 if (subcap_id
== TPM_CAP_FLAG_PERM
||
448 subcap_id
== TPM_CAP_FLAG_VOL
)
449 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_FLAG
;
451 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
452 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
453 tpm_cmd
.params
.getcap_in
.subcap
= subcap_id
;
455 rc
= tpm_transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
, desc
);
457 *cap
= tpm_cmd
.params
.getcap_out
.cap
;
461 void tpm_gen_interrupt(struct tpm_chip
*chip
)
463 struct tpm_cmd_t tpm_cmd
;
466 tpm_cmd
.header
.in
= tpm_getcap_header
;
467 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
468 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
469 tpm_cmd
.params
.getcap_in
.subcap
= TPM_CAP_PROP_TIS_TIMEOUT
;
471 rc
= tpm_transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
,
472 "attempting to determine the timeouts");
474 EXPORT_SYMBOL_GPL(tpm_gen_interrupt
);
476 #define TPM_ORD_STARTUP cpu_to_be32(153)
477 #define TPM_ST_CLEAR cpu_to_be16(1)
478 #define TPM_ST_STATE cpu_to_be16(2)
479 #define TPM_ST_DEACTIVATED cpu_to_be16(3)
480 static const struct tpm_input_header tpm_startup_header
= {
481 .tag
= TPM_TAG_RQU_COMMAND
,
482 .length
= cpu_to_be32(12),
483 .ordinal
= TPM_ORD_STARTUP
486 static int tpm_startup(struct tpm_chip
*chip
, __be16 startup_type
)
488 struct tpm_cmd_t start_cmd
;
489 start_cmd
.header
.in
= tpm_startup_header
;
491 start_cmd
.params
.startup_in
.startup_type
= startup_type
;
492 return tpm_transmit_cmd(chip
, &start_cmd
, TPM_INTERNAL_RESULT_SIZE
,
493 "attempting to start the TPM");
496 int tpm_get_timeouts(struct tpm_chip
*chip
)
498 struct tpm_cmd_t tpm_cmd
;
499 unsigned long new_timeout
[4];
500 unsigned long old_timeout
[4];
501 struct duration_t
*duration_cap
;
504 tpm_cmd
.header
.in
= tpm_getcap_header
;
505 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
506 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
507 tpm_cmd
.params
.getcap_in
.subcap
= TPM_CAP_PROP_TIS_TIMEOUT
;
508 rc
= tpm_transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
, NULL
);
510 if (rc
== TPM_ERR_INVALID_POSTINIT
) {
511 /* The TPM is not started, we are the first to talk to it.
512 Execute a startup command. */
513 dev_info(chip
->pdev
, "Issuing TPM_STARTUP");
514 if (tpm_startup(chip
, TPM_ST_CLEAR
))
517 tpm_cmd
.header
.in
= tpm_getcap_header
;
518 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
519 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
520 tpm_cmd
.params
.getcap_in
.subcap
= TPM_CAP_PROP_TIS_TIMEOUT
;
521 rc
= tpm_transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
,
526 "A TPM error (%zd) occurred attempting to determine the timeouts\n",
531 if (be32_to_cpu(tpm_cmd
.header
.out
.return_code
) != 0 ||
532 be32_to_cpu(tpm_cmd
.header
.out
.length
)
533 != sizeof(tpm_cmd
.header
.out
) + sizeof(u32
) + 4 * sizeof(u32
))
536 old_timeout
[0] = be32_to_cpu(tpm_cmd
.params
.getcap_out
.cap
.timeout
.a
);
537 old_timeout
[1] = be32_to_cpu(tpm_cmd
.params
.getcap_out
.cap
.timeout
.b
);
538 old_timeout
[2] = be32_to_cpu(tpm_cmd
.params
.getcap_out
.cap
.timeout
.c
);
539 old_timeout
[3] = be32_to_cpu(tpm_cmd
.params
.getcap_out
.cap
.timeout
.d
);
540 memcpy(new_timeout
, old_timeout
, sizeof(new_timeout
));
543 * Provide ability for vendor overrides of timeout values in case
546 if (chip
->ops
->update_timeouts
!= NULL
)
547 chip
->vendor
.timeout_adjusted
=
548 chip
->ops
->update_timeouts(chip
, new_timeout
);
550 if (!chip
->vendor
.timeout_adjusted
) {
551 /* Don't overwrite default if value is 0 */
552 if (new_timeout
[0] != 0 && new_timeout
[0] < 1000) {
555 /* timeouts in msec rather usec */
556 for (i
= 0; i
!= ARRAY_SIZE(new_timeout
); i
++)
557 new_timeout
[i
] *= 1000;
558 chip
->vendor
.timeout_adjusted
= true;
562 /* Report adjusted timeouts */
563 if (chip
->vendor
.timeout_adjusted
) {
565 HW_ERR
"Adjusting reported timeouts: A %lu->%luus B %lu->%luus C %lu->%luus D %lu->%luus\n",
566 old_timeout
[0], new_timeout
[0],
567 old_timeout
[1], new_timeout
[1],
568 old_timeout
[2], new_timeout
[2],
569 old_timeout
[3], new_timeout
[3]);
572 chip
->vendor
.timeout_a
= usecs_to_jiffies(new_timeout
[0]);
573 chip
->vendor
.timeout_b
= usecs_to_jiffies(new_timeout
[1]);
574 chip
->vendor
.timeout_c
= usecs_to_jiffies(new_timeout
[2]);
575 chip
->vendor
.timeout_d
= usecs_to_jiffies(new_timeout
[3]);
578 tpm_cmd
.header
.in
= tpm_getcap_header
;
579 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
580 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
581 tpm_cmd
.params
.getcap_in
.subcap
= TPM_CAP_PROP_TIS_DURATION
;
583 rc
= tpm_transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
,
584 "attempting to determine the durations");
588 if (be32_to_cpu(tpm_cmd
.header
.out
.return_code
) != 0 ||
589 be32_to_cpu(tpm_cmd
.header
.out
.length
)
590 != sizeof(tpm_cmd
.header
.out
) + sizeof(u32
) + 3 * sizeof(u32
))
593 duration_cap
= &tpm_cmd
.params
.getcap_out
.cap
.duration
;
594 chip
->vendor
.duration
[TPM_SHORT
] =
595 usecs_to_jiffies(be32_to_cpu(duration_cap
->tpm_short
));
596 chip
->vendor
.duration
[TPM_MEDIUM
] =
597 usecs_to_jiffies(be32_to_cpu(duration_cap
->tpm_medium
));
598 chip
->vendor
.duration
[TPM_LONG
] =
599 usecs_to_jiffies(be32_to_cpu(duration_cap
->tpm_long
));
601 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
602 * value wrong and apparently reports msecs rather than usecs. So we
603 * fix up the resulting too-small TPM_SHORT value to make things work.
604 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
606 if (chip
->vendor
.duration
[TPM_SHORT
] < (HZ
/ 100)) {
607 chip
->vendor
.duration
[TPM_SHORT
] = HZ
;
608 chip
->vendor
.duration
[TPM_MEDIUM
] *= 1000;
609 chip
->vendor
.duration
[TPM_LONG
] *= 1000;
610 chip
->vendor
.duration_adjusted
= true;
611 dev_info(chip
->pdev
, "Adjusting TPM timeout parameters.");
615 EXPORT_SYMBOL_GPL(tpm_get_timeouts
);
617 #define TPM_ORD_CONTINUE_SELFTEST 83
618 #define CONTINUE_SELFTEST_RESULT_SIZE 10
620 static struct tpm_input_header continue_selftest_header
= {
621 .tag
= TPM_TAG_RQU_COMMAND
,
622 .length
= cpu_to_be32(10),
623 .ordinal
= cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST
),
627 * tpm_continue_selftest -- run TPM's selftest
628 * @chip: TPM chip to use
630 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
633 static int tpm_continue_selftest(struct tpm_chip
*chip
)
636 struct tpm_cmd_t cmd
;
638 cmd
.header
.in
= continue_selftest_header
;
639 rc
= tpm_transmit_cmd(chip
, &cmd
, CONTINUE_SELFTEST_RESULT_SIZE
,
640 "continue selftest");
644 #define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
645 #define READ_PCR_RESULT_SIZE 30
646 static struct tpm_input_header pcrread_header
= {
647 .tag
= TPM_TAG_RQU_COMMAND
,
648 .length
= cpu_to_be32(14),
649 .ordinal
= TPM_ORDINAL_PCRREAD
652 int tpm_pcr_read_dev(struct tpm_chip
*chip
, int pcr_idx
, u8
*res_buf
)
655 struct tpm_cmd_t cmd
;
657 cmd
.header
.in
= pcrread_header
;
658 cmd
.params
.pcrread_in
.pcr_idx
= cpu_to_be32(pcr_idx
);
659 rc
= tpm_transmit_cmd(chip
, &cmd
, READ_PCR_RESULT_SIZE
,
660 "attempting to read a pcr value");
663 memcpy(res_buf
, cmd
.params
.pcrread_out
.pcr_result
,
669 * tpm_pcr_read - read a pcr value
670 * @chip_num: tpm idx # or ANY
671 * @pcr_idx: pcr idx to retrieve
672 * @res_buf: TPM_PCR value
673 * size of res_buf is 20 bytes (or NULL if you don't care)
675 * The TPM driver should be built-in, but for whatever reason it
676 * isn't, protect against the chip disappearing, by incrementing
677 * the module usage count.
679 int tpm_pcr_read(u32 chip_num
, int pcr_idx
, u8
*res_buf
)
681 struct tpm_chip
*chip
;
684 chip
= tpm_chip_find_get(chip_num
);
687 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
)
688 rc
= tpm2_pcr_read(chip
, pcr_idx
, res_buf
);
690 rc
= tpm_pcr_read_dev(chip
, pcr_idx
, res_buf
);
694 EXPORT_SYMBOL_GPL(tpm_pcr_read
);
697 * tpm_pcr_extend - extend pcr value with hash
698 * @chip_num: tpm idx # or AN&
699 * @pcr_idx: pcr idx to extend
700 * @hash: hash value used to extend pcr value
702 * The TPM driver should be built-in, but for whatever reason it
703 * isn't, protect against the chip disappearing, by incrementing
704 * the module usage count.
706 #define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
707 #define EXTEND_PCR_RESULT_SIZE 34
708 static struct tpm_input_header pcrextend_header
= {
709 .tag
= TPM_TAG_RQU_COMMAND
,
710 .length
= cpu_to_be32(34),
711 .ordinal
= TPM_ORD_PCR_EXTEND
714 int tpm_pcr_extend(u32 chip_num
, int pcr_idx
, const u8
*hash
)
716 struct tpm_cmd_t cmd
;
718 struct tpm_chip
*chip
;
720 chip
= tpm_chip_find_get(chip_num
);
724 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
) {
725 rc
= tpm2_pcr_extend(chip
, pcr_idx
, hash
);
730 cmd
.header
.in
= pcrextend_header
;
731 cmd
.params
.pcrextend_in
.pcr_idx
= cpu_to_be32(pcr_idx
);
732 memcpy(cmd
.params
.pcrextend_in
.hash
, hash
, TPM_DIGEST_SIZE
);
733 rc
= tpm_transmit_cmd(chip
, &cmd
, EXTEND_PCR_RESULT_SIZE
,
734 "attempting extend a PCR value");
739 EXPORT_SYMBOL_GPL(tpm_pcr_extend
);
742 * tpm_do_selftest - have the TPM continue its selftest and wait until it
743 * can receive further commands
744 * @chip: TPM chip to use
746 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
749 int tpm_do_selftest(struct tpm_chip
*chip
)
753 unsigned int delay_msec
= 100;
754 unsigned long duration
;
755 struct tpm_cmd_t cmd
;
757 duration
= tpm_calc_ordinal_duration(chip
, TPM_ORD_CONTINUE_SELFTEST
);
759 loops
= jiffies_to_msecs(duration
) / delay_msec
;
761 rc
= tpm_continue_selftest(chip
);
762 /* This may fail if there was no TPM driver during a suspend/resume
763 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
769 /* Attempt to read a PCR value */
770 cmd
.header
.in
= pcrread_header
;
771 cmd
.params
.pcrread_in
.pcr_idx
= cpu_to_be32(0);
772 rc
= tpm_transmit(chip
, (u8
*) &cmd
, READ_PCR_RESULT_SIZE
);
773 /* Some buggy TPMs will not respond to tpm_tis_ready() for
774 * around 300ms while the self test is ongoing, keep trying
775 * until the self test duration expires. */
777 dev_info(chip
->pdev
, HW_ERR
"TPM command timed out during continue self test");
782 if (rc
< TPM_HEADER_SIZE
)
785 rc
= be32_to_cpu(cmd
.header
.out
.return_code
);
786 if (rc
== TPM_ERR_DISABLED
|| rc
== TPM_ERR_DEACTIVATED
) {
788 "TPM is disabled/deactivated (0x%X)\n", rc
);
789 /* TPM is disabled and/or deactivated; driver can
790 * proceed and TPM does handle commands for
791 * suspend/resume correctly
795 if (rc
!= TPM_WARN_DOING_SELFTEST
)
798 } while (--loops
> 0);
802 EXPORT_SYMBOL_GPL(tpm_do_selftest
);
804 int tpm_send(u32 chip_num
, void *cmd
, size_t buflen
)
806 struct tpm_chip
*chip
;
809 chip
= tpm_chip_find_get(chip_num
);
813 rc
= tpm_transmit_cmd(chip
, cmd
, buflen
, "attempting tpm_cmd");
818 EXPORT_SYMBOL_GPL(tpm_send
);
820 static bool wait_for_tpm_stat_cond(struct tpm_chip
*chip
, u8 mask
,
821 bool check_cancel
, bool *canceled
)
823 u8 status
= chip
->ops
->status(chip
);
826 if ((status
& mask
) == mask
)
828 if (check_cancel
&& chip
->ops
->req_canceled(chip
, status
)) {
835 int wait_for_tpm_stat(struct tpm_chip
*chip
, u8 mask
, unsigned long timeout
,
836 wait_queue_head_t
*queue
, bool check_cancel
)
841 bool canceled
= false;
843 /* check current status */
844 status
= chip
->ops
->status(chip
);
845 if ((status
& mask
) == mask
)
848 stop
= jiffies
+ timeout
;
850 if (chip
->vendor
.irq
) {
852 timeout
= stop
- jiffies
;
853 if ((long)timeout
<= 0)
855 rc
= wait_event_interruptible_timeout(*queue
,
856 wait_for_tpm_stat_cond(chip
, mask
, check_cancel
,
864 if (rc
== -ERESTARTSYS
&& freezing(current
)) {
865 clear_thread_flag(TIF_SIGPENDING
);
871 status
= chip
->ops
->status(chip
);
872 if ((status
& mask
) == mask
)
874 } while (time_before(jiffies
, stop
));
878 EXPORT_SYMBOL_GPL(wait_for_tpm_stat
);
880 #define TPM_ORD_SAVESTATE cpu_to_be32(152)
881 #define SAVESTATE_RESULT_SIZE 10
883 static struct tpm_input_header savestate_header
= {
884 .tag
= TPM_TAG_RQU_COMMAND
,
885 .length
= cpu_to_be32(10),
886 .ordinal
= TPM_ORD_SAVESTATE
890 * We are about to suspend. Save the TPM state
891 * so that it can be restored.
893 int tpm_pm_suspend(struct device
*dev
)
895 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
896 struct tpm_cmd_t cmd
;
899 u8 dummy_hash
[TPM_DIGEST_SIZE
] = { 0 };
904 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
) {
905 tpm2_shutdown(chip
, TPM2_SU_STATE
);
909 /* for buggy tpm, flush pcrs with extend to selected dummy */
910 if (tpm_suspend_pcr
) {
911 cmd
.header
.in
= pcrextend_header
;
912 cmd
.params
.pcrextend_in
.pcr_idx
= cpu_to_be32(tpm_suspend_pcr
);
913 memcpy(cmd
.params
.pcrextend_in
.hash
, dummy_hash
,
915 rc
= tpm_transmit_cmd(chip
, &cmd
, EXTEND_PCR_RESULT_SIZE
,
916 "extending dummy pcr before suspend");
919 /* now do the actual savestate */
920 for (try = 0; try < TPM_RETRY
; try++) {
921 cmd
.header
.in
= savestate_header
;
922 rc
= tpm_transmit_cmd(chip
, &cmd
, SAVESTATE_RESULT_SIZE
, NULL
);
925 * If the TPM indicates that it is too busy to respond to
926 * this command then retry before giving up. It can take
927 * several seconds for this TPM to be ready.
929 * This can happen if the TPM has already been sent the
930 * SaveState command before the driver has loaded. TCG 1.2
931 * specification states that any communication after SaveState
932 * may cause the TPM to invalidate previously saved state.
934 if (rc
!= TPM_WARN_RETRY
)
936 msleep(TPM_TIMEOUT_RETRY
);
941 "Error (%d) sending savestate before suspend\n", rc
);
943 dev_warn(chip
->pdev
, "TPM savestate took %dms\n",
944 try * TPM_TIMEOUT_RETRY
);
948 EXPORT_SYMBOL_GPL(tpm_pm_suspend
);
951 * Resume from a power safe. The BIOS already restored
954 int tpm_pm_resume(struct device
*dev
)
956 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
963 EXPORT_SYMBOL_GPL(tpm_pm_resume
);
965 #define TPM_GETRANDOM_RESULT_SIZE 18
966 static struct tpm_input_header tpm_getrandom_header
= {
967 .tag
= TPM_TAG_RQU_COMMAND
,
968 .length
= cpu_to_be32(14),
969 .ordinal
= TPM_ORD_GET_RANDOM
973 * tpm_get_random() - Get random bytes from the tpm's RNG
974 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
975 * @out: destination buffer for the random bytes
976 * @max: the max number of bytes to write to @out
978 * Returns < 0 on error and the number of bytes read on success
980 int tpm_get_random(u32 chip_num
, u8
*out
, size_t max
)
982 struct tpm_chip
*chip
;
983 struct tpm_cmd_t tpm_cmd
;
984 u32 recd
, num_bytes
= min_t(u32
, max
, TPM_MAX_RNG_DATA
);
985 int err
, total
= 0, retries
= 5;
988 if (!out
|| !num_bytes
|| max
> TPM_MAX_RNG_DATA
)
991 chip
= tpm_chip_find_get(chip_num
);
995 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
) {
996 err
= tpm2_get_random(chip
, out
, max
);
1002 tpm_cmd
.header
.in
= tpm_getrandom_header
;
1003 tpm_cmd
.params
.getrandom_in
.num_bytes
= cpu_to_be32(num_bytes
);
1005 err
= tpm_transmit_cmd(chip
, &tpm_cmd
,
1006 TPM_GETRANDOM_RESULT_SIZE
+ num_bytes
,
1007 "attempting get random");
1011 recd
= be32_to_cpu(tpm_cmd
.params
.getrandom_out
.rng_data_len
);
1012 memcpy(dest
, tpm_cmd
.params
.getrandom_out
.rng_data
, recd
);
1017 } while (retries
-- && total
< max
);
1020 return total
? total
: -EIO
;
1022 EXPORT_SYMBOL_GPL(tpm_get_random
);
1024 static int __init
tpm_init(void)
1028 tpm_class
= class_create(THIS_MODULE
, "tpm");
1029 if (IS_ERR(tpm_class
)) {
1030 pr_err("couldn't create tpm class\n");
1031 return PTR_ERR(tpm_class
);
1034 rc
= alloc_chrdev_region(&tpm_devt
, 0, TPM_NUM_DEVICES
, "tpm");
1036 pr_err("tpm: failed to allocate char dev region\n");
1037 class_destroy(tpm_class
);
1044 static void __exit
tpm_exit(void)
1046 class_destroy(tpm_class
);
1047 unregister_chrdev_region(tpm_devt
, TPM_NUM_DEVICES
);
1050 subsys_initcall(tpm_init
);
1051 module_exit(tpm_exit
);
1053 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1054 MODULE_DESCRIPTION("TPM Driver");
1055 MODULE_VERSION("2.0");
1056 MODULE_LICENSE("GPL");