blob: c17a305ecb2806256c2f7c4f1e9e0e4c3f878734 [file] [log] [blame]
Leendert van Doorn27084ef2006-04-22 02:38:03 -07001/*
2 * Copyright (C) 2005, 2006 IBM Corporation
3 *
4 * Authors:
5 * Leendert van Doorn <leendert@watson.ibm.com>
6 * Kylene Hall <kjhall@us.ibm.com>
7 *
Kent Yoder8e81cc12007-08-22 14:01:04 -07008 * Maintained by: <tpmdd-devel@lists.sourceforge.net>
9 *
Leendert van Doorn27084ef2006-04-22 02:38:03 -070010 * Device driver for TCG/TCPA TPM (trusted platform module).
11 * Specifications at www.trustedcomputinggroup.org
12 *
13 * This device driver implements the TPM interface as defined in
14 * the TCG TPM Interface Spec version 1.2, revision 1.0.
15 *
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
19 * License.
20 */
Kylene Jo Hall57135562006-04-22 02:39:44 -070021#include <linux/init.h>
22#include <linux/module.h>
23#include <linux/moduleparam.h>
Leendert van Doorn27084ef2006-04-22 02:38:03 -070024#include <linux/pnp.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Leendert van Doorn27084ef2006-04-22 02:38:03 -070026#include <linux/interrupt.h>
27#include <linux/wait.h>
Matthew Garrett3f0d3d02010-10-21 17:42:40 -040028#include <linux/acpi.h>
Leendert van Doorn27084ef2006-04-22 02:38:03 -070029#include "tpm.h"
30
31#define TPM_HEADER_SIZE 10
32
33enum tis_access {
34 TPM_ACCESS_VALID = 0x80,
35 TPM_ACCESS_ACTIVE_LOCALITY = 0x20,
36 TPM_ACCESS_REQUEST_PENDING = 0x04,
37 TPM_ACCESS_REQUEST_USE = 0x02,
38};
39
40enum tis_status {
41 TPM_STS_VALID = 0x80,
42 TPM_STS_COMMAND_READY = 0x40,
43 TPM_STS_GO = 0x20,
44 TPM_STS_DATA_AVAIL = 0x10,
45 TPM_STS_DATA_EXPECT = 0x08,
46};
47
48enum tis_int_flags {
49 TPM_GLOBAL_INT_ENABLE = 0x80000000,
50 TPM_INTF_BURST_COUNT_STATIC = 0x100,
51 TPM_INTF_CMD_READY_INT = 0x080,
52 TPM_INTF_INT_EDGE_FALLING = 0x040,
53 TPM_INTF_INT_EDGE_RISING = 0x020,
54 TPM_INTF_INT_LEVEL_LOW = 0x010,
55 TPM_INTF_INT_LEVEL_HIGH = 0x008,
56 TPM_INTF_LOCALITY_CHANGE_INT = 0x004,
57 TPM_INTF_STS_VALID_INT = 0x002,
58 TPM_INTF_DATA_AVAIL_INT = 0x001,
59};
60
Kylene Jo Hall36b20022006-04-22 02:38:19 -070061enum tis_defaults {
Kylene Jo Hall2a7362f2006-05-15 09:44:25 -070062 TIS_MEM_BASE = 0xFED40000,
Kylene Jo Hallb09d5302006-04-22 02:38:55 -070063 TIS_MEM_LEN = 0x5000,
Kylene Jo Hallcb535422006-04-22 02:39:31 -070064 TIS_SHORT_TIMEOUT = 750, /* ms */
65 TIS_LONG_TIMEOUT = 2000, /* 2 sec */
Kylene Jo Hall36b20022006-04-22 02:38:19 -070066};
67
Leendert van Doorn27084ef2006-04-22 02:38:03 -070068#define TPM_ACCESS(l) (0x0000 | ((l) << 12))
69#define TPM_INT_ENABLE(l) (0x0008 | ((l) << 12))
70#define TPM_INT_VECTOR(l) (0x000C | ((l) << 12))
71#define TPM_INT_STATUS(l) (0x0010 | ((l) << 12))
72#define TPM_INTF_CAPS(l) (0x0014 | ((l) << 12))
73#define TPM_STS(l) (0x0018 | ((l) << 12))
74#define TPM_DATA_FIFO(l) (0x0024 | ((l) << 12))
75
76#define TPM_DID_VID(l) (0x0F00 | ((l) << 12))
77#define TPM_RID(l) (0x0F04 | ((l) << 12))
78
79static LIST_HEAD(tis_chips);
80static DEFINE_SPINLOCK(tis_lock);
81
Matthew Garrett3f0d3d02010-10-21 17:42:40 -040082#ifdef CONFIG_ACPI
83static int is_itpm(struct pnp_dev *dev)
84{
85 struct acpi_device *acpi = pnp_acpi_device(dev);
86 struct acpi_hardware_id *id;
87
88 list_for_each_entry(id, &acpi->pnp.ids, list) {
89 if (!strcmp("INTC0102", id->id))
90 return 1;
91 }
92
93 return 0;
94}
95#else
96static int is_itpm(struct pnp_dev *dev)
97{
98 return 0;
99}
100#endif
101
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700102static int check_locality(struct tpm_chip *chip, int l)
103{
104 if ((ioread8(chip->vendor.iobase + TPM_ACCESS(l)) &
105 (TPM_ACCESS_ACTIVE_LOCALITY | TPM_ACCESS_VALID)) ==
106 (TPM_ACCESS_ACTIVE_LOCALITY | TPM_ACCESS_VALID))
107 return chip->vendor.locality = l;
108
109 return -1;
110}
111
112static void release_locality(struct tpm_chip *chip, int l, int force)
113{
114 if (force || (ioread8(chip->vendor.iobase + TPM_ACCESS(l)) &
115 (TPM_ACCESS_REQUEST_PENDING | TPM_ACCESS_VALID)) ==
116 (TPM_ACCESS_REQUEST_PENDING | TPM_ACCESS_VALID))
117 iowrite8(TPM_ACCESS_ACTIVE_LOCALITY,
118 chip->vendor.iobase + TPM_ACCESS(l));
119}
120
121static int request_locality(struct tpm_chip *chip, int l)
122{
123 unsigned long stop;
124 long rc;
125
126 if (check_locality(chip, l) >= 0)
127 return l;
128
129 iowrite8(TPM_ACCESS_REQUEST_USE,
130 chip->vendor.iobase + TPM_ACCESS(l));
131
132 if (chip->vendor.irq) {
Kylene Jo Hall36b20022006-04-22 02:38:19 -0700133 rc = wait_event_interruptible_timeout(chip->vendor.int_queue,
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700134 (check_locality
135 (chip, l) >= 0),
Kylene Jo Hall36b20022006-04-22 02:38:19 -0700136 chip->vendor.timeout_a);
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700137 if (rc > 0)
138 return l;
139
140 } else {
141 /* wait for burstcount */
Kylene Jo Hall36b20022006-04-22 02:38:19 -0700142 stop = jiffies + chip->vendor.timeout_a;
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700143 do {
144 if (check_locality(chip, l) >= 0)
145 return l;
146 msleep(TPM_TIMEOUT);
147 }
148 while (time_before(jiffies, stop));
149 }
150 return -1;
151}
152
153static u8 tpm_tis_status(struct tpm_chip *chip)
154{
155 return ioread8(chip->vendor.iobase +
156 TPM_STS(chip->vendor.locality));
157}
158
159static void tpm_tis_ready(struct tpm_chip *chip)
160{
161 /* this causes the current command to be aborted */
162 iowrite8(TPM_STS_COMMAND_READY,
163 chip->vendor.iobase + TPM_STS(chip->vendor.locality));
164}
165
166static int get_burstcount(struct tpm_chip *chip)
167{
168 unsigned long stop;
169 int burstcnt;
170
171 /* wait for burstcount */
172 /* which timeout value, spec has 2 answers (c & d) */
Kylene Jo Hall36b20022006-04-22 02:38:19 -0700173 stop = jiffies + chip->vendor.timeout_d;
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700174 do {
175 burstcnt = ioread8(chip->vendor.iobase +
176 TPM_STS(chip->vendor.locality) + 1);
177 burstcnt += ioread8(chip->vendor.iobase +
178 TPM_STS(chip->vendor.locality) +
179 2) << 8;
180 if (burstcnt)
181 return burstcnt;
182 msleep(TPM_TIMEOUT);
183 } while (time_before(jiffies, stop));
184 return -EBUSY;
185}
186
Kylene Jo Hall36b20022006-04-22 02:38:19 -0700187static int wait_for_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700188 wait_queue_head_t *queue)
189{
190 unsigned long stop;
191 long rc;
192 u8 status;
193
194 /* check current status */
195 status = tpm_tis_status(chip);
196 if ((status & mask) == mask)
197 return 0;
198
199 if (chip->vendor.irq) {
200 rc = wait_event_interruptible_timeout(*queue,
201 ((tpm_tis_status
202 (chip) & mask) ==
Kylene Jo Hall36b20022006-04-22 02:38:19 -0700203 mask), timeout);
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700204 if (rc > 0)
205 return 0;
206 } else {
Kylene Jo Hall36b20022006-04-22 02:38:19 -0700207 stop = jiffies + timeout;
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700208 do {
209 msleep(TPM_TIMEOUT);
210 status = tpm_tis_status(chip);
211 if ((status & mask) == mask)
212 return 0;
213 } while (time_before(jiffies, stop));
214 }
215 return -ETIME;
216}
217
Kylene Jo Hallcb535422006-04-22 02:39:31 -0700218static int recv_data(struct tpm_chip *chip, u8 *buf, size_t count)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700219{
220 int size = 0, burstcnt;
221 while (size < count &&
222 wait_for_stat(chip,
223 TPM_STS_DATA_AVAIL | TPM_STS_VALID,
224 chip->vendor.timeout_c,
225 &chip->vendor.read_queue)
226 == 0) {
227 burstcnt = get_burstcount(chip);
228 for (; burstcnt > 0 && size < count; burstcnt--)
229 buf[size++] = ioread8(chip->vendor.iobase +
230 TPM_DATA_FIFO(chip->vendor.
231 locality));
232 }
233 return size;
234}
235
Kylene Jo Hallcb535422006-04-22 02:39:31 -0700236static int tpm_tis_recv(struct tpm_chip *chip, u8 *buf, size_t count)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700237{
238 int size = 0;
239 int expected, status;
240
241 if (count < TPM_HEADER_SIZE) {
242 size = -EIO;
243 goto out;
244 }
245
246 /* read first 10 bytes, including tag, paramsize, and result */
247 if ((size =
248 recv_data(chip, buf, TPM_HEADER_SIZE)) < TPM_HEADER_SIZE) {
249 dev_err(chip->dev, "Unable to read header\n");
250 goto out;
251 }
252
253 expected = be32_to_cpu(*(__be32 *) (buf + 2));
254 if (expected > count) {
255 size = -EIO;
256 goto out;
257 }
258
259 if ((size +=
260 recv_data(chip, &buf[TPM_HEADER_SIZE],
261 expected - TPM_HEADER_SIZE)) < expected) {
262 dev_err(chip->dev, "Unable to read remainder of result\n");
263 size = -ETIME;
264 goto out;
265 }
266
267 wait_for_stat(chip, TPM_STS_VALID, chip->vendor.timeout_c,
268 &chip->vendor.int_queue);
269 status = tpm_tis_status(chip);
270 if (status & TPM_STS_DATA_AVAIL) { /* retry? */
271 dev_err(chip->dev, "Error left over data\n");
272 size = -EIO;
273 goto out;
274 }
275
276out:
277 tpm_tis_ready(chip);
278 release_locality(chip, chip->vendor.locality, 0);
279 return size;
280}
281
Rajiv Andrade3507d612009-09-10 17:09:35 -0300282static int itpm;
283module_param(itpm, bool, 0444);
284MODULE_PARM_DESC(itpm, "Force iTPM workarounds (found on some Lenovo laptops)");
285
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700286/*
287 * If interrupts are used (signaled by an irq set in the vendor structure)
288 * tpm.c can skip polling for the data to be available as the interrupt is
289 * waited for here
290 */
Kylene Jo Hallcb535422006-04-22 02:39:31 -0700291static int tpm_tis_send(struct tpm_chip *chip, u8 *buf, size_t len)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700292{
293 int rc, status, burstcnt;
294 size_t count = 0;
295 u32 ordinal;
296
297 if (request_locality(chip, 0) < 0)
298 return -EBUSY;
299
300 status = tpm_tis_status(chip);
301 if ((status & TPM_STS_COMMAND_READY) == 0) {
302 tpm_tis_ready(chip);
303 if (wait_for_stat
304 (chip, TPM_STS_COMMAND_READY, chip->vendor.timeout_b,
305 &chip->vendor.int_queue) < 0) {
306 rc = -ETIME;
307 goto out_err;
308 }
309 }
310
311 while (count < len - 1) {
312 burstcnt = get_burstcount(chip);
313 for (; burstcnt > 0 && count < len - 1; burstcnt--) {
314 iowrite8(buf[count], chip->vendor.iobase +
315 TPM_DATA_FIFO(chip->vendor.locality));
316 count++;
317 }
318
319 wait_for_stat(chip, TPM_STS_VALID, chip->vendor.timeout_c,
320 &chip->vendor.int_queue);
321 status = tpm_tis_status(chip);
Rajiv Andrade3507d612009-09-10 17:09:35 -0300322 if (!itpm && (status & TPM_STS_DATA_EXPECT) == 0) {
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700323 rc = -EIO;
324 goto out_err;
325 }
326 }
327
328 /* write last byte */
329 iowrite8(buf[count],
330 chip->vendor.iobase +
331 TPM_DATA_FIFO(chip->vendor.locality));
332 wait_for_stat(chip, TPM_STS_VALID, chip->vendor.timeout_c,
333 &chip->vendor.int_queue);
334 status = tpm_tis_status(chip);
335 if ((status & TPM_STS_DATA_EXPECT) != 0) {
336 rc = -EIO;
337 goto out_err;
338 }
339
340 /* go and do it */
341 iowrite8(TPM_STS_GO,
342 chip->vendor.iobase + TPM_STS(chip->vendor.locality));
343
344 if (chip->vendor.irq) {
345 ordinal = be32_to_cpu(*((__be32 *) (buf + 6)));
346 if (wait_for_stat
347 (chip, TPM_STS_DATA_AVAIL | TPM_STS_VALID,
348 tpm_calc_ordinal_duration(chip, ordinal),
349 &chip->vendor.read_queue) < 0) {
350 rc = -ETIME;
351 goto out_err;
352 }
353 }
354 return len;
355out_err:
356 tpm_tis_ready(chip);
357 release_locality(chip, chip->vendor.locality, 0);
358 return rc;
359}
360
Arjan van de Ven62322d22006-07-03 00:24:21 -0700361static const struct file_operations tis_ops = {
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700362 .owner = THIS_MODULE,
363 .llseek = no_llseek,
364 .open = tpm_open,
365 .read = tpm_read,
366 .write = tpm_write,
367 .release = tpm_release,
368};
369
370static DEVICE_ATTR(pubek, S_IRUGO, tpm_show_pubek, NULL);
371static DEVICE_ATTR(pcrs, S_IRUGO, tpm_show_pcrs, NULL);
372static DEVICE_ATTR(enabled, S_IRUGO, tpm_show_enabled, NULL);
373static DEVICE_ATTR(active, S_IRUGO, tpm_show_active, NULL);
374static DEVICE_ATTR(owned, S_IRUGO, tpm_show_owned, NULL);
375static DEVICE_ATTR(temp_deactivated, S_IRUGO, tpm_show_temp_deactivated,
376 NULL);
377static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps_1_2, NULL);
378static DEVICE_ATTR(cancel, S_IWUSR | S_IWGRP, NULL, tpm_store_cancel);
379
380static struct attribute *tis_attrs[] = {
381 &dev_attr_pubek.attr,
382 &dev_attr_pcrs.attr,
383 &dev_attr_enabled.attr,
384 &dev_attr_active.attr,
385 &dev_attr_owned.attr,
386 &dev_attr_temp_deactivated.attr,
387 &dev_attr_caps.attr,
388 &dev_attr_cancel.attr, NULL,
389};
390
391static struct attribute_group tis_attr_grp = {
392 .attrs = tis_attrs
393};
394
395static struct tpm_vendor_specific tpm_tis = {
396 .status = tpm_tis_status,
397 .recv = tpm_tis_recv,
398 .send = tpm_tis_send,
399 .cancel = tpm_tis_ready,
400 .req_complete_mask = TPM_STS_DATA_AVAIL | TPM_STS_VALID,
401 .req_complete_val = TPM_STS_DATA_AVAIL | TPM_STS_VALID,
402 .req_canceled = TPM_STS_COMMAND_READY,
403 .attr_group = &tis_attr_grp,
404 .miscdev = {
405 .fops = &tis_ops,},
406};
407
David Howells7d12e782006-10-05 14:55:46 +0100408static irqreturn_t tis_int_probe(int irq, void *dev_id)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700409{
Jeff Garzik06efcad2007-10-19 03:10:11 -0400410 struct tpm_chip *chip = dev_id;
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700411 u32 interrupt;
412
413 interrupt = ioread32(chip->vendor.iobase +
414 TPM_INT_STATUS(chip->vendor.locality));
415
416 if (interrupt == 0)
417 return IRQ_NONE;
418
419 chip->vendor.irq = irq;
420
421 /* Clear interrupts handled with TPM_EOI */
422 iowrite32(interrupt,
423 chip->vendor.iobase +
424 TPM_INT_STATUS(chip->vendor.locality));
425 return IRQ_HANDLED;
426}
427
Jeff Garzika6f97b22007-10-31 05:20:49 -0400428static irqreturn_t tis_int_handler(int dummy, void *dev_id)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700429{
Jeff Garzik06efcad2007-10-19 03:10:11 -0400430 struct tpm_chip *chip = dev_id;
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700431 u32 interrupt;
432 int i;
433
434 interrupt = ioread32(chip->vendor.iobase +
435 TPM_INT_STATUS(chip->vendor.locality));
436
437 if (interrupt == 0)
438 return IRQ_NONE;
439
440 if (interrupt & TPM_INTF_DATA_AVAIL_INT)
441 wake_up_interruptible(&chip->vendor.read_queue);
442 if (interrupt & TPM_INTF_LOCALITY_CHANGE_INT)
443 for (i = 0; i < 5; i++)
444 if (check_locality(chip, i) >= 0)
445 break;
446 if (interrupt &
447 (TPM_INTF_LOCALITY_CHANGE_INT | TPM_INTF_STS_VALID_INT |
448 TPM_INTF_CMD_READY_INT))
449 wake_up_interruptible(&chip->vendor.int_queue);
450
451 /* Clear interrupts handled with TPM_EOI */
452 iowrite32(interrupt,
453 chip->vendor.iobase +
454 TPM_INT_STATUS(chip->vendor.locality));
Kylene Jo Hallcab091e2006-07-14 00:24:30 -0700455 ioread32(chip->vendor.iobase + TPM_INT_STATUS(chip->vendor.locality));
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700456 return IRQ_HANDLED;
457}
458
Kylene Jo Hall57135562006-04-22 02:39:44 -0700459static int interrupts = 1;
460module_param(interrupts, bool, 0444);
461MODULE_PARM_DESC(interrupts, "Enable interrupts");
462
Kylene Jo Hallc3c36aa2006-07-14 00:24:31 -0700463static int tpm_tis_init(struct device *dev, resource_size_t start,
Bjorn Helgaas7917ff92007-10-16 23:26:46 -0700464 resource_size_t len, unsigned int irq)
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700465{
466 u32 vendor, intfcaps, intmask;
467 int rc, i;
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700468 struct tpm_chip *chip;
469
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700470 if (!(chip = tpm_register_hardware(dev, &tpm_tis)))
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700471 return -ENODEV;
472
473 chip->vendor.iobase = ioremap(start, len);
474 if (!chip->vendor.iobase) {
475 rc = -EIO;
476 goto out_err;
477 }
478
Jason Gunthorpeec579352009-09-09 17:22:18 -0600479 /* Default timeouts */
480 chip->vendor.timeout_a = msecs_to_jiffies(TIS_SHORT_TIMEOUT);
481 chip->vendor.timeout_b = msecs_to_jiffies(TIS_LONG_TIMEOUT);
482 chip->vendor.timeout_c = msecs_to_jiffies(TIS_SHORT_TIMEOUT);
483 chip->vendor.timeout_d = msecs_to_jiffies(TIS_SHORT_TIMEOUT);
484
Marcel Selhorst05a462a2007-11-28 16:21:27 -0800485 if (request_locality(chip, 0) != 0) {
486 rc = -ENODEV;
487 goto out_err;
488 }
489
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700490 vendor = ioread32(chip->vendor.iobase + TPM_DID_VID(0));
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700491
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700492 dev_info(dev,
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700493 "1.2 TPM (device-id 0x%X, rev-id %d)\n",
494 vendor >> 16, ioread8(chip->vendor.iobase + TPM_RID(0)));
495
Matthew Garrett3f0d3d02010-10-21 17:42:40 -0400496 if (is_itpm(to_pnp_dev(dev)))
497 itpm = 1;
498
Rajiv Andrade3507d612009-09-10 17:09:35 -0300499 if (itpm)
500 dev_info(dev, "Intel iTPM workaround enabled\n");
501
502
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700503 /* Figure out the capabilities */
504 intfcaps =
505 ioread32(chip->vendor.iobase +
506 TPM_INTF_CAPS(chip->vendor.locality));
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700507 dev_dbg(dev, "TPM interface capabilities (0x%x):\n",
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700508 intfcaps);
509 if (intfcaps & TPM_INTF_BURST_COUNT_STATIC)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700510 dev_dbg(dev, "\tBurst Count Static\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700511 if (intfcaps & TPM_INTF_CMD_READY_INT)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700512 dev_dbg(dev, "\tCommand Ready Int Support\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700513 if (intfcaps & TPM_INTF_INT_EDGE_FALLING)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700514 dev_dbg(dev, "\tInterrupt Edge Falling\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700515 if (intfcaps & TPM_INTF_INT_EDGE_RISING)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700516 dev_dbg(dev, "\tInterrupt Edge Rising\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700517 if (intfcaps & TPM_INTF_INT_LEVEL_LOW)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700518 dev_dbg(dev, "\tInterrupt Level Low\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700519 if (intfcaps & TPM_INTF_INT_LEVEL_HIGH)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700520 dev_dbg(dev, "\tInterrupt Level High\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700521 if (intfcaps & TPM_INTF_LOCALITY_CHANGE_INT)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700522 dev_dbg(dev, "\tLocality Change Int Support\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700523 if (intfcaps & TPM_INTF_STS_VALID_INT)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700524 dev_dbg(dev, "\tSts Valid Int Support\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700525 if (intfcaps & TPM_INTF_DATA_AVAIL_INT)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700526 dev_dbg(dev, "\tData Avail Int Support\n");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700527
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700528 /* INTERRUPT Setup */
529 init_waitqueue_head(&chip->vendor.read_queue);
530 init_waitqueue_head(&chip->vendor.int_queue);
531
532 intmask =
533 ioread32(chip->vendor.iobase +
534 TPM_INT_ENABLE(chip->vendor.locality));
535
536 intmask |= TPM_INTF_CMD_READY_INT
537 | TPM_INTF_LOCALITY_CHANGE_INT | TPM_INTF_DATA_AVAIL_INT
538 | TPM_INTF_STS_VALID_INT;
539
540 iowrite32(intmask,
541 chip->vendor.iobase +
542 TPM_INT_ENABLE(chip->vendor.locality));
Bjorn Helgaas7917ff92007-10-16 23:26:46 -0700543 if (interrupts)
544 chip->vendor.irq = irq;
545 if (interrupts && !chip->vendor.irq) {
Kylene Jo Hall57135562006-04-22 02:39:44 -0700546 chip->vendor.irq =
547 ioread8(chip->vendor.iobase +
548 TPM_INT_VECTOR(chip->vendor.locality));
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700549
Kylene Jo Hall57135562006-04-22 02:39:44 -0700550 for (i = 3; i < 16 && chip->vendor.irq == 0; i++) {
551 iowrite8(i, chip->vendor.iobase +
552 TPM_INT_VECTOR(chip->vendor.locality));
553 if (request_irq
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -0700554 (i, tis_int_probe, IRQF_SHARED,
Kylene Jo Hall57135562006-04-22 02:39:44 -0700555 chip->vendor.miscdev.name, chip) != 0) {
556 dev_info(chip->dev,
557 "Unable to request irq: %d for probe\n",
558 i);
559 continue;
560 }
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700561
Kylene Jo Hall57135562006-04-22 02:39:44 -0700562 /* Clear all existing */
563 iowrite32(ioread32
564 (chip->vendor.iobase +
565 TPM_INT_STATUS(chip->vendor.locality)),
566 chip->vendor.iobase +
567 TPM_INT_STATUS(chip->vendor.locality));
568
569 /* Turn on */
570 iowrite32(intmask | TPM_GLOBAL_INT_ENABLE,
571 chip->vendor.iobase +
572 TPM_INT_ENABLE(chip->vendor.locality));
573
574 /* Generate Interrupts */
575 tpm_gen_interrupt(chip);
576
577 /* Turn off */
578 iowrite32(intmask,
579 chip->vendor.iobase +
580 TPM_INT_ENABLE(chip->vendor.locality));
581 free_irq(i, chip);
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700582 }
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700583 }
584 if (chip->vendor.irq) {
585 iowrite8(chip->vendor.irq,
586 chip->vendor.iobase +
587 TPM_INT_VECTOR(chip->vendor.locality));
588 if (request_irq
Thomas Gleixner0f2ed4c2006-07-01 19:29:33 -0700589 (chip->vendor.irq, tis_int_handler, IRQF_SHARED,
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700590 chip->vendor.miscdev.name, chip) != 0) {
591 dev_info(chip->dev,
Kylene Jo Hall57135562006-04-22 02:39:44 -0700592 "Unable to request irq: %d for use\n",
593 chip->vendor.irq);
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700594 chip->vendor.irq = 0;
595 } else {
596 /* Clear all existing */
597 iowrite32(ioread32
598 (chip->vendor.iobase +
599 TPM_INT_STATUS(chip->vendor.locality)),
600 chip->vendor.iobase +
601 TPM_INT_STATUS(chip->vendor.locality));
602
603 /* Turn on */
604 iowrite32(intmask | TPM_GLOBAL_INT_ENABLE,
605 chip->vendor.iobase +
606 TPM_INT_ENABLE(chip->vendor.locality));
607 }
608 }
609
610 INIT_LIST_HEAD(&chip->vendor.list);
611 spin_lock(&tis_lock);
612 list_add(&chip->vendor.list, &tis_chips);
613 spin_unlock(&tis_lock);
614
615 tpm_get_timeouts(chip);
616 tpm_continue_selftest(chip);
617
618 return 0;
619out_err:
620 if (chip->vendor.iobase)
621 iounmap(chip->vendor.iobase);
622 tpm_remove_hardware(chip->dev);
623 return rc;
624}
Rajiv Andrade7f2ab002010-05-13 17:37:54 -0300625#ifdef CONFIG_PNP
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700626static int __devinit tpm_tis_pnp_init(struct pnp_dev *pnp_dev,
627 const struct pnp_device_id *pnp_id)
628{
Kylene Jo Hallc3c36aa2006-07-14 00:24:31 -0700629 resource_size_t start, len;
Bjorn Helgaas7917ff92007-10-16 23:26:46 -0700630 unsigned int irq = 0;
631
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700632 start = pnp_mem_start(pnp_dev, 0);
633 len = pnp_mem_len(pnp_dev, 0);
634
Bjorn Helgaas7917ff92007-10-16 23:26:46 -0700635 if (pnp_irq_valid(pnp_dev, 0))
636 irq = pnp_irq(pnp_dev, 0);
637 else
638 interrupts = 0;
639
640 return tpm_tis_init(&pnp_dev->dev, start, len, irq);
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700641}
642
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700643static int tpm_tis_pnp_suspend(struct pnp_dev *dev, pm_message_t msg)
644{
645 return tpm_pm_suspend(&dev->dev, msg);
646}
647
648static int tpm_tis_pnp_resume(struct pnp_dev *dev)
649{
Rajiv Andrade59f6fbe2010-06-23 12:18:56 -0700650 struct tpm_chip *chip = pnp_get_drvdata(dev);
651 int ret;
652
653 ret = tpm_pm_resume(&dev->dev);
654 if (!ret)
655 tpm_continue_selftest(chip);
656
657 return ret;
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700658}
659
660static struct pnp_device_id tpm_pnp_tbl[] __devinitdata = {
661 {"PNP0C31", 0}, /* TPM */
Kylene Jo Hall93e1b7d2006-04-22 02:39:52 -0700662 {"ATM1200", 0}, /* Atmel */
663 {"IFX0102", 0}, /* Infineon */
664 {"BCM0101", 0}, /* Broadcom */
LE DISEZ Erwan061991e2008-07-25 19:44:56 -0700665 {"BCM0102", 0}, /* Broadcom */
Kylene Jo Hall93e1b7d2006-04-22 02:39:52 -0700666 {"NSC1200", 0}, /* National */
Marcin Obarafb0e7e12008-07-10 17:30:42 -0700667 {"ICO0102", 0}, /* Intel */
Kylene Jo Hall93e1b7d2006-04-22 02:39:52 -0700668 /* Add new here */
669 {"", 0}, /* User Specified */
670 {"", 0} /* Terminator */
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700671};
Matt Domsch31bde712009-11-03 12:05:50 +1100672MODULE_DEVICE_TABLE(pnp, tpm_pnp_tbl);
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700673
Rajiv Andrade253115b2008-10-11 09:04:39 +1100674static __devexit void tpm_tis_pnp_remove(struct pnp_dev *dev)
675{
676 struct tpm_chip *chip = pnp_get_drvdata(dev);
677
678 tpm_dev_vendor_release(chip);
679
680 kfree(chip);
681}
682
683
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700684static struct pnp_driver tis_pnp_driver = {
685 .name = "tpm_tis",
686 .id_table = tpm_pnp_tbl,
687 .probe = tpm_tis_pnp_init,
688 .suspend = tpm_tis_pnp_suspend,
689 .resume = tpm_tis_pnp_resume,
Rajiv Andrade253115b2008-10-11 09:04:39 +1100690 .remove = tpm_tis_pnp_remove,
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700691};
692
Kylene Jo Hall93e1b7d2006-04-22 02:39:52 -0700693#define TIS_HID_USR_IDX sizeof(tpm_pnp_tbl)/sizeof(struct pnp_device_id) -2
694module_param_string(hid, tpm_pnp_tbl[TIS_HID_USR_IDX].id,
695 sizeof(tpm_pnp_tbl[TIS_HID_USR_IDX].id), 0444);
696MODULE_PARM_DESC(hid, "Set additional specific HID for this driver to probe");
Rajiv Andrade7f2ab002010-05-13 17:37:54 -0300697#endif
Ming Lei7a192ec2009-02-06 23:40:12 +0800698static int tpm_tis_suspend(struct platform_device *dev, pm_message_t msg)
699{
700 return tpm_pm_suspend(&dev->dev, msg);
701}
702
703static int tpm_tis_resume(struct platform_device *dev)
704{
705 return tpm_pm_resume(&dev->dev);
706}
707static struct platform_driver tis_drv = {
708 .driver = {
709 .name = "tpm_tis",
710 .owner = THIS_MODULE,
711 },
712 .suspend = tpm_tis_suspend,
713 .resume = tpm_tis_resume,
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700714};
715
716static struct platform_device *pdev;
717
718static int force;
719module_param(force, bool, 0444);
720MODULE_PARM_DESC(force, "Force device probe rather than using ACPI entry");
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700721static int __init init_tis(void)
722{
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700723 int rc;
Rajiv Andrade7f2ab002010-05-13 17:37:54 -0300724#ifdef CONFIG_PNP
725 if (!force)
726 return pnp_register_driver(&tis_pnp_driver);
727#endif
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700728
Rajiv Andrade7f2ab002010-05-13 17:37:54 -0300729 rc = platform_driver_register(&tis_drv);
730 if (rc < 0)
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700731 return rc;
Rajiv Andrade7f2ab002010-05-13 17:37:54 -0300732 if (IS_ERR(pdev=platform_device_register_simple("tpm_tis", -1, NULL, 0)))
733 return PTR_ERR(pdev);
734 if((rc=tpm_tis_init(&pdev->dev, TIS_MEM_BASE, TIS_MEM_LEN, 0)) != 0) {
735 platform_device_unregister(pdev);
736 platform_driver_unregister(&tis_drv);
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700737 }
Rajiv Andrade7f2ab002010-05-13 17:37:54 -0300738 return rc;
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700739}
740
741static void __exit cleanup_tis(void)
742{
743 struct tpm_vendor_specific *i, *j;
744 struct tpm_chip *chip;
745 spin_lock(&tis_lock);
746 list_for_each_entry_safe(i, j, &tis_chips, list) {
747 chip = to_tpm_chip(i);
Rajiv Andrade253115b2008-10-11 09:04:39 +1100748 tpm_remove_hardware(chip->dev);
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700749 iowrite32(~TPM_GLOBAL_INT_ENABLE &
750 ioread32(chip->vendor.iobase +
751 TPM_INT_ENABLE(chip->vendor.
752 locality)),
753 chip->vendor.iobase +
754 TPM_INT_ENABLE(chip->vendor.locality));
755 release_locality(chip, chip->vendor.locality, 1);
756 if (chip->vendor.irq)
757 free_irq(chip->vendor.irq, chip);
758 iounmap(i->iobase);
759 list_del(&i->list);
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700760 }
761 spin_unlock(&tis_lock);
Rajiv Andrade7f2ab002010-05-13 17:37:54 -0300762#ifdef CONFIG_PNP
763 if (!force) {
Kylene Jo Hall9e323d32006-07-14 00:24:31 -0700764 pnp_unregister_driver(&tis_pnp_driver);
Rajiv Andrade7f2ab002010-05-13 17:37:54 -0300765 return;
766 }
767#endif
768 platform_device_unregister(pdev);
769 platform_driver_unregister(&tis_drv);
Leendert van Doorn27084ef2006-04-22 02:38:03 -0700770}
771
772module_init(init_tis);
773module_exit(cleanup_tis);
774MODULE_AUTHOR("Leendert van Doorn (leendert@watson.ibm.com)");
775MODULE_DESCRIPTION("TPM Driver");
776MODULE_VERSION("2.0");
777MODULE_LICENSE("GPL");