Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2004 IBM Corporation |
| 3 | * |
| 4 | * Authors: |
| 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> |
| 9 | * |
Kent Yoder | 8e81cc1 | 2007-08-22 14:01:04 -0700 | [diff] [blame] | 10 | * Maintained by: <tpmdd-devel@lists.sourceforge.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 12 | * Device driver for TCG/TCPA TPM (trusted platform module). |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 13 | * Specifications at www.trustedcomputinggroup.org |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | * |
| 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 |
| 18 | * License. |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 19 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | * Note, the TPM chip is not interrupt driven (only polling) |
| 21 | * and can have very long timeouts (minutes!). Hence the unusual |
Nishanth Aravamudan | 700d8bd | 2005-06-23 22:01:47 -0700 | [diff] [blame] | 22 | * calls to msleep. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | * |
| 24 | */ |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/poll.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Matthias Kaehlcke | d081d47 | 2007-05-08 00:32:02 -0700 | [diff] [blame] | 28 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/spinlock.h> |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 30 | #include <linux/freezer.h> |
Matthias Kaehlcke | d081d47 | 2007-05-08 00:32:02 -0700 | [diff] [blame] | 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include "tpm.h" |
Kent Yoder | e5dcd87 | 2012-07-11 10:08:12 -0500 | [diff] [blame] | 33 | #include "tpm_eventlog.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 35 | #define TPM_MAX_ORDINAL 243 |
Peter Huewe | 07b133e | 2012-11-16 00:31:29 +0100 | [diff] [blame] | 36 | #define TSC_MAX_ORDINAL 12 |
| 37 | #define TPM_PROTECTED_COMMAND 0x00 |
| 38 | #define TPM_CONNECTION_COMMAND 0x40 |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 39 | |
Dmitry Torokhov | 9b3056c | 2010-10-01 14:16:39 -0700 | [diff] [blame] | 40 | /* |
| 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. |
| 44 | */ |
| 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."); |
| 49 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | static LIST_HEAD(tpm_chip_list); |
| 51 | static DEFINE_SPINLOCK(driver_lock); |
Kylene Jo Hall | 10685a9 | 2006-04-22 02:38:32 -0700 | [diff] [blame] | 52 | static DECLARE_BITMAP(dev_mask, TPM_NUM_DEVICES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 54 | /* |
| 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. |
| 61 | */ |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 62 | static const u8 tpm_ordinal_duration[TPM_MAX_ORDINAL] = { |
| 63 | TPM_UNDEFINED, /* 0 */ |
| 64 | TPM_UNDEFINED, |
| 65 | TPM_UNDEFINED, |
| 66 | TPM_UNDEFINED, |
| 67 | TPM_UNDEFINED, |
| 68 | TPM_UNDEFINED, /* 5 */ |
| 69 | TPM_UNDEFINED, |
| 70 | TPM_UNDEFINED, |
| 71 | TPM_UNDEFINED, |
| 72 | TPM_UNDEFINED, |
| 73 | TPM_SHORT, /* 10 */ |
| 74 | TPM_SHORT, |
| 75 | TPM_MEDIUM, |
| 76 | TPM_LONG, |
| 77 | TPM_LONG, |
| 78 | TPM_MEDIUM, /* 15 */ |
| 79 | TPM_SHORT, |
| 80 | TPM_SHORT, |
| 81 | TPM_MEDIUM, |
| 82 | TPM_LONG, |
| 83 | TPM_SHORT, /* 20 */ |
| 84 | TPM_SHORT, |
| 85 | TPM_MEDIUM, |
| 86 | TPM_MEDIUM, |
| 87 | TPM_MEDIUM, |
| 88 | TPM_SHORT, /* 25 */ |
| 89 | TPM_SHORT, |
| 90 | TPM_MEDIUM, |
| 91 | TPM_SHORT, |
| 92 | TPM_SHORT, |
| 93 | TPM_MEDIUM, /* 30 */ |
| 94 | TPM_LONG, |
| 95 | TPM_MEDIUM, |
| 96 | TPM_SHORT, |
| 97 | TPM_SHORT, |
| 98 | TPM_SHORT, /* 35 */ |
| 99 | TPM_MEDIUM, |
| 100 | TPM_MEDIUM, |
| 101 | TPM_UNDEFINED, |
| 102 | TPM_UNDEFINED, |
| 103 | TPM_MEDIUM, /* 40 */ |
| 104 | TPM_LONG, |
| 105 | TPM_MEDIUM, |
| 106 | TPM_SHORT, |
| 107 | TPM_SHORT, |
| 108 | TPM_SHORT, /* 45 */ |
| 109 | TPM_SHORT, |
| 110 | TPM_SHORT, |
| 111 | TPM_SHORT, |
| 112 | TPM_LONG, |
| 113 | TPM_MEDIUM, /* 50 */ |
| 114 | TPM_MEDIUM, |
| 115 | TPM_UNDEFINED, |
| 116 | TPM_UNDEFINED, |
| 117 | TPM_UNDEFINED, |
| 118 | TPM_UNDEFINED, /* 55 */ |
| 119 | TPM_UNDEFINED, |
| 120 | TPM_UNDEFINED, |
| 121 | TPM_UNDEFINED, |
| 122 | TPM_UNDEFINED, |
| 123 | TPM_MEDIUM, /* 60 */ |
| 124 | TPM_MEDIUM, |
| 125 | TPM_MEDIUM, |
| 126 | TPM_SHORT, |
| 127 | TPM_SHORT, |
| 128 | TPM_MEDIUM, /* 65 */ |
| 129 | TPM_UNDEFINED, |
| 130 | TPM_UNDEFINED, |
| 131 | TPM_UNDEFINED, |
| 132 | TPM_UNDEFINED, |
| 133 | TPM_SHORT, /* 70 */ |
| 134 | TPM_SHORT, |
| 135 | TPM_UNDEFINED, |
| 136 | TPM_UNDEFINED, |
| 137 | TPM_UNDEFINED, |
| 138 | TPM_UNDEFINED, /* 75 */ |
| 139 | TPM_UNDEFINED, |
| 140 | TPM_UNDEFINED, |
| 141 | TPM_UNDEFINED, |
| 142 | TPM_UNDEFINED, |
| 143 | TPM_LONG, /* 80 */ |
| 144 | TPM_UNDEFINED, |
| 145 | TPM_MEDIUM, |
| 146 | TPM_LONG, |
| 147 | TPM_SHORT, |
| 148 | TPM_UNDEFINED, /* 85 */ |
| 149 | TPM_UNDEFINED, |
| 150 | TPM_UNDEFINED, |
| 151 | TPM_UNDEFINED, |
| 152 | TPM_UNDEFINED, |
| 153 | TPM_SHORT, /* 90 */ |
| 154 | TPM_SHORT, |
| 155 | TPM_SHORT, |
| 156 | TPM_SHORT, |
| 157 | TPM_SHORT, |
| 158 | TPM_UNDEFINED, /* 95 */ |
| 159 | TPM_UNDEFINED, |
| 160 | TPM_UNDEFINED, |
| 161 | TPM_UNDEFINED, |
| 162 | TPM_UNDEFINED, |
| 163 | TPM_MEDIUM, /* 100 */ |
| 164 | TPM_SHORT, |
| 165 | TPM_SHORT, |
| 166 | TPM_UNDEFINED, |
| 167 | TPM_UNDEFINED, |
| 168 | TPM_UNDEFINED, /* 105 */ |
| 169 | TPM_UNDEFINED, |
| 170 | TPM_UNDEFINED, |
| 171 | TPM_UNDEFINED, |
| 172 | TPM_UNDEFINED, |
| 173 | TPM_SHORT, /* 110 */ |
| 174 | TPM_SHORT, |
| 175 | TPM_SHORT, |
| 176 | TPM_SHORT, |
| 177 | TPM_SHORT, |
| 178 | TPM_SHORT, /* 115 */ |
| 179 | TPM_SHORT, |
| 180 | TPM_SHORT, |
| 181 | TPM_UNDEFINED, |
| 182 | TPM_UNDEFINED, |
| 183 | TPM_LONG, /* 120 */ |
| 184 | TPM_LONG, |
| 185 | TPM_MEDIUM, |
| 186 | TPM_UNDEFINED, |
| 187 | TPM_SHORT, |
| 188 | TPM_SHORT, /* 125 */ |
| 189 | TPM_SHORT, |
| 190 | TPM_LONG, |
| 191 | TPM_SHORT, |
| 192 | TPM_SHORT, |
| 193 | TPM_SHORT, /* 130 */ |
| 194 | TPM_MEDIUM, |
| 195 | TPM_UNDEFINED, |
| 196 | TPM_SHORT, |
| 197 | TPM_MEDIUM, |
| 198 | TPM_UNDEFINED, /* 135 */ |
| 199 | TPM_UNDEFINED, |
| 200 | TPM_UNDEFINED, |
| 201 | TPM_UNDEFINED, |
| 202 | TPM_UNDEFINED, |
| 203 | TPM_SHORT, /* 140 */ |
| 204 | TPM_SHORT, |
| 205 | TPM_UNDEFINED, |
| 206 | TPM_UNDEFINED, |
| 207 | TPM_UNDEFINED, |
| 208 | TPM_UNDEFINED, /* 145 */ |
| 209 | TPM_UNDEFINED, |
| 210 | TPM_UNDEFINED, |
| 211 | TPM_UNDEFINED, |
| 212 | TPM_UNDEFINED, |
| 213 | TPM_SHORT, /* 150 */ |
| 214 | TPM_MEDIUM, |
| 215 | TPM_MEDIUM, |
| 216 | TPM_SHORT, |
| 217 | TPM_SHORT, |
| 218 | TPM_UNDEFINED, /* 155 */ |
| 219 | TPM_UNDEFINED, |
| 220 | TPM_UNDEFINED, |
| 221 | TPM_UNDEFINED, |
| 222 | TPM_UNDEFINED, |
| 223 | TPM_SHORT, /* 160 */ |
| 224 | TPM_SHORT, |
| 225 | TPM_SHORT, |
| 226 | TPM_SHORT, |
| 227 | TPM_UNDEFINED, |
| 228 | TPM_UNDEFINED, /* 165 */ |
| 229 | TPM_UNDEFINED, |
| 230 | TPM_UNDEFINED, |
| 231 | TPM_UNDEFINED, |
| 232 | TPM_UNDEFINED, |
| 233 | TPM_LONG, /* 170 */ |
| 234 | TPM_UNDEFINED, |
| 235 | TPM_UNDEFINED, |
| 236 | TPM_UNDEFINED, |
| 237 | TPM_UNDEFINED, |
| 238 | TPM_UNDEFINED, /* 175 */ |
| 239 | TPM_UNDEFINED, |
| 240 | TPM_UNDEFINED, |
| 241 | TPM_UNDEFINED, |
| 242 | TPM_UNDEFINED, |
| 243 | TPM_MEDIUM, /* 180 */ |
| 244 | TPM_SHORT, |
| 245 | TPM_MEDIUM, |
| 246 | TPM_MEDIUM, |
| 247 | TPM_MEDIUM, |
| 248 | TPM_MEDIUM, /* 185 */ |
| 249 | TPM_SHORT, |
| 250 | TPM_UNDEFINED, |
| 251 | TPM_UNDEFINED, |
| 252 | TPM_UNDEFINED, |
| 253 | TPM_UNDEFINED, /* 190 */ |
| 254 | TPM_UNDEFINED, |
| 255 | TPM_UNDEFINED, |
| 256 | TPM_UNDEFINED, |
| 257 | TPM_UNDEFINED, |
| 258 | TPM_UNDEFINED, /* 195 */ |
| 259 | TPM_UNDEFINED, |
| 260 | TPM_UNDEFINED, |
| 261 | TPM_UNDEFINED, |
| 262 | TPM_UNDEFINED, |
| 263 | TPM_SHORT, /* 200 */ |
| 264 | TPM_UNDEFINED, |
| 265 | TPM_UNDEFINED, |
| 266 | TPM_UNDEFINED, |
| 267 | TPM_SHORT, |
| 268 | TPM_SHORT, /* 205 */ |
| 269 | TPM_SHORT, |
| 270 | TPM_SHORT, |
| 271 | TPM_SHORT, |
| 272 | TPM_SHORT, |
| 273 | TPM_MEDIUM, /* 210 */ |
| 274 | TPM_UNDEFINED, |
| 275 | TPM_MEDIUM, |
| 276 | TPM_MEDIUM, |
| 277 | TPM_MEDIUM, |
| 278 | TPM_UNDEFINED, /* 215 */ |
| 279 | TPM_MEDIUM, |
| 280 | TPM_UNDEFINED, |
| 281 | TPM_UNDEFINED, |
| 282 | TPM_SHORT, |
| 283 | TPM_SHORT, /* 220 */ |
| 284 | TPM_SHORT, |
| 285 | TPM_SHORT, |
| 286 | TPM_SHORT, |
| 287 | TPM_SHORT, |
| 288 | TPM_UNDEFINED, /* 225 */ |
| 289 | TPM_UNDEFINED, |
| 290 | TPM_UNDEFINED, |
| 291 | TPM_UNDEFINED, |
| 292 | TPM_UNDEFINED, |
| 293 | TPM_SHORT, /* 230 */ |
| 294 | TPM_LONG, |
| 295 | TPM_MEDIUM, |
| 296 | TPM_UNDEFINED, |
| 297 | TPM_UNDEFINED, |
| 298 | TPM_UNDEFINED, /* 235 */ |
| 299 | TPM_UNDEFINED, |
| 300 | TPM_UNDEFINED, |
| 301 | TPM_UNDEFINED, |
| 302 | TPM_UNDEFINED, |
| 303 | TPM_SHORT, /* 240 */ |
| 304 | TPM_UNDEFINED, |
| 305 | TPM_MEDIUM, |
| 306 | }; |
| 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | /* |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 309 | * Returns max number of jiffies to wait |
| 310 | */ |
| 311 | unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip, |
| 312 | u32 ordinal) |
| 313 | { |
| 314 | int duration_idx = TPM_UNDEFINED; |
| 315 | int duration = 0; |
Peter Huewe | 07b133e | 2012-11-16 00:31:29 +0100 | [diff] [blame] | 316 | u8 category = (ordinal >> 24) & 0xFF; |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 317 | |
Peter Huewe | 07b133e | 2012-11-16 00:31:29 +0100 | [diff] [blame] | 318 | if ((category == TPM_PROTECTED_COMMAND && ordinal < TPM_MAX_ORDINAL) || |
| 319 | (category == TPM_CONNECTION_COMMAND && ordinal < TSC_MAX_ORDINAL)) |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 320 | duration_idx = tpm_ordinal_duration[ordinal]; |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 321 | |
Linus Torvalds | 8d1dc20 | 2011-03-01 13:23:27 -0800 | [diff] [blame] | 322 | if (duration_idx != TPM_UNDEFINED) |
Kylene Jo Hall | 36b2002 | 2006-04-22 02:38:19 -0700 | [diff] [blame] | 323 | duration = chip->vendor.duration[duration_idx]; |
Linus Torvalds | 8d1dc20 | 2011-03-01 13:23:27 -0800 | [diff] [blame] | 324 | if (duration <= 0) |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 325 | return 2 * 60 * HZ; |
Linus Torvalds | 8d1dc20 | 2011-03-01 13:23:27 -0800 | [diff] [blame] | 326 | else |
| 327 | return duration; |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 328 | } |
| 329 | EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration); |
| 330 | |
| 331 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | * Internal kernel interface to transmit TPM commands |
| 333 | */ |
Jason Gunthorpe | afdba32 | 2013-11-26 13:30:40 -0700 | [diff] [blame] | 334 | ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf, |
| 335 | size_t bufsiz) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | { |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 337 | ssize_t rc; |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 338 | u32 count, ordinal; |
Nishanth Aravamudan | 700d8bd | 2005-06-23 22:01:47 -0700 | [diff] [blame] | 339 | unsigned long stop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | |
Peter Huewe | 6b07d30 | 2011-09-15 14:37:43 -0300 | [diff] [blame] | 341 | if (bufsiz > TPM_BUFSIZE) |
| 342 | bufsiz = TPM_BUFSIZE; |
| 343 | |
Kylene Hall | 81179bb | 2005-06-23 22:01:59 -0700 | [diff] [blame] | 344 | count = be32_to_cpu(*((__be32 *) (buf + 2))); |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 345 | ordinal = be32_to_cpu(*((__be32 *) (buf + 6))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | if (count == 0) |
| 347 | return -ENODATA; |
| 348 | if (count > bufsiz) { |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 349 | dev_err(chip->dev, |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 350 | "invalid count value %x %zx\n", count, bufsiz); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | return -E2BIG; |
| 352 | } |
| 353 | |
Matthias Kaehlcke | d081d47 | 2007-05-08 00:32:02 -0700 | [diff] [blame] | 354 | mutex_lock(&chip->tpm_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 356 | rc = chip->ops->send(chip, (u8 *) buf, count); |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 357 | if (rc < 0) { |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 358 | dev_err(chip->dev, |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 359 | "tpm_transmit: tpm_send: error %zd\n", rc); |
| 360 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } |
| 362 | |
Leendert van Doorn | 27084ef | 2006-04-22 02:38:03 -0700 | [diff] [blame] | 363 | if (chip->vendor.irq) |
| 364 | goto out_recv; |
| 365 | |
Kylene Jo Hall | 9e18ee1 | 2006-04-22 02:37:38 -0700 | [diff] [blame] | 366 | stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | do { |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 368 | u8 status = chip->ops->status(chip); |
| 369 | if ((status & chip->ops->req_complete_mask) == |
| 370 | chip->ops->req_complete_val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | goto out_recv; |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 372 | |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 373 | if (chip->ops->req_canceled(chip, status)) { |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 374 | dev_err(chip->dev, "Operation Canceled\n"); |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 375 | rc = -ECANCELED; |
| 376 | goto out; |
| 377 | } |
| 378 | |
| 379 | msleep(TPM_TIMEOUT); /* CHECK */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | rmb(); |
Nishanth Aravamudan | 700d8bd | 2005-06-23 22:01:47 -0700 | [diff] [blame] | 381 | } while (time_before(jiffies, stop)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 383 | chip->ops->cancel(chip); |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 384 | dev_err(chip->dev, "Operation Timed out\n"); |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 385 | rc = -ETIME; |
| 386 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
| 388 | out_recv: |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 389 | rc = chip->ops->recv(chip, (u8 *) buf, bufsiz); |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 390 | if (rc < 0) |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 391 | dev_err(chip->dev, |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 392 | "tpm_transmit: tpm_recv: error %zd\n", rc); |
| 393 | out: |
Matthias Kaehlcke | d081d47 | 2007-05-08 00:32:02 -0700 | [diff] [blame] | 394 | mutex_unlock(&chip->tpm_mutex); |
Kylene Hall | d9e5b6b | 2005-06-23 22:02:02 -0700 | [diff] [blame] | 395 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | #define TPM_DIGEST_SIZE 20 |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 399 | #define TPM_RET_CODE_IDX 6 |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 400 | |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 401 | static ssize_t transmit_cmd(struct tpm_chip *chip, struct tpm_cmd_t *cmd, |
| 402 | int len, const char *desc) |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 403 | { |
| 404 | int err; |
| 405 | |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 406 | len = tpm_transmit(chip, (u8 *) cmd, len); |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 407 | if (len < 0) |
| 408 | return len; |
Rajiv Andrade | b9e3238 | 2011-11-01 17:00:52 -0200 | [diff] [blame] | 409 | else if (len < TPM_HEADER_SIZE) |
| 410 | return -EFAULT; |
| 411 | |
| 412 | err = be32_to_cpu(cmd->header.out.return_code); |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 413 | if (err != 0 && desc) |
Rajiv Andrade | b9e3238 | 2011-11-01 17:00:52 -0200 | [diff] [blame] | 414 | dev_err(chip->dev, "A TPM error (%d) occurred %s\n", err, desc); |
| 415 | |
| 416 | return err; |
Kylene Jo Hall | beed53a | 2006-04-22 02:37:05 -0700 | [diff] [blame] | 417 | } |
| 418 | |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 419 | #define TPM_INTERNAL_RESULT_SIZE 200 |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 420 | #define TPM_ORD_GET_CAP cpu_to_be32(101) |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 421 | #define TPM_ORD_GET_RANDOM cpu_to_be32(70) |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 422 | |
| 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 |
| 427 | }; |
| 428 | |
| 429 | ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap, |
| 430 | const char *desc) |
| 431 | { |
| 432 | struct tpm_cmd_t tpm_cmd; |
| 433 | int rc; |
| 434 | struct tpm_chip *chip = dev_get_drvdata(dev); |
| 435 | |
| 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)); |
| 442 | } else { |
| 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; |
| 446 | else |
| 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; |
| 450 | } |
| 451 | rc = transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, desc); |
| 452 | if (!rc) |
| 453 | *cap = tpm_cmd.params.getcap_out.cap; |
| 454 | return rc; |
| 455 | } |
| 456 | |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 457 | void tpm_gen_interrupt(struct tpm_chip *chip) |
| 458 | { |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 459 | struct tpm_cmd_t tpm_cmd; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 460 | ssize_t rc; |
| 461 | |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 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; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 466 | |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 467 | rc = transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 468 | "attempting to determine the timeouts"); |
| 469 | } |
| 470 | EXPORT_SYMBOL_GPL(tpm_gen_interrupt); |
| 471 | |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 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 |
| 480 | }; |
| 481 | |
| 482 | static int tpm_startup(struct tpm_chip *chip, __be16 startup_type) |
| 483 | { |
| 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"); |
| 489 | } |
| 490 | |
Stefan Berger | 2b30a90 | 2011-11-11 12:57:02 -0500 | [diff] [blame] | 491 | int tpm_get_timeouts(struct tpm_chip *chip) |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 492 | { |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 493 | struct tpm_cmd_t tpm_cmd; |
| 494 | struct timeout_t *timeout_cap; |
| 495 | struct duration_t *duration_cap; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 496 | ssize_t rc; |
| 497 | u32 timeout; |
Stefan Berger | e3e1a1e | 2011-03-30 12:13:27 -0400 | [diff] [blame] | 498 | unsigned int scale = 1; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 499 | |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 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; |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 504 | rc = transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, NULL); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 505 | |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 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)) |
| 511 | return rc; |
| 512 | |
| 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, |
| 518 | NULL); |
| 519 | } |
| 520 | if (rc) { |
| 521 | dev_err(chip->dev, |
| 522 | "A TPM error (%zd) occurred attempting to determine the timeouts\n", |
| 523 | rc); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 524 | goto duration; |
Jason Gunthorpe | c584af1 | 2012-11-21 13:54:33 -0700 | [diff] [blame] | 525 | } |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 526 | |
Stefan Berger | 829bf06 | 2011-03-30 12:13:26 -0400 | [diff] [blame] | 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)) |
Stefan Berger | 2b30a90 | 2011-11-11 12:57:02 -0500 | [diff] [blame] | 530 | return -EINVAL; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 531 | |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 532 | timeout_cap = &tpm_cmd.params.getcap_out.cap.timeout; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 533 | /* Don't overwrite default if value is 0 */ |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 534 | timeout = be32_to_cpu(timeout_cap->a); |
Stefan Berger | e3e1a1e | 2011-03-30 12:13:27 -0400 | [diff] [blame] | 535 | if (timeout && timeout < 1000) { |
| 536 | /* timeouts in msec rather usec */ |
| 537 | scale = 1000; |
Stefan Berger | 6259210 | 2011-03-30 12:13:28 -0400 | [diff] [blame] | 538 | chip->vendor.timeout_adjusted = true; |
Stefan Berger | e3e1a1e | 2011-03-30 12:13:27 -0400 | [diff] [blame] | 539 | } |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 540 | if (timeout) |
Stefan Berger | e3e1a1e | 2011-03-30 12:13:27 -0400 | [diff] [blame] | 541 | chip->vendor.timeout_a = usecs_to_jiffies(timeout * scale); |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 542 | timeout = be32_to_cpu(timeout_cap->b); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 543 | if (timeout) |
Stefan Berger | e3e1a1e | 2011-03-30 12:13:27 -0400 | [diff] [blame] | 544 | chip->vendor.timeout_b = usecs_to_jiffies(timeout * scale); |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 545 | timeout = be32_to_cpu(timeout_cap->c); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 546 | if (timeout) |
Stefan Berger | e3e1a1e | 2011-03-30 12:13:27 -0400 | [diff] [blame] | 547 | chip->vendor.timeout_c = usecs_to_jiffies(timeout * scale); |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 548 | timeout = be32_to_cpu(timeout_cap->d); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 549 | if (timeout) |
Stefan Berger | e3e1a1e | 2011-03-30 12:13:27 -0400 | [diff] [blame] | 550 | chip->vendor.timeout_d = usecs_to_jiffies(timeout * scale); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 551 | |
| 552 | duration: |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 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; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 557 | |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 558 | rc = transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 559 | "attempting to determine the durations"); |
| 560 | if (rc) |
Stefan Berger | 2b30a90 | 2011-11-11 12:57:02 -0500 | [diff] [blame] | 561 | return rc; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 562 | |
Stefan Berger | 979b140 | 2011-03-30 12:13:23 -0400 | [diff] [blame] | 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)) |
Stefan Berger | 2b30a90 | 2011-11-11 12:57:02 -0500 | [diff] [blame] | 566 | return -EINVAL; |
Stefan Berger | 979b140 | 2011-03-30 12:13:23 -0400 | [diff] [blame] | 567 | |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 568 | duration_cap = &tpm_cmd.params.getcap_out.cap.duration; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 569 | chip->vendor.duration[TPM_SHORT] = |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 570 | usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_short)); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 571 | chip->vendor.duration[TPM_MEDIUM] = |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 572 | usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_medium)); |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 573 | chip->vendor.duration[TPM_LONG] = |
Rajiv Andrade | 0883743 | 2009-02-02 15:23:43 -0200 | [diff] [blame] | 574 | usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_long)); |
Stefan Berger | e934acc | 2011-03-30 12:13:24 -0400 | [diff] [blame] | 575 | |
| 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. |
| 580 | */ |
| 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; |
Stefan Berger | 04ab229 | 2011-03-30 12:13:25 -0400 | [diff] [blame] | 585 | chip->vendor.duration_adjusted = true; |
Stefan Berger | e934acc | 2011-03-30 12:13:24 -0400 | [diff] [blame] | 586 | dev_info(chip->dev, "Adjusting TPM timeout parameters."); |
| 587 | } |
Stefan Berger | 2b30a90 | 2011-11-11 12:57:02 -0500 | [diff] [blame] | 588 | return 0; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 589 | } |
| 590 | EXPORT_SYMBOL_GPL(tpm_get_timeouts); |
| 591 | |
Stefan Berger | d97c6ad | 2011-11-11 12:57:03 -0500 | [diff] [blame] | 592 | #define TPM_ORD_CONTINUE_SELFTEST 83 |
| 593 | #define CONTINUE_SELFTEST_RESULT_SIZE 10 |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 594 | |
Stefan Berger | d97c6ad | 2011-11-11 12:57:03 -0500 | [diff] [blame] | 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), |
| 599 | }; |
| 600 | |
| 601 | /** |
| 602 | * tpm_continue_selftest -- run TPM's selftest |
| 603 | * @chip: TPM chip to use |
| 604 | * |
| 605 | * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing |
| 606 | * a TPM error code. |
| 607 | */ |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 608 | static int tpm_continue_selftest(struct tpm_chip *chip) |
Stefan Berger | d97c6ad | 2011-11-11 12:57:03 -0500 | [diff] [blame] | 609 | { |
| 610 | int rc; |
| 611 | struct tpm_cmd_t cmd; |
| 612 | |
| 613 | cmd.header.in = continue_selftest_header; |
| 614 | rc = transmit_cmd(chip, &cmd, CONTINUE_SELFTEST_RESULT_SIZE, |
| 615 | "continue selftest"); |
| 616 | return rc; |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 617 | } |
Kylene Jo Hall | 08e96e4 | 2006-04-22 02:37:50 -0700 | [diff] [blame] | 618 | |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 619 | /* |
| 620 | * tpm_chip_find_get - return tpm_chip for given chip number |
| 621 | */ |
| 622 | static struct tpm_chip *tpm_chip_find_get(int chip_num) |
| 623 | { |
Rajiv Andrade | 8920d5a | 2009-02-05 13:06:30 -0200 | [diff] [blame] | 624 | struct tpm_chip *pos, *chip = NULL; |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 625 | |
| 626 | rcu_read_lock(); |
| 627 | list_for_each_entry_rcu(pos, &tpm_chip_list, list) { |
| 628 | if (chip_num != TPM_ANY_NUM && chip_num != pos->dev_num) |
| 629 | continue; |
| 630 | |
Rajiv Andrade | 8920d5a | 2009-02-05 13:06:30 -0200 | [diff] [blame] | 631 | if (try_module_get(pos->dev->driver->owner)) { |
| 632 | chip = pos; |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 633 | break; |
Rajiv Andrade | 8920d5a | 2009-02-05 13:06:30 -0200 | [diff] [blame] | 634 | } |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 635 | } |
| 636 | rcu_read_unlock(); |
Rajiv Andrade | 8920d5a | 2009-02-05 13:06:30 -0200 | [diff] [blame] | 637 | return chip; |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 638 | } |
| 639 | |
| 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 646 | }; |
| 647 | |
Jason Gunthorpe | 000a07b | 2013-11-26 13:30:41 -0700 | [diff] [blame] | 648 | int tpm_pcr_read_dev(struct tpm_chip *chip, int pcr_idx, u8 *res_buf) |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 649 | { |
| 650 | int rc; |
| 651 | struct tpm_cmd_t cmd; |
| 652 | |
| 653 | cmd.header.in = pcrread_header; |
| 654 | cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx); |
Rajiv Andrade | 23acb98 | 2009-09-30 12:26:55 -0300 | [diff] [blame] | 655 | rc = transmit_cmd(chip, &cmd, READ_PCR_RESULT_SIZE, |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 656 | "attempting to read a pcr value"); |
| 657 | |
| 658 | if (rc == 0) |
| 659 | memcpy(res_buf, cmd.params.pcrread_out.pcr_result, |
| 660 | TPM_DIGEST_SIZE); |
| 661 | return rc; |
| 662 | } |
| 663 | |
| 664 | /** |
| 665 | * tpm_pcr_read - read a pcr value |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 666 | * @chip_num: tpm idx # or ANY |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 667 | * @pcr_idx: pcr idx to retrieve |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 668 | * @res_buf: TPM_PCR value |
| 669 | * size of res_buf is 20 bytes (or NULL if you don't care) |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 670 | * |
| 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. |
| 674 | */ |
| 675 | int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf) |
| 676 | { |
| 677 | struct tpm_chip *chip; |
| 678 | int rc; |
| 679 | |
| 680 | chip = tpm_chip_find_get(chip_num); |
| 681 | if (chip == NULL) |
| 682 | return -ENODEV; |
Jason Gunthorpe | 000a07b | 2013-11-26 13:30:41 -0700 | [diff] [blame] | 683 | rc = tpm_pcr_read_dev(chip, pcr_idx, res_buf); |
Mimi Zohar | a0e3934 | 2010-11-23 17:50:32 -0500 | [diff] [blame] | 684 | tpm_chip_put(chip); |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 685 | return rc; |
| 686 | } |
| 687 | EXPORT_SYMBOL_GPL(tpm_pcr_read); |
| 688 | |
| 689 | /** |
| 690 | * tpm_pcr_extend - extend pcr value with hash |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 691 | * @chip_num: tpm idx # or AN& |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 692 | * @pcr_idx: pcr idx to extend |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 693 | * @hash: hash value used to extend pcr value |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 694 | * |
| 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. |
| 698 | */ |
| 699 | #define TPM_ORD_PCR_EXTEND cpu_to_be32(20) |
Jason Gunthorpe | 0afd905 | 2009-09-18 12:54:24 -0700 | [diff] [blame] | 700 | #define EXTEND_PCR_RESULT_SIZE 34 |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 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 |
| 705 | }; |
| 706 | |
| 707 | int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash) |
| 708 | { |
| 709 | struct tpm_cmd_t cmd; |
| 710 | int rc; |
| 711 | struct tpm_chip *chip; |
| 712 | |
| 713 | chip = tpm_chip_find_get(chip_num); |
| 714 | if (chip == NULL) |
| 715 | return -ENODEV; |
| 716 | |
| 717 | cmd.header.in = pcrextend_header; |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 718 | cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx); |
| 719 | memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE); |
Jason Gunthorpe | 0afd905 | 2009-09-18 12:54:24 -0700 | [diff] [blame] | 720 | rc = transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 721 | "attempting extend a PCR value"); |
| 722 | |
Mimi Zohar | a0e3934 | 2010-11-23 17:50:32 -0500 | [diff] [blame] | 723 | tpm_chip_put(chip); |
Rajiv Andrade | 659aaf2 | 2009-02-02 15:23:44 -0200 | [diff] [blame] | 724 | return rc; |
| 725 | } |
| 726 | EXPORT_SYMBOL_GPL(tpm_pcr_extend); |
| 727 | |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 728 | /** |
| 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 |
| 732 | * |
| 733 | * Returns 0 on success, < 0 in case of fatal error or a value > 0 representing |
| 734 | * a TPM error code. |
| 735 | */ |
| 736 | int tpm_do_selftest(struct tpm_chip *chip) |
| 737 | { |
| 738 | int rc; |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 739 | unsigned int loops; |
Jason Gunthorpe | 4643826 | 2012-11-21 13:15:54 -0800 | [diff] [blame] | 740 | unsigned int delay_msec = 100; |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 741 | unsigned long duration; |
Rajiv Andrade | 24ebe66 | 2012-04-24 17:38:17 -0300 | [diff] [blame] | 742 | struct tpm_cmd_t cmd; |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 743 | |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 744 | duration = tpm_calc_ordinal_duration(chip, TPM_ORD_CONTINUE_SELFTEST); |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 745 | |
| 746 | loops = jiffies_to_msecs(duration) / delay_msec; |
| 747 | |
| 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) |
| 751 | */ |
| 752 | if (rc) |
| 753 | return rc; |
| 754 | |
| 755 | do { |
Rajiv Andrade | 24ebe66 | 2012-04-24 17:38:17 -0300 | [diff] [blame] | 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); |
Jason Gunthorpe | 4643826 | 2012-11-21 13:15:54 -0800 | [diff] [blame] | 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. */ |
| 763 | if (rc == -ETIME) { |
| 764 | dev_info(chip->dev, HW_ERR "TPM command timed out during continue self test"); |
| 765 | msleep(delay_msec); |
| 766 | continue; |
| 767 | } |
Rajiv Andrade | 24ebe66 | 2012-04-24 17:38:17 -0300 | [diff] [blame] | 768 | |
| 769 | if (rc < TPM_HEADER_SIZE) |
| 770 | return -EFAULT; |
| 771 | |
| 772 | rc = be32_to_cpu(cmd.header.out.return_code); |
Stefan Berger | be40541 | 2012-01-17 22:07:30 -0500 | [diff] [blame] | 773 | if (rc == TPM_ERR_DISABLED || rc == TPM_ERR_DEACTIVATED) { |
| 774 | dev_info(chip->dev, |
| 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 |
| 779 | */ |
| 780 | return 0; |
| 781 | } |
Stefan Berger | 68d6e67 | 2011-11-11 12:57:04 -0500 | [diff] [blame] | 782 | if (rc != TPM_WARN_DOING_SELFTEST) |
| 783 | return rc; |
| 784 | msleep(delay_msec); |
| 785 | } while (--loops > 0); |
| 786 | |
| 787 | return rc; |
| 788 | } |
| 789 | EXPORT_SYMBOL_GPL(tpm_do_selftest); |
| 790 | |
Mimi Zohar | c749ba9 | 2010-11-23 18:54:16 -0500 | [diff] [blame] | 791 | int tpm_send(u32 chip_num, void *cmd, size_t buflen) |
| 792 | { |
| 793 | struct tpm_chip *chip; |
| 794 | int rc; |
| 795 | |
| 796 | chip = tpm_chip_find_get(chip_num); |
| 797 | if (chip == NULL) |
| 798 | return -ENODEV; |
| 799 | |
| 800 | rc = transmit_cmd(chip, cmd, buflen, "attempting tpm_cmd"); |
| 801 | |
| 802 | tpm_chip_put(chip); |
| 803 | return rc; |
| 804 | } |
| 805 | EXPORT_SYMBOL_GPL(tpm_send); |
| 806 | |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 807 | static bool wait_for_tpm_stat_cond(struct tpm_chip *chip, u8 mask, |
| 808 | bool check_cancel, bool *canceled) |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 809 | { |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 810 | u8 status = chip->ops->status(chip); |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 811 | |
| 812 | *canceled = false; |
| 813 | if ((status & mask) == mask) |
| 814 | return true; |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 815 | if (check_cancel && chip->ops->req_canceled(chip, status)) { |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 816 | *canceled = true; |
| 817 | return true; |
| 818 | } |
| 819 | return false; |
| 820 | } |
| 821 | |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 822 | int wait_for_tpm_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout, |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 823 | wait_queue_head_t *queue, bool check_cancel) |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 824 | { |
| 825 | unsigned long stop; |
| 826 | long rc; |
| 827 | u8 status; |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 828 | bool canceled = false; |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 829 | |
| 830 | /* check current status */ |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 831 | status = chip->ops->status(chip); |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 832 | if ((status & mask) == mask) |
| 833 | return 0; |
| 834 | |
| 835 | stop = jiffies + timeout; |
| 836 | |
| 837 | if (chip->vendor.irq) { |
| 838 | again: |
| 839 | timeout = stop - jiffies; |
| 840 | if ((long)timeout <= 0) |
| 841 | return -ETIME; |
| 842 | rc = wait_event_interruptible_timeout(*queue, |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 843 | wait_for_tpm_stat_cond(chip, mask, check_cancel, |
| 844 | &canceled), |
| 845 | timeout); |
| 846 | if (rc > 0) { |
| 847 | if (canceled) |
| 848 | return -ECANCELED; |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 849 | return 0; |
Stefan Berger | 78f09cc | 2013-01-22 13:57:53 -0600 | [diff] [blame] | 850 | } |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 851 | if (rc == -ERESTARTSYS && freezing(current)) { |
| 852 | clear_thread_flag(TIF_SIGPENDING); |
| 853 | goto again; |
| 854 | } |
| 855 | } else { |
| 856 | do { |
| 857 | msleep(TPM_TIMEOUT); |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 858 | status = chip->ops->status(chip); |
Rajiv Andrade | fd04886 | 2011-09-16 14:39:40 -0300 | [diff] [blame] | 859 | if ((status & mask) == mask) |
| 860 | return 0; |
| 861 | } while (time_before(jiffies, stop)); |
| 862 | } |
| 863 | return -ETIME; |
| 864 | } |
| 865 | EXPORT_SYMBOL_GPL(wait_for_tpm_stat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 867 | void tpm_remove_hardware(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | { |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 869 | struct tpm_chip *chip = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
| 871 | if (chip == NULL) { |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 872 | dev_err(dev, "No device data found\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | return; |
| 874 | } |
| 875 | |
| 876 | spin_lock(&driver_lock); |
Rajiv Andrade | f02a936 | 2008-10-11 09:04:23 +1100 | [diff] [blame] | 877 | list_del_rcu(&chip->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | spin_unlock(&driver_lock); |
Rajiv Andrade | f02a936 | 2008-10-11 09:04:23 +1100 | [diff] [blame] | 879 | synchronize_rcu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | |
Jason Gunthorpe | afdba32 | 2013-11-26 13:30:40 -0700 | [diff] [blame] | 881 | tpm_dev_del_device(chip); |
Jason Gunthorpe | 1e3b73a | 2013-11-26 13:30:42 -0700 | [diff] [blame] | 882 | tpm_sysfs_del_device(chip); |
Gang Wei | 1631cfb | 2012-10-09 17:35:22 +0800 | [diff] [blame] | 883 | tpm_remove_ppi(&dev->kobj); |
Kylene Jo Hall | 55a82ab | 2006-01-08 01:03:15 -0800 | [diff] [blame] | 884 | tpm_bios_log_teardown(chip->bios_dir); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | |
Richard MUSIL | 5bd91f1 | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 886 | /* write it this way to be explicit (chip->dev == dev) */ |
| 887 | put_device(chip->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | } |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 889 | EXPORT_SYMBOL_GPL(tpm_remove_hardware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 891 | #define TPM_ORD_SAVESTATE cpu_to_be32(152) |
| 892 | #define SAVESTATE_RESULT_SIZE 10 |
| 893 | |
| 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 |
| 898 | }; |
| 899 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | /* |
| 901 | * We are about to suspend. Save the TPM state |
| 902 | * so that it can be restored. |
| 903 | */ |
Rafael J. Wysocki | 035e2ce | 2012-07-06 19:09:01 +0200 | [diff] [blame] | 904 | int tpm_pm_suspend(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | { |
Kylene Jo Hall | ce2c87d | 2005-10-30 15:03:25 -0800 | [diff] [blame] | 906 | struct tpm_chip *chip = dev_get_drvdata(dev); |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 907 | struct tpm_cmd_t cmd; |
Duncan Laurie | 32d33b2 | 2013-03-17 14:56:39 -0700 | [diff] [blame] | 908 | int rc, try; |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 909 | |
| 910 | u8 dummy_hash[TPM_DIGEST_SIZE] = { 0 }; |
David Smith | 2490c68 | 2008-01-14 00:55:12 -0800 | [diff] [blame] | 911 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | if (chip == NULL) |
| 913 | return -ENODEV; |
| 914 | |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 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, |
| 920 | TPM_DIGEST_SIZE); |
| 921 | rc = transmit_cmd(chip, &cmd, EXTEND_PCR_RESULT_SIZE, |
| 922 | "extending dummy pcr before suspend"); |
| 923 | } |
| 924 | |
| 925 | /* now do the actual savestate */ |
Duncan Laurie | 32d33b2 | 2013-03-17 14:56:39 -0700 | [diff] [blame] | 926 | for (try = 0; try < TPM_RETRY; try++) { |
| 927 | cmd.header.in = savestate_header; |
| 928 | rc = transmit_cmd(chip, &cmd, SAVESTATE_RESULT_SIZE, NULL); |
| 929 | |
| 930 | /* |
| 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. |
| 934 | * |
| 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. |
| 939 | */ |
| 940 | if (rc != TPM_WARN_RETRY) |
| 941 | break; |
| 942 | msleep(TPM_TIMEOUT_RETRY); |
| 943 | } |
| 944 | |
| 945 | if (rc) |
| 946 | dev_err(chip->dev, |
| 947 | "Error (%d) sending savestate before suspend\n", rc); |
| 948 | else if (try > 0) |
| 949 | dev_warn(chip->dev, "TPM savestate took %dms\n", |
| 950 | try * TPM_TIMEOUT_RETRY); |
| 951 | |
Rajiv Andrade | 225a9be | 2010-03-25 00:55:32 -0300 | [diff] [blame] | 952 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | EXPORT_SYMBOL_GPL(tpm_pm_suspend); |
| 955 | |
| 956 | /* |
| 957 | * Resume from a power safe. The BIOS already restored |
| 958 | * the TPM state. |
| 959 | */ |
Kylene Jo Hall | ce2c87d | 2005-10-30 15:03:25 -0800 | [diff] [blame] | 960 | int tpm_pm_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | { |
Kylene Jo Hall | ce2c87d | 2005-10-30 15:03:25 -0800 | [diff] [blame] | 962 | struct tpm_chip *chip = dev_get_drvdata(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | |
| 964 | if (chip == NULL) |
| 965 | return -ENODEV; |
| 966 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 967 | return 0; |
| 968 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | EXPORT_SYMBOL_GPL(tpm_pm_resume); |
| 970 | |
Kent Yoder | 41ab999 | 2012-06-07 13:47:14 -0500 | [diff] [blame] | 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 |
| 976 | }; |
| 977 | |
| 978 | /** |
| 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 |
| 983 | * |
| 984 | * Returns < 0 on error and the number of bytes read on success |
| 985 | */ |
| 986 | int tpm_get_random(u32 chip_num, u8 *out, size_t max) |
| 987 | { |
| 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; |
| 992 | u8 *dest = out; |
| 993 | |
| 994 | chip = tpm_chip_find_get(chip_num); |
| 995 | if (chip == NULL) |
| 996 | return -ENODEV; |
| 997 | |
| 998 | if (!out || !num_bytes || max > TPM_MAX_RNG_DATA) |
| 999 | return -EINVAL; |
| 1000 | |
| 1001 | do { |
| 1002 | tpm_cmd.header.in = tpm_getrandom_header; |
| 1003 | tpm_cmd.params.getrandom_in.num_bytes = cpu_to_be32(num_bytes); |
| 1004 | |
| 1005 | err = transmit_cmd(chip, &tpm_cmd, |
| 1006 | TPM_GETRANDOM_RESULT_SIZE + num_bytes, |
| 1007 | "attempting get random"); |
| 1008 | if (err) |
| 1009 | break; |
| 1010 | |
| 1011 | recd = be32_to_cpu(tpm_cmd.params.getrandom_out.rng_data_len); |
| 1012 | memcpy(dest, tpm_cmd.params.getrandom_out.rng_data, recd); |
| 1013 | |
| 1014 | dest += recd; |
| 1015 | total += recd; |
| 1016 | num_bytes -= recd; |
| 1017 | } while (retries-- && total < max); |
| 1018 | |
| 1019 | return total ? total : -EIO; |
| 1020 | } |
| 1021 | EXPORT_SYMBOL_GPL(tpm_get_random); |
| 1022 | |
Rajiv Andrade | 253115b | 2008-10-11 09:04:39 +1100 | [diff] [blame] | 1023 | /* In case vendor provided release function, call it too.*/ |
| 1024 | |
| 1025 | void tpm_dev_vendor_release(struct tpm_chip *chip) |
| 1026 | { |
Andi Shyti | 3072928 | 2012-05-28 18:42:45 +0200 | [diff] [blame] | 1027 | if (!chip) |
| 1028 | return; |
| 1029 | |
Rajiv Andrade | 253115b | 2008-10-11 09:04:39 +1100 | [diff] [blame] | 1030 | clear_bit(chip->dev_num, dev_mask); |
Rajiv Andrade | 253115b | 2008-10-11 09:04:39 +1100 | [diff] [blame] | 1031 | } |
| 1032 | EXPORT_SYMBOL_GPL(tpm_dev_vendor_release); |
| 1033 | |
| 1034 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | /* |
Richard MUSIL | 5bd91f1 | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 1036 | * Once all references to platform device are down to 0, |
| 1037 | * release all allocated structures. |
Richard MUSIL | 5bd91f1 | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 1038 | */ |
Jason Gunthorpe | afdba32 | 2013-11-26 13:30:40 -0700 | [diff] [blame] | 1039 | static void tpm_dev_release(struct device *dev) |
Richard MUSIL | 5bd91f1 | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 1040 | { |
| 1041 | struct tpm_chip *chip = dev_get_drvdata(dev); |
| 1042 | |
Andi Shyti | 3072928 | 2012-05-28 18:42:45 +0200 | [diff] [blame] | 1043 | if (!chip) |
| 1044 | return; |
| 1045 | |
Rajiv Andrade | 253115b | 2008-10-11 09:04:39 +1100 | [diff] [blame] | 1046 | tpm_dev_vendor_release(chip); |
Richard MUSIL | 5bd91f1 | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 1047 | |
Rajiv Andrade | 253115b | 2008-10-11 09:04:39 +1100 | [diff] [blame] | 1048 | chip->release(dev); |
Richard MUSIL | 5bd91f1 | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 1049 | kfree(chip); |
| 1050 | } |
| 1051 | |
| 1052 | /* |
Peter Huewe | 0a41826 | 2013-10-22 00:29:14 +0200 | [diff] [blame] | 1053 | * Called from tpm_<specific>.c probe function only for devices |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
| 1058 | */ |
Rajiv Andrade | f02a936 | 2008-10-11 09:04:23 +1100 | [diff] [blame] | 1059 | struct tpm_chip *tpm_register_hardware(struct device *dev, |
Jason Gunthorpe | 01ad1fa | 2013-11-26 13:30:43 -0700 | [diff] [blame] | 1060 | const struct tpm_class_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | struct tpm_chip *chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | |
| 1064 | /* Driver specific per-device data */ |
Andrew Morton | b888c87 | 2005-10-30 15:03:28 -0800 | [diff] [blame] | 1065 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); |
Parag Warudkar | 8e39c93 | 2007-05-08 00:31:09 -0700 | [diff] [blame] | 1066 | |
Jason Gunthorpe | 6aff1fd | 2013-09-22 14:19:18 -0600 | [diff] [blame] | 1067 | if (chip == NULL) |
| 1068 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | |
Matthias Kaehlcke | d081d47 | 2007-05-08 00:32:02 -0700 | [diff] [blame] | 1070 | mutex_init(&chip->tpm_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | INIT_LIST_HEAD(&chip->list); |
| 1072 | |
Jason Gunthorpe | 5f82e9f | 2013-11-26 13:30:44 -0700 | [diff] [blame^] | 1073 | chip->ops = ops; |
Kylene Jo Hall | 10685a9 | 2006-04-22 02:38:32 -0700 | [diff] [blame] | 1074 | chip->dev_num = find_first_zero_bit(dev_mask, TPM_NUM_DEVICES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | |
Kylene Jo Hall | 10685a9 | 2006-04-22 02:38:32 -0700 | [diff] [blame] | 1076 | if (chip->dev_num >= TPM_NUM_DEVICES) { |
Andrew Morton | b888c87 | 2005-10-30 15:03:28 -0800 | [diff] [blame] | 1077 | dev_err(dev, "No available tpm device numbers\n"); |
Andrew Morton | dd78c94 | 2008-10-15 22:04:37 -0700 | [diff] [blame] | 1078 | goto out_free; |
Jason Gunthorpe | afdba32 | 2013-11-26 13:30:40 -0700 | [diff] [blame] | 1079 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | |
Kylene Jo Hall | 10685a9 | 2006-04-22 02:38:32 -0700 | [diff] [blame] | 1081 | set_bit(chip->dev_num, dev_mask); |
| 1082 | |
Jason Gunthorpe | 6aff1fd | 2013-09-22 14:19:18 -0600 | [diff] [blame] | 1083 | scnprintf(chip->devname, sizeof(chip->devname), "%s%d", "tpm", |
| 1084 | chip->dev_num); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1085 | |
Kylene Jo Hall | e659a3f | 2005-10-30 15:03:24 -0800 | [diff] [blame] | 1086 | chip->dev = get_device(dev); |
Richard MUSIL | 5bd91f1 | 2008-02-06 01:37:02 -0800 | [diff] [blame] | 1087 | chip->release = dev->release; |
| 1088 | dev->release = tpm_dev_release; |
| 1089 | dev_set_drvdata(dev, chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1090 | |
Jason Gunthorpe | afdba32 | 2013-11-26 13:30:40 -0700 | [diff] [blame] | 1091 | if (tpm_dev_add_device(chip)) |
Wanlong Gao | dad79cb | 2012-05-16 16:24:28 +0800 | [diff] [blame] | 1092 | goto put_device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | |
Jason Gunthorpe | 1e3b73a | 2013-11-26 13:30:42 -0700 | [diff] [blame] | 1094 | if (tpm_sysfs_add_device(chip)) |
Jason Gunthorpe | afdba32 | 2013-11-26 13:30:40 -0700 | [diff] [blame] | 1095 | goto del_misc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | |
Jason Gunthorpe | afdba32 | 2013-11-26 13:30:40 -0700 | [diff] [blame] | 1097 | if (tpm_add_ppi(&dev->kobj)) |
| 1098 | goto del_misc; |
Xiaoyan Zhang | f84fdff | 2012-08-22 18:47:22 +0800 | [diff] [blame] | 1099 | |
Jason Gunthorpe | 6aff1fd | 2013-09-22 14:19:18 -0600 | [diff] [blame] | 1100 | chip->bios_dir = tpm_bios_log_setup(chip->devname); |
Kylene Jo Hall | 55a82ab | 2006-01-08 01:03:15 -0800 | [diff] [blame] | 1101 | |
Rajiv Andrade | f02a936 | 2008-10-11 09:04:23 +1100 | [diff] [blame] | 1102 | /* Make chip available */ |
| 1103 | spin_lock(&driver_lock); |
| 1104 | list_add_rcu(&chip->list, &tpm_chip_list); |
| 1105 | spin_unlock(&driver_lock); |
| 1106 | |
Kylene Jo Hall | e0dd03c | 2006-04-22 02:37:26 -0700 | [diff] [blame] | 1107 | return chip; |
Andrew Morton | dd78c94 | 2008-10-15 22:04:37 -0700 | [diff] [blame] | 1108 | |
Jason Gunthorpe | afdba32 | 2013-11-26 13:30:40 -0700 | [diff] [blame] | 1109 | del_misc: |
| 1110 | tpm_dev_del_device(chip); |
Wanlong Gao | dad79cb | 2012-05-16 16:24:28 +0800 | [diff] [blame] | 1111 | put_device: |
| 1112 | put_device(chip->dev); |
Andrew Morton | dd78c94 | 2008-10-15 22:04:37 -0700 | [diff] [blame] | 1113 | out_free: |
| 1114 | kfree(chip); |
Andrew Morton | dd78c94 | 2008-10-15 22:04:37 -0700 | [diff] [blame] | 1115 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1117 | EXPORT_SYMBOL_GPL(tpm_register_hardware); |
| 1118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)"); |
| 1120 | MODULE_DESCRIPTION("TPM Driver"); |
| 1121 | MODULE_VERSION("2.0"); |
| 1122 | MODULE_LICENSE("GPL"); |