IMA: fix ima_delete_rules() definition
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / char / tpm / tpm.c
CommitLineData
1da177e4
LT
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 *
8e81cc13 10 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
1da177e4
LT
11 *
12 * Device driver for TCG/TCPA TPM (trusted platform module).
13 * Specifications at www.trustedcomputinggroup.org
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.
19 *
20 * Note, the TPM chip is not interrupt driven (only polling)
21 * and can have very long timeouts (minutes!). Hence the unusual
700d8bdc 22 * calls to msleep.
1da177e4
LT
23 *
24 */
25
1da177e4 26#include <linux/poll.h>
d081d470 27#include <linux/mutex.h>
1da177e4 28#include <linux/spinlock.h>
25368ca5 29#include <linux/smp_lock.h>
d081d470 30
1da177e4
LT
31#include "tpm.h"
32
3122a88a
KH
33enum tpm_const {
34 TPM_MINOR = 224, /* officially assigned */
35 TPM_BUFSIZE = 2048,
36 TPM_NUM_DEVICES = 256,
3122a88a 37};
1da177e4 38
9e18ee19
KJH
39enum tpm_duration {
40 TPM_SHORT = 0,
41 TPM_MEDIUM = 1,
42 TPM_LONG = 2,
43 TPM_UNDEFINED,
44};
45
46#define TPM_MAX_ORDINAL 243
47#define TPM_MAX_PROTECTED_ORDINAL 12
48#define TPM_PROTECTED_ORDINAL_MASK 0xFF
49
1da177e4
LT
50static LIST_HEAD(tpm_chip_list);
51static DEFINE_SPINLOCK(driver_lock);
10685a95 52static DECLARE_BITMAP(dev_mask, TPM_NUM_DEVICES);
1da177e4 53
9e18ee19
KJH
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 */
62static const u8 tpm_protected_ordinal_duration[TPM_MAX_PROTECTED_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};
76
77static const u8 tpm_ordinal_duration[TPM_MAX_ORDINAL] = {
78 TPM_UNDEFINED, /* 0 */
79 TPM_UNDEFINED,
80 TPM_UNDEFINED,
81 TPM_UNDEFINED,
82 TPM_UNDEFINED,
83 TPM_UNDEFINED, /* 5 */
84 TPM_UNDEFINED,
85 TPM_UNDEFINED,
86 TPM_UNDEFINED,
87 TPM_UNDEFINED,
88 TPM_SHORT, /* 10 */
89 TPM_SHORT,
90 TPM_MEDIUM,
91 TPM_LONG,
92 TPM_LONG,
93 TPM_MEDIUM, /* 15 */
94 TPM_SHORT,
95 TPM_SHORT,
96 TPM_MEDIUM,
97 TPM_LONG,
98 TPM_SHORT, /* 20 */
99 TPM_SHORT,
100 TPM_MEDIUM,
101 TPM_MEDIUM,
102 TPM_MEDIUM,
103 TPM_SHORT, /* 25 */
104 TPM_SHORT,
105 TPM_MEDIUM,
106 TPM_SHORT,
107 TPM_SHORT,
108 TPM_MEDIUM, /* 30 */
109 TPM_LONG,
110 TPM_MEDIUM,
111 TPM_SHORT,
112 TPM_SHORT,
113 TPM_SHORT, /* 35 */
114 TPM_MEDIUM,
115 TPM_MEDIUM,
116 TPM_UNDEFINED,
117 TPM_UNDEFINED,
118 TPM_MEDIUM, /* 40 */
119 TPM_LONG,
120 TPM_MEDIUM,
121 TPM_SHORT,
122 TPM_SHORT,
123 TPM_SHORT, /* 45 */
124 TPM_SHORT,
125 TPM_SHORT,
126 TPM_SHORT,
127 TPM_LONG,
128 TPM_MEDIUM, /* 50 */
129 TPM_MEDIUM,
130 TPM_UNDEFINED,
131 TPM_UNDEFINED,
132 TPM_UNDEFINED,
133 TPM_UNDEFINED, /* 55 */
134 TPM_UNDEFINED,
135 TPM_UNDEFINED,
136 TPM_UNDEFINED,
137 TPM_UNDEFINED,
138 TPM_MEDIUM, /* 60 */
139 TPM_MEDIUM,
140 TPM_MEDIUM,
141 TPM_SHORT,
142 TPM_SHORT,
143 TPM_MEDIUM, /* 65 */
144 TPM_UNDEFINED,
145 TPM_UNDEFINED,
146 TPM_UNDEFINED,
147 TPM_UNDEFINED,
148 TPM_SHORT, /* 70 */
149 TPM_SHORT,
150 TPM_UNDEFINED,
151 TPM_UNDEFINED,
152 TPM_UNDEFINED,
153 TPM_UNDEFINED, /* 75 */
154 TPM_UNDEFINED,
155 TPM_UNDEFINED,
156 TPM_UNDEFINED,
157 TPM_UNDEFINED,
158 TPM_LONG, /* 80 */
159 TPM_UNDEFINED,
160 TPM_MEDIUM,
161 TPM_LONG,
162 TPM_SHORT,
163 TPM_UNDEFINED, /* 85 */
164 TPM_UNDEFINED,
165 TPM_UNDEFINED,
166 TPM_UNDEFINED,
167 TPM_UNDEFINED,
168 TPM_SHORT, /* 90 */
169 TPM_SHORT,
170 TPM_SHORT,
171 TPM_SHORT,
172 TPM_SHORT,
173 TPM_UNDEFINED, /* 95 */
174 TPM_UNDEFINED,
175 TPM_UNDEFINED,
176 TPM_UNDEFINED,
177 TPM_UNDEFINED,
178 TPM_MEDIUM, /* 100 */
179 TPM_SHORT,
180 TPM_SHORT,
181 TPM_UNDEFINED,
182 TPM_UNDEFINED,
183 TPM_UNDEFINED, /* 105 */
184 TPM_UNDEFINED,
185 TPM_UNDEFINED,
186 TPM_UNDEFINED,
187 TPM_UNDEFINED,
188 TPM_SHORT, /* 110 */
189 TPM_SHORT,
190 TPM_SHORT,
191 TPM_SHORT,
192 TPM_SHORT,
193 TPM_SHORT, /* 115 */
194 TPM_SHORT,
195 TPM_SHORT,
196 TPM_UNDEFINED,
197 TPM_UNDEFINED,
198 TPM_LONG, /* 120 */
199 TPM_LONG,
200 TPM_MEDIUM,
201 TPM_UNDEFINED,
202 TPM_SHORT,
203 TPM_SHORT, /* 125 */
204 TPM_SHORT,
205 TPM_LONG,
206 TPM_SHORT,
207 TPM_SHORT,
208 TPM_SHORT, /* 130 */
209 TPM_MEDIUM,
210 TPM_UNDEFINED,
211 TPM_SHORT,
212 TPM_MEDIUM,
213 TPM_UNDEFINED, /* 135 */
214 TPM_UNDEFINED,
215 TPM_UNDEFINED,
216 TPM_UNDEFINED,
217 TPM_UNDEFINED,
218 TPM_SHORT, /* 140 */
219 TPM_SHORT,
220 TPM_UNDEFINED,
221 TPM_UNDEFINED,
222 TPM_UNDEFINED,
223 TPM_UNDEFINED, /* 145 */
224 TPM_UNDEFINED,
225 TPM_UNDEFINED,
226 TPM_UNDEFINED,
227 TPM_UNDEFINED,
228 TPM_SHORT, /* 150 */
229 TPM_MEDIUM,
230 TPM_MEDIUM,
231 TPM_SHORT,
232 TPM_SHORT,
233 TPM_UNDEFINED, /* 155 */
234 TPM_UNDEFINED,
235 TPM_UNDEFINED,
236 TPM_UNDEFINED,
237 TPM_UNDEFINED,
238 TPM_SHORT, /* 160 */
239 TPM_SHORT,
240 TPM_SHORT,
241 TPM_SHORT,
242 TPM_UNDEFINED,
243 TPM_UNDEFINED, /* 165 */
244 TPM_UNDEFINED,
245 TPM_UNDEFINED,
246 TPM_UNDEFINED,
247 TPM_UNDEFINED,
248 TPM_LONG, /* 170 */
249 TPM_UNDEFINED,
250 TPM_UNDEFINED,
251 TPM_UNDEFINED,
252 TPM_UNDEFINED,
253 TPM_UNDEFINED, /* 175 */
254 TPM_UNDEFINED,
255 TPM_UNDEFINED,
256 TPM_UNDEFINED,
257 TPM_UNDEFINED,
258 TPM_MEDIUM, /* 180 */
259 TPM_SHORT,
260 TPM_MEDIUM,
261 TPM_MEDIUM,
262 TPM_MEDIUM,
263 TPM_MEDIUM, /* 185 */
264 TPM_SHORT,
265 TPM_UNDEFINED,
266 TPM_UNDEFINED,
267 TPM_UNDEFINED,
268 TPM_UNDEFINED, /* 190 */
269 TPM_UNDEFINED,
270 TPM_UNDEFINED,
271 TPM_UNDEFINED,
272 TPM_UNDEFINED,
273 TPM_UNDEFINED, /* 195 */
274 TPM_UNDEFINED,
275 TPM_UNDEFINED,
276 TPM_UNDEFINED,
277 TPM_UNDEFINED,
278 TPM_SHORT, /* 200 */
279 TPM_UNDEFINED,
280 TPM_UNDEFINED,
281 TPM_UNDEFINED,
282 TPM_SHORT,
283 TPM_SHORT, /* 205 */
284 TPM_SHORT,
285 TPM_SHORT,
286 TPM_SHORT,
287 TPM_SHORT,
288 TPM_MEDIUM, /* 210 */
289 TPM_UNDEFINED,
290 TPM_MEDIUM,
291 TPM_MEDIUM,
292 TPM_MEDIUM,
293 TPM_UNDEFINED, /* 215 */
294 TPM_MEDIUM,
295 TPM_UNDEFINED,
296 TPM_UNDEFINED,
297 TPM_SHORT,
298 TPM_SHORT, /* 220 */
299 TPM_SHORT,
300 TPM_SHORT,
301 TPM_SHORT,
302 TPM_SHORT,
303 TPM_UNDEFINED, /* 225 */
304 TPM_UNDEFINED,
305 TPM_UNDEFINED,
306 TPM_UNDEFINED,
307 TPM_UNDEFINED,
308 TPM_SHORT, /* 230 */
309 TPM_LONG,
310 TPM_MEDIUM,
311 TPM_UNDEFINED,
312 TPM_UNDEFINED,
313 TPM_UNDEFINED, /* 235 */
314 TPM_UNDEFINED,
315 TPM_UNDEFINED,
316 TPM_UNDEFINED,
317 TPM_UNDEFINED,
318 TPM_SHORT, /* 240 */
319 TPM_UNDEFINED,
320 TPM_MEDIUM,
321};
322
1da177e4
LT
323static void user_reader_timeout(unsigned long ptr)
324{
325 struct tpm_chip *chip = (struct tpm_chip *) ptr;
326
09e12f9f
KJH
327 schedule_work(&chip->work);
328}
329
c4028958 330static void timeout_work(struct work_struct *work)
09e12f9f 331{
c4028958 332 struct tpm_chip *chip = container_of(work, struct tpm_chip, work);
09e12f9f 333
d081d470 334 mutex_lock(&chip->buffer_mutex);
1da177e4
LT
335 atomic_set(&chip->data_pending, 0);
336 memset(chip->data_buffer, 0, TPM_BUFSIZE);
d081d470 337 mutex_unlock(&chip->buffer_mutex);
1da177e4
LT
338}
339
9e18ee19
KJH
340/*
341 * Returns max number of jiffies to wait
342 */
343unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip,
344 u32 ordinal)
345{
346 int duration_idx = TPM_UNDEFINED;
347 int duration = 0;
348
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)
353 duration_idx =
354 tpm_protected_ordinal_duration[ordinal &
355 TPM_PROTECTED_ORDINAL_MASK];
356
357 if (duration_idx != TPM_UNDEFINED)
36b20020 358 duration = chip->vendor.duration[duration_idx];
9e18ee19
KJH
359 if (duration <= 0)
360 return 2 * 60 * HZ;
361 else
362 return duration;
363}
364EXPORT_SYMBOL_GPL(tpm_calc_ordinal_duration);
365
1da177e4
LT
366/*
367 * Internal kernel interface to transmit TPM commands
368 */
369static ssize_t tpm_transmit(struct tpm_chip *chip, const char *buf,
370 size_t bufsiz)
371{
d9e5b6bf 372 ssize_t rc;
9e18ee19 373 u32 count, ordinal;
700d8bdc 374 unsigned long stop;
1da177e4 375
81179bb6 376 count = be32_to_cpu(*((__be32 *) (buf + 2)));
9e18ee19 377 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
1da177e4
LT
378 if (count == 0)
379 return -ENODATA;
380 if (count > bufsiz) {
e659a3fe 381 dev_err(chip->dev,
b76be681 382 "invalid count value %x %zx \n", count, bufsiz);
1da177e4
LT
383 return -E2BIG;
384 }
385
d081d470 386 mutex_lock(&chip->tpm_mutex);
1da177e4 387
90dda520 388 if ((rc = chip->vendor.send(chip, (u8 *) buf, count)) < 0) {
e659a3fe 389 dev_err(chip->dev,
d9e5b6bf
KH
390 "tpm_transmit: tpm_send: error %zd\n", rc);
391 goto out;
1da177e4
LT
392 }
393
27084efe
LD
394 if (chip->vendor.irq)
395 goto out_recv;
396
9e18ee19 397 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal);
1da177e4 398 do {
90dda520
KJH
399 u8 status = chip->vendor.status(chip);
400 if ((status & chip->vendor.req_complete_mask) ==
401 chip->vendor.req_complete_val)
1da177e4 402 goto out_recv;
d9e5b6bf 403
90dda520 404 if ((status == chip->vendor.req_canceled)) {
e659a3fe 405 dev_err(chip->dev, "Operation Canceled\n");
d9e5b6bf
KH
406 rc = -ECANCELED;
407 goto out;
408 }
409
410 msleep(TPM_TIMEOUT); /* CHECK */
1da177e4 411 rmb();
700d8bdc 412 } while (time_before(jiffies, stop));
1da177e4 413
90dda520 414 chip->vendor.cancel(chip);
e659a3fe 415 dev_err(chip->dev, "Operation Timed out\n");
d9e5b6bf
KH
416 rc = -ETIME;
417 goto out;
1da177e4
LT
418
419out_recv:
90dda520 420 rc = chip->vendor.recv(chip, (u8 *) buf, bufsiz);
d9e5b6bf 421 if (rc < 0)
e659a3fe 422 dev_err(chip->dev,
d9e5b6bf
KH
423 "tpm_transmit: tpm_recv: error %zd\n", rc);
424out:
d081d470 425 mutex_unlock(&chip->tpm_mutex);
d9e5b6bf 426 return rc;
1da177e4
LT
427}
428
429#define TPM_DIGEST_SIZE 20
beed53a1
KJH
430#define TPM_ERROR_SIZE 10
431#define TPM_RET_CODE_IDX 6
beed53a1
KJH
432
433enum tpm_capabilities {
08837438
RA
434 TPM_CAP_FLAG = cpu_to_be32(4),
435 TPM_CAP_PROP = cpu_to_be32(5),
436 CAP_VERSION_1_1 = cpu_to_be32(0x06),
437 CAP_VERSION_1_2 = cpu_to_be32(0x1A)
beed53a1
KJH
438};
439
440enum tpm_sub_capabilities {
08837438
RA
441 TPM_CAP_PROP_PCR = cpu_to_be32(0x101),
442 TPM_CAP_PROP_MANUFACTURER = cpu_to_be32(0x103),
443 TPM_CAP_FLAG_PERM = cpu_to_be32(0x108),
444 TPM_CAP_FLAG_VOL = cpu_to_be32(0x109),
445 TPM_CAP_PROP_OWNER = cpu_to_be32(0x111),
446 TPM_CAP_PROP_TIS_TIMEOUT = cpu_to_be32(0x115),
447 TPM_CAP_PROP_TIS_DURATION = cpu_to_be32(0x120),
beed53a1 448
1da177e4
LT
449};
450
08837438
RA
451static ssize_t transmit_cmd(struct tpm_chip *chip, struct tpm_cmd_t *cmd,
452 int len, const char *desc)
beed53a1
KJH
453{
454 int err;
455
08837438 456 len = tpm_transmit(chip,(u8 *) cmd, len);
beed53a1
KJH
457 if (len < 0)
458 return len;
459 if (len == TPM_ERROR_SIZE) {
08837438 460 err = be32_to_cpu(cmd->header.out.return_code);
beed53a1
KJH
461 dev_dbg(chip->dev, "A TPM error (%d) occurred %s\n", err, desc);
462 return err;
463 }
464 return 0;
465}
466
08837438
RA
467#define TPM_INTERNAL_RESULT_SIZE 200
468#define TPM_TAG_RQU_COMMAND cpu_to_be16(193)
469#define TPM_ORD_GET_CAP cpu_to_be32(101)
470
471static const struct tpm_input_header tpm_getcap_header = {
472 .tag = TPM_TAG_RQU_COMMAND,
473 .length = cpu_to_be32(22),
474 .ordinal = TPM_ORD_GET_CAP
475};
476
477ssize_t tpm_getcap(struct device *dev, __be32 subcap_id, cap_t *cap,
478 const char *desc)
479{
480 struct tpm_cmd_t tpm_cmd;
481 int rc;
482 struct tpm_chip *chip = dev_get_drvdata(dev);
483
484 tpm_cmd.header.in = tpm_getcap_header;
485 if (subcap_id == CAP_VERSION_1_1 || subcap_id == CAP_VERSION_1_2) {
486 tpm_cmd.params.getcap_in.cap = subcap_id;
487 /*subcap field not necessary */
488 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(0);
489 tpm_cmd.header.in.length -= cpu_to_be32(sizeof(__be32));
490 } else {
491 if (subcap_id == TPM_CAP_FLAG_PERM ||
492 subcap_id == TPM_CAP_FLAG_VOL)
493 tpm_cmd.params.getcap_in.cap = TPM_CAP_FLAG;
494 else
495 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
496 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
497 tpm_cmd.params.getcap_in.subcap = subcap_id;
498 }
499 rc = transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE, desc);
500 if (!rc)
501 *cap = tpm_cmd.params.getcap_out.cap;
502 return rc;
503}
504
08e96e48
KJH
505void tpm_gen_interrupt(struct tpm_chip *chip)
506{
08837438 507 struct tpm_cmd_t tpm_cmd;
08e96e48
KJH
508 ssize_t rc;
509
08837438
RA
510 tpm_cmd.header.in = tpm_getcap_header;
511 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
512 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
513 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT;
08e96e48 514
08837438 515 rc = transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
08e96e48
KJH
516 "attempting to determine the timeouts");
517}
518EXPORT_SYMBOL_GPL(tpm_gen_interrupt);
519
520void tpm_get_timeouts(struct tpm_chip *chip)
521{
08837438
RA
522 struct tpm_cmd_t tpm_cmd;
523 struct timeout_t *timeout_cap;
524 struct duration_t *duration_cap;
08e96e48
KJH
525 ssize_t rc;
526 u32 timeout;
527
08837438
RA
528 tpm_cmd.header.in = tpm_getcap_header;
529 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
530 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
531 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_TIMEOUT;
08e96e48 532
08837438 533 rc = transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
08e96e48
KJH
534 "attempting to determine the timeouts");
535 if (rc)
536 goto duration;
537
08837438 538 if (be32_to_cpu(tpm_cmd.header.out.length)
08e96e48
KJH
539 != 4 * sizeof(u32))
540 goto duration;
541
08837438 542 timeout_cap = &tpm_cmd.params.getcap_out.cap.timeout;
08e96e48 543 /* Don't overwrite default if value is 0 */
08837438 544 timeout = be32_to_cpu(timeout_cap->a);
08e96e48 545 if (timeout)
9e5b1b12 546 chip->vendor.timeout_a = usecs_to_jiffies(timeout);
08837438 547 timeout = be32_to_cpu(timeout_cap->b);
08e96e48 548 if (timeout)
9e5b1b12 549 chip->vendor.timeout_b = usecs_to_jiffies(timeout);
08837438 550 timeout = be32_to_cpu(timeout_cap->c);
08e96e48 551 if (timeout)
9e5b1b12 552 chip->vendor.timeout_c = usecs_to_jiffies(timeout);
08837438 553 timeout = be32_to_cpu(timeout_cap->d);
08e96e48 554 if (timeout)
9e5b1b12 555 chip->vendor.timeout_d = usecs_to_jiffies(timeout);
08e96e48
KJH
556
557duration:
08837438
RA
558 tpm_cmd.header.in = tpm_getcap_header;
559 tpm_cmd.params.getcap_in.cap = TPM_CAP_PROP;
560 tpm_cmd.params.getcap_in.subcap_size = cpu_to_be32(4);
561 tpm_cmd.params.getcap_in.subcap = TPM_CAP_PROP_TIS_DURATION;
08e96e48 562
08837438 563 rc = transmit_cmd(chip, &tpm_cmd, TPM_INTERNAL_RESULT_SIZE,
08e96e48
KJH
564 "attempting to determine the durations");
565 if (rc)
566 return;
567
08837438 568 if (be32_to_cpu(tpm_cmd.header.out.return_code)
08e96e48
KJH
569 != 3 * sizeof(u32))
570 return;
08837438 571 duration_cap = &tpm_cmd.params.getcap_out.cap.duration;
08e96e48 572 chip->vendor.duration[TPM_SHORT] =
08837438 573 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_short));
292cf4a8
VK
574 /* The Broadcom BCM0102 chipset in a Dell Latitude D820 gets the above
575 * value wrong and apparently reports msecs rather than usecs. So we
576 * fix up the resulting too-small TPM_SHORT value to make things work.
577 */
578 if (chip->vendor.duration[TPM_SHORT] < (HZ/100))
579 chip->vendor.duration[TPM_SHORT] = HZ;
580
08e96e48 581 chip->vendor.duration[TPM_MEDIUM] =
08837438 582 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_medium));
08e96e48 583 chip->vendor.duration[TPM_LONG] =
08837438 584 usecs_to_jiffies(be32_to_cpu(duration_cap->tpm_long));
08e96e48
KJH
585}
586EXPORT_SYMBOL_GPL(tpm_get_timeouts);
587
588void tpm_continue_selftest(struct tpm_chip *chip)
589{
590 u8 data[] = {
591 0, 193, /* TPM_TAG_RQU_COMMAND */
592 0, 0, 0, 10, /* length */
593 0, 0, 0, 83, /* TPM_ORD_GetCapability */
594 };
595
596 tpm_transmit(chip, data, sizeof(data));
597}
598EXPORT_SYMBOL_GPL(tpm_continue_selftest);
599
600ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
601 char *buf)
602{
08837438 603 cap_t cap;
08e96e48
KJH
604 ssize_t rc;
605
08837438
RA
606 rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap,
607 "attempting to determine the permanent enabled state");
608 if (rc)
08e96e48 609 return 0;
ec288bd3 610
08837438 611 rc = sprintf(buf, "%d\n", !cap.perm_flags.disable);
ec288bd3 612 return rc;
08e96e48
KJH
613}
614EXPORT_SYMBOL_GPL(tpm_show_enabled);
615
616ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
617 char *buf)
618{
08837438 619 cap_t cap;
08e96e48
KJH
620 ssize_t rc;
621
08837438
RA
622 rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap,
623 "attempting to determine the permanent active state");
624 if (rc)
08e96e48 625 return 0;
ec288bd3 626
08837438 627 rc = sprintf(buf, "%d\n", !cap.perm_flags.deactivated);
ec288bd3 628 return rc;
08e96e48
KJH
629}
630EXPORT_SYMBOL_GPL(tpm_show_active);
631
632ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
633 char *buf)
634{
08837438 635 cap_t cap;
08e96e48
KJH
636 ssize_t rc;
637
08837438
RA
638 rc = tpm_getcap(dev, TPM_CAP_PROP_OWNER, &cap,
639 "attempting to determine the owner state");
640 if (rc)
08e96e48 641 return 0;
ec288bd3 642
08837438 643 rc = sprintf(buf, "%d\n", cap.owned);
ec288bd3 644 return rc;
08e96e48
KJH
645}
646EXPORT_SYMBOL_GPL(tpm_show_owned);
647
648ssize_t tpm_show_temp_deactivated(struct device * dev,
649 struct device_attribute * attr, char *buf)
650{
08837438 651 cap_t cap;
08e96e48
KJH
652 ssize_t rc;
653
08837438
RA
654 rc = tpm_getcap(dev, TPM_CAP_FLAG_VOL, &cap,
655 "attempting to determine the temporary state");
656 if (rc)
08e96e48 657 return 0;
ec288bd3 658
08837438 659 rc = sprintf(buf, "%d\n", cap.stclear_flags.deactivated);
ec288bd3 660 return rc;
08e96e48
KJH
661}
662EXPORT_SYMBOL_GPL(tpm_show_temp_deactivated);
663
659aaf2b
RA
664/*
665 * tpm_chip_find_get - return tpm_chip for given chip number
666 */
667static struct tpm_chip *tpm_chip_find_get(int chip_num)
668{
669 struct tpm_chip *pos;
670
671 rcu_read_lock();
672 list_for_each_entry_rcu(pos, &tpm_chip_list, list) {
673 if (chip_num != TPM_ANY_NUM && chip_num != pos->dev_num)
674 continue;
675
676 if (try_module_get(pos->dev->driver->owner))
677 break;
678 }
679 rcu_read_unlock();
680 return pos;
681}
682
683#define TPM_ORDINAL_PCRREAD cpu_to_be32(21)
684#define READ_PCR_RESULT_SIZE 30
685static struct tpm_input_header pcrread_header = {
686 .tag = TPM_TAG_RQU_COMMAND,
687 .length = cpu_to_be32(14),
688 .ordinal = TPM_ORDINAL_PCRREAD
1da177e4
LT
689};
690
659aaf2b
RA
691int __tpm_pcr_read(struct tpm_chip *chip, int pcr_idx, u8 *res_buf)
692{
693 int rc;
694 struct tpm_cmd_t cmd;
695
696 cmd.header.in = pcrread_header;
697 cmd.params.pcrread_in.pcr_idx = cpu_to_be32(pcr_idx);
698 BUILD_BUG_ON(cmd.header.in.length > READ_PCR_RESULT_SIZE);
699 rc = transmit_cmd(chip, &cmd, cmd.header.in.length,
700 "attempting to read a pcr value");
701
702 if (rc == 0)
703 memcpy(res_buf, cmd.params.pcrread_out.pcr_result,
704 TPM_DIGEST_SIZE);
705 return rc;
706}
707
708/**
709 * tpm_pcr_read - read a pcr value
710 * @chip_num: tpm idx # or ANY
711 * @pcr_idx: pcr idx to retrieve
712 * @res_buf: TPM_PCR value
713 * size of res_buf is 20 bytes (or NULL if you don't care)
714 *
715 * The TPM driver should be built-in, but for whatever reason it
716 * isn't, protect against the chip disappearing, by incrementing
717 * the module usage count.
718 */
719int tpm_pcr_read(u32 chip_num, int pcr_idx, u8 *res_buf)
720{
721 struct tpm_chip *chip;
722 int rc;
723
724 chip = tpm_chip_find_get(chip_num);
725 if (chip == NULL)
726 return -ENODEV;
727 rc = __tpm_pcr_read(chip, pcr_idx, res_buf);
728 module_put(chip->dev->driver->owner);
729 return rc;
730}
731EXPORT_SYMBOL_GPL(tpm_pcr_read);
732
733/**
734 * tpm_pcr_extend - extend pcr value with hash
735 * @chip_num: tpm idx # or AN&
736 * @pcr_idx: pcr idx to extend
737 * @hash: hash value used to extend pcr value
738 *
739 * The TPM driver should be built-in, but for whatever reason it
740 * isn't, protect against the chip disappearing, by incrementing
741 * the module usage count.
742 */
743#define TPM_ORD_PCR_EXTEND cpu_to_be32(20)
744#define EXTEND_PCR_SIZE 34
745static struct tpm_input_header pcrextend_header = {
746 .tag = TPM_TAG_RQU_COMMAND,
747 .length = cpu_to_be32(34),
748 .ordinal = TPM_ORD_PCR_EXTEND
749};
750
751int tpm_pcr_extend(u32 chip_num, int pcr_idx, const u8 *hash)
752{
753 struct tpm_cmd_t cmd;
754 int rc;
755 struct tpm_chip *chip;
756
757 chip = tpm_chip_find_get(chip_num);
758 if (chip == NULL)
759 return -ENODEV;
760
761 cmd.header.in = pcrextend_header;
762 BUILD_BUG_ON(be32_to_cpu(cmd.header.in.length) > EXTEND_PCR_SIZE);
763 cmd.params.pcrextend_in.pcr_idx = cpu_to_be32(pcr_idx);
764 memcpy(cmd.params.pcrextend_in.hash, hash, TPM_DIGEST_SIZE);
765 rc = transmit_cmd(chip, &cmd, cmd.header.in.length,
766 "attempting extend a PCR value");
767
768 module_put(chip->dev->driver->owner);
769 return rc;
770}
771EXPORT_SYMBOL_GPL(tpm_pcr_extend);
772
6659ca2a
KH
773ssize_t tpm_show_pcrs(struct device *dev, struct device_attribute *attr,
774 char *buf)
1da177e4 775{
08837438 776 cap_t cap;
659aaf2b 777 u8 digest[TPM_DIGEST_SIZE];
beed53a1 778 ssize_t rc;
81179bb6 779 int i, j, num_pcrs;
1da177e4 780 char *str = buf;
e659a3fe 781 struct tpm_chip *chip = dev_get_drvdata(dev);
1da177e4 782
08837438 783 rc = tpm_getcap(dev, TPM_CAP_PROP_PCR, &cap,
beed53a1 784 "attempting to determine the number of PCRS");
08837438 785 if (rc)
e234bc97 786 return 0;
1da177e4 787
08837438 788 num_pcrs = be32_to_cpu(cap.num_pcrs);
1da177e4 789 for (i = 0; i < num_pcrs; i++) {
659aaf2b 790 rc = __tpm_pcr_read(chip, i, digest);
beed53a1 791 if (rc)
08837438 792 break;
1da177e4
LT
793 str += sprintf(str, "PCR-%02d: ", i);
794 for (j = 0; j < TPM_DIGEST_SIZE; j++)
659aaf2b 795 str += sprintf(str, "%02X ", digest[j]);
1da177e4
LT
796 str += sprintf(str, "\n");
797 }
798 return str - buf;
799}
6659ca2a 800EXPORT_SYMBOL_GPL(tpm_show_pcrs);
1da177e4
LT
801
802#define READ_PUBEK_RESULT_SIZE 314
08837438
RA
803#define TPM_ORD_READPUBEK cpu_to_be32(124)
804struct tpm_input_header tpm_readpubek_header = {
805 .tag = TPM_TAG_RQU_COMMAND,
806 .length = cpu_to_be32(30),
807 .ordinal = TPM_ORD_READPUBEK
1da177e4
LT
808};
809
6659ca2a
KH
810ssize_t tpm_show_pubek(struct device *dev, struct device_attribute *attr,
811 char *buf)
1da177e4 812{
2df7111f 813 u8 *data;
08837438 814 struct tpm_cmd_t tpm_cmd;
beed53a1 815 ssize_t err;
81179bb6 816 int i, rc;
1da177e4
LT
817 char *str = buf;
818
e659a3fe 819 struct tpm_chip *chip = dev_get_drvdata(dev);
1da177e4 820
08837438
RA
821 tpm_cmd.header.in = tpm_readpubek_header;
822 err = transmit_cmd(chip, &tpm_cmd, READ_PUBEK_RESULT_SIZE,
beed53a1
KJH
823 "attempting to read the PUBEK");
824 if (err)
34d6e075 825 goto out;
1da177e4
LT
826
827 /*
828 ignore header 10 bytes
829 algorithm 32 bits (1 == RSA )
830 encscheme 16 bits
831 sigscheme 16 bits
832 parameters (RSA 12->bytes: keybit, #primes, expbit)
833 keylenbytes 32 bits
834 256 byte modulus
835 ignore checksum 20 bytes
836 */
08837438 837 data = tpm_cmd.params.readpubek_out_buffer;
1da177e4
LT
838 str +=
839 sprintf(str,
840 "Algorithm: %02X %02X %02X %02X\nEncscheme: %02X %02X\n"
841 "Sigscheme: %02X %02X\nParameters: %02X %02X %02X %02X"
842 " %02X %02X %02X %02X %02X %02X %02X %02X\n"
843 "Modulus length: %d\nModulus: \n",
844 data[10], data[11], data[12], data[13], data[14],
845 data[15], data[16], data[17], data[22], data[23],
846 data[24], data[25], data[26], data[27], data[28],
847 data[29], data[30], data[31], data[32], data[33],
1dda8abe 848 be32_to_cpu(*((__be32 *) (data + 34))));
1da177e4
LT
849
850 for (i = 0; i < 256; i++) {
1dda8abe 851 str += sprintf(str, "%02X ", data[i + 38]);
1da177e4
LT
852 if ((i + 1) % 16 == 0)
853 str += sprintf(str, "\n");
854 }
34d6e075 855out:
beed53a1 856 rc = str - buf;
2df7111f 857 return rc;
1da177e4 858}
6659ca2a 859EXPORT_SYMBOL_GPL(tpm_show_pubek);
1da177e4 860
1da177e4 861
6659ca2a
KH
862ssize_t tpm_show_caps(struct device *dev, struct device_attribute *attr,
863 char *buf)
1da177e4 864{
08837438 865 cap_t cap;
beed53a1 866 ssize_t rc;
1da177e4
LT
867 char *str = buf;
868
08837438 869 rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap,
beed53a1 870 "attempting to determine the manufacturer");
08837438 871 if (rc)
beed53a1 872 return 0;
1da177e4 873 str += sprintf(str, "Manufacturer: 0x%x\n",
08837438 874 be32_to_cpu(cap.manufacturer_id));
1da177e4 875
08837438
RA
876 rc = tpm_getcap(dev, CAP_VERSION_1_1, &cap,
877 "attempting to determine the 1.1 version");
beed53a1 878 if (rc)
08837438 879 return 0;
beed53a1
KJH
880 str += sprintf(str,
881 "TCG version: %d.%d\nFirmware version: %d.%d\n",
08837438
RA
882 cap.tpm_version.Major, cap.tpm_version.Minor,
883 cap.tpm_version.revMajor, cap.tpm_version.revMinor);
1da177e4
LT
884 return str - buf;
885}
6659ca2a
KH
886EXPORT_SYMBOL_GPL(tpm_show_caps);
887
08e96e48
KJH
888ssize_t tpm_show_caps_1_2(struct device * dev,
889 struct device_attribute * attr, char *buf)
890{
08837438
RA
891 cap_t cap;
892 ssize_t rc;
08e96e48
KJH
893 char *str = buf;
894
08837438
RA
895 rc = tpm_getcap(dev, TPM_CAP_PROP_MANUFACTURER, &cap,
896 "attempting to determine the manufacturer");
897 if (rc)
08e96e48 898 return 0;
08e96e48 899 str += sprintf(str, "Manufacturer: 0x%x\n",
08837438
RA
900 be32_to_cpu(cap.manufacturer_id));
901 rc = tpm_getcap(dev, CAP_VERSION_1_2, &cap,
902 "attempting to determine the 1.2 version");
903 if (rc)
904 return 0;
08e96e48
KJH
905 str += sprintf(str,
906 "TCG version: %d.%d\nFirmware version: %d.%d\n",
08837438
RA
907 cap.tpm_version_1_2.Major, cap.tpm_version_1_2.Minor,
908 cap.tpm_version_1_2.revMajor,
909 cap.tpm_version_1_2.revMinor);
08e96e48
KJH
910 return str - buf;
911}
912EXPORT_SYMBOL_GPL(tpm_show_caps_1_2);
913
6659ca2a
KH
914ssize_t tpm_store_cancel(struct device *dev, struct device_attribute *attr,
915 const char *buf, size_t count)
916{
917 struct tpm_chip *chip = dev_get_drvdata(dev);
918 if (chip == NULL)
919 return 0;
920
90dda520 921 chip->vendor.cancel(chip);
6659ca2a
KH
922 return count;
923}
924EXPORT_SYMBOL_GPL(tpm_store_cancel);
1da177e4 925
1da177e4
LT
926/*
927 * Device file system interface to the TPM
f89c5edb
RA
928 *
929 * It's assured that the chip will be opened just once,
930 * by the check of is_open variable, which is protected
931 * by driver_lock.
1da177e4
LT
932 */
933int tpm_open(struct inode *inode, struct file *file)
934{
f02a9364 935 int minor = iminor(inode);
1da177e4
LT
936 struct tpm_chip *chip = NULL, *pos;
937
f02a9364
RA
938 rcu_read_lock();
939 list_for_each_entry_rcu(pos, &tpm_chip_list, list) {
90dda520 940 if (pos->vendor.miscdev.minor == minor) {
1da177e4 941 chip = pos;
f02a9364 942 get_device(chip->dev);
1da177e4
LT
943 break;
944 }
945 }
f02a9364 946 rcu_read_unlock();
1da177e4 947
f02a9364
RA
948 if (!chip)
949 return -ENODEV;
1da177e4 950
dc36d32c 951 if (test_and_set_bit(0, &chip->is_open)) {
b888c87b 952 dev_dbg(chip->dev, "Another process owns this TPM\n");
f02a9364
RA
953 put_device(chip->dev);
954 return -EBUSY;
1da177e4
LT
955 }
956
1da177e4
LT
957 chip->data_buffer = kmalloc(TPM_BUFSIZE * sizeof(u8), GFP_KERNEL);
958 if (chip->data_buffer == NULL) {
dc36d32c 959 clear_bit(0, &chip->is_open);
e659a3fe 960 put_device(chip->dev);
1da177e4
LT
961 return -ENOMEM;
962 }
963
964 atomic_set(&chip->data_pending, 0);
965
966 file->private_data = chip;
967 return 0;
1da177e4 968}
1da177e4
LT
969EXPORT_SYMBOL_GPL(tpm_open);
970
f02a9364
RA
971/*
972 * Called on file close
973 */
1da177e4
LT
974int tpm_release(struct inode *inode, struct file *file)
975{
976 struct tpm_chip *chip = file->private_data;
1da177e4 977
4bdec11f 978 del_singleshot_timer_sync(&chip->user_read_timer);
8e39c933 979 flush_scheduled_work();
5e976d55 980 file->private_data = NULL;
1da177e4 981 atomic_set(&chip->data_pending, 0);
f02a9364 982 kfree(chip->data_buffer);
dc36d32c 983 clear_bit(0, &chip->is_open);
e659a3fe 984 put_device(chip->dev);
1da177e4
LT
985 return 0;
986}
1da177e4
LT
987EXPORT_SYMBOL_GPL(tpm_release);
988
b888c87b 989ssize_t tpm_write(struct file *file, const char __user *buf,
3c2f606a 990 size_t size, loff_t *off)
1da177e4
LT
991{
992 struct tpm_chip *chip = file->private_data;
01476001 993 size_t in_size = size, out_size;
1da177e4
LT
994
995 /* cannot perform a write until the read has cleared
996 either via tpm_read or a user_read_timer timeout */
700d8bdc
NA
997 while (atomic_read(&chip->data_pending) != 0)
998 msleep(TPM_TIMEOUT);
1da177e4 999
d081d470 1000 mutex_lock(&chip->buffer_mutex);
1da177e4
LT
1001
1002 if (in_size > TPM_BUFSIZE)
1003 in_size = TPM_BUFSIZE;
1004
1005 if (copy_from_user
1006 (chip->data_buffer, (void __user *) buf, in_size)) {
d081d470 1007 mutex_unlock(&chip->buffer_mutex);
1da177e4
LT
1008 return -EFAULT;
1009 }
1010
1011 /* atomic tpm command send and result receive */
1012 out_size = tpm_transmit(chip, chip->data_buffer, TPM_BUFSIZE);
1013
1014 atomic_set(&chip->data_pending, out_size);
d081d470 1015 mutex_unlock(&chip->buffer_mutex);
1da177e4
LT
1016
1017 /* Set a timeout by which the reader must come claim the result */
fe3fd483 1018 mod_timer(&chip->user_read_timer, jiffies + (60 * HZ));
1da177e4
LT
1019
1020 return in_size;
1021}
1da177e4
LT
1022EXPORT_SYMBOL_GPL(tpm_write);
1023
3c2f606a
KJH
1024ssize_t tpm_read(struct file *file, char __user *buf,
1025 size_t size, loff_t *off)
1da177e4
LT
1026{
1027 struct tpm_chip *chip = file->private_data;
01476001 1028 ssize_t ret_size;
1da177e4 1029
5b44bd58 1030 del_singleshot_timer_sync(&chip->user_read_timer);
ba396115 1031 flush_scheduled_work();
5b44bd58
KH
1032 ret_size = atomic_read(&chip->data_pending);
1033 atomic_set(&chip->data_pending, 0);
1034 if (ret_size > 0) { /* relay data */
1035 if (size < ret_size)
1036 ret_size = size;
1da177e4 1037
d081d470 1038 mutex_lock(&chip->buffer_mutex);
f6a2382c 1039 if (copy_to_user(buf, chip->data_buffer, ret_size))
5b44bd58 1040 ret_size = -EFAULT;
d081d470 1041 mutex_unlock(&chip->buffer_mutex);
1da177e4
LT
1042 }
1043
1044 return ret_size;
1045}
1da177e4
LT
1046EXPORT_SYMBOL_GPL(tpm_read);
1047
e659a3fe 1048void tpm_remove_hardware(struct device *dev)
1da177e4 1049{
e659a3fe 1050 struct tpm_chip *chip = dev_get_drvdata(dev);
1da177e4
LT
1051
1052 if (chip == NULL) {
e659a3fe 1053 dev_err(dev, "No device data found\n");
1da177e4
LT
1054 return;
1055 }
1056
1057 spin_lock(&driver_lock);
f02a9364 1058 list_del_rcu(&chip->list);
1da177e4 1059 spin_unlock(&driver_lock);
f02a9364 1060 synchronize_rcu();
1da177e4 1061
90dda520 1062 misc_deregister(&chip->vendor.miscdev);
90dda520 1063 sysfs_remove_group(&dev->kobj, chip->vendor.attr_group);
55a82ab3 1064 tpm_bios_log_teardown(chip->bios_dir);
1da177e4 1065
5bd91f18
RM
1066 /* write it this way to be explicit (chip->dev == dev) */
1067 put_device(chip->dev);
1da177e4 1068}
e659a3fe 1069EXPORT_SYMBOL_GPL(tpm_remove_hardware);
1da177e4 1070
1da177e4
LT
1071/*
1072 * We are about to suspend. Save the TPM state
1073 * so that it can be restored.
1074 */
ce2c87d4 1075int tpm_pm_suspend(struct device *dev, pm_message_t pm_state)
1da177e4 1076{
ce2c87d4 1077 struct tpm_chip *chip = dev_get_drvdata(dev);
2490c681
DS
1078 u8 savestate[] = {
1079 0, 193, /* TPM_TAG_RQU_COMMAND */
1080 0, 0, 0, 10, /* blob length (in bytes) */
1081 0, 0, 0, 152 /* TPM_ORD_SaveState */
1082 };
1083
1da177e4
LT
1084 if (chip == NULL)
1085 return -ENODEV;
1086
1087 tpm_transmit(chip, savestate, sizeof(savestate));
1088 return 0;
1089}
1da177e4
LT
1090EXPORT_SYMBOL_GPL(tpm_pm_suspend);
1091
1092/*
1093 * Resume from a power safe. The BIOS already restored
1094 * the TPM state.
1095 */
ce2c87d4 1096int tpm_pm_resume(struct device *dev)
1da177e4 1097{
ce2c87d4 1098 struct tpm_chip *chip = dev_get_drvdata(dev);
1da177e4
LT
1099
1100 if (chip == NULL)
1101 return -ENODEV;
1102
1da177e4
LT
1103 return 0;
1104}
1da177e4
LT
1105EXPORT_SYMBOL_GPL(tpm_pm_resume);
1106
253115b7
RA
1107/* In case vendor provided release function, call it too.*/
1108
1109void tpm_dev_vendor_release(struct tpm_chip *chip)
1110{
1111 if (chip->vendor.release)
1112 chip->vendor.release(chip->dev);
1113
1114 clear_bit(chip->dev_num, dev_mask);
1115 kfree(chip->vendor.miscdev.name);
1116}
1117EXPORT_SYMBOL_GPL(tpm_dev_vendor_release);
1118
1119
5bd91f18
RM
1120/*
1121 * Once all references to platform device are down to 0,
1122 * release all allocated structures.
5bd91f18 1123 */
cbb2ed4a 1124void tpm_dev_release(struct device *dev)
5bd91f18
RM
1125{
1126 struct tpm_chip *chip = dev_get_drvdata(dev);
1127
253115b7 1128 tpm_dev_vendor_release(chip);
5bd91f18 1129
253115b7 1130 chip->release(dev);
5bd91f18
RM
1131 kfree(chip);
1132}
253115b7 1133EXPORT_SYMBOL_GPL(tpm_dev_release);
5bd91f18 1134
1da177e4
LT
1135/*
1136 * Called from tpm_<specific>.c probe function only for devices
1137 * the driver has determined it should claim. Prior to calling
1138 * this function the specific probe function has called pci_enable_device
1139 * upon errant exit from this function specific probe function should call
1140 * pci_disable_device
1141 */
f02a9364
RA
1142struct tpm_chip *tpm_register_hardware(struct device *dev,
1143 const struct tpm_vendor_specific *entry)
1da177e4 1144{
6f9beccb
KJH
1145#define DEVNAME_SIZE 7
1146
1147 char *devname;
1da177e4 1148 struct tpm_chip *chip;
1da177e4
LT
1149
1150 /* Driver specific per-device data */
b888c87b 1151 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
8e39c933
PW
1152 devname = kmalloc(DEVNAME_SIZE, GFP_KERNEL);
1153
dd78c943
AM
1154 if (chip == NULL || devname == NULL)
1155 goto out_free;
1da177e4 1156
d081d470
MK
1157 mutex_init(&chip->buffer_mutex);
1158 mutex_init(&chip->tpm_mutex);
1da177e4
LT
1159 INIT_LIST_HEAD(&chip->list);
1160
c4028958 1161 INIT_WORK(&chip->work, timeout_work);
09e12f9f 1162
40565f19
JS
1163 setup_timer(&chip->user_read_timer, user_reader_timeout,
1164 (unsigned long)chip);
fe3fd483 1165
90dda520 1166 memcpy(&chip->vendor, entry, sizeof(struct tpm_vendor_specific));
1da177e4 1167
10685a95 1168 chip->dev_num = find_first_zero_bit(dev_mask, TPM_NUM_DEVICES);
1da177e4 1169
10685a95 1170 if (chip->dev_num >= TPM_NUM_DEVICES) {
b888c87b 1171 dev_err(dev, "No available tpm device numbers\n");
dd78c943 1172 goto out_free;
1da177e4 1173 } else if (chip->dev_num == 0)
90dda520 1174 chip->vendor.miscdev.minor = TPM_MINOR;
1da177e4 1175 else
90dda520 1176 chip->vendor.miscdev.minor = MISC_DYNAMIC_MINOR;
1da177e4 1177
10685a95
KJH
1178 set_bit(chip->dev_num, dev_mask);
1179
6f9beccb 1180 scnprintf(devname, DEVNAME_SIZE, "%s%d", "tpm", chip->dev_num);
90dda520 1181 chip->vendor.miscdev.name = devname;
1da177e4 1182
94fbcded 1183 chip->vendor.miscdev.parent = dev;
e659a3fe 1184 chip->dev = get_device(dev);
5bd91f18
RM
1185 chip->release = dev->release;
1186 dev->release = tpm_dev_release;
1187 dev_set_drvdata(dev, chip);
1da177e4 1188
90dda520 1189 if (misc_register(&chip->vendor.miscdev)) {
e659a3fe 1190 dev_err(chip->dev,
1da177e4 1191 "unable to misc_register %s, minor %d\n",
90dda520
KJH
1192 chip->vendor.miscdev.name,
1193 chip->vendor.miscdev.minor);
5bd91f18 1194 put_device(chip->dev);
e0dd03ca 1195 return NULL;
1da177e4
LT
1196 }
1197
f33d9bd5 1198 if (sysfs_create_group(&dev->kobj, chip->vendor.attr_group)) {
5d469ec0 1199 misc_deregister(&chip->vendor.miscdev);
5bd91f18 1200 put_device(chip->dev);
f02a9364 1201
f33d9bd5
JG
1202 return NULL;
1203 }
1da177e4 1204
55a82ab3
KJH
1205 chip->bios_dir = tpm_bios_log_setup(devname);
1206
f02a9364
RA
1207 /* Make chip available */
1208 spin_lock(&driver_lock);
1209 list_add_rcu(&chip->list, &tpm_chip_list);
1210 spin_unlock(&driver_lock);
1211
e0dd03ca 1212 return chip;
dd78c943
AM
1213
1214out_free:
1215 kfree(chip);
1216 kfree(devname);
1217 return NULL;
1da177e4 1218}
1da177e4
LT
1219EXPORT_SYMBOL_GPL(tpm_register_hardware);
1220
1da177e4
LT
1221MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
1222MODULE_DESCRIPTION("TPM Driver");
1223MODULE_VERSION("2.0");
1224MODULE_LICENSE("GPL");