Linux 4.8-rc8
[linux/fpc-iii.git] / drivers / char / tpm / tpm_tis_core.c
blobd66f51b3648e9d9113fb448074bacf0ca09dfcf5
1 /*
2 * Copyright (C) 2005, 2006 IBM Corporation
3 * Copyright (C) 2014, 2015 Intel Corporation
5 * Authors:
6 * Leendert van Doorn <leendert@watson.ibm.com>
7 * Kylene Hall <kjhall@us.ibm.com>
9 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
11 * Device driver for TCG/TCPA TPM (trusted platform module).
12 * Specifications at www.trustedcomputinggroup.org
14 * This device driver implements the TPM interface as defined in
15 * the TCG TPM Interface Spec version 1.2, revision 1.0.
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License as
19 * published by the Free Software Foundation, version 2 of the
20 * License.
22 #include <linux/init.h>
23 #include <linux/module.h>
24 #include <linux/moduleparam.h>
25 #include <linux/pnp.h>
26 #include <linux/slab.h>
27 #include <linux/interrupt.h>
28 #include <linux/wait.h>
29 #include <linux/acpi.h>
30 #include <linux/freezer.h>
31 #include "tpm.h"
32 #include "tpm_tis_core.h"
34 /* Before we attempt to access the TPM we must see that the valid bit is set.
35 * The specification says that this bit is 0 at reset and remains 0 until the
36 * 'TPM has gone through its self test and initialization and has established
37 * correct values in the other bits.'
39 static int wait_startup(struct tpm_chip *chip, int l)
41 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
42 unsigned long stop = jiffies + chip->timeout_a;
44 do {
45 int rc;
46 u8 access;
48 rc = tpm_tis_read8(priv, TPM_ACCESS(l), &access);
49 if (rc < 0)
50 return rc;
52 if (access & TPM_ACCESS_VALID)
53 return 0;
54 msleep(TPM_TIMEOUT);
55 } while (time_before(jiffies, stop));
56 return -1;
59 static int check_locality(struct tpm_chip *chip, int l)
61 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
62 int rc;
63 u8 access;
65 rc = tpm_tis_read8(priv, TPM_ACCESS(l), &access);
66 if (rc < 0)
67 return rc;
69 if ((access & (TPM_ACCESS_ACTIVE_LOCALITY | TPM_ACCESS_VALID)) ==
70 (TPM_ACCESS_ACTIVE_LOCALITY | TPM_ACCESS_VALID))
71 return priv->locality = l;
73 return -1;
76 static void release_locality(struct tpm_chip *chip, int l, int force)
78 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
79 int rc;
80 u8 access;
82 rc = tpm_tis_read8(priv, TPM_ACCESS(l), &access);
83 if (rc < 0)
84 return;
86 if (force || (access &
87 (TPM_ACCESS_REQUEST_PENDING | TPM_ACCESS_VALID)) ==
88 (TPM_ACCESS_REQUEST_PENDING | TPM_ACCESS_VALID))
89 tpm_tis_write8(priv, TPM_ACCESS(l), TPM_ACCESS_ACTIVE_LOCALITY);
93 static int request_locality(struct tpm_chip *chip, int l)
95 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
96 unsigned long stop, timeout;
97 long rc;
99 if (check_locality(chip, l) >= 0)
100 return l;
102 rc = tpm_tis_write8(priv, TPM_ACCESS(l), TPM_ACCESS_REQUEST_USE);
103 if (rc < 0)
104 return rc;
106 stop = jiffies + chip->timeout_a;
108 if (chip->flags & TPM_CHIP_FLAG_IRQ) {
109 again:
110 timeout = stop - jiffies;
111 if ((long)timeout <= 0)
112 return -1;
113 rc = wait_event_interruptible_timeout(priv->int_queue,
114 (check_locality
115 (chip, l) >= 0),
116 timeout);
117 if (rc > 0)
118 return l;
119 if (rc == -ERESTARTSYS && freezing(current)) {
120 clear_thread_flag(TIF_SIGPENDING);
121 goto again;
123 } else {
124 /* wait for burstcount */
125 do {
126 if (check_locality(chip, l) >= 0)
127 return l;
128 msleep(TPM_TIMEOUT);
129 } while (time_before(jiffies, stop));
131 return -1;
134 static u8 tpm_tis_status(struct tpm_chip *chip)
136 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
137 int rc;
138 u8 status;
140 rc = tpm_tis_read8(priv, TPM_STS(priv->locality), &status);
141 if (rc < 0)
142 return 0;
144 return status;
147 static void tpm_tis_ready(struct tpm_chip *chip)
149 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
151 /* this causes the current command to be aborted */
152 tpm_tis_write8(priv, TPM_STS(priv->locality), TPM_STS_COMMAND_READY);
155 static int get_burstcount(struct tpm_chip *chip)
157 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
158 unsigned long stop;
159 int burstcnt, rc;
160 u32 value;
162 /* wait for burstcount */
163 /* which timeout value, spec has 2 answers (c & d) */
164 stop = jiffies + chip->timeout_d;
165 do {
166 rc = tpm_tis_read32(priv, TPM_STS(priv->locality), &value);
167 if (rc < 0)
168 return rc;
170 burstcnt = (value >> 8) & 0xFFFF;
171 if (burstcnt)
172 return burstcnt;
173 msleep(TPM_TIMEOUT);
174 } while (time_before(jiffies, stop));
175 return -EBUSY;
178 static int recv_data(struct tpm_chip *chip, u8 *buf, size_t count)
180 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
181 int size = 0, burstcnt, rc;
183 while (size < count &&
184 wait_for_tpm_stat(chip,
185 TPM_STS_DATA_AVAIL | TPM_STS_VALID,
186 chip->timeout_c,
187 &priv->read_queue, true) == 0) {
188 burstcnt = min_t(int, get_burstcount(chip), count - size);
190 rc = tpm_tis_read_bytes(priv, TPM_DATA_FIFO(priv->locality),
191 burstcnt, buf + size);
192 if (rc < 0)
193 return rc;
195 size += burstcnt;
197 return size;
200 static int tpm_tis_recv(struct tpm_chip *chip, u8 *buf, size_t count)
202 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
203 int size = 0;
204 int expected, status;
206 if (count < TPM_HEADER_SIZE) {
207 size = -EIO;
208 goto out;
211 size = recv_data(chip, buf, TPM_HEADER_SIZE);
212 /* read first 10 bytes, including tag, paramsize, and result */
213 if (size < TPM_HEADER_SIZE) {
214 dev_err(&chip->dev, "Unable to read header\n");
215 goto out;
218 expected = be32_to_cpu(*(__be32 *) (buf + 2));
219 if (expected > count) {
220 size = -EIO;
221 goto out;
224 size += recv_data(chip, &buf[TPM_HEADER_SIZE],
225 expected - TPM_HEADER_SIZE);
226 if (size < expected) {
227 dev_err(&chip->dev, "Unable to read remainder of result\n");
228 size = -ETIME;
229 goto out;
232 wait_for_tpm_stat(chip, TPM_STS_VALID, chip->timeout_c,
233 &priv->int_queue, false);
234 status = tpm_tis_status(chip);
235 if (status & TPM_STS_DATA_AVAIL) { /* retry? */
236 dev_err(&chip->dev, "Error left over data\n");
237 size = -EIO;
238 goto out;
241 out:
242 tpm_tis_ready(chip);
243 release_locality(chip, priv->locality, 0);
244 return size;
248 * If interrupts are used (signaled by an irq set in the vendor structure)
249 * tpm.c can skip polling for the data to be available as the interrupt is
250 * waited for here
252 static int tpm_tis_send_data(struct tpm_chip *chip, u8 *buf, size_t len)
254 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
255 int rc, status, burstcnt;
256 size_t count = 0;
257 bool itpm = priv->flags & TPM_TIS_ITPM_POSSIBLE;
259 if (request_locality(chip, 0) < 0)
260 return -EBUSY;
262 status = tpm_tis_status(chip);
263 if ((status & TPM_STS_COMMAND_READY) == 0) {
264 tpm_tis_ready(chip);
265 if (wait_for_tpm_stat
266 (chip, TPM_STS_COMMAND_READY, chip->timeout_b,
267 &priv->int_queue, false) < 0) {
268 rc = -ETIME;
269 goto out_err;
273 while (count < len - 1) {
274 burstcnt = min_t(int, get_burstcount(chip), len - count - 1);
275 rc = tpm_tis_write_bytes(priv, TPM_DATA_FIFO(priv->locality),
276 burstcnt, buf + count);
277 if (rc < 0)
278 goto out_err;
280 count += burstcnt;
282 wait_for_tpm_stat(chip, TPM_STS_VALID, chip->timeout_c,
283 &priv->int_queue, false);
284 status = tpm_tis_status(chip);
285 if (!itpm && (status & TPM_STS_DATA_EXPECT) == 0) {
286 rc = -EIO;
287 goto out_err;
291 /* write last byte */
292 rc = tpm_tis_write8(priv, TPM_DATA_FIFO(priv->locality), buf[count]);
293 if (rc < 0)
294 goto out_err;
296 wait_for_tpm_stat(chip, TPM_STS_VALID, chip->timeout_c,
297 &priv->int_queue, false);
298 status = tpm_tis_status(chip);
299 if (!itpm && (status & TPM_STS_DATA_EXPECT) != 0) {
300 rc = -EIO;
301 goto out_err;
304 return 0;
306 out_err:
307 tpm_tis_ready(chip);
308 release_locality(chip, priv->locality, 0);
309 return rc;
312 static void disable_interrupts(struct tpm_chip *chip)
314 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
315 u32 intmask;
316 int rc;
318 rc = tpm_tis_read32(priv, TPM_INT_ENABLE(priv->locality), &intmask);
319 if (rc < 0)
320 intmask = 0;
322 intmask &= ~TPM_GLOBAL_INT_ENABLE;
323 rc = tpm_tis_write32(priv, TPM_INT_ENABLE(priv->locality), intmask);
325 devm_free_irq(chip->dev.parent, priv->irq, chip);
326 priv->irq = 0;
327 chip->flags &= ~TPM_CHIP_FLAG_IRQ;
331 * If interrupts are used (signaled by an irq set in the vendor structure)
332 * tpm.c can skip polling for the data to be available as the interrupt is
333 * waited for here
335 static int tpm_tis_send_main(struct tpm_chip *chip, u8 *buf, size_t len)
337 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
338 int rc;
339 u32 ordinal;
340 unsigned long dur;
342 rc = tpm_tis_send_data(chip, buf, len);
343 if (rc < 0)
344 return rc;
346 /* go and do it */
347 rc = tpm_tis_write8(priv, TPM_STS(priv->locality), TPM_STS_GO);
348 if (rc < 0)
349 goto out_err;
351 if (chip->flags & TPM_CHIP_FLAG_IRQ) {
352 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
354 if (chip->flags & TPM_CHIP_FLAG_TPM2)
355 dur = tpm2_calc_ordinal_duration(chip, ordinal);
356 else
357 dur = tpm_calc_ordinal_duration(chip, ordinal);
359 if (wait_for_tpm_stat
360 (chip, TPM_STS_DATA_AVAIL | TPM_STS_VALID, dur,
361 &priv->read_queue, false) < 0) {
362 rc = -ETIME;
363 goto out_err;
366 return len;
367 out_err:
368 tpm_tis_ready(chip);
369 release_locality(chip, priv->locality, 0);
370 return rc;
373 static int tpm_tis_send(struct tpm_chip *chip, u8 *buf, size_t len)
375 int rc, irq;
376 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
378 if (!(chip->flags & TPM_CHIP_FLAG_IRQ) || priv->irq_tested)
379 return tpm_tis_send_main(chip, buf, len);
381 /* Verify receipt of the expected IRQ */
382 irq = priv->irq;
383 priv->irq = 0;
384 chip->flags &= ~TPM_CHIP_FLAG_IRQ;
385 rc = tpm_tis_send_main(chip, buf, len);
386 priv->irq = irq;
387 chip->flags |= TPM_CHIP_FLAG_IRQ;
388 if (!priv->irq_tested)
389 msleep(1);
390 if (!priv->irq_tested)
391 disable_interrupts(chip);
392 priv->irq_tested = true;
393 return rc;
396 struct tis_vendor_timeout_override {
397 u32 did_vid;
398 unsigned long timeout_us[4];
401 static const struct tis_vendor_timeout_override vendor_timeout_overrides[] = {
402 /* Atmel 3204 */
403 { 0x32041114, { (TIS_SHORT_TIMEOUT*1000), (TIS_LONG_TIMEOUT*1000),
404 (TIS_SHORT_TIMEOUT*1000), (TIS_SHORT_TIMEOUT*1000) } },
407 static bool tpm_tis_update_timeouts(struct tpm_chip *chip,
408 unsigned long *timeout_cap)
410 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
411 int i, rc;
412 u32 did_vid;
414 rc = tpm_tis_read32(priv, TPM_DID_VID(0), &did_vid);
415 if (rc < 0)
416 return rc;
418 for (i = 0; i != ARRAY_SIZE(vendor_timeout_overrides); i++) {
419 if (vendor_timeout_overrides[i].did_vid != did_vid)
420 continue;
421 memcpy(timeout_cap, vendor_timeout_overrides[i].timeout_us,
422 sizeof(vendor_timeout_overrides[i].timeout_us));
423 return true;
426 return false;
430 * Early probing for iTPM with STS_DATA_EXPECT flaw.
431 * Try sending command without itpm flag set and if that
432 * fails, repeat with itpm flag set.
434 static int probe_itpm(struct tpm_chip *chip)
436 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
437 int rc = 0;
438 u8 cmd_getticks[] = {
439 0x00, 0xc1, 0x00, 0x00, 0x00, 0x0a,
440 0x00, 0x00, 0x00, 0xf1
442 size_t len = sizeof(cmd_getticks);
443 bool itpm;
444 u16 vendor;
446 rc = tpm_tis_read16(priv, TPM_DID_VID(0), &vendor);
447 if (rc < 0)
448 return rc;
450 /* probe only iTPMS */
451 if (vendor != TPM_VID_INTEL)
452 return 0;
454 itpm = false;
456 rc = tpm_tis_send_data(chip, cmd_getticks, len);
457 if (rc == 0)
458 goto out;
460 tpm_tis_ready(chip);
461 release_locality(chip, priv->locality, 0);
463 itpm = true;
465 rc = tpm_tis_send_data(chip, cmd_getticks, len);
466 if (rc == 0) {
467 dev_info(&chip->dev, "Detected an iTPM.\n");
468 rc = 1;
469 } else
470 rc = -EFAULT;
472 out:
473 tpm_tis_ready(chip);
474 release_locality(chip, priv->locality, 0);
476 return rc;
479 static bool tpm_tis_req_canceled(struct tpm_chip *chip, u8 status)
481 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
483 switch (priv->manufacturer_id) {
484 case TPM_VID_WINBOND:
485 return ((status == TPM_STS_VALID) ||
486 (status == (TPM_STS_VALID | TPM_STS_COMMAND_READY)));
487 case TPM_VID_STM:
488 return (status == (TPM_STS_VALID | TPM_STS_COMMAND_READY));
489 default:
490 return (status == TPM_STS_COMMAND_READY);
494 static irqreturn_t tis_int_handler(int dummy, void *dev_id)
496 struct tpm_chip *chip = dev_id;
497 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
498 u32 interrupt;
499 int i, rc;
501 rc = tpm_tis_read32(priv, TPM_INT_STATUS(priv->locality), &interrupt);
502 if (rc < 0)
503 return IRQ_NONE;
505 if (interrupt == 0)
506 return IRQ_NONE;
508 priv->irq_tested = true;
509 if (interrupt & TPM_INTF_DATA_AVAIL_INT)
510 wake_up_interruptible(&priv->read_queue);
511 if (interrupt & TPM_INTF_LOCALITY_CHANGE_INT)
512 for (i = 0; i < 5; i++)
513 if (check_locality(chip, i) >= 0)
514 break;
515 if (interrupt &
516 (TPM_INTF_LOCALITY_CHANGE_INT | TPM_INTF_STS_VALID_INT |
517 TPM_INTF_CMD_READY_INT))
518 wake_up_interruptible(&priv->int_queue);
520 /* Clear interrupts handled with TPM_EOI */
521 rc = tpm_tis_write32(priv, TPM_INT_STATUS(priv->locality), interrupt);
522 if (rc < 0)
523 return IRQ_NONE;
525 tpm_tis_read32(priv, TPM_INT_STATUS(priv->locality), &interrupt);
526 return IRQ_HANDLED;
529 /* Register the IRQ and issue a command that will cause an interrupt. If an
530 * irq is seen then leave the chip setup for IRQ operation, otherwise reverse
531 * everything and leave in polling mode. Returns 0 on success.
533 static int tpm_tis_probe_irq_single(struct tpm_chip *chip, u32 intmask,
534 int flags, int irq)
536 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
537 u8 original_int_vec;
538 int rc;
539 u32 int_status;
541 if (devm_request_irq(chip->dev.parent, irq, tis_int_handler, flags,
542 dev_name(&chip->dev), chip) != 0) {
543 dev_info(&chip->dev, "Unable to request irq: %d for probe\n",
544 irq);
545 return -1;
547 priv->irq = irq;
549 rc = tpm_tis_read8(priv, TPM_INT_VECTOR(priv->locality),
550 &original_int_vec);
551 if (rc < 0)
552 return rc;
554 rc = tpm_tis_write8(priv, TPM_INT_VECTOR(priv->locality), irq);
555 if (rc < 0)
556 return rc;
558 rc = tpm_tis_read32(priv, TPM_INT_STATUS(priv->locality), &int_status);
559 if (rc < 0)
560 return rc;
562 /* Clear all existing */
563 rc = tpm_tis_write32(priv, TPM_INT_STATUS(priv->locality), int_status);
564 if (rc < 0)
565 return rc;
567 /* Turn on */
568 rc = tpm_tis_write32(priv, TPM_INT_ENABLE(priv->locality),
569 intmask | TPM_GLOBAL_INT_ENABLE);
570 if (rc < 0)
571 return rc;
573 priv->irq_tested = false;
575 /* Generate an interrupt by having the core call through to
576 * tpm_tis_send
578 if (chip->flags & TPM_CHIP_FLAG_TPM2)
579 tpm2_gen_interrupt(chip);
580 else
581 tpm_gen_interrupt(chip);
583 /* tpm_tis_send will either confirm the interrupt is working or it
584 * will call disable_irq which undoes all of the above.
586 if (!(chip->flags & TPM_CHIP_FLAG_IRQ)) {
587 rc = tpm_tis_write8(priv, original_int_vec,
588 TPM_INT_VECTOR(priv->locality));
589 if (rc < 0)
590 return rc;
592 return 1;
595 return 0;
598 /* Try to find the IRQ the TPM is using. This is for legacy x86 systems that
599 * do not have ACPI/etc. We typically expect the interrupt to be declared if
600 * present.
602 static void tpm_tis_probe_irq(struct tpm_chip *chip, u32 intmask)
604 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
605 u8 original_int_vec;
606 int i, rc;
608 rc = tpm_tis_read8(priv, TPM_INT_VECTOR(priv->locality),
609 &original_int_vec);
610 if (rc < 0)
611 return;
613 if (!original_int_vec) {
614 if (IS_ENABLED(CONFIG_X86))
615 for (i = 3; i <= 15; i++)
616 if (!tpm_tis_probe_irq_single(chip, intmask, 0,
618 return;
619 } else if (!tpm_tis_probe_irq_single(chip, intmask, 0,
620 original_int_vec))
621 return;
624 void tpm_tis_remove(struct tpm_chip *chip)
626 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
627 u32 reg = TPM_INT_ENABLE(priv->locality);
628 u32 interrupt;
629 int rc;
631 rc = tpm_tis_read32(priv, reg, &interrupt);
632 if (rc < 0)
633 interrupt = 0;
635 tpm_tis_write32(priv, reg, ~TPM_GLOBAL_INT_ENABLE & interrupt);
636 release_locality(chip, priv->locality, 1);
638 EXPORT_SYMBOL_GPL(tpm_tis_remove);
640 static const struct tpm_class_ops tpm_tis = {
641 .flags = TPM_OPS_AUTO_STARTUP,
642 .status = tpm_tis_status,
643 .recv = tpm_tis_recv,
644 .send = tpm_tis_send,
645 .cancel = tpm_tis_ready,
646 .update_timeouts = tpm_tis_update_timeouts,
647 .req_complete_mask = TPM_STS_DATA_AVAIL | TPM_STS_VALID,
648 .req_complete_val = TPM_STS_DATA_AVAIL | TPM_STS_VALID,
649 .req_canceled = tpm_tis_req_canceled,
652 int tpm_tis_core_init(struct device *dev, struct tpm_tis_data *priv, int irq,
653 const struct tpm_tis_phy_ops *phy_ops,
654 acpi_handle acpi_dev_handle)
656 u32 vendor, intfcaps, intmask;
657 u8 rid;
658 int rc, probe;
659 struct tpm_chip *chip;
661 chip = tpmm_chip_alloc(dev, &tpm_tis);
662 if (IS_ERR(chip))
663 return PTR_ERR(chip);
665 #ifdef CONFIG_ACPI
666 chip->acpi_dev_handle = acpi_dev_handle;
667 #endif
669 /* Maximum timeouts */
670 chip->timeout_a = msecs_to_jiffies(TIS_TIMEOUT_A_MAX);
671 chip->timeout_b = msecs_to_jiffies(TIS_TIMEOUT_B_MAX);
672 chip->timeout_c = msecs_to_jiffies(TIS_TIMEOUT_C_MAX);
673 chip->timeout_d = msecs_to_jiffies(TIS_TIMEOUT_D_MAX);
674 priv->phy_ops = phy_ops;
675 dev_set_drvdata(&chip->dev, priv);
677 if (wait_startup(chip, 0) != 0) {
678 rc = -ENODEV;
679 goto out_err;
682 /* Take control of the TPM's interrupt hardware and shut it off */
683 rc = tpm_tis_read32(priv, TPM_INT_ENABLE(priv->locality), &intmask);
684 if (rc < 0)
685 goto out_err;
687 intmask |= TPM_INTF_CMD_READY_INT | TPM_INTF_LOCALITY_CHANGE_INT |
688 TPM_INTF_DATA_AVAIL_INT | TPM_INTF_STS_VALID_INT;
689 intmask &= ~TPM_GLOBAL_INT_ENABLE;
690 tpm_tis_write32(priv, TPM_INT_ENABLE(priv->locality), intmask);
692 if (request_locality(chip, 0) != 0) {
693 rc = -ENODEV;
694 goto out_err;
697 rc = tpm2_probe(chip);
698 if (rc)
699 goto out_err;
701 rc = tpm_tis_read32(priv, TPM_DID_VID(0), &vendor);
702 if (rc < 0)
703 goto out_err;
705 priv->manufacturer_id = vendor;
707 rc = tpm_tis_read8(priv, TPM_RID(0), &rid);
708 if (rc < 0)
709 goto out_err;
711 dev_info(dev, "%s TPM (device-id 0x%X, rev-id %d)\n",
712 (chip->flags & TPM_CHIP_FLAG_TPM2) ? "2.0" : "1.2",
713 vendor >> 16, rid);
715 if (!(priv->flags & TPM_TIS_ITPM_POSSIBLE)) {
716 probe = probe_itpm(chip);
717 if (probe < 0) {
718 rc = -ENODEV;
719 goto out_err;
722 if (!!probe)
723 priv->flags |= TPM_TIS_ITPM_POSSIBLE;
726 /* Figure out the capabilities */
727 rc = tpm_tis_read32(priv, TPM_INTF_CAPS(priv->locality), &intfcaps);
728 if (rc < 0)
729 goto out_err;
731 dev_dbg(dev, "TPM interface capabilities (0x%x):\n",
732 intfcaps);
733 if (intfcaps & TPM_INTF_BURST_COUNT_STATIC)
734 dev_dbg(dev, "\tBurst Count Static\n");
735 if (intfcaps & TPM_INTF_CMD_READY_INT)
736 dev_dbg(dev, "\tCommand Ready Int Support\n");
737 if (intfcaps & TPM_INTF_INT_EDGE_FALLING)
738 dev_dbg(dev, "\tInterrupt Edge Falling\n");
739 if (intfcaps & TPM_INTF_INT_EDGE_RISING)
740 dev_dbg(dev, "\tInterrupt Edge Rising\n");
741 if (intfcaps & TPM_INTF_INT_LEVEL_LOW)
742 dev_dbg(dev, "\tInterrupt Level Low\n");
743 if (intfcaps & TPM_INTF_INT_LEVEL_HIGH)
744 dev_dbg(dev, "\tInterrupt Level High\n");
745 if (intfcaps & TPM_INTF_LOCALITY_CHANGE_INT)
746 dev_dbg(dev, "\tLocality Change Int Support\n");
747 if (intfcaps & TPM_INTF_STS_VALID_INT)
748 dev_dbg(dev, "\tSts Valid Int Support\n");
749 if (intfcaps & TPM_INTF_DATA_AVAIL_INT)
750 dev_dbg(dev, "\tData Avail Int Support\n");
752 /* Very early on issue a command to the TPM in polling mode to make
753 * sure it works. May as well use that command to set the proper
754 * timeouts for the driver.
756 if (tpm_get_timeouts(chip)) {
757 dev_err(dev, "Could not get TPM timeouts and durations\n");
758 rc = -ENODEV;
759 goto out_err;
762 /* INTERRUPT Setup */
763 init_waitqueue_head(&priv->read_queue);
764 init_waitqueue_head(&priv->int_queue);
765 if (irq != -1) {
766 if (irq) {
767 tpm_tis_probe_irq_single(chip, intmask, IRQF_SHARED,
768 irq);
769 if (!(chip->flags & TPM_CHIP_FLAG_IRQ))
770 dev_err(&chip->dev, FW_BUG
771 "TPM interrupt not working, polling instead\n");
772 } else {
773 tpm_tis_probe_irq(chip, intmask);
777 return tpm_chip_register(chip);
778 out_err:
779 tpm_tis_remove(chip);
780 return rc;
782 EXPORT_SYMBOL_GPL(tpm_tis_core_init);
784 #ifdef CONFIG_PM_SLEEP
785 static void tpm_tis_reenable_interrupts(struct tpm_chip *chip)
787 struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
788 u32 intmask;
789 int rc;
791 /* reenable interrupts that device may have lost or
792 * BIOS/firmware may have disabled
794 rc = tpm_tis_write8(priv, TPM_INT_VECTOR(priv->locality), priv->irq);
795 if (rc < 0)
796 return;
798 rc = tpm_tis_read32(priv, TPM_INT_ENABLE(priv->locality), &intmask);
799 if (rc < 0)
800 return;
802 intmask |= TPM_INTF_CMD_READY_INT
803 | TPM_INTF_LOCALITY_CHANGE_INT | TPM_INTF_DATA_AVAIL_INT
804 | TPM_INTF_STS_VALID_INT | TPM_GLOBAL_INT_ENABLE;
806 tpm_tis_write32(priv, TPM_INT_ENABLE(priv->locality), intmask);
809 int tpm_tis_resume(struct device *dev)
811 struct tpm_chip *chip = dev_get_drvdata(dev);
812 int ret;
814 if (chip->flags & TPM_CHIP_FLAG_IRQ)
815 tpm_tis_reenable_interrupts(chip);
817 ret = tpm_pm_resume(dev);
818 if (ret)
819 return ret;
821 /* TPM 1.2 requires self-test on resume. This function actually returns
822 * an error code but for unknown reason it isn't handled.
824 if (!(chip->flags & TPM_CHIP_FLAG_TPM2))
825 tpm_do_selftest(chip);
827 return 0;
829 EXPORT_SYMBOL_GPL(tpm_tis_resume);
830 #endif
832 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
833 MODULE_DESCRIPTION("TPM Driver");
834 MODULE_VERSION("2.0");
835 MODULE_LICENSE("GPL");