2 * Copyright (C) 2005, 2006 IBM Corporation
3 * Copyright (C) 2014, 2015 Intel Corporation
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
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>
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
;
48 rc
= tpm_tis_read8(priv
, TPM_ACCESS(l
), &access
);
52 if (access
& TPM_ACCESS_VALID
)
55 } while (time_before(jiffies
, stop
));
59 static int check_locality(struct tpm_chip
*chip
, int l
)
61 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
65 rc
= tpm_tis_read8(priv
, TPM_ACCESS(l
), &access
);
69 if ((access
& (TPM_ACCESS_ACTIVE_LOCALITY
| TPM_ACCESS_VALID
)) ==
70 (TPM_ACCESS_ACTIVE_LOCALITY
| TPM_ACCESS_VALID
))
71 return priv
->locality
= l
;
76 static void release_locality(struct tpm_chip
*chip
, int l
, int force
)
78 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
82 rc
= tpm_tis_read8(priv
, TPM_ACCESS(l
), &access
);
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
;
99 if (check_locality(chip
, l
) >= 0)
102 rc
= tpm_tis_write8(priv
, TPM_ACCESS(l
), TPM_ACCESS_REQUEST_USE
);
106 stop
= jiffies
+ chip
->timeout_a
;
108 if (chip
->flags
& TPM_CHIP_FLAG_IRQ
) {
110 timeout
= stop
- jiffies
;
111 if ((long)timeout
<= 0)
113 rc
= wait_event_interruptible_timeout(priv
->int_queue
,
119 if (rc
== -ERESTARTSYS
&& freezing(current
)) {
120 clear_thread_flag(TIF_SIGPENDING
);
124 /* wait for burstcount */
126 if (check_locality(chip
, l
) >= 0)
129 } while (time_before(jiffies
, stop
));
134 static u8
tpm_tis_status(struct tpm_chip
*chip
)
136 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
140 rc
= tpm_tis_read8(priv
, TPM_STS(priv
->locality
), &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
);
162 /* wait for burstcount */
163 /* which timeout value, spec has 2 answers (c & d) */
164 stop
= jiffies
+ chip
->timeout_d
;
166 rc
= tpm_tis_read32(priv
, TPM_STS(priv
->locality
), &value
);
170 burstcnt
= (value
>> 8) & 0xFFFF;
174 } while (time_before(jiffies
, stop
));
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 rc
= wait_for_tpm_stat(chip
,
185 TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
187 &priv
->read_queue
, true);
190 burstcnt
= get_burstcount(chip
);
192 dev_err(&chip
->dev
, "Unable to read burstcount\n");
195 burstcnt
= min_t(int, burstcnt
, count
- size
);
197 rc
= tpm_tis_read_bytes(priv
, TPM_DATA_FIFO(priv
->locality
),
198 burstcnt
, buf
+ size
);
207 static int tpm_tis_recv(struct tpm_chip
*chip
, u8
*buf
, size_t count
)
209 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
211 int expected
, status
;
213 if (count
< TPM_HEADER_SIZE
) {
218 size
= recv_data(chip
, buf
, TPM_HEADER_SIZE
);
219 /* read first 10 bytes, including tag, paramsize, and result */
220 if (size
< TPM_HEADER_SIZE
) {
221 dev_err(&chip
->dev
, "Unable to read header\n");
225 expected
= be32_to_cpu(*(__be32
*) (buf
+ 2));
226 if (expected
> count
) {
231 size
+= recv_data(chip
, &buf
[TPM_HEADER_SIZE
],
232 expected
- TPM_HEADER_SIZE
);
233 if (size
< expected
) {
234 dev_err(&chip
->dev
, "Unable to read remainder of result\n");
239 if (wait_for_tpm_stat(chip
, TPM_STS_VALID
, chip
->timeout_c
,
240 &priv
->int_queue
, false) < 0) {
244 status
= tpm_tis_status(chip
);
245 if (status
& TPM_STS_DATA_AVAIL
) { /* retry? */
246 dev_err(&chip
->dev
, "Error left over data\n");
253 release_locality(chip
, priv
->locality
, 0);
258 * If interrupts are used (signaled by an irq set in the vendor structure)
259 * tpm.c can skip polling for the data to be available as the interrupt is
262 static int tpm_tis_send_data(struct tpm_chip
*chip
, u8
*buf
, size_t len
)
264 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
265 int rc
, status
, burstcnt
;
267 bool itpm
= priv
->flags
& TPM_TIS_ITPM_POSSIBLE
;
269 if (request_locality(chip
, 0) < 0)
272 status
= tpm_tis_status(chip
);
273 if ((status
& TPM_STS_COMMAND_READY
) == 0) {
275 if (wait_for_tpm_stat
276 (chip
, TPM_STS_COMMAND_READY
, chip
->timeout_b
,
277 &priv
->int_queue
, false) < 0) {
283 while (count
< len
- 1) {
284 burstcnt
= get_burstcount(chip
);
286 dev_err(&chip
->dev
, "Unable to read burstcount\n");
290 burstcnt
= min_t(int, burstcnt
, len
- count
- 1);
291 rc
= tpm_tis_write_bytes(priv
, TPM_DATA_FIFO(priv
->locality
),
292 burstcnt
, buf
+ count
);
298 if (wait_for_tpm_stat(chip
, TPM_STS_VALID
, chip
->timeout_c
,
299 &priv
->int_queue
, false) < 0) {
303 status
= tpm_tis_status(chip
);
304 if (!itpm
&& (status
& TPM_STS_DATA_EXPECT
) == 0) {
310 /* write last byte */
311 rc
= tpm_tis_write8(priv
, TPM_DATA_FIFO(priv
->locality
), buf
[count
]);
315 if (wait_for_tpm_stat(chip
, TPM_STS_VALID
, chip
->timeout_c
,
316 &priv
->int_queue
, false) < 0) {
320 status
= tpm_tis_status(chip
);
321 if (!itpm
&& (status
& TPM_STS_DATA_EXPECT
) != 0) {
330 release_locality(chip
, priv
->locality
, 0);
334 static void disable_interrupts(struct tpm_chip
*chip
)
336 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
340 rc
= tpm_tis_read32(priv
, TPM_INT_ENABLE(priv
->locality
), &intmask
);
344 intmask
&= ~TPM_GLOBAL_INT_ENABLE
;
345 rc
= tpm_tis_write32(priv
, TPM_INT_ENABLE(priv
->locality
), intmask
);
347 devm_free_irq(chip
->dev
.parent
, priv
->irq
, chip
);
349 chip
->flags
&= ~TPM_CHIP_FLAG_IRQ
;
353 * If interrupts are used (signaled by an irq set in the vendor structure)
354 * tpm.c can skip polling for the data to be available as the interrupt is
357 static int tpm_tis_send_main(struct tpm_chip
*chip
, u8
*buf
, size_t len
)
359 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
364 rc
= tpm_tis_send_data(chip
, buf
, len
);
369 rc
= tpm_tis_write8(priv
, TPM_STS(priv
->locality
), TPM_STS_GO
);
373 if (chip
->flags
& TPM_CHIP_FLAG_IRQ
) {
374 ordinal
= be32_to_cpu(*((__be32
*) (buf
+ 6)));
376 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
)
377 dur
= tpm2_calc_ordinal_duration(chip
, ordinal
);
379 dur
= tpm_calc_ordinal_duration(chip
, ordinal
);
381 if (wait_for_tpm_stat
382 (chip
, TPM_STS_DATA_AVAIL
| TPM_STS_VALID
, dur
,
383 &priv
->read_queue
, false) < 0) {
391 release_locality(chip
, priv
->locality
, 0);
395 static int tpm_tis_send(struct tpm_chip
*chip
, u8
*buf
, size_t len
)
398 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
400 if (!(chip
->flags
& TPM_CHIP_FLAG_IRQ
) || priv
->irq_tested
)
401 return tpm_tis_send_main(chip
, buf
, len
);
403 /* Verify receipt of the expected IRQ */
406 chip
->flags
&= ~TPM_CHIP_FLAG_IRQ
;
407 rc
= tpm_tis_send_main(chip
, buf
, len
);
409 chip
->flags
|= TPM_CHIP_FLAG_IRQ
;
410 if (!priv
->irq_tested
)
412 if (!priv
->irq_tested
)
413 disable_interrupts(chip
);
414 priv
->irq_tested
= true;
418 struct tis_vendor_timeout_override
{
420 unsigned long timeout_us
[4];
423 static const struct tis_vendor_timeout_override vendor_timeout_overrides
[] = {
425 { 0x32041114, { (TIS_SHORT_TIMEOUT
*1000), (TIS_LONG_TIMEOUT
*1000),
426 (TIS_SHORT_TIMEOUT
*1000), (TIS_SHORT_TIMEOUT
*1000) } },
429 static bool tpm_tis_update_timeouts(struct tpm_chip
*chip
,
430 unsigned long *timeout_cap
)
432 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
436 rc
= tpm_tis_read32(priv
, TPM_DID_VID(0), &did_vid
);
440 for (i
= 0; i
!= ARRAY_SIZE(vendor_timeout_overrides
); i
++) {
441 if (vendor_timeout_overrides
[i
].did_vid
!= did_vid
)
443 memcpy(timeout_cap
, vendor_timeout_overrides
[i
].timeout_us
,
444 sizeof(vendor_timeout_overrides
[i
].timeout_us
));
452 * Early probing for iTPM with STS_DATA_EXPECT flaw.
453 * Try sending command without itpm flag set and if that
454 * fails, repeat with itpm flag set.
456 static int probe_itpm(struct tpm_chip
*chip
)
458 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
460 u8 cmd_getticks
[] = {
461 0x00, 0xc1, 0x00, 0x00, 0x00, 0x0a,
462 0x00, 0x00, 0x00, 0xf1
464 size_t len
= sizeof(cmd_getticks
);
467 rc
= tpm_tis_read16(priv
, TPM_DID_VID(0), &vendor
);
471 /* probe only iTPMS */
472 if (vendor
!= TPM_VID_INTEL
)
475 rc
= tpm_tis_send_data(chip
, cmd_getticks
, len
);
480 release_locality(chip
, priv
->locality
, 0);
482 rc
= tpm_tis_send_data(chip
, cmd_getticks
, len
);
484 dev_info(&chip
->dev
, "Detected an iTPM.\n");
491 release_locality(chip
, priv
->locality
, 0);
496 static bool tpm_tis_req_canceled(struct tpm_chip
*chip
, u8 status
)
498 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
500 switch (priv
->manufacturer_id
) {
501 case TPM_VID_WINBOND
:
502 return ((status
== TPM_STS_VALID
) ||
503 (status
== (TPM_STS_VALID
| TPM_STS_COMMAND_READY
)));
505 return (status
== (TPM_STS_VALID
| TPM_STS_COMMAND_READY
));
507 return (status
== TPM_STS_COMMAND_READY
);
511 static irqreturn_t
tis_int_handler(int dummy
, void *dev_id
)
513 struct tpm_chip
*chip
= dev_id
;
514 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
518 rc
= tpm_tis_read32(priv
, TPM_INT_STATUS(priv
->locality
), &interrupt
);
525 priv
->irq_tested
= true;
526 if (interrupt
& TPM_INTF_DATA_AVAIL_INT
)
527 wake_up_interruptible(&priv
->read_queue
);
528 if (interrupt
& TPM_INTF_LOCALITY_CHANGE_INT
)
529 for (i
= 0; i
< 5; i
++)
530 if (check_locality(chip
, i
) >= 0)
533 (TPM_INTF_LOCALITY_CHANGE_INT
| TPM_INTF_STS_VALID_INT
|
534 TPM_INTF_CMD_READY_INT
))
535 wake_up_interruptible(&priv
->int_queue
);
537 /* Clear interrupts handled with TPM_EOI */
538 rc
= tpm_tis_write32(priv
, TPM_INT_STATUS(priv
->locality
), interrupt
);
542 tpm_tis_read32(priv
, TPM_INT_STATUS(priv
->locality
), &interrupt
);
546 static int tpm_tis_gen_interrupt(struct tpm_chip
*chip
)
548 const char *desc
= "attempting to generate an interrupt";
552 if (chip
->flags
& TPM_CHIP_FLAG_TPM2
)
553 return tpm2_get_tpm_pt(chip
, 0x100, &cap2
, desc
);
555 return tpm_getcap(chip
, TPM_CAP_PROP_TIS_TIMEOUT
, &cap
, desc
);
558 /* Register the IRQ and issue a command that will cause an interrupt. If an
559 * irq is seen then leave the chip setup for IRQ operation, otherwise reverse
560 * everything and leave in polling mode. Returns 0 on success.
562 static int tpm_tis_probe_irq_single(struct tpm_chip
*chip
, u32 intmask
,
565 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
570 if (devm_request_irq(chip
->dev
.parent
, irq
, tis_int_handler
, flags
,
571 dev_name(&chip
->dev
), chip
) != 0) {
572 dev_info(&chip
->dev
, "Unable to request irq: %d for probe\n",
578 rc
= tpm_tis_read8(priv
, TPM_INT_VECTOR(priv
->locality
),
583 rc
= tpm_tis_write8(priv
, TPM_INT_VECTOR(priv
->locality
), irq
);
587 rc
= tpm_tis_read32(priv
, TPM_INT_STATUS(priv
->locality
), &int_status
);
591 /* Clear all existing */
592 rc
= tpm_tis_write32(priv
, TPM_INT_STATUS(priv
->locality
), int_status
);
597 rc
= tpm_tis_write32(priv
, TPM_INT_ENABLE(priv
->locality
),
598 intmask
| TPM_GLOBAL_INT_ENABLE
);
602 priv
->irq_tested
= false;
604 /* Generate an interrupt by having the core call through to
607 rc
= tpm_tis_gen_interrupt(chip
);
611 /* tpm_tis_send will either confirm the interrupt is working or it
612 * will call disable_irq which undoes all of the above.
614 if (!(chip
->flags
& TPM_CHIP_FLAG_IRQ
)) {
615 rc
= tpm_tis_write8(priv
, original_int_vec
,
616 TPM_INT_VECTOR(priv
->locality
));
626 /* Try to find the IRQ the TPM is using. This is for legacy x86 systems that
627 * do not have ACPI/etc. We typically expect the interrupt to be declared if
630 static void tpm_tis_probe_irq(struct tpm_chip
*chip
, u32 intmask
)
632 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
636 rc
= tpm_tis_read8(priv
, TPM_INT_VECTOR(priv
->locality
),
641 if (!original_int_vec
) {
642 if (IS_ENABLED(CONFIG_X86
))
643 for (i
= 3; i
<= 15; i
++)
644 if (!tpm_tis_probe_irq_single(chip
, intmask
, 0,
647 } else if (!tpm_tis_probe_irq_single(chip
, intmask
, 0,
652 void tpm_tis_remove(struct tpm_chip
*chip
)
654 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
655 u32 reg
= TPM_INT_ENABLE(priv
->locality
);
659 rc
= tpm_tis_read32(priv
, reg
, &interrupt
);
663 tpm_tis_write32(priv
, reg
, ~TPM_GLOBAL_INT_ENABLE
& interrupt
);
664 release_locality(chip
, priv
->locality
, 1);
666 EXPORT_SYMBOL_GPL(tpm_tis_remove
);
668 static const struct tpm_class_ops tpm_tis
= {
669 .flags
= TPM_OPS_AUTO_STARTUP
,
670 .status
= tpm_tis_status
,
671 .recv
= tpm_tis_recv
,
672 .send
= tpm_tis_send
,
673 .cancel
= tpm_tis_ready
,
674 .update_timeouts
= tpm_tis_update_timeouts
,
675 .req_complete_mask
= TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
676 .req_complete_val
= TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
677 .req_canceled
= tpm_tis_req_canceled
,
680 int tpm_tis_core_init(struct device
*dev
, struct tpm_tis_data
*priv
, int irq
,
681 const struct tpm_tis_phy_ops
*phy_ops
,
682 acpi_handle acpi_dev_handle
)
684 u32 vendor
, intfcaps
, intmask
;
687 struct tpm_chip
*chip
;
689 chip
= tpmm_chip_alloc(dev
, &tpm_tis
);
691 return PTR_ERR(chip
);
694 chip
->acpi_dev_handle
= acpi_dev_handle
;
697 /* Maximum timeouts */
698 chip
->timeout_a
= msecs_to_jiffies(TIS_TIMEOUT_A_MAX
);
699 chip
->timeout_b
= msecs_to_jiffies(TIS_TIMEOUT_B_MAX
);
700 chip
->timeout_c
= msecs_to_jiffies(TIS_TIMEOUT_C_MAX
);
701 chip
->timeout_d
= msecs_to_jiffies(TIS_TIMEOUT_D_MAX
);
702 priv
->phy_ops
= phy_ops
;
703 dev_set_drvdata(&chip
->dev
, priv
);
705 if (wait_startup(chip
, 0) != 0) {
710 /* Take control of the TPM's interrupt hardware and shut it off */
711 rc
= tpm_tis_read32(priv
, TPM_INT_ENABLE(priv
->locality
), &intmask
);
715 intmask
|= TPM_INTF_CMD_READY_INT
| TPM_INTF_LOCALITY_CHANGE_INT
|
716 TPM_INTF_DATA_AVAIL_INT
| TPM_INTF_STS_VALID_INT
;
717 intmask
&= ~TPM_GLOBAL_INT_ENABLE
;
718 tpm_tis_write32(priv
, TPM_INT_ENABLE(priv
->locality
), intmask
);
720 if (request_locality(chip
, 0) != 0) {
725 rc
= tpm2_probe(chip
);
729 rc
= tpm_tis_read32(priv
, TPM_DID_VID(0), &vendor
);
733 priv
->manufacturer_id
= vendor
;
735 rc
= tpm_tis_read8(priv
, TPM_RID(0), &rid
);
739 dev_info(dev
, "%s TPM (device-id 0x%X, rev-id %d)\n",
740 (chip
->flags
& TPM_CHIP_FLAG_TPM2
) ? "2.0" : "1.2",
743 if (!(priv
->flags
& TPM_TIS_ITPM_POSSIBLE
)) {
744 probe
= probe_itpm(chip
);
751 priv
->flags
|= TPM_TIS_ITPM_POSSIBLE
;
754 /* Figure out the capabilities */
755 rc
= tpm_tis_read32(priv
, TPM_INTF_CAPS(priv
->locality
), &intfcaps
);
759 dev_dbg(dev
, "TPM interface capabilities (0x%x):\n",
761 if (intfcaps
& TPM_INTF_BURST_COUNT_STATIC
)
762 dev_dbg(dev
, "\tBurst Count Static\n");
763 if (intfcaps
& TPM_INTF_CMD_READY_INT
)
764 dev_dbg(dev
, "\tCommand Ready Int Support\n");
765 if (intfcaps
& TPM_INTF_INT_EDGE_FALLING
)
766 dev_dbg(dev
, "\tInterrupt Edge Falling\n");
767 if (intfcaps
& TPM_INTF_INT_EDGE_RISING
)
768 dev_dbg(dev
, "\tInterrupt Edge Rising\n");
769 if (intfcaps
& TPM_INTF_INT_LEVEL_LOW
)
770 dev_dbg(dev
, "\tInterrupt Level Low\n");
771 if (intfcaps
& TPM_INTF_INT_LEVEL_HIGH
)
772 dev_dbg(dev
, "\tInterrupt Level High\n");
773 if (intfcaps
& TPM_INTF_LOCALITY_CHANGE_INT
)
774 dev_dbg(dev
, "\tLocality Change Int Support\n");
775 if (intfcaps
& TPM_INTF_STS_VALID_INT
)
776 dev_dbg(dev
, "\tSts Valid Int Support\n");
777 if (intfcaps
& TPM_INTF_DATA_AVAIL_INT
)
778 dev_dbg(dev
, "\tData Avail Int Support\n");
780 /* INTERRUPT Setup */
781 init_waitqueue_head(&priv
->read_queue
);
782 init_waitqueue_head(&priv
->int_queue
);
784 /* Before doing irq testing issue a command to the TPM in polling mode
785 * to make sure it works. May as well use that command to set the
786 * proper timeouts for the driver.
788 if (tpm_get_timeouts(chip
)) {
789 dev_err(dev
, "Could not get TPM timeouts and durations\n");
795 tpm_tis_probe_irq_single(chip
, intmask
, IRQF_SHARED
,
797 if (!(chip
->flags
& TPM_CHIP_FLAG_IRQ
))
798 dev_err(&chip
->dev
, FW_BUG
799 "TPM interrupt not working, polling instead\n");
801 tpm_tis_probe_irq(chip
, intmask
);
805 return tpm_chip_register(chip
);
807 tpm_tis_remove(chip
);
810 EXPORT_SYMBOL_GPL(tpm_tis_core_init
);
812 #ifdef CONFIG_PM_SLEEP
813 static void tpm_tis_reenable_interrupts(struct tpm_chip
*chip
)
815 struct tpm_tis_data
*priv
= dev_get_drvdata(&chip
->dev
);
819 /* reenable interrupts that device may have lost or
820 * BIOS/firmware may have disabled
822 rc
= tpm_tis_write8(priv
, TPM_INT_VECTOR(priv
->locality
), priv
->irq
);
826 rc
= tpm_tis_read32(priv
, TPM_INT_ENABLE(priv
->locality
), &intmask
);
830 intmask
|= TPM_INTF_CMD_READY_INT
831 | TPM_INTF_LOCALITY_CHANGE_INT
| TPM_INTF_DATA_AVAIL_INT
832 | TPM_INTF_STS_VALID_INT
| TPM_GLOBAL_INT_ENABLE
;
834 tpm_tis_write32(priv
, TPM_INT_ENABLE(priv
->locality
), intmask
);
837 int tpm_tis_resume(struct device
*dev
)
839 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
842 if (chip
->flags
& TPM_CHIP_FLAG_IRQ
)
843 tpm_tis_reenable_interrupts(chip
);
845 ret
= tpm_pm_resume(dev
);
849 /* TPM 1.2 requires self-test on resume. This function actually returns
850 * an error code but for unknown reason it isn't handled.
852 if (!(chip
->flags
& TPM_CHIP_FLAG_TPM2
))
853 tpm_do_selftest(chip
);
857 EXPORT_SYMBOL_GPL(tpm_tis_resume
);
860 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
861 MODULE_DESCRIPTION("TPM Driver");
862 MODULE_VERSION("2.0");
863 MODULE_LICENSE("GPL");