tpm_infineon.c 13.6 KB
Newer Older
1 2 3
/*
 * Description:
 * Device Driver for the Infineon Technologies
4
 * SLD 9630 TT 1.1 and SLB 9635 TT 1.2 Trusted Platform Module
5 6 7 8 9 10 11 12 13 14 15 16
 * Specifications at www.trustedcomputinggroup.org
 *
 * Copyright (C) 2005, Marcel Selhorst <selhorst@crypto.rub.de>
 * Applied Data Security Group, Ruhr-University Bochum, Germany
 * Project-Homepage: http://www.prosec.rub.de/tpm
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, version 2 of the
 * License.
 */

17
#include <linux/pnp.h>
18 19 20 21 22 23 24 25 26 27 28
#include "tpm.h"

/* Infineon specific definitions */
/* maximum number of WTX-packages */
#define	TPM_MAX_WTX_PACKAGES 	50
/* msleep-Time for WTX-packages */
#define	TPM_WTX_MSLEEP_TIME 	20
/* msleep-Time --> Interval to check status register */
#define	TPM_MSLEEP_TIME 	3
/* gives number of max. msleep()-calls before throwing timeout */
#define	TPM_MAX_TRIES		5000
29 30
#define	TPM_INFINEON_DEV_VEN_VALUE	0x15D1

31
/* These values will be filled after PnP-call */
32 33
static int TPM_INF_DATA = 0;
static int TPM_INF_ADDR = 0;
34
static int pnp_registered = 0;
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81

/* TPM header definitions */
enum infineon_tpm_header {
	TPM_VL_VER = 0x01,
	TPM_VL_CHANNEL_CONTROL = 0x07,
	TPM_VL_CHANNEL_PERSONALISATION = 0x0A,
	TPM_VL_CHANNEL_TPM = 0x0B,
	TPM_VL_CONTROL = 0x00,
	TPM_INF_NAK = 0x15,
	TPM_CTRL_WTX = 0x10,
	TPM_CTRL_WTX_ABORT = 0x18,
	TPM_CTRL_WTX_ABORT_ACK = 0x18,
	TPM_CTRL_ERROR = 0x20,
	TPM_CTRL_CHAININGACK = 0x40,
	TPM_CTRL_CHAINING = 0x80,
	TPM_CTRL_DATA = 0x04,
	TPM_CTRL_DATA_CHA = 0x84,
	TPM_CTRL_DATA_CHA_ACK = 0xC4
};

enum infineon_tpm_register {
	WRFIFO = 0x00,
	RDFIFO = 0x01,
	STAT = 0x02,
	CMD = 0x03
};

enum infineon_tpm_command_bits {
	CMD_DIS = 0x00,
	CMD_LP = 0x01,
	CMD_RES = 0x02,
	CMD_IRQC = 0x06
};

enum infineon_tpm_status_bits {
	STAT_XFE = 0x00,
	STAT_LPA = 0x01,
	STAT_FOK = 0x02,
	STAT_TOK = 0x03,
	STAT_IRQA = 0x06,
	STAT_RDA = 0x07
};

/* some outgoing values */
enum infineon_tpm_values {
	CHIP_ID1 = 0x20,
	CHIP_ID2 = 0x21,
82
	TPM_DAR = 0x30,
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
	RESET_LP_IRQC_DISABLE = 0x41,
	ENABLE_REGISTER_PAIR = 0x55,
	IOLIMH = 0x60,
	IOLIML = 0x61,
	DISABLE_REGISTER_PAIR = 0xAA,
	IDVENL = 0xF1,
	IDVENH = 0xF2,
	IDPDL = 0xF3,
	IDPDH = 0xF4
};

static int number_of_wtx;

