2 * Copyright (C) 2005, 2006 IBM Corporation
5 * Leendert van Doorn <leendert@watson.ibm.com>
6 * Kylene Hall <kjhall@us.ibm.com>
8 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
10 * Device driver for TCG/TCPA TPM (trusted platform module).
11 * Specifications at www.trustedcomputinggroup.org
13 * This device driver implements the TPM interface as defined in
14 * the TCG TPM Interface Spec version 1.2, revision 1.0.
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License as
18 * published by the Free Software Foundation, version 2 of the
21 #include <linux/init.h>
22 #include <linux/module.h>
23 #include <linux/moduleparam.h>
24 #include <linux/pnp.h>
25 #include <linux/slab.h>
26 #include <linux/interrupt.h>
27 #include <linux/wait.h>
30 #define TPM_HEADER_SIZE 10
33 TPM_ACCESS_VALID
= 0x80,
34 TPM_ACCESS_ACTIVE_LOCALITY
= 0x20,
35 TPM_ACCESS_REQUEST_PENDING
= 0x04,
36 TPM_ACCESS_REQUEST_USE
= 0x02,
41 TPM_STS_COMMAND_READY
= 0x40,
43 TPM_STS_DATA_AVAIL
= 0x10,
44 TPM_STS_DATA_EXPECT
= 0x08,
48 TPM_GLOBAL_INT_ENABLE
= 0x80000000,
49 TPM_INTF_BURST_COUNT_STATIC
= 0x100,
50 TPM_INTF_CMD_READY_INT
= 0x080,
51 TPM_INTF_INT_EDGE_FALLING
= 0x040,
52 TPM_INTF_INT_EDGE_RISING
= 0x020,
53 TPM_INTF_INT_LEVEL_LOW
= 0x010,
54 TPM_INTF_INT_LEVEL_HIGH
= 0x008,
55 TPM_INTF_LOCALITY_CHANGE_INT
= 0x004,
56 TPM_INTF_STS_VALID_INT
= 0x002,
57 TPM_INTF_DATA_AVAIL_INT
= 0x001,
61 TIS_MEM_BASE
= 0xFED40000,
63 TIS_SHORT_TIMEOUT
= 750, /* ms */
64 TIS_LONG_TIMEOUT
= 2000, /* 2 sec */
67 #define TPM_ACCESS(l) (0x0000 | ((l) << 12))
68 #define TPM_INT_ENABLE(l) (0x0008 | ((l) << 12))
69 #define TPM_INT_VECTOR(l) (0x000C | ((l) << 12))
70 #define TPM_INT_STATUS(l) (0x0010 | ((l) << 12))
71 #define TPM_INTF_CAPS(l) (0x0014 | ((l) << 12))
72 #define TPM_STS(l) (0x0018 | ((l) << 12))
73 #define TPM_DATA_FIFO(l) (0x0024 | ((l) << 12))
75 #define TPM_DID_VID(l) (0x0F00 | ((l) << 12))
76 #define TPM_RID(l) (0x0F04 | ((l) << 12))
78 static LIST_HEAD(tis_chips
);
79 static DEFINE_SPINLOCK(tis_lock
);
81 static int check_locality(struct tpm_chip
*chip
, int l
)
83 if ((ioread8(chip
->vendor
.iobase
+ TPM_ACCESS(l
)) &
84 (TPM_ACCESS_ACTIVE_LOCALITY
| TPM_ACCESS_VALID
)) ==
85 (TPM_ACCESS_ACTIVE_LOCALITY
| TPM_ACCESS_VALID
))
86 return chip
->vendor
.locality
= l
;
91 static void release_locality(struct tpm_chip
*chip
, int l
, int force
)
93 if (force
|| (ioread8(chip
->vendor
.iobase
+ TPM_ACCESS(l
)) &
94 (TPM_ACCESS_REQUEST_PENDING
| TPM_ACCESS_VALID
)) ==
95 (TPM_ACCESS_REQUEST_PENDING
| TPM_ACCESS_VALID
))
96 iowrite8(TPM_ACCESS_ACTIVE_LOCALITY
,
97 chip
->vendor
.iobase
+ TPM_ACCESS(l
));
100 static int request_locality(struct tpm_chip
*chip
, int l
)
105 if (check_locality(chip
, l
) >= 0)
108 iowrite8(TPM_ACCESS_REQUEST_USE
,
109 chip
->vendor
.iobase
+ TPM_ACCESS(l
));
111 if (chip
->vendor
.irq
) {
112 rc
= wait_event_interruptible_timeout(chip
->vendor
.int_queue
,
115 chip
->vendor
.timeout_a
);
120 /* wait for burstcount */
121 stop
= jiffies
+ chip
->vendor
.timeout_a
;
123 if (check_locality(chip
, l
) >= 0)
127 while (time_before(jiffies
, stop
));
132 static u8
tpm_tis_status(struct tpm_chip
*chip
)
134 return ioread8(chip
->vendor
.iobase
+
135 TPM_STS(chip
->vendor
.locality
));
138 static void tpm_tis_ready(struct tpm_chip
*chip
)
140 /* this causes the current command to be aborted */
141 iowrite8(TPM_STS_COMMAND_READY
,
142 chip
->vendor
.iobase
+ TPM_STS(chip
->vendor
.locality
));
145 static int get_burstcount(struct tpm_chip
*chip
)
150 /* wait for burstcount */
151 /* which timeout value, spec has 2 answers (c & d) */
152 stop
= jiffies
+ chip
->vendor
.timeout_d
;
154 burstcnt
= ioread8(chip
->vendor
.iobase
+
155 TPM_STS(chip
->vendor
.locality
) + 1);
156 burstcnt
+= ioread8(chip
->vendor
.iobase
+
157 TPM_STS(chip
->vendor
.locality
) +
162 } while (time_before(jiffies
, stop
));
166 static int wait_for_stat(struct tpm_chip
*chip
, u8 mask
, unsigned long timeout
,
167 wait_queue_head_t
*queue
)
173 /* check current status */
174 status
= tpm_tis_status(chip
);
175 if ((status
& mask
) == mask
)
178 if (chip
->vendor
.irq
) {
179 rc
= wait_event_interruptible_timeout(*queue
,
186 stop
= jiffies
+ timeout
;
189 status
= tpm_tis_status(chip
);
190 if ((status
& mask
) == mask
)
192 } while (time_before(jiffies
, stop
));
197 static int recv_data(struct tpm_chip
*chip
, u8
*buf
, size_t count
)
199 int size
= 0, burstcnt
;
200 while (size
< count
&&
202 TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
203 chip
->vendor
.timeout_c
,
204 &chip
->vendor
.read_queue
)
206 burstcnt
= get_burstcount(chip
);
207 for (; burstcnt
> 0 && size
< count
; burstcnt
--)
208 buf
[size
++] = ioread8(chip
->vendor
.iobase
+
209 TPM_DATA_FIFO(chip
->vendor
.
215 static int tpm_tis_recv(struct tpm_chip
*chip
, u8
*buf
, size_t count
)
218 int expected
, status
;
220 if (count
< TPM_HEADER_SIZE
) {
225 /* read first 10 bytes, including tag, paramsize, and result */
227 recv_data(chip
, buf
, TPM_HEADER_SIZE
)) < TPM_HEADER_SIZE
) {
228 dev_err(chip
->dev
, "Unable to read header\n");
232 expected
= be32_to_cpu(*(__be32
*) (buf
+ 2));
233 if (expected
> count
) {
239 recv_data(chip
, &buf
[TPM_HEADER_SIZE
],
240 expected
- TPM_HEADER_SIZE
)) < expected
) {
241 dev_err(chip
->dev
, "Unable to read remainder of result\n");
246 wait_for_stat(chip
, TPM_STS_VALID
, chip
->vendor
.timeout_c
,
247 &chip
->vendor
.int_queue
);
248 status
= tpm_tis_status(chip
);
249 if (status
& TPM_STS_DATA_AVAIL
) { /* retry? */
250 dev_err(chip
->dev
, "Error left over data\n");
257 release_locality(chip
, chip
->vendor
.locality
, 0);
262 module_param(itpm
, bool, 0444);
263 MODULE_PARM_DESC(itpm
, "Force iTPM workarounds (found on some Lenovo laptops)");
266 * If interrupts are used (signaled by an irq set in the vendor structure)
267 * tpm.c can skip polling for the data to be available as the interrupt is
270 static int tpm_tis_send(struct tpm_chip
*chip
, u8
*buf
, size_t len
)
272 int rc
, status
, burstcnt
;
276 if (request_locality(chip
, 0) < 0)
279 status
= tpm_tis_status(chip
);
280 if ((status
& TPM_STS_COMMAND_READY
) == 0) {
283 (chip
, TPM_STS_COMMAND_READY
, chip
->vendor
.timeout_b
,
284 &chip
->vendor
.int_queue
) < 0) {
290 while (count
< len
- 1) {
291 burstcnt
= get_burstcount(chip
);
292 for (; burstcnt
> 0 && count
< len
- 1; burstcnt
--) {
293 iowrite8(buf
[count
], chip
->vendor
.iobase
+
294 TPM_DATA_FIFO(chip
->vendor
.locality
));
298 wait_for_stat(chip
, TPM_STS_VALID
, chip
->vendor
.timeout_c
,
299 &chip
->vendor
.int_queue
);
300 status
= tpm_tis_status(chip
);
301 if (!itpm
&& (status
& TPM_STS_DATA_EXPECT
) == 0) {
307 /* write last byte */
309 chip
->vendor
.iobase
+
310 TPM_DATA_FIFO(chip
->vendor
.locality
));
311 wait_for_stat(chip
, TPM_STS_VALID
, chip
->vendor
.timeout_c
,
312 &chip
->vendor
.int_queue
);
313 status
= tpm_tis_status(chip
);
314 if ((status
& TPM_STS_DATA_EXPECT
) != 0) {
321 chip
->vendor
.iobase
+ TPM_STS(chip
->vendor
.locality
));
323 if (chip
->vendor
.irq
) {
324 ordinal
= be32_to_cpu(*((__be32
*) (buf
+ 6)));
326 (chip
, TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
327 tpm_calc_ordinal_duration(chip
, ordinal
),
328 &chip
->vendor
.read_queue
) < 0) {
336 release_locality(chip
, chip
->vendor
.locality
, 0);
340 static const struct file_operations tis_ops
= {
341 .owner
= THIS_MODULE
,
346 .release
= tpm_release
,
349 static DEVICE_ATTR(pubek
, S_IRUGO
, tpm_show_pubek
, NULL
);
350 static DEVICE_ATTR(pcrs
, S_IRUGO
, tpm_show_pcrs
, NULL
);
351 static DEVICE_ATTR(enabled
, S_IRUGO
, tpm_show_enabled
, NULL
);
352 static DEVICE_ATTR(active
, S_IRUGO
, tpm_show_active
, NULL
);
353 static DEVICE_ATTR(owned
, S_IRUGO
, tpm_show_owned
, NULL
);
354 static DEVICE_ATTR(temp_deactivated
, S_IRUGO
, tpm_show_temp_deactivated
,
356 static DEVICE_ATTR(caps
, S_IRUGO
, tpm_show_caps_1_2
, NULL
);
357 static DEVICE_ATTR(cancel
, S_IWUSR
| S_IWGRP
, NULL
, tpm_store_cancel
);
359 static struct attribute
*tis_attrs
[] = {
360 &dev_attr_pubek
.attr
,
362 &dev_attr_enabled
.attr
,
363 &dev_attr_active
.attr
,
364 &dev_attr_owned
.attr
,
365 &dev_attr_temp_deactivated
.attr
,
367 &dev_attr_cancel
.attr
, NULL
,
370 static struct attribute_group tis_attr_grp
= {
374 static struct tpm_vendor_specific tpm_tis
= {
375 .status
= tpm_tis_status
,
376 .recv
= tpm_tis_recv
,
377 .send
= tpm_tis_send
,
378 .cancel
= tpm_tis_ready
,
379 .req_complete_mask
= TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
380 .req_complete_val
= TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
381 .req_canceled
= TPM_STS_COMMAND_READY
,
382 .attr_group
= &tis_attr_grp
,
387 static irqreturn_t
tis_int_probe(int irq
, void *dev_id
)
389 struct tpm_chip
*chip
= dev_id
;
392 interrupt
= ioread32(chip
->vendor
.iobase
+
393 TPM_INT_STATUS(chip
->vendor
.locality
));
398 chip
->vendor
.irq
= irq
;
400 /* Clear interrupts handled with TPM_EOI */
402 chip
->vendor
.iobase
+
403 TPM_INT_STATUS(chip
->vendor
.locality
));
407 static irqreturn_t
tis_int_handler(int dummy
, void *dev_id
)
409 struct tpm_chip
*chip
= dev_id
;
413 interrupt
= ioread32(chip
->vendor
.iobase
+
414 TPM_INT_STATUS(chip
->vendor
.locality
));
419 if (interrupt
& TPM_INTF_DATA_AVAIL_INT
)
420 wake_up_interruptible(&chip
->vendor
.read_queue
);
421 if (interrupt
& TPM_INTF_LOCALITY_CHANGE_INT
)
422 for (i
= 0; i
< 5; i
++)
423 if (check_locality(chip
, i
) >= 0)
426 (TPM_INTF_LOCALITY_CHANGE_INT
| TPM_INTF_STS_VALID_INT
|
427 TPM_INTF_CMD_READY_INT
))
428 wake_up_interruptible(&chip
->vendor
.int_queue
);
430 /* Clear interrupts handled with TPM_EOI */
432 chip
->vendor
.iobase
+
433 TPM_INT_STATUS(chip
->vendor
.locality
));
434 ioread32(chip
->vendor
.iobase
+ TPM_INT_STATUS(chip
->vendor
.locality
));
438 static int interrupts
= 1;
439 module_param(interrupts
, bool, 0444);
440 MODULE_PARM_DESC(interrupts
, "Enable interrupts");
442 static int tpm_tis_init(struct device
*dev
, resource_size_t start
,
443 resource_size_t len
, unsigned int irq
)
445 u32 vendor
, intfcaps
, intmask
;
447 struct tpm_chip
*chip
;
449 if (!(chip
= tpm_register_hardware(dev
, &tpm_tis
)))
452 chip
->vendor
.iobase
= ioremap(start
, len
);
453 if (!chip
->vendor
.iobase
) {
458 /* Default timeouts */
459 chip
->vendor
.timeout_a
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
460 chip
->vendor
.timeout_b
= msecs_to_jiffies(TIS_LONG_TIMEOUT
);
461 chip
->vendor
.timeout_c
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
462 chip
->vendor
.timeout_d
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
464 if (request_locality(chip
, 0) != 0) {
469 vendor
= ioread32(chip
->vendor
.iobase
+ TPM_DID_VID(0));
472 "1.2 TPM (device-id 0x%X, rev-id %d)\n",
473 vendor
>> 16, ioread8(chip
->vendor
.iobase
+ TPM_RID(0)));
476 dev_info(dev
, "Intel iTPM workaround enabled\n");
479 /* Figure out the capabilities */
481 ioread32(chip
->vendor
.iobase
+
482 TPM_INTF_CAPS(chip
->vendor
.locality
));
483 dev_dbg(dev
, "TPM interface capabilities (0x%x):\n",
485 if (intfcaps
& TPM_INTF_BURST_COUNT_STATIC
)
486 dev_dbg(dev
, "\tBurst Count Static\n");
487 if (intfcaps
& TPM_INTF_CMD_READY_INT
)
488 dev_dbg(dev
, "\tCommand Ready Int Support\n");
489 if (intfcaps
& TPM_INTF_INT_EDGE_FALLING
)
490 dev_dbg(dev
, "\tInterrupt Edge Falling\n");
491 if (intfcaps
& TPM_INTF_INT_EDGE_RISING
)
492 dev_dbg(dev
, "\tInterrupt Edge Rising\n");
493 if (intfcaps
& TPM_INTF_INT_LEVEL_LOW
)
494 dev_dbg(dev
, "\tInterrupt Level Low\n");
495 if (intfcaps
& TPM_INTF_INT_LEVEL_HIGH
)
496 dev_dbg(dev
, "\tInterrupt Level High\n");
497 if (intfcaps
& TPM_INTF_LOCALITY_CHANGE_INT
)
498 dev_dbg(dev
, "\tLocality Change Int Support\n");
499 if (intfcaps
& TPM_INTF_STS_VALID_INT
)
500 dev_dbg(dev
, "\tSts Valid Int Support\n");
501 if (intfcaps
& TPM_INTF_DATA_AVAIL_INT
)
502 dev_dbg(dev
, "\tData Avail Int Support\n");
504 /* INTERRUPT Setup */
505 init_waitqueue_head(&chip
->vendor
.read_queue
);
506 init_waitqueue_head(&chip
->vendor
.int_queue
);
509 ioread32(chip
->vendor
.iobase
+
510 TPM_INT_ENABLE(chip
->vendor
.locality
));
512 intmask
|= TPM_INTF_CMD_READY_INT
513 | TPM_INTF_LOCALITY_CHANGE_INT
| TPM_INTF_DATA_AVAIL_INT
514 | TPM_INTF_STS_VALID_INT
;
517 chip
->vendor
.iobase
+
518 TPM_INT_ENABLE(chip
->vendor
.locality
));
520 chip
->vendor
.irq
= irq
;
521 if (interrupts
&& !chip
->vendor
.irq
) {
523 ioread8(chip
->vendor
.iobase
+
524 TPM_INT_VECTOR(chip
->vendor
.locality
));
526 for (i
= 3; i
< 16 && chip
->vendor
.irq
== 0; i
++) {
527 iowrite8(i
, chip
->vendor
.iobase
+
528 TPM_INT_VECTOR(chip
->vendor
.locality
));
530 (i
, tis_int_probe
, IRQF_SHARED
,
531 chip
->vendor
.miscdev
.name
, chip
) != 0) {
533 "Unable to request irq: %d for probe\n",
538 /* Clear all existing */
540 (chip
->vendor
.iobase
+
541 TPM_INT_STATUS(chip
->vendor
.locality
)),
542 chip
->vendor
.iobase
+
543 TPM_INT_STATUS(chip
->vendor
.locality
));
546 iowrite32(intmask
| TPM_GLOBAL_INT_ENABLE
,
547 chip
->vendor
.iobase
+
548 TPM_INT_ENABLE(chip
->vendor
.locality
));
550 /* Generate Interrupts */
551 tpm_gen_interrupt(chip
);
555 chip
->vendor
.iobase
+
556 TPM_INT_ENABLE(chip
->vendor
.locality
));
560 if (chip
->vendor
.irq
) {
561 iowrite8(chip
->vendor
.irq
,
562 chip
->vendor
.iobase
+
563 TPM_INT_VECTOR(chip
->vendor
.locality
));
565 (chip
->vendor
.irq
, tis_int_handler
, IRQF_SHARED
,
566 chip
->vendor
.miscdev
.name
, chip
) != 0) {
568 "Unable to request irq: %d for use\n",
570 chip
->vendor
.irq
= 0;
572 /* Clear all existing */
574 (chip
->vendor
.iobase
+
575 TPM_INT_STATUS(chip
->vendor
.locality
)),
576 chip
->vendor
.iobase
+
577 TPM_INT_STATUS(chip
->vendor
.locality
));
580 iowrite32(intmask
| TPM_GLOBAL_INT_ENABLE
,
581 chip
->vendor
.iobase
+
582 TPM_INT_ENABLE(chip
->vendor
.locality
));
586 INIT_LIST_HEAD(&chip
->vendor
.list
);
587 spin_lock(&tis_lock
);
588 list_add(&chip
->vendor
.list
, &tis_chips
);
589 spin_unlock(&tis_lock
);
591 tpm_get_timeouts(chip
);
592 tpm_continue_selftest(chip
);
596 if (chip
->vendor
.iobase
)
597 iounmap(chip
->vendor
.iobase
);
598 tpm_remove_hardware(chip
->dev
);
602 static int __devinit
tpm_tis_pnp_init(struct pnp_dev
*pnp_dev
,
603 const struct pnp_device_id
*pnp_id
)
605 resource_size_t start
, len
;
606 unsigned int irq
= 0;
608 start
= pnp_mem_start(pnp_dev
, 0);
609 len
= pnp_mem_len(pnp_dev
, 0);
611 if (pnp_irq_valid(pnp_dev
, 0))
612 irq
= pnp_irq(pnp_dev
, 0);
616 return tpm_tis_init(&pnp_dev
->dev
, start
, len
, irq
);
619 static int tpm_tis_pnp_suspend(struct pnp_dev
*dev
, pm_message_t msg
)
621 return tpm_pm_suspend(&dev
->dev
, msg
);
624 static int tpm_tis_pnp_resume(struct pnp_dev
*dev
)
626 struct tpm_chip
*chip
= pnp_get_drvdata(dev
);
629 ret
= tpm_pm_resume(&dev
->dev
);
631 tpm_continue_selftest(chip
);
636 static struct pnp_device_id tpm_pnp_tbl
[] __devinitdata
= {
637 {"PNP0C31", 0}, /* TPM */
638 {"ATM1200", 0}, /* Atmel */
639 {"IFX0102", 0}, /* Infineon */
640 {"BCM0101", 0}, /* Broadcom */
641 {"BCM0102", 0}, /* Broadcom */
642 {"NSC1200", 0}, /* National */
643 {"ICO0102", 0}, /* Intel */
645 {"", 0}, /* User Specified */
646 {"", 0} /* Terminator */
648 MODULE_DEVICE_TABLE(pnp
, tpm_pnp_tbl
);
650 static __devexit
void tpm_tis_pnp_remove(struct pnp_dev
*dev
)
652 struct tpm_chip
*chip
= pnp_get_drvdata(dev
);
654 tpm_dev_vendor_release(chip
);
660 static struct pnp_driver tis_pnp_driver
= {
662 .id_table
= tpm_pnp_tbl
,
663 .probe
= tpm_tis_pnp_init
,
664 .suspend
= tpm_tis_pnp_suspend
,
665 .resume
= tpm_tis_pnp_resume
,
666 .remove
= tpm_tis_pnp_remove
,
669 #define TIS_HID_USR_IDX sizeof(tpm_pnp_tbl)/sizeof(struct pnp_device_id) -2
670 module_param_string(hid
, tpm_pnp_tbl
[TIS_HID_USR_IDX
].id
,
671 sizeof(tpm_pnp_tbl
[TIS_HID_USR_IDX
].id
), 0444);
672 MODULE_PARM_DESC(hid
, "Set additional specific HID for this driver to probe");
674 static int tpm_tis_suspend(struct platform_device
*dev
, pm_message_t msg
)
676 return tpm_pm_suspend(&dev
->dev
, msg
);
679 static int tpm_tis_resume(struct platform_device
*dev
)
681 return tpm_pm_resume(&dev
->dev
);
683 static struct platform_driver tis_drv
= {
686 .owner
= THIS_MODULE
,
688 .suspend
= tpm_tis_suspend
,
689 .resume
= tpm_tis_resume
,
692 static struct platform_device
*pdev
;
695 module_param(force
, bool, 0444);
696 MODULE_PARM_DESC(force
, "Force device probe rather than using ACPI entry");
697 static int __init
init_tis(void)
702 return pnp_register_driver(&tis_pnp_driver
);
705 rc
= platform_driver_register(&tis_drv
);
708 if (IS_ERR(pdev
=platform_device_register_simple("tpm_tis", -1, NULL
, 0)))
709 return PTR_ERR(pdev
);
710 if((rc
=tpm_tis_init(&pdev
->dev
, TIS_MEM_BASE
, TIS_MEM_LEN
, 0)) != 0) {
711 platform_device_unregister(pdev
);
712 platform_driver_unregister(&tis_drv
);
717 static void __exit
cleanup_tis(void)
719 struct tpm_vendor_specific
*i
, *j
;
720 struct tpm_chip
*chip
;
721 spin_lock(&tis_lock
);
722 list_for_each_entry_safe(i
, j
, &tis_chips
, list
) {
723 chip
= to_tpm_chip(i
);
724 tpm_remove_hardware(chip
->dev
);
725 iowrite32(~TPM_GLOBAL_INT_ENABLE
&
726 ioread32(chip
->vendor
.iobase
+
727 TPM_INT_ENABLE(chip
->vendor
.
729 chip
->vendor
.iobase
+
730 TPM_INT_ENABLE(chip
->vendor
.locality
));
731 release_locality(chip
, chip
->vendor
.locality
, 1);
732 if (chip
->vendor
.irq
)
733 free_irq(chip
->vendor
.irq
, chip
);
737 spin_unlock(&tis_lock
);
740 pnp_unregister_driver(&tis_pnp_driver
);
744 platform_device_unregister(pdev
);
745 platform_driver_unregister(&tis_drv
);
748 module_init(init_tis
);
749 module_exit(cleanup_tis
);
750 MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
751 MODULE_DESCRIPTION("TPM Driver");
752 MODULE_VERSION("2.0");
753 MODULE_LICENSE("GPL");