2 * Copyright (C) 2004 IBM Corporation
5 * Leendert van Doorn <leendert@watson.ibm.com>
6 * Dave Safford <safford@watson.ibm.com>
7 * Reiner Sailer <sailer@watson.ibm.com>
8 * Kylene Hall <kjhall@us.ibm.com>
10 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
12 * Device driver for TCG/TCPA TPM (trusted platform module).
13 * Specifications at www.trustedcomputinggroup.org
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation, version 2 of the
20 * Note, the TPM chip is not interrupt driven (only polling)
21 * and can have very long timeouts (minutes!). Hence the unusual
26 #include <linux/poll.h>
27 #include <linux/slab.h>
28 #include <linux/mutex.h>
29 #include <linux/spinlock.h>
30 #include <linux/freezer.h>
33 #include "tpm_eventlog.h"
35 #define TPM_MAX_ORDINAL 243
36 #define TSC_MAX_ORDINAL 12
37 #define TPM_PROTECTED_COMMAND 0x00
38 #define TPM_CONNECTION_COMMAND 0x40
41 * Bug workaround - some TPM's don't flush the most
42 * recently changed pcr on suspend, so force the flush
43 * with an extend to the selected _unused_ non-volatile pcr.
45 static int tpm_suspend_pcr
;
46 module_param_named(suspend_pcr
, tpm_suspend_pcr
, uint
, 0644);
47 MODULE_PARM_DESC(suspend_pcr
,
48 "PCR to use for dummy writes to faciltate flush on suspend.");
50 static LIST_HEAD(tpm_chip_list
);
51 static DEFINE_SPINLOCK(driver_lock
);
52 static DECLARE_BITMAP(dev_mask
, TPM_NUM_DEVICES
);
55 * Array with one entry per ordinal defining the maximum amount
56 * of time the chip could take to return the result. The ordinal
57 * designation of short, medium or long is defined in a table in
58 * TCG Specification TPM Main Part 2 TPM Structures Section 17. The
59 * values of the SHORT, MEDIUM, and LONG durations are retrieved
60 * from the chip during initialization with a call to tpm_get_timeouts.
62 static const u8 tpm_ordinal_duration
[TPM_MAX_ORDINAL
] = {
63 TPM_UNDEFINED
, /* 0 */
68 TPM_UNDEFINED
, /* 5 */
118 TPM_UNDEFINED
, /* 55 */
138 TPM_UNDEFINED
, /* 75 */
148 TPM_UNDEFINED
, /* 85 */
158 TPM_UNDEFINED
, /* 95 */
163 TPM_MEDIUM
, /* 100 */
168 TPM_UNDEFINED
, /* 105 */
198 TPM_UNDEFINED
, /* 135 */
208 TPM_UNDEFINED
, /* 145 */
218 TPM_UNDEFINED
, /* 155 */
228 TPM_UNDEFINED
, /* 165 */
238 TPM_UNDEFINED
, /* 175 */
243 TPM_MEDIUM
, /* 180 */
248 TPM_MEDIUM
, /* 185 */
253 TPM_UNDEFINED
, /* 190 */
258 TPM_UNDEFINED
, /* 195 */
273 TPM_MEDIUM
, /* 210 */
278 TPM_UNDEFINED
, /* 215 */
288 TPM_UNDEFINED
, /* 225 */
298 TPM_UNDEFINED
, /* 235 */
309 * Returns max number of jiffies to wait
311 unsigned long tpm_calc_ordinal_duration(struct tpm_chip
*chip
,
314 int duration_idx
= TPM_UNDEFINED
;
316 u8 category
= (ordinal
>> 24) & 0xFF;
318 if ((category
== TPM_PROTECTED_COMMAND
&& ordinal
< TPM_MAX_ORDINAL
) ||
319 (category
== TPM_CONNECTION_COMMAND
&& ordinal
< TSC_MAX_ORDINAL
))
320 duration_idx
= tpm_ordinal_duration
[ordinal
];
322 if (duration_idx
!= TPM_UNDEFINED
)
323 duration
= chip
->vendor
.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 char *buf
,
341 if (bufsiz
> TPM_BUFSIZE
)
342 bufsiz
= TPM_BUFSIZE
;
344 count
= be32_to_cpu(*((__be32
*) (buf
+ 2)));
345 ordinal
= be32_to_cpu(*((__be32
*) (buf
+ 6)));
348 if (count
> bufsiz
) {
350 "invalid count value %x %zx\n", count
, bufsiz
);
354 mutex_lock(&chip
->tpm_mutex
);
356 rc
= chip
->ops
->send(chip
, (u8
*) buf
, count
);
359 "tpm_transmit: tpm_send: error %zd\n", rc
);
363 if (chip
->vendor
.irq
)
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
->dev
, "Operation Canceled\n");
379 msleep(TPM_TIMEOUT
); /* CHECK */
381 } while (time_before(jiffies
, stop
));
383 chip
->ops
->cancel(chip
);
384 dev_err(chip
->dev
, "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 static ssize_t
transmit_cmd(struct tpm_chip
*chip
, struct tpm_cmd_t
*cmd
,
402 int len
, const char *desc
)
406 len
= tpm_transmit(chip
, (u8
*) cmd
, len
);
409 else if (len
< TPM_HEADER_SIZE
)
412 err
= be32_to_cpu(cmd
->header
.out
.return_code
);
413 if (err
!= 0 && desc
)
414 dev_err(chip
->dev
, "A TPM error (%d) occurred %s\n", err
, desc
);
419 #define TPM_INTERNAL_RESULT_SIZE 200
420 #define TPM_ORD_GET_CAP cpu_to_be32(101)
421 #define TPM_ORD_GET_RANDOM cpu_to_be32(70)
423 static const struct tpm_input_header tpm_getcap_header
= {
424 .tag
= TPM_TAG_RQU_COMMAND
,
425 .length
= cpu_to_be32(22),
426 .ordinal
= TPM_ORD_GET_CAP
429 ssize_t
tpm_getcap(struct device
*dev
, __be32 subcap_id
, cap_t
*cap
,
432 struct tpm_cmd_t tpm_cmd
;
434 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
436 tpm_cmd
.header
.in
= tpm_getcap_header
;
437 if (subcap_id
== CAP_VERSION_1_1
|| subcap_id
== CAP_VERSION_1_2
) {
438 tpm_cmd
.params
.getcap_in
.cap
= subcap_id
;
439 /*subcap field not necessary */
440 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(0);
441 tpm_cmd
.header
.in
.length
-= cpu_to_be32(sizeof(__be32
));
443 if (subcap_id
== TPM_CAP_FLAG_PERM
||
444 subcap_id
== TPM_CAP_FLAG_VOL
)
445 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_FLAG
;
447 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
448 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
449 tpm_cmd
.params
.getcap_in
.subcap
= subcap_id
;
451 rc
= transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
, desc
);
453 *cap
= tpm_cmd
.params
.getcap_out
.cap
;
457 void tpm_gen_interrupt(struct tpm_chip
*chip
)
459 struct tpm_cmd_t tpm_cmd
;
462 tpm_cmd
.header
.in
= tpm_getcap_header
;
463 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
464 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
465 tpm_cmd
.params
.getcap_in
.subcap
= TPM_CAP_PROP_TIS_TIMEOUT
;
467 rc
= transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
,
468 "attempting to determine the timeouts");
470 EXPORT_SYMBOL_GPL(tpm_gen_interrupt
);
472 #define TPM_ORD_STARTUP cpu_to_be32(153)
473 #define TPM_ST_CLEAR cpu_to_be16(1)
474 #define TPM_ST_STATE cpu_to_be16(2)
475 #define TPM_ST_DEACTIVATED cpu_to_be16(3)
476 static const struct tpm_input_header tpm_startup_header
= {
477 .tag
= TPM_TAG_RQU_COMMAND
,
478 .length
= cpu_to_be32(12),
479 .ordinal
= TPM_ORD_STARTUP
482 static int tpm_startup(struct tpm_chip
*chip
, __be16 startup_type
)
484 struct tpm_cmd_t start_cmd
;
485 start_cmd
.header
.in
= tpm_startup_header
;
486 start_cmd
.params
.startup_in
.startup_type
= startup_type
;
487 return transmit_cmd(chip
, &start_cmd
, TPM_INTERNAL_RESULT_SIZE
,
488 "attempting to start the TPM");
491 int tpm_get_timeouts(struct tpm_chip
*chip
)
493 struct tpm_cmd_t tpm_cmd
;
494 struct timeout_t
*timeout_cap
;
495 struct duration_t
*duration_cap
;
498 unsigned int scale
= 1;
500 tpm_cmd
.header
.in
= tpm_getcap_header
;
501 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
502 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
503 tpm_cmd
.params
.getcap_in
.subcap
= TPM_CAP_PROP_TIS_TIMEOUT
;
504 rc
= transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
, NULL
);
506 if (rc
== TPM_ERR_INVALID_POSTINIT
) {
507 /* The TPM is not started, we are the first to talk to it.
508 Execute a startup command. */
509 dev_info(chip
->dev
, "Issuing TPM_STARTUP");
510 if (tpm_startup(chip
, TPM_ST_CLEAR
))
513 tpm_cmd
.header
.in
= tpm_getcap_header
;
514 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
515 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
516 tpm_cmd
.params
.getcap_in
.subcap
= TPM_CAP_PROP_TIS_TIMEOUT
;
517 rc
= transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
,
522 "A TPM error (%zd) occurred attempting to determine the timeouts\n",
527 if (be32_to_cpu(tpm_cmd
.header
.out
.return_code
) != 0 ||
528 be32_to_cpu(tpm_cmd
.header
.out
.length
)
529 != sizeof(tpm_cmd
.header
.out
) + sizeof(u32
) + 4 * sizeof(u32
))
532 timeout_cap
= &tpm_cmd
.params
.getcap_out
.cap
.timeout
;
533 /* Don't overwrite default if value is 0 */
534 timeout
= be32_to_cpu(timeout_cap
->a
);
535 if (timeout
&& timeout
< 1000) {
536 /* timeouts in msec rather usec */
538 chip
->vendor
.timeout_adjusted
= true;
541 chip
->vendor
.timeout_a
= usecs_to_jiffies(timeout
* scale
);
542 timeout
= be32_to_cpu(timeout_cap
->b
);
544 chip
->vendor
.timeout_b
= usecs_to_jiffies(timeout
* scale
);
545 timeout
= be32_to_cpu(timeout_cap
->c
);
547 chip
->vendor
.timeout_c
= usecs_to_jiffies(timeout
* scale
);
548 timeout
= be32_to_cpu(timeout_cap
->d
);
550 chip
->vendor
.timeout_d
= usecs_to_jiffies(timeout
* scale
);
553 tpm_cmd
.header
.in
= tpm_getcap_header
;
554 tpm_cmd
.params
.getcap_in
.cap
= TPM_CAP_PROP
;
555 tpm_cmd
.params
.getcap_in
.subcap_size
= cpu_to_be32(4);
556 tpm_cmd
.params
.getcap_in
.subcap
= TPM_CAP_PROP_TIS_DURATION
;
558 rc
= transmit_cmd(chip
, &tpm_cmd
, TPM_INTERNAL_RESULT_SIZE
,
559 "attempting to determine the durations");
563 if (be32_to_cpu(tpm_cmd
.header
.out
.return_code
) != 0 ||
564 be32_to_cpu(tpm_cmd
.header
.out
.length
)
565 != sizeof(tpm_cmd
.header
.out
) + sizeof(u32
) + 3 * sizeof(u32
))
568 duration_cap
= &tpm_cmd
.params
.getcap_out
.cap
.duration
;
569 chip
->vendor
.duration
[TPM_SHORT
] =
570 usecs_to_jiffies(be32_to_cpu(duration_cap
->tpm_short
));
571 chip
->vendor
.duration
[TPM_MEDIUM
] =
572 usecs_to_jiffies(be32_to_cpu(duration_cap
->tpm_medium
));
573 chip
->vendor
.duration
[TPM_LONG
] =
574 usecs_to_jiffies(be32_to_cpu(duration_cap
->tpm_long
));
576 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
577 * value wrong and apparently reports msecs rather than usecs. So we
578 * fix up the resulting too-small TPM_SHORT value to make things work.
579 * We also scale the TPM_MEDIUM and -_LONG values by 1000.
581 if (chip
->vendor
.duration
[TPM_SHORT
] < (HZ
/ 100)) {
582 chip
->vendor
.duration
[TPM_SHORT
] = HZ
;
583 chip
->vendor
.duration
[TPM_MEDIUM
] *= 1000;
584 chip
->vendor
.duration
[TPM_LONG
] *= 1000;
585 chip
->vendor
.duration_adjusted
= true;
586 dev_info(chip
->dev
, "Adjusting TPM timeout parameters.");
590 EXPORT_SYMBOL_GPL(tpm_get_timeouts
);
592 #define TPM_ORD_CONTINUE_SELFTEST 83
593 #define CONTINUE_SELFTEST_RESULT_SIZE 10
595 static struct tpm_input_header continue_selftest_header
= {
596 .tag
= TPM_TAG_RQU_COMMAND
,
597 .length
= cpu_to_be32(10),
598 .ordinal
= cpu_to_be32(TPM_ORD_CONTINUE_SELFTEST
),
602 * tpm_continue_selftest -- run TPM's selftest
603 * @chip: TPM chip to use
605 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
608 static int tpm_continue_selftest(struct tpm_chip
*chip
)
611 struct tpm_cmd_t cmd
;
613 cmd
.header
.in
= continue_selftest_header
;
614 rc
= transmit_cmd(chip
, &cmd
, CONTINUE_SELFTEST_RESULT_SIZE
,
615 "continue selftest");
620 * tpm_chip_find_get - return tpm_chip for given chip number
622 static struct tpm_chip
*tpm_chip_find_get(int chip_num
)
624 struct tpm_chip
*pos
, *chip
= NULL
;
627 list_for_each_entry_rcu(pos
, &tpm_chip_list
, list
) {
628 if (chip_num
!= TPM_ANY_NUM
&& chip_num
!= pos
->dev_num
)
631 if (try_module_get(pos
->dev
->driver
->owner
)) {
640 #define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
641 #define READ_PCR_RESULT_SIZE 30
642 static struct tpm_input_header pcrread_header
= {
643 .tag
= TPM_TAG_RQU_COMMAND
,
644 .length
= cpu_to_be32(14),
645 .ordinal
= TPM_ORDINAL_PCRREAD
648 int tpm_pcr_read_dev(struct tpm_chip
*chip
, int pcr_idx
, u8
*res_buf
)
651 struct tpm_cmd_t cmd
;
653 cmd
.header
.in
= pcrread_header
;
654 cmd
.params
.pcrread_in
.pcr_idx
= cpu_to_be32(pcr_idx
);
655 rc
= transmit_cmd(chip
, &cmd
, READ_PCR_RESULT_SIZE
,
656 "attempting to read a pcr value");
659 memcpy(res_buf
, cmd
.params
.pcrread_out
.pcr_result
,
665 * tpm_pcr_read - read a pcr value
666 * @chip_num: tpm idx # or ANY
667 * @pcr_idx: pcr idx to retrieve
668 * @res_buf: TPM_PCR value
669 * size of res_buf is 20 bytes (or NULL if you don't care)
671 * The TPM driver should be built-in, but for whatever reason it
672 * isn't, protect against the chip disappearing, by incrementing
673 * the module usage count.
675 int tpm_pcr_read(u32 chip_num
, int pcr_idx
, u8
*res_buf
)
677 struct tpm_chip
*chip
;
680 chip
= tpm_chip_find_get(chip_num
);
683 rc
= tpm_pcr_read_dev(chip
, pcr_idx
, res_buf
);
687 EXPORT_SYMBOL_GPL(tpm_pcr_read
);
690 * tpm_pcr_extend - extend pcr value with hash
691 * @chip_num: tpm idx # or AN&
692 * @pcr_idx: pcr idx to extend
693 * @hash: hash value used to extend pcr value
695 * The TPM driver should be built-in, but for whatever reason it
696 * isn't, protect against the chip disappearing, by incrementing
697 * the module usage count.
699 #define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
700 #define EXTEND_PCR_RESULT_SIZE 34
701 static struct tpm_input_header pcrextend_header
= {
702 .tag
= TPM_TAG_RQU_COMMAND
,
703 .length
= cpu_to_be32(34),
704 .ordinal
= TPM_ORD_PCR_EXTEND
707 int tpm_pcr_extend(u32 chip_num
, int pcr_idx
, const u8
*hash
)
709 struct tpm_cmd_t cmd
;
711 struct tpm_chip
*chip
;
713 chip
= tpm_chip_find_get(chip_num
);
717 cmd
.header
.in
= pcrextend_header
;
718 cmd
.params
.pcrextend_in
.pcr_idx
= cpu_to_be32(pcr_idx
);
719 memcpy(cmd
.params
.pcrextend_in
.hash
, hash
, TPM_DIGEST_SIZE
);
720 rc
= transmit_cmd(chip
, &cmd
, EXTEND_PCR_RESULT_SIZE
,
721 "attempting extend a PCR value");
726 EXPORT_SYMBOL_GPL(tpm_pcr_extend
);
729 * tpm_do_selftest - have the TPM continue its selftest and wait until it
730 * can receive further commands
731 * @chip: TPM chip to use
733 * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing
736 int tpm_do_selftest(struct tpm_chip
*chip
)
740 unsigned int delay_msec
= 100;
741 unsigned long duration
;
742 struct tpm_cmd_t cmd
;
744 duration
= tpm_calc_ordinal_duration(chip
, TPM_ORD_CONTINUE_SELFTEST
);
746 loops
= jiffies_to_msecs(duration
) / delay_msec
;
748 rc
= tpm_continue_selftest(chip
);
749 /* This may fail if there was no TPM driver during a suspend/resume
750 * cycle; some may return 10 (BAD_ORDINAL), others 28 (FAILEDSELFTEST)
756 /* Attempt to read a PCR value */
757 cmd
.header
.in
= pcrread_header
;
758 cmd
.params
.pcrread_in
.pcr_idx
= cpu_to_be32(0);
759 rc
= tpm_transmit(chip
, (u8
*) &cmd
, READ_PCR_RESULT_SIZE
);
760 /* Some buggy TPMs will not respond to tpm_tis_ready() for
761 * around 300ms while the self test is ongoing, keep trying
762 * until the self test duration expires. */
764 dev_info(chip
->dev
, HW_ERR
"TPM command timed out during continue self test");
769 if (rc
< TPM_HEADER_SIZE
)
772 rc
= be32_to_cpu(cmd
.header
.out
.return_code
);
773 if (rc
== TPM_ERR_DISABLED
|| rc
== TPM_ERR_DEACTIVATED
) {
775 "TPM is disabled/deactivated (0x%X)\n", rc
);
776 /* TPM is disabled and/or deactivated; driver can
777 * proceed and TPM does handle commands for
778 * suspend/resume correctly
782 if (rc
!= TPM_WARN_DOING_SELFTEST
)
785 } while (--loops
> 0);
789 EXPORT_SYMBOL_GPL(tpm_do_selftest
);
791 int tpm_send(u32 chip_num
, void *cmd
, size_t buflen
)
793 struct tpm_chip
*chip
;
796 chip
= tpm_chip_find_get(chip_num
);
800 rc
= transmit_cmd(chip
, cmd
, buflen
, "attempting tpm_cmd");
805 EXPORT_SYMBOL_GPL(tpm_send
);
807 static bool wait_for_tpm_stat_cond(struct tpm_chip
*chip
, u8 mask
,
808 bool check_cancel
, bool *canceled
)
810 u8 status
= chip
->ops
->status(chip
);
813 if ((status
& mask
) == mask
)
815 if (check_cancel
&& chip
->ops
->req_canceled(chip
, status
)) {
822 int wait_for_tpm_stat(struct tpm_chip
*chip
, u8 mask
, unsigned long timeout
,
823 wait_queue_head_t
*queue
, bool check_cancel
)
828 bool canceled
= false;
830 /* check current status */
831 status
= chip
->ops
->status(chip
);
832 if ((status
& mask
) == mask
)
835 stop
= jiffies
+ timeout
;
837 if (chip
->vendor
.irq
) {
839 timeout
= stop
- jiffies
;
840 if ((long)timeout
<= 0)
842 rc
= wait_event_interruptible_timeout(*queue
,
843 wait_for_tpm_stat_cond(chip
, mask
, check_cancel
,
851 if (rc
== -ERESTARTSYS
&& freezing(current
)) {
852 clear_thread_flag(TIF_SIGPENDING
);
858 status
= chip
->ops
->status(chip
);
859 if ((status
& mask
) == mask
)
861 } while (time_before(jiffies
, stop
));
865 EXPORT_SYMBOL_GPL(wait_for_tpm_stat
);
867 void tpm_remove_hardware(struct device
*dev
)
869 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
872 dev_err(dev
, "No device data found\n");
876 spin_lock(&driver_lock
);
877 list_del_rcu(&chip
->list
);
878 spin_unlock(&driver_lock
);
881 tpm_dev_del_device(chip
);
882 tpm_sysfs_del_device(chip
);
883 tpm_remove_ppi(&dev
->kobj
);
884 tpm_bios_log_teardown(chip
->bios_dir
);
886 /* write it this way to be explicit (chip->dev == dev) */
887 put_device(chip
->dev
);
889 EXPORT_SYMBOL_GPL(tpm_remove_hardware
);
891 #define TPM_ORD_SAVESTATE cpu_to_be32(152)
892 #define SAVESTATE_RESULT_SIZE 10
894 static struct tpm_input_header savestate_header
= {
895 .tag
= TPM_TAG_RQU_COMMAND
,
896 .length
= cpu_to_be32(10),
897 .ordinal
= TPM_ORD_SAVESTATE
901 * We are about to suspend. Save the TPM state
902 * so that it can be restored.
904 int tpm_pm_suspend(struct device
*dev
)
906 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
907 struct tpm_cmd_t cmd
;
910 u8 dummy_hash
[TPM_DIGEST_SIZE
] = { 0 };
915 /* for buggy tpm, flush pcrs with extend to selected dummy */
916 if (tpm_suspend_pcr
) {
917 cmd
.header
.in
= pcrextend_header
;
918 cmd
.params
.pcrextend_in
.pcr_idx
= cpu_to_be32(tpm_suspend_pcr
);
919 memcpy(cmd
.params
.pcrextend_in
.hash
, dummy_hash
,
921 rc
= transmit_cmd(chip
, &cmd
, EXTEND_PCR_RESULT_SIZE
,
922 "extending dummy pcr before suspend");
925 /* now do the actual savestate */
926 for (try = 0; try < TPM_RETRY
; try++) {
927 cmd
.header
.in
= savestate_header
;
928 rc
= transmit_cmd(chip
, &cmd
, SAVESTATE_RESULT_SIZE
, NULL
);
931 * If the TPM indicates that it is too busy to respond to
932 * this command then retry before giving up. It can take
933 * several seconds for this TPM to be ready.
935 * This can happen if the TPM has already been sent the
936 * SaveState command before the driver has loaded. TCG 1.2
937 * specification states that any communication after SaveState
938 * may cause the TPM to invalidate previously saved state.
940 if (rc
!= TPM_WARN_RETRY
)
942 msleep(TPM_TIMEOUT_RETRY
);
947 "Error (%d) sending savestate before suspend\n", rc
);
949 dev_warn(chip
->dev
, "TPM savestate took %dms\n",
950 try * TPM_TIMEOUT_RETRY
);
954 EXPORT_SYMBOL_GPL(tpm_pm_suspend
);
957 * Resume from a power safe. The BIOS already restored
960 int tpm_pm_resume(struct device
*dev
)
962 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
969 EXPORT_SYMBOL_GPL(tpm_pm_resume
);
971 #define TPM_GETRANDOM_RESULT_SIZE 18
972 static struct tpm_input_header tpm_getrandom_header
= {
973 .tag
= TPM_TAG_RQU_COMMAND
,
974 .length
= cpu_to_be32(14),
975 .ordinal
= TPM_ORD_GET_RANDOM
979 * tpm_get_random() - Get random bytes from the tpm's RNG
980 * @chip_num: A specific chip number for the request or TPM_ANY_NUM
981 * @out: destination buffer for the random bytes
982 * @max: the max number of bytes to write to @out
984 * Returns < 0 on error and the number of bytes read on success
986 int tpm_get_random(u32 chip_num
, u8
*out
, size_t max
)
988 struct tpm_chip
*chip
;
989 struct tpm_cmd_t tpm_cmd
;
990 u32 recd
, num_bytes
= min_t(u32
, max
, TPM_MAX_RNG_DATA
);
991 int err
, total
= 0, retries
= 5;
994 chip
= tpm_chip_find_get(chip_num
);
998 if (!out
|| !num_bytes
|| max
> TPM_MAX_RNG_DATA
)
1002 tpm_cmd
.header
.in
= tpm_getrandom_header
;
1003 tpm_cmd
.params
.getrandom_in
.num_bytes
= cpu_to_be32(num_bytes
);
1005 err
= 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
);
1019 return total
? total
: -EIO
;
1021 EXPORT_SYMBOL_GPL(tpm_get_random
);
1023 /* In case vendor provided release function, call it too.*/
1025 void tpm_dev_vendor_release(struct tpm_chip
*chip
)
1030 clear_bit(chip
->dev_num
, dev_mask
);
1032 EXPORT_SYMBOL_GPL(tpm_dev_vendor_release
);
1036 * Once all references to platform device are down to 0,
1037 * release all allocated structures.
1039 static void tpm_dev_release(struct device
*dev
)
1041 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
1046 tpm_dev_vendor_release(chip
);
1053 * Called from tpm_<specific>.c probe function only for devices
1054 * the driver has determined it should claim. Prior to calling
1055 * this function the specific probe function has called pci_enable_device
1056 * upon errant exit from this function specific probe function should call
1057 * pci_disable_device
1059 struct tpm_chip
*tpm_register_hardware(struct device
*dev
,
1060 const struct tpm_class_ops
*ops
)
1062 struct tpm_chip
*chip
;
1064 /* Driver specific per-device data */
1065 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
1070 mutex_init(&chip
->tpm_mutex
);
1071 INIT_LIST_HEAD(&chip
->list
);
1074 chip
->dev_num
= find_first_zero_bit(dev_mask
, TPM_NUM_DEVICES
);
1076 if (chip
->dev_num
>= TPM_NUM_DEVICES
) {
1077 dev_err(dev
, "No available tpm device numbers\n");
1081 set_bit(chip
->dev_num
, dev_mask
);
1083 scnprintf(chip
->devname
, sizeof(chip
->devname
), "%s%d", "tpm",
1086 chip
->dev
= get_device(dev
);
1087 chip
->release
= dev
->release
;
1088 dev
->release
= tpm_dev_release
;
1089 dev_set_drvdata(dev
, chip
);
1091 if (tpm_dev_add_device(chip
))
1094 if (tpm_sysfs_add_device(chip
))
1097 if (tpm_add_ppi(&dev
->kobj
))
1100 chip
->bios_dir
= tpm_bios_log_setup(chip
->devname
);
1102 /* Make chip available */
1103 spin_lock(&driver_lock
);
1104 list_add_rcu(&chip
->list
, &tpm_chip_list
);
1105 spin_unlock(&driver_lock
);
1110 tpm_dev_del_device(chip
);
1112 put_device(chip
->dev
);
1117 EXPORT_SYMBOL_GPL(tpm_register_hardware
);
1119 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1120 MODULE_DESCRIPTION("TPM Driver");
1121 MODULE_VERSION("2.0");
1122 MODULE_LICENSE("GPL");