static int empty_fifo(struct tpm_chip *chip, int clear_wrfifo)
{
	int status;
	int check = 0;
	int i;

	if (clear_wrfifo) {
		for (i = 0; i < 4096; i++) {
			status = inb(chip->vendor->base + WRFIFO);
			if (status == 0xff) {
				if (check == 5)
					break;
				else
					check++;
			}
		}
	}
	/* Note: The values which are currently in the FIFO of the TPM
	   are thrown away since there is no usage for them. Usually,
	   this has nothing to say, since the TPM will give its answer
	   immediately or will be aborted anyway, so the data here is
	   usually garbage and useless.
	   We have to clean this, because the next communication with
	   the TPM would be rubbish, if there is still some old data
	   in the Read FIFO.
	 */
	i = 0;
	do {
		status = inb(chip->vendor->base + RDFIFO);
		status = inb(chip->vendor->base + STAT);
		i++;
		if (i == TPM_MAX_TRIES)
			return -EIO;
	} while ((status & (1 << STAT_RDA)) != 0);
	return 0;
}

static int wait(struct tpm_chip *chip, int wait_for_bit)
{
	int status;
	int i;
	for (i = 0; i < TPM_MAX_TRIES; i++) {
		status = inb(chip->vendor->base + STAT);
		/* check the status-register if wait_for_bit is set */
		if (status & 1 << wait_for_bit)
			break;
		msleep(TPM_MSLEEP_TIME);
	}
	if (i == TPM_MAX_TRIES) {	/* timeout occurs */
		if (wait_for_bit == STAT_XFE)
146
			dev_err(chip->dev,
147 148
				"Timeout in wait(STAT_XFE)\n");
		if (wait_for_bit == STAT_RDA)
149
			dev_err(chip->dev,
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
				"Timeout in wait(STAT_RDA)\n");
		return -EIO;
	}
	return 0;
};

static void wait_and_send(struct tpm_chip *chip, u8 sendbyte)
{
	wait(chip, STAT_XFE);
	outb(sendbyte, chip->vendor->base + WRFIFO);
}

    /* Note: WTX means Waiting-Time-Extension. Whenever the TPM needs more
       calculation time, it sends a WTX-package, which has to be acknowledged
       or aborted. This usually occurs if you are hammering the TPM with key
       creation. Set the maximum number of WTX-packages in the definitions
       above, if the number is reached, the waiting-time will be denied
       and the TPM command has to be resend.
     */

static void tpm_wtx(struct tpm_chip *chip)
{
	number_of_wtx++;
173
	dev_info(chip->dev, "Granting WTX (%02d / %02d)\n",
174 175 176 177 178 179 180 181 182 183
		 number_of_wtx, TPM_MAX_WTX_PACKAGES);
	wait_and_send(chip, TPM_VL_VER);
	wait_and_send(chip, TPM_CTRL_WTX);
	wait_and_send(chip, 0x00);
	wait_and_send(chip, 0x00);
	msleep(TPM_WTX_MSLEEP_TIME);
}

static void tpm_wtx_abort(struct tpm_chip *chip)
{
184
	dev_info(chip->dev, "Aborting WTX\n");
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
	wait_and_send(chip, TPM_VL_VER);
	wait_and_send(chip, TPM_CTRL_WTX_ABORT);
	wait_and_send(chip, 0x00);
	wait_and_send(chip, 0x00);
	number_of_wtx = 0;
	msleep(TPM_WTX_MSLEEP_TIME);
}

static int tpm_inf_recv(struct tpm_chip *chip, u8 * buf, size_t count)
{
	int i;
	int ret;
	u32 size = 0;

recv_begin:
	/* start receiving header */
	for (i = 0; i < 4; i++) {
		ret = wait(chip, STAT_RDA);
		if (ret)
			return -EIO;
		buf[i] = inb(chip->vendor->base + RDFIFO);
	}

	if (buf[0] != TPM_VL_VER) {
209
		dev_err(chip->dev,
210 211 212 213 214 215 216 217 218 219 220 221 222 223
			"Wrong transport protocol implementation!\n");
		return -EIO;
	}

	if (buf[1] == TPM_CTRL_DATA) {
		/* size of the data received */
		size = ((buf[2] << 8) | buf[3]);

		for (i = 0; i < size; i++) {
			wait(chip, STAT_RDA);
			buf[i] = inb(chip->vendor->base + RDFIFO);
		}

		if ((size == 0x6D00) && (buf[1] == 0x80)) {
224
			dev_err(chip->dev,
225 226 227 228 229 230 231 232 233 234 235 236
				"Error handling on vendor layer!\n");
			return -EIO;
		}

		for (i = 0; i < size; i++)
			buf[i] = buf[i + 6];

		size = size - 6;
		return size;
	}

	if (buf[1] == TPM_CTRL_WTX) {
237
		dev_info(chip->dev, "WTX-package received\n");
238 239 240 241 242 243 244 245 246 247
		if (number_of_wtx < TPM_MAX_WTX_PACKAGES) {
			tpm_wtx(chip);
			goto recv_begin;
		} else {
			tpm_wtx_abort(chip);
			goto recv_begin;
		}
	}

	if (buf[1] == TPM_CTRL_WTX_ABORT_ACK) {
248
		dev_info(chip->dev, "WTX-abort acknowledged\n");
249 250 251 252
		return size;
	}

	if (buf[1] == TPM_CTRL_ERROR) {
253
		dev_err(chip->dev, "ERROR-package received:\n");
254
		if (buf[4] == TPM_INF_NAK)
255
			dev_err(chip->dev,
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
				"-> Negative acknowledgement"
				" - retransmit command!\n");
		return -EIO;
	}
	return -EIO;
}

