diff options
author | Stefan Berger <stefanb@linux.vnet.ibm.com> | 2011-03-30 12:13:28 -0400 |
---|---|---|
committer | Rajiv Andrade <srajiv@linux.vnet.ibm.com> | 2011-07-12 17:53:08 -0400 |
commit | 6259210176510c64251a314ffb74834a790f09a0 (patch) | |
tree | 41cdcab9da0e98e93f1b30b31d58ca13abd3ca9b /drivers/char | |
parent | e3e1a1e169d4e7f73c60ded937ebe24526bc6427 (diff) |
tpm_tis: Add timeouts sysfs entry
Display the TPM's interface timeouts in a 'timeouts' sysfs entry. Display
the entries as having been adjusted when they were scaled due to their values
being reported in milliseconds rather than microseconds.
Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Signed-off-by: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tpm/tpm.c | 16 | ||||
-rw-r--r-- | drivers/char/tpm/tpm.h | 3 | ||||
-rw-r--r-- | drivers/char/tpm/tpm_tis.c | 4 |
3 files changed, 22 insertions, 1 deletions
diff --git a/drivers/char/tpm/tpm.c b/drivers/char/tpm/tpm.c index 533ae359cb28..873ef50aad90 100644 --- a/drivers/char/tpm/tpm.c +++ b/drivers/char/tpm/tpm.c | |||
@@ -557,6 +557,7 @@ void tpm_get_timeouts(struct tpm_chip *chip) | |||
557 | if (timeout && timeout < 1000) { | 557 | if (timeout && timeout < 1000) { |
558 | /* timeouts in msec rather usec */ | 558 | /* timeouts in msec rather usec */ |
559 | scale = 1000; | 559 | scale = 1000; |
560 | chip->vendor.timeout_adjusted = true; | ||
560 | } | 561 | } |
561 | if (timeout) | 562 | if (timeout) |
562 | chip->vendor.timeout_a = usecs_to_jiffies(timeout * scale); | 563 | chip->vendor.timeout_a = usecs_to_jiffies(timeout * scale); |
@@ -965,6 +966,21 @@ ssize_t tpm_show_durations(struct device *dev, struct device_attribute *attr, | |||
965 | } | 966 | } |
966 | EXPORT_SYMBOL_GPL(tpm_show_durations); | 967 | EXPORT_SYMBOL_GPL(tpm_show_durations); |
967 | 968 | ||
969 | ssize_t tpm_show_timeouts(struct device *dev, struct device_attribute *attr, | ||
970 | char *buf) | ||
971 | { | ||
972 | struct tpm_chip *chip = dev_get_drvdata(dev); | ||
973 | |||
974 | return sprintf(buf, "%d %d %d %d [%s]\n", | ||
975 | jiffies_to_usecs(chip->vendor.timeout_a), | ||
976 | jiffies_to_usecs(chip->vendor.timeout_b), | ||
977 | jiffies_to_usecs(chip->vendor.timeout_c), | ||
978 | jiffies_to_usecs(chip->vendor.timeout_d), | ||
979 | chip->vendor.timeout_adjusted | ||
980 | ? "adjusted" : "original"); | ||
981 | } | ||
982 | EXPORT_SYMBOL_GPL(tpm_show_timeouts); | ||
983 | |||
968 | ssize_t tpm_store_cancel(struct device *dev, struct device_attribute *attr, | 984 | ssize_t tpm_store_cancel(struct device *dev, struct device_attribute *attr, |
969 | const char *buf, size_t count) | 985 | const char *buf, size_t count) |
970 | { | 986 | { |
diff --git a/drivers/char/tpm/tpm.h b/drivers/char/tpm/tpm.h index 6fc797611ccb..c5e01c556233 100644 --- a/drivers/char/tpm/tpm.h +++ b/drivers/char/tpm/tpm.h | |||
@@ -58,6 +58,8 @@ extern ssize_t tpm_show_temp_deactivated(struct device *, | |||
58 | struct device_attribute *attr, char *); | 58 | struct device_attribute *attr, char *); |
59 | extern ssize_t tpm_show_durations(struct device *, | 59 | extern ssize_t tpm_show_durations(struct device *, |
60 | struct device_attribute *attr, char *); | 60 | struct device_attribute *attr, char *); |
61 | extern ssize_t tpm_show_timeouts(struct device *, | ||
62 | struct device_attribute *attr, char *); | ||
61 | 63 | ||
62 | struct tpm_chip; | 64 | struct tpm_chip; |
63 | 65 | ||
@@ -83,6 +85,7 @@ struct tpm_vendor_specific { | |||
83 | struct list_head list; | 85 | struct list_head list; |
84 | int locality; | 86 | int locality; |
85 | unsigned long timeout_a, timeout_b, timeout_c, timeout_d; /* jiffies */ | 87 | unsigned long timeout_a, timeout_b, timeout_c, timeout_d; /* jiffies */ |
88 | bool timeout_adjusted; | ||
86 | unsigned long duration[3]; /* jiffies */ | 89 | unsigned long duration[3]; /* jiffies */ |
87 | bool duration_adjusted; | 90 | bool duration_adjusted; |
88 | 91 | ||
diff --git a/drivers/char/tpm/tpm_tis.c b/drivers/char/tpm/tpm_tis.c index e15b30d49543..a84108cd932f 100644 --- a/drivers/char/tpm/tpm_tis.c +++ b/drivers/char/tpm/tpm_tis.c | |||
@@ -377,6 +377,7 @@ static DEVICE_ATTR(temp_deactivated, S_IRUGO, tpm_show_temp_deactivated, | |||
377 | static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps_1_2, NULL); | 377 | static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps_1_2, NULL); |
378 | static DEVICE_ATTR(cancel, S_IWUSR | S_IWGRP, NULL, tpm_store_cancel); | 378 | static DEVICE_ATTR(cancel, S_IWUSR | S_IWGRP, NULL, tpm_store_cancel); |
379 | static DEVICE_ATTR(durations, S_IRUGO, tpm_show_durations, NULL); | 379 | static DEVICE_ATTR(durations, S_IRUGO, tpm_show_durations, NULL); |
380 | static DEVICE_ATTR(timeouts, S_IRUGO, tpm_show_timeouts, NULL); | ||
380 | 381 | ||
381 | static struct attribute *tis_attrs[] = { | 382 | static struct attribute *tis_attrs[] = { |
382 | &dev_attr_pubek.attr, | 383 | &dev_attr_pubek.attr, |
@@ -387,7 +388,8 @@ static struct attribute *tis_attrs[] = { | |||
387 | &dev_attr_temp_deactivated.attr, | 388 | &dev_attr_temp_deactivated.attr, |
388 | &dev_attr_caps.attr, | 389 | &dev_attr_caps.attr, |
389 | &dev_attr_cancel.attr, | 390 | &dev_attr_cancel.attr, |
390 | &dev_attr_durations.attr, NULL, | 391 | &dev_attr_durations.attr, |
392 | &dev_attr_timeouts.attr, NULL, | ||
391 | }; | 393 | }; |
392 | 394 | ||
393 | static struct attribute_group tis_attr_grp = { | 395 | static struct attribute_group tis_attr_grp = { |