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/mutex.h>
28 #include <linux/spinlock.h>
29 #include <linux/smp_lock.h>
34 TPM_MINOR = 224, /* officially assigned */
36 TPM_NUM_DEVICES = 256,
46 #define TPM_MAX_ORDINAL 243
47 #define TPM_MAX_PROTECTED_ORDINAL 12
48 #define TPM_PROTECTED_ORDINAL_MASK 0xFF
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_protected_ordinal_duration[TPM_MAX_PROTECTED_ORDINAL] = {
63 TPM_UNDEFINED, /* 0 */
68 TPM_UNDEFINED, /* 5 */
77 static const u8 tpm_ordinal_duration[TPM_MAX_ORDINAL] = {
78 TPM_UNDEFINED, /* 0 */
83 TPM_UNDEFINED, /* 5 */
133 TPM_UNDEFINED, /* 55 */
153 TPM_UNDEFINED, /* 75 */
163 TPM_UNDEFINED, /* 85 */
173 TPM_UNDEFINED, /* 95 */
178 TPM_MEDIUM, /* 100 */
183 TPM_UNDEFINED, /* 105 */
213 TPM_UNDEFINED, /* 135 */
223 TPM_UNDEFINED, /* 145 */
233 TPM_UNDEFINED, /* 155 */
243 TPM_UNDEFINED, /* 165 */
253 TPM_UNDEFINED, /* 175 */
258 TPM_MEDIUM, /* 180 */
263 TPM_MEDIUM, /* 185 */
268 TPM_UNDEFINED, /* 190 */
273 TPM_UNDEFINED, /* 195 */
288 TPM_MEDIUM, /* 210 */
293 TPM_UNDEFINED, /* 215 */
303 TPM_UNDEFINED, /* 225 */
313 TPM_UNDEFINED, /* 235 */
323 static void user_reader_timeout(unsigned long ptr)
325 struct tpm_chip *chip = (struct tpm_chip *) ptr;
327 schedule_work(&chip->work);
330 static void timeout_work(struct work_struct *work)
332 struct tpm_chip *chip = container_of(work, struct tpm_chip, work);
334 mutex_lock(&chip->buffer_mutex);
335 atomic_set(&chip->data_pending, 0);
336 memset(chip->data_buffer, 0, TPM_BUFSIZE);
337 mutex_unlock(&chip->buffer_mutex);
341 * Returns max number of jiffies to wait
343 unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip,
346 int duration_idx = TPM_UNDEFINED;
349 if (ordinal < TPM_MAX_ORDINAL)
350 duration_idx = tpm_ordinal_duration[ordinal];
351 else if ((ordinal & TPM_PROTECTED_ORDINAL_MASK) <
352 TPM_MAX_PROTECTED_ORDINAL)
354 tpm_protected_ordinal_duration[ordinal &
355 TPM_PROTECTED_ORDINAL_MASK];
357 if (duration_idx != TPM_UNDEFINED)
358 duration = chip->vendor.duration[duration_idx];
364 EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration);
367 * Internal kernel interface to transmit TPM commands
369 static ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf,
376 count = be32_to_cpu(*((__be32 *) (buf + 2)));
377 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
380 if (count > bufsiz) {
382 "invalid count value %x %zx \n", count, bufsiz);
386 mutex_lock(&chip->tpm_mutex);
388 if ((rc = chip->vendor.send(chip, (u8 *) buf, count)) < 0) {
390 "tpm_transmit: tpm_send: error %zd\n", rc);
394 if (chip->vendor.irq)
397 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
399 u8 status = chip->vendor.status(chip);
400 if ((status & chip->vendor.req_complete_mask) ==
401 chip->vendor.req_complete_val)
404 if ((status == chip->vendor.req_canceled)) {
405 dev_err(chip->dev, "Operation Canceled\n");
410 msleep(TPM_TIMEOUT); /* CHECK */
412 } while (time_before(jiffies, stop));
414 chip->vendor.cancel(chip);
415 dev_err(chip->dev, "Operation Timed out\n");
420 rc = chip->vendor.recv(chip, (u8 *) buf, bufsiz);
423 "tpm_transmit: tpm_recv: error %zd\n", rc);
425 mutex_unlock(&chip->tpm_mutex);
429 #define TPM_DIGEST_SIZE 20
430 #define TPM_ERROR_SIZE 10
431 #define TPM_RET_CODE_IDX 6
432 #define TPM_GET_CAP_RET_SIZE_IDX 10
433 #define TPM_GET_CAP_RET_UINT32_1_IDX 14
434 #define TPM_GET_CAP_RET_UINT32_2_IDX 18
435 #define TPM_GET_CAP_RET_UINT32_3_IDX 22
436 #define TPM_GET_CAP_RET_UINT32_4_IDX 26
437 #define TPM_GET_CAP_PERM_DISABLE_IDX 16
438 #define TPM_GET_CAP_PERM_INACTIVE_IDX 18
439 #define TPM_GET_CAP_RET_BOOL_1_IDX 14
440 #define TPM_GET_CAP_TEMP_INACTIVE_IDX 16
442 #define TPM_CAP_IDX 13
443 #define TPM_CAP_SUBCAP_IDX 21
445 enum tpm_capabilities {
450 enum tpm_sub_capabilities {
451 TPM_CAP_PROP_PCR = 0x1,
452 TPM_CAP_PROP_MANUFACTURER = 0x3,
453 TPM_CAP_FLAG_PERM = 0x8,
454 TPM_CAP_FLAG_VOL = 0x9,
455 TPM_CAP_PROP_OWNER = 0x11,
456 TPM_CAP_PROP_TIS_TIMEOUT = 0x15,
457 TPM_CAP_PROP_TIS_DURATION = 0x20,
461 * This is a semi generic GetCapability command for use
462 * with the capability type TPM_CAP_PROP or TPM_CAP_FLAG
463 * and their associated sub_capabilities.
466 static const u8 tpm_cap[] = {
467 0, 193, /* TPM_TAG_RQU_COMMAND */
468 0, 0, 0, 22, /* length */
469 0, 0, 0, 101, /* TPM_ORD_GetCapability */
470 0, 0, 0, 0, /* TPM_CAP_<TYPE> */
471 0, 0, 0, 4, /* TPM_CAP_SUB_<TYPE> size */
472 0, 0, 1, 0 /* TPM_CAP_SUB_<TYPE> */
475 static ssize_t transmit_cmd(struct tpm_chip *chip, u8 *data, int len,
480 len = tpm_transmit(chip, data, len);
483 if (len == TPM_ERROR_SIZE) {
484 err = be32_to_cpu(*((__be32 *) (data + TPM_RET_CODE_IDX)));
485 dev_dbg(chip->dev, "A TPM error (%d) occurred %s\n", err, desc);
491 void tpm_gen_interrupt(struct tpm_chip *chip)
493 u8 data[max_t(int, ARRAY_SIZE(tpm_cap), 30)];
496 memcpy(data, tpm_cap, sizeof(tpm_cap));
497 data[TPM_CAP_IDX] = TPM_CAP_PROP;
498 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_TIS_TIMEOUT;
500 rc = transmit_cmd(chip, data, sizeof(data),
501 "attempting to determine the timeouts");
503 EXPORT_SYMBOL_GPL(tpm_gen_interrupt);
505 void tpm_get_timeouts(struct tpm_chip *chip)
507 u8 data[max_t(int, ARRAY_SIZE(tpm_cap), 30)];
511 memcpy(data, tpm_cap, sizeof(tpm_cap));
512 data[TPM_CAP_IDX] = TPM_CAP_PROP;
513 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_TIS_TIMEOUT;
515 rc = transmit_cmd(chip, data, sizeof(data),
516 "attempting to determine the timeouts");
520 if (be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_SIZE_IDX)))
524 /* Don't overwrite default if value is 0 */
526 be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_UINT32_1_IDX)));
528 chip->vendor.timeout_a = msecs_to_jiffies(timeout);
530 be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_UINT32_2_IDX)));
532 chip->vendor.timeout_b = msecs_to_jiffies(timeout);
534 be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_UINT32_3_IDX)));
536 chip->vendor.timeout_c = msecs_to_jiffies(timeout);
538 be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_UINT32_4_IDX)));
540 chip->vendor.timeout_d = msecs_to_jiffies(timeout);
543 memcpy(data, tpm_cap, sizeof(tpm_cap));
544 data[TPM_CAP_IDX] = TPM_CAP_PROP;
545 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_TIS_DURATION;
547 rc = transmit_cmd(chip, data, sizeof(data),
548 "attempting to determine the durations");
552 if (be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_SIZE_IDX)))
556 chip->vendor.duration[TPM_SHORT] =
557 msecs_to_jiffies(be32_to_cpu
558 (*((__be32 *) (data +
559 TPM_GET_CAP_RET_UINT32_1_IDX))));
560 chip->vendor.duration[TPM_MEDIUM] =
561 msecs_to_jiffies(be32_to_cpu
562 (*((__be32 *) (data +
563 TPM_GET_CAP_RET_UINT32_2_IDX))));
564 chip->vendor.duration[TPM_LONG] =
565 msecs_to_jiffies(be32_to_cpu
566 (*((__be32 *) (data +
567 TPM_GET_CAP_RET_UINT32_3_IDX))));
569 EXPORT_SYMBOL_GPL(tpm_get_timeouts);
571 void tpm_continue_selftest(struct tpm_chip *chip)
574 0, 193, /* TPM_TAG_RQU_COMMAND */
575 0, 0, 0, 10, /* length */
576 0, 0, 0, 83, /* TPM_ORD_GetCapability */
579 tpm_transmit(chip, data, sizeof(data));
581 EXPORT_SYMBOL_GPL(tpm_continue_selftest);
583 #define TPM_INTERNAL_RESULT_SIZE 200
585 ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
591 struct tpm_chip *chip = dev_get_drvdata(dev);
595 data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
599 memcpy(data, tpm_cap, sizeof(tpm_cap));
600 data[TPM_CAP_IDX] = TPM_CAP_FLAG;
601 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_FLAG_PERM;
603 rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
604 "attemtping to determine the permanent enabled state");
610 rc = sprintf(buf, "%d\n", !data[TPM_GET_CAP_PERM_DISABLE_IDX]);
615 EXPORT_SYMBOL_GPL(tpm_show_enabled);
617 ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
623 struct tpm_chip *chip = dev_get_drvdata(dev);
627 data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
631 memcpy(data, tpm_cap, sizeof(tpm_cap));
632 data[TPM_CAP_IDX] = TPM_CAP_FLAG;
633 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_FLAG_PERM;
635 rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
636 "attemtping to determine the permanent active state");
642 rc = sprintf(buf, "%d\n", !data[TPM_GET_CAP_PERM_INACTIVE_IDX]);
647 EXPORT_SYMBOL_GPL(tpm_show_active);
649 ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
655 struct tpm_chip *chip = dev_get_drvdata(dev);
659 data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
663 memcpy(data, tpm_cap, sizeof(tpm_cap));
664 data[TPM_CAP_IDX] = TPM_CAP_PROP;
665 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_OWNER;
667 rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
668 "attempting to determine the owner state");
674 rc = sprintf(buf, "%d\n", data[TPM_GET_CAP_RET_BOOL_1_IDX]);
679 EXPORT_SYMBOL_GPL(tpm_show_owned);
681 ssize_t tpm_show_temp_deactivated(struct device * dev,
682 struct device_attribute * attr, char *buf)
687 struct tpm_chip *chip = dev_get_drvdata(dev);
691 data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
695 memcpy(data, tpm_cap, sizeof(tpm_cap));
696 data[TPM_CAP_IDX] = TPM_CAP_FLAG;
697 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_FLAG_VOL;
699 rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
700 "attempting to determine the temporary state");
706 rc = sprintf(buf, "%d\n", data[TPM_GET_CAP_TEMP_INACTIVE_IDX]);
711 EXPORT_SYMBOL_GPL(tpm_show_temp_deactivated);
713 static const u8 pcrread[] = {
714 0, 193, /* TPM_TAG_RQU_COMMAND */
715 0, 0, 0, 14, /* length */
716 0, 0, 0, 21, /* TPM_ORD_PcrRead */
717 0, 0, 0, 0 /* PCR index */
720 ssize_t tpm_show_pcrs(struct device *dev, struct device_attribute *attr,
729 struct tpm_chip *chip = dev_get_drvdata(dev);
733 data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
737 memcpy(data, tpm_cap, sizeof(tpm_cap));
738 data[TPM_CAP_IDX] = TPM_CAP_PROP;
739 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_PCR;
741 rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
742 "attempting to determine the number of PCRS");
748 num_pcrs = be32_to_cpu(*((__be32 *) (data + 14)));
749 for (i = 0; i < num_pcrs; i++) {
750 memcpy(data, pcrread, sizeof(pcrread));
751 index = cpu_to_be32(i);
752 memcpy(data + 10, &index, 4);
753 rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
754 "attempting to read a PCR");
757 str += sprintf(str, "PCR-%02d: ", i);
758 for (j = 0; j < TPM_DIGEST_SIZE; j++)
759 str += sprintf(str, "%02X ", *(data + 10 + j));
760 str += sprintf(str, "\n");
766 EXPORT_SYMBOL_GPL(tpm_show_pcrs);
768 #define READ_PUBEK_RESULT_SIZE 314
769 static const u8 readpubek[] = {
770 0, 193, /* TPM_TAG_RQU_COMMAND */
771 0, 0, 0, 30, /* length */
772 0, 0, 0, 124, /* TPM_ORD_ReadPubek */
775 ssize_t tpm_show_pubek(struct device *dev, struct device_attribute *attr,
783 struct tpm_chip *chip = dev_get_drvdata(dev);
787 data = kzalloc(READ_PUBEK_RESULT_SIZE, GFP_KERNEL);
791 memcpy(data, readpubek, sizeof(readpubek));
793 err = transmit_cmd(chip, data, READ_PUBEK_RESULT_SIZE,
794 "attempting to read the PUBEK");
799 ignore header 10 bytes
800 algorithm 32 bits (1 == RSA )
803 parameters (RSA 12->bytes: keybit, #primes, expbit)
806 ignore checksum 20 bytes
811 "Algorithm: %02X %02X %02X %02X\nEncscheme: %02X %02X\n"
812 "Sigscheme: %02X %02X\nParameters: %02X %02X %02X %02X"
813 " %02X %02X %02X %02X %02X %02X %02X %02X\n"
814 "Modulus length: %d\nModulus: \n",
815 data[10], data[11], data[12], data[13], data[14],
816 data[15], data[16], data[17], data[22], data[23],
817 data[24], data[25], data[26], data[27], data[28],
818 data[29], data[30], data[31], data[32], data[33],
819 be32_to_cpu(*((__be32 *) (data + 34))));
821 for (i = 0; i < 256; i++) {
822 str += sprintf(str, "%02X ", data[i + 38]);
823 if ((i + 1) % 16 == 0)
824 str += sprintf(str, "\n");
831 EXPORT_SYMBOL_GPL(tpm_show_pubek);
833 #define CAP_VERSION_1_1 6
834 #define CAP_VERSION_1_2 0x1A
835 #define CAP_VERSION_IDX 13
836 static const u8 cap_version[] = {
837 0, 193, /* TPM_TAG_RQU_COMMAND */
838 0, 0, 0, 18, /* length */
839 0, 0, 0, 101, /* TPM_ORD_GetCapability */
844 ssize_t tpm_show_caps(struct device *dev, struct device_attribute *attr,
851 struct tpm_chip *chip = dev_get_drvdata(dev);
855 data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
859 memcpy(data, tpm_cap, sizeof(tpm_cap));
860 data[TPM_CAP_IDX] = TPM_CAP_PROP;
861 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_MANUFACTURER;
863 rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
864 "attempting to determine the manufacturer");
870 str += sprintf(str, "Manufacturer: 0x%x\n",
871 be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_UINT32_1_IDX))));
873 memcpy(data, cap_version, sizeof(cap_version));
874 data[CAP_VERSION_IDX] = CAP_VERSION_1_1;
875 rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
876 "attempting to determine the 1.1 version");
881 "TCG version: %d.%d\nFirmware version: %d.%d\n",
882 (int) data[14], (int) data[15], (int) data[16],
889 EXPORT_SYMBOL_GPL(tpm_show_caps);
891 ssize_t tpm_show_caps_1_2(struct device * dev,
892 struct device_attribute * attr, char *buf)
898 struct tpm_chip *chip = dev_get_drvdata(dev);
902 data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
906 memcpy(data, tpm_cap, sizeof(tpm_cap));
907 data[TPM_CAP_IDX] = TPM_CAP_PROP;
908 data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_MANUFACTURER;
910 len = tpm_transmit(chip, data, TPM_INTERNAL_RESULT_SIZE);
911 if (len <= TPM_ERROR_SIZE) {
912 dev_dbg(chip->dev, "A TPM error (%d) occurred "
913 "attempting to determine the manufacturer\n",
914 be32_to_cpu(*((__be32 *) (data + TPM_RET_CODE_IDX))));
919 str += sprintf(str, "Manufacturer: 0x%x\n",
920 be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_UINT32_1_IDX))));
922 memcpy(data, cap_version, sizeof(cap_version));
923 data[CAP_VERSION_IDX] = CAP_VERSION_1_2;
925 len = tpm_transmit(chip, data, TPM_INTERNAL_RESULT_SIZE);
926 if (len <= TPM_ERROR_SIZE) {
927 dev_err(chip->dev, "A TPM error (%d) occurred "
928 "attempting to determine the 1.2 version\n",
929 be32_to_cpu(*((__be32 *) (data + TPM_RET_CODE_IDX))));
933 "TCG version: %d.%d\nFirmware version: %d.%d\n",
934 (int) data[16], (int) data[17], (int) data[18],
941 EXPORT_SYMBOL_GPL(tpm_show_caps_1_2);
943 ssize_t tpm_store_cancel(struct device *dev, struct device_attribute *attr,
944 const char *buf, size_t count)
946 struct tpm_chip *chip = dev_get_drvdata(dev);
950 chip->vendor.cancel(chip);
953 EXPORT_SYMBOL_GPL(tpm_store_cancel);
956 * Device file system interface to the TPM
958 int tpm_open(struct inode *inode, struct file *file)
960 int rc = 0, minor = iminor(inode);
961 struct tpm_chip *chip = NULL, *pos;
964 spin_lock(&driver_lock);
966 list_for_each_entry(pos, &tpm_chip_list, list) {
967 if (pos->vendor.miscdev.minor == minor) {
978 if (chip->num_opens) {
979 dev_dbg(chip->dev, "Another process owns this TPM\n");
985 get_device(chip->dev);
987 spin_unlock(&driver_lock);
989 chip->data_buffer = kmalloc(TPM_BUFSIZE * sizeof(u8), GFP_KERNEL);
990 if (chip->data_buffer == NULL) {
992 put_device(chip->dev);
997 atomic_set(&chip->data_pending, 0);
999 file->private_data = chip;
1004 spin_unlock(&driver_lock);
1008 EXPORT_SYMBOL_GPL(tpm_open);
1010 int tpm_release(struct inode *inode, struct file *file)
1012 struct tpm_chip *chip = file->private_data;
1014 flush_scheduled_work();
1015 spin_lock(&driver_lock);
1016 file->private_data = NULL;
1017 del_singleshot_timer_sync(&chip->user_read_timer);
1018 atomic_set(&chip->data_pending, 0);
1020 put_device(chip->dev);
1021 kfree(chip->data_buffer);
1022 spin_unlock(&driver_lock);
1025 EXPORT_SYMBOL_GPL(tpm_release);
1027 ssize_t tpm_write(struct file *file, const char __user *buf,
1028 size_t size, loff_t *off)
1030 struct tpm_chip *chip = file->private_data;
1031 size_t in_size = size, out_size;
1033 /* cannot perform a write until the read has cleared
1034 either via tpm_read or a user_read_timer timeout */
1035 while (atomic_read(&chip->data_pending) != 0)
1036 msleep(TPM_TIMEOUT);
1038 mutex_lock(&chip->buffer_mutex);
1040 if (in_size > TPM_BUFSIZE)
1041 in_size = TPM_BUFSIZE;
1044 (chip->data_buffer, (void __user *) buf, in_size)) {
1045 mutex_unlock(&chip->buffer_mutex);
1049 /* atomic tpm command send and result receive */
1050 out_size = tpm_transmit(chip, chip->data_buffer, TPM_BUFSIZE);
1052 atomic_set(&chip->data_pending, out_size);
1053 mutex_unlock(&chip->buffer_mutex);
1055 /* Set a timeout by which the reader must come claim the result */
1056 mod_timer(&chip->user_read_timer, jiffies + (60 * HZ));
1060 EXPORT_SYMBOL_GPL(tpm_write);
1062 ssize_t tpm_read(struct file *file, char __user *buf,
1063 size_t size, loff_t *off)
1065 struct tpm_chip *chip = file->private_data;
1068 del_singleshot_timer_sync(&chip->user_read_timer);
1069 flush_scheduled_work();
1070 ret_size = atomic_read(&chip->data_pending);
1071 atomic_set(&chip->data_pending, 0);
1072 if (ret_size > 0) { /* relay data */
1073 if (size < ret_size)
1076 mutex_lock(&chip->buffer_mutex);
1077 if (copy_to_user(buf, chip->data_buffer, ret_size))
1079 mutex_unlock(&chip->buffer_mutex);
1084 EXPORT_SYMBOL_GPL(tpm_read);
1086 void tpm_remove_hardware(struct device *dev)
1088 struct tpm_chip *chip = dev_get_drvdata(dev);
1091 dev_err(dev, "No device data found\n");
1095 spin_lock(&driver_lock);
1097 list_del(&chip->list);
1099 spin_unlock(&driver_lock);
1101 misc_deregister(&chip->vendor.miscdev);
1103 sysfs_remove_group(&dev->kobj, chip->vendor.attr_group);
1104 tpm_bios_log_teardown(chip->bios_dir);
1106 /* write it this way to be explicit (chip->dev == dev) */
1107 put_device(chip->dev);
1109 EXPORT_SYMBOL_GPL(tpm_remove_hardware);
1112 * We are about to suspend. Save the TPM state
1113 * so that it can be restored.
1115 int tpm_pm_suspend(struct device *dev, pm_message_t pm_state)
1117 struct tpm_chip *chip = dev_get_drvdata(dev);
1119 0, 193, /* TPM_TAG_RQU_COMMAND */
1120 0, 0, 0, 10, /* blob length (in bytes) */
1121 0, 0, 0, 152 /* TPM_ORD_SaveState */
1127 tpm_transmit(chip, savestate, sizeof(savestate));
1130 EXPORT_SYMBOL_GPL(tpm_pm_suspend);
1133 * Resume from a power safe. The BIOS already restored
1136 int tpm_pm_resume(struct device *dev)
1138 struct tpm_chip *chip = dev_get_drvdata(dev);
1145 EXPORT_SYMBOL_GPL(tpm_pm_resume);
1148 * Once all references to platform device are down to 0,
1149 * release all allocated structures.
1150 * In case vendor provided release function,
1153 static void tpm_dev_release(struct device *dev)
1155 struct tpm_chip *chip = dev_get_drvdata(dev);
1157 if (chip->vendor.release)
1158 chip->vendor.release(dev);
1162 clear_bit(chip->dev_num, dev_mask);
1163 kfree(chip->vendor.miscdev.name);
1168 * Called from tpm_<specific>.c probe function only for devices
1169 * the driver has determined it should claim. Prior to calling
1170 * this function the specific probe function has called pci_enable_device
1171 * upon errant exit from this function specific probe function should call
1172 * pci_disable_device
1174 struct tpm_chip *tpm_register_hardware(struct device *dev, const struct tpm_vendor_specific
1177 #define DEVNAME_SIZE 7
1180 struct tpm_chip *chip;
1182 /* Driver specific per-device data */
1183 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1184 devname = kmalloc(DEVNAME_SIZE, GFP_KERNEL);
1186 if (chip == NULL || devname == NULL) {
1192 mutex_init(&chip->buffer_mutex);
1193 mutex_init(&chip->tpm_mutex);
1194 INIT_LIST_HEAD(&chip->list);
1196 INIT_WORK(&chip->work, timeout_work);
1198 setup_timer(&chip->user_read_timer, user_reader_timeout,
1199 (unsigned long)chip);
1201 memcpy(&chip->vendor, entry, sizeof(struct tpm_vendor_specific));
1203 chip->dev_num = find_first_zero_bit(dev_mask, TPM_NUM_DEVICES);
1205 if (chip->dev_num >= TPM_NUM_DEVICES) {
1206 dev_err(dev, "No available tpm device numbers\n");
1209 } else if (chip->dev_num == 0)
1210 chip->vendor.miscdev.minor = TPM_MINOR;
1212 chip->vendor.miscdev.minor = MISC_DYNAMIC_MINOR;
1214 set_bit(chip->dev_num, dev_mask);
1216 scnprintf(devname, DEVNAME_SIZE, "%s%d", "tpm", chip->dev_num);
1217 chip->vendor.miscdev.name = devname;
1219 chip->vendor.miscdev.parent = dev;
1220 chip->dev = get_device(dev);
1221 chip->release = dev->release;
1222 dev->release = tpm_dev_release;
1223 dev_set_drvdata(dev, chip);
1225 if (misc_register(&chip->vendor.miscdev)) {
1227 "unable to misc_register %s, minor %d\n",
1228 chip->vendor.miscdev.name,
1229 chip->vendor.miscdev.minor);
1230 put_device(chip->dev);
1234 spin_lock(&driver_lock);
1236 list_add(&chip->list, &tpm_chip_list);
1238 spin_unlock(&driver_lock);
1240 if (sysfs_create_group(&dev->kobj, chip->vendor.attr_group)) {
1241 list_del(&chip->list);
1242 misc_deregister(&chip->vendor.miscdev);
1243 put_device(chip->dev);
1247 chip->bios_dir = tpm_bios_log_setup(devname);
1251 EXPORT_SYMBOL_GPL(tpm_register_hardware);
1253 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1254 MODULE_DESCRIPTION("TPM Driver");
1255 MODULE_VERSION("2.0");
1256 MODULE_LICENSE("GPL");