static int tpm_inf_send(struct tpm_chip *chip, u8 * buf, size_t count)
{
	int i;
	int ret;
	u8 count_high, count_low, count_4, count_3, count_2, count_1;

	/* Disabling Reset, LP and IRQC */
	outb(RESET_LP_IRQC_DISABLE, chip->vendor->base + CMD);

	ret = empty_fifo(chip, 1);
	if (ret) {
274
		dev_err(chip->dev, "Timeout while clearing FIFO\n");
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
		return -EIO;
	}

	ret = wait(chip, STAT_XFE);
	if (ret)
		return -EIO;

	count_4 = (count & 0xff000000) >> 24;
	count_3 = (count & 0x00ff0000) >> 16;
	count_2 = (count & 0x0000ff00) >> 8;
	count_1 = (count & 0x000000ff);
	count_high = ((count + 6) & 0xffffff00) >> 8;
	count_low = ((count + 6) & 0x000000ff);

	/* Sending Header */
	wait_and_send(chip, TPM_VL_VER);
	wait_and_send(chip, TPM_CTRL_DATA);
	wait_and_send(chip, count_high);
	wait_and_send(chip, count_low);

	/* Sending Data Header */
	wait_and_send(chip, TPM_VL_VER);
	wait_and_send(chip, TPM_VL_CHANNEL_TPM);
	wait_and_send(chip, count_4);
	wait_and_send(chip, count_3);
	wait_and_send(chip, count_2);
	wait_and_send(chip, count_1);

	/* Sending Data */
	for (i = 0; i < count; i++) {
		wait_and_send(chip, buf[i]);
	}
	return count;
}

static void tpm_inf_cancel(struct tpm_chip *chip)
{
312 313 314 315
	/*
	   Since we are using the legacy mode to communicate
	   with the TPM, we have no cancel functions, but have
	   a workaround for interrupting the TPM through WTX.
316 317 318
	 */
}

319 320 321 322 323
static u8 tpm_inf_status(struct tpm_chip *chip)
{
	return inb(chip->vendor->base + 1);
}

324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
static DEVICE_ATTR(pubek, S_IRUGO, tpm_show_pubek, NULL);
static DEVICE_ATTR(pcrs, S_IRUGO, tpm_show_pcrs, NULL);
static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps, NULL);
static DEVICE_ATTR(cancel, S_IWUSR | S_IWGRP, NULL, tpm_store_cancel);

static struct attribute *inf_attrs[] = {
	&dev_attr_pubek.attr,
	&dev_attr_pcrs.attr,
	&dev_attr_caps.attr,
	&dev_attr_cancel.attr,
	NULL,
};

static struct attribute_group inf_attr_grp = {.attrs = inf_attrs };

static struct file_operations inf_ops = {
	.owner = THIS_MODULE,
	.llseek = no_llseek,
	.open = tpm_open,
	.read = tpm_read,
	.write = tpm_write,
	.release = tpm_release,
};

static struct tpm_vendor_specific tpm_inf = {
	.recv = tpm_inf_recv,
	.send = tpm_inf_send,
	.cancel = tpm_inf_cancel,
352
	.status = tpm_inf_status,
353 354 355 356 357 358
	.req_complete_mask = 0,
	.req_complete_val = 0,
	.attr_group = &inf_attr_grp,
	.miscdev = {.fops = &inf_ops,},
};

359 360 361 362 363 364
static const struct pnp_device_id tpm_pnp_tbl[] = {
	/* Infineon TPMs */
	{"IFX0101", 0},
	{"IFX0102", 0},
	{"", 0}
};
365
MODULE_DEVICE_TABLE(pnp, tpm_pnp_tbl);
366

367
static int __devinit tpm_inf_pnp_probe(struct pnp_dev *dev,
368 369
					const struct pnp_device_id *dev_id)
{
370 371 372 373 374 375 376 377 378
	if (pnp_port_valid(dev, 0)) {
		TPM_INF_ADDR = (pnp_port_start(dev, 0) & 0xff);
		TPM_INF_DATA = ((TPM_INF_ADDR + 1) & 0xff);
		tpm_inf.base = pnp_port_start(dev, 1);
		dev_info(&dev->dev, "Found %s with ID %s\n",
		dev->name, dev_id->id);
		return 0;
	}
	return -ENODEV;
379 380 381 382 383
}

static struct pnp_driver tpm_inf_pnp = {
	.name = "tpm_inf_pnp",
	.id_table = tpm_pnp_tbl,
384
	.probe = tpm_inf_pnp_probe,
385 386
};

387 388 389 390 391 392 393 394
static int __devinit tpm_inf_probe(struct pci_dev *pci_dev,
				   const struct pci_device_id *pci_id)
{
	int rc = 0;
	u8 iol, ioh;
	int vendorid[2];
	int version[2];
	int productid[2];
395
	char chipname[20];
396

397 398 399
	rc = pci_enable_device(pci_dev);
	if (rc)
		return rc;
400 401 402

	dev_info(&pci_dev->dev, "LPC-bus found at 0x%x\n", pci_id->device);

403 404 405 406 407 408 409 410 411 412 413 414 415
	/* read IO-ports from PnP */
	rc = pnp_register_driver(&tpm_inf_pnp);
	if (rc < 0) {
		dev_err(&pci_dev->dev,
			"Error %x from pnp_register_driver!\n",rc);
		goto error2;
	}
	if (!rc) {
		dev_info(&pci_dev->dev, "No Infineon TPM found!\n");
		goto error;
	} else {
		pnp_registered = 1;
	}
416 417 418

	/* Make sure, we have received valid config ports */
	if (!TPM_INF_ADDR) {
419 420
		dev_err(&pci_dev->dev, "No valid IO-ports received!\n");
		goto error;
421 422
	}

423
	/* query chip for its vendor, its version number a.s.o. */
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
	outb(ENABLE_REGISTER_PAIR, TPM_INF_ADDR);
	outb(IDVENL, TPM_INF_ADDR);
	vendorid[1] = inb(TPM_INF_DATA);
	outb(IDVENH, TPM_INF_ADDR);
	vendorid[0] = inb(TPM_INF_DATA);
	outb(IDPDL, TPM_INF_ADDR);
	productid[1] = inb(TPM_INF_DATA);
	outb(IDPDH, TPM_INF_ADDR);
	productid[0] = inb(TPM_INF_DATA);
	outb(CHIP_ID1, TPM_INF_ADDR);
	version[1] = inb(TPM_INF_DATA);
	outb(CHIP_ID2, TPM_INF_ADDR);
	version[0] = inb(TPM_INF_DATA);

	switch ((productid[0] << 8) | productid[1]) {
	case 6:
440
		snprintf(chipname, sizeof(chipname), " (SLD 9630 TT 1.1)");
441 442
		break;
	case 11:
443
		snprintf(chipname, sizeof(chipname), " (SLB 9635 TT 1.2)");
444 445
		break;
	default:
446
		snprintf(chipname, sizeof(chipname), " (unknown chip)");
447 448 449 450
		break;
	}

	if ((vendorid[0] << 8 | vendorid[1]) == (TPM_INFINEON_DEV_VEN_VALUE)) {
451 452

		if (tpm_inf.base == 0) {
453
			dev_err(&pci_dev->dev, "No IO-ports found!\n");
454
			goto error;
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471
		}
		/* configure TPM with IO-ports */
		outb(IOLIMH, TPM_INF_ADDR);
		outb(((tpm_inf.base >> 8) & 0xff), TPM_INF_DATA);
		outb(IOLIML, TPM_INF_ADDR);
		outb((tpm_inf.base & 0xff), TPM_INF_DATA);

		/* control if IO-ports are set correctly */
		outb(IOLIMH, TPM_INF_ADDR);
		ioh = inb(TPM_INF_DATA);
		outb(IOLIML, TPM_INF_ADDR);
		iol = inb(TPM_INF_DATA);

		if ((ioh << 8 | iol) != tpm_inf.base) {
			dev_err(&pci_dev->dev,
				"Could not set IO-ports to %04x\n",
				tpm_inf.base);
472
			goto error;
473 474 475
		}

		/* activate register */
476 477 478
		outb(TPM_DAR, TPM_INF_ADDR);
		outb(0x01, TPM_INF_DATA);
		outb(DISABLE_REGISTER_PAIR, TPM_INF_ADDR);
479 480 481 482 483 484

		/* disable RESET, LP and IRQC */
		outb(RESET_LP_IRQC_DISABLE, tpm_inf.base + CMD);

		/* Finally, we're done, print some infos */
		dev_info(&pci_dev->dev, "TPM found: "
485
			 "config base 0x%x, "
486 487 488 489 490
			 "io base 0x%x, "
			 "chip version %02x%02x, "
			 "vendor id %x%x (Infineon), "
			 "product id %02x%02x"
			 "%s\n",
491
			 TPM_INF_ADDR,
492 493 494
			 tpm_inf.base,
			 version[0], version[1],
			 vendorid[0], vendorid[1],
495
			 productid[0], productid[1], chipname);
496

497
		rc = tpm_register_hardware(&pci_dev->dev, &tpm_inf);
498 499
		if (rc < 0)
			goto error;
500 501 502
		return 0;
	} else {
		dev_info(&pci_dev->dev, "No Infineon TPM found!\n");
503 504 505
error:
		pnp_unregister_driver(&tpm_inf_pnp);
error2:
506
		pci_disable_device(pci_dev);
507
		pnp_registered = 0;
508 509 510 511
		return -ENODEV;
	}
}

512 513 514 515 516 517 518 519
static __devexit void tpm_inf_remove(struct pci_dev* pci_dev)
{
	struct tpm_chip* chip = pci_get_drvdata(pci_dev);

	if( chip )
		tpm_remove_hardware(chip->dev);
}

520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
static struct pci_device_id tpm_pci_tbl[] __devinitdata = {
	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801BA_0)},
	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801CA_12)},
	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_0)},
	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801DB_12)},
	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82801EB_0)},
	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_0)},
	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_1)},
	{PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_2)},
	{0,}
};

MODULE_DEVICE_TABLE(pci, tpm_pci_tbl);

static struct pci_driver inf_pci_driver = {
	.name = "tpm_inf",
	.id_table = tpm_pci_tbl,
	.probe = tpm_inf_probe,
538
	.remove = __devexit_p(tpm_inf_remove),
539 540 541 542 543 544 545 546 547 548 549
	.suspend = tpm_pm_suspend,
	.resume = tpm_pm_resume,
};

static int __init init_inf(void)
{
	return pci_register_driver(&inf_pci_driver);
}

static void __exit cleanup_inf(void)
{
550 551
	if (pnp_registered)
		pnp_unregister_driver(&tpm_inf_pnp);
552 553 554 555 556 557 558
	pci_unregister_driver(&inf_pci_driver);
}

module_init(init_inf);
module_exit(cleanup_inf);

MODULE_AUTHOR("Marcel Selhorst <selhorst@crypto.rub.de>");
559 560
MODULE_DESCRIPTION("Driver for Infineon TPM SLD 9630 TT 1.1 / SLB 9635 TT 1.2");
MODULE_VERSION("1.5");
561
MODULE_LICENSE("GPL");