1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2012,2013 Infineon Technologies
6 * Peter Huewe <peter.huewe@infineon.com>
8 * Device driver for TCG/TCPA TPM (trusted platform module).
9 * Specifications at www.trustedcomputinggroup.org
11 * This device driver implements the TPM interface as defined in
12 * the TCG TPM Interface Spec version 1.2, revision 1.0 and the
13 * Infineon I2C Protocol Stack Specification v0.20.
15 * It is based on the original tpm_tis device driver from Leendert van
16 * Dorn and Kyleen Hall.
18 #include <linux/i2c.h>
19 #include <linux/module.h>
20 #include <linux/wait.h>
23 #define TPM_I2C_INFINEON_BUFSIZE 1260
25 /* max. number of iterations after I2C NAK */
28 #define SLEEP_DURATION_LOW 55
29 #define SLEEP_DURATION_HI 65
31 /* max. number of iterations after I2C NAK for 'long' commands
32 * we need this especially for sending TPM_READY, since the cleanup after the
33 * transtion to the ready state may take some time, but it is unpredictable
34 * how long it will take.
36 #define MAX_COUNT_LONG 50
38 #define SLEEP_DURATION_LONG_LOW 200
39 #define SLEEP_DURATION_LONG_HI 220
41 /* After sending TPM_READY to 'reset' the TPM we have to sleep even longer */
42 #define SLEEP_DURATION_RESET_LOW 2400
43 #define SLEEP_DURATION_RESET_HI 2600
45 /* we want to use usleep_range instead of msleep for the 5ms TPM_TIMEOUT */
46 #define TPM_TIMEOUT_US_LOW (TPM_TIMEOUT * 1000)
47 #define TPM_TIMEOUT_US_HI (TPM_TIMEOUT_US_LOW + 2000)
49 /* expected value for DIDVID register */
50 #define TPM_TIS_I2C_DID_VID_9635 0xd1150b00L
51 #define TPM_TIS_I2C_DID_VID_9645 0x001a15d1L
60 struct i2c_client
*client
;
62 /* In addition to the data itself, the buffer must fit the 7-bit I2C
63 * address and the direction bit.
65 u8 buf
[TPM_I2C_INFINEON_BUFSIZE
+ 1];
66 struct tpm_chip
*chip
;
67 enum i2c_chip_type chip_type
;
68 unsigned int adapterlimit
;
71 static struct tpm_inf_dev tpm_dev
;
74 * iic_tpm_read() - read from TPM register
75 * @addr: register address to read from
76 * @buffer: provided by caller
77 * @len: number of bytes to read
79 * Read len bytes from TPM register and put them into
80 * buffer (little-endian format, i.e. first byte is put into buffer[0]).
82 * NOTE: TPM is big-endian for multi-byte values. Multi-byte
83 * values have to be swapped.
85 * NOTE: We can't unfortunately use the combined read/write functions
86 * provided by the i2c core as the TPM currently does not support the
87 * repeated start condition and due to it's special requirements.
88 * The i2c_smbus* functions do not work for this chip.
90 * Return -EIO on error, 0 on success.
92 static int iic_tpm_read(u8 addr
, u8
*buffer
, size_t len
)
95 struct i2c_msg msg1
= {
96 .addr
= tpm_dev
.client
->addr
,
100 struct i2c_msg msg2
= {
101 .addr
= tpm_dev
.client
->addr
,
106 struct i2c_msg msgs
[] = {msg1
, msg2
};
110 unsigned int msglen
= len
;
112 /* Lock the adapter for the duration of the whole sequence. */
113 if (!tpm_dev
.client
->adapter
->algo
->master_xfer
)
115 i2c_lock_bus(tpm_dev
.client
->adapter
, I2C_LOCK_SEGMENT
);
117 if (tpm_dev
.chip_type
== SLB9645
) {
118 /* use a combined read for newer chips
119 * unfortunately the smbus functions are not suitable due to
120 * the 32 byte limit of the smbus.
121 * retries should usually not be needed, but are kept just to
122 * be on the safe side.
124 for (count
= 0; count
< MAX_COUNT
; count
++) {
125 rc
= __i2c_transfer(tpm_dev
.client
->adapter
, msgs
, 2);
127 break; /* break here to skip sleep */
128 usleep_range(SLEEP_DURATION_LOW
, SLEEP_DURATION_HI
);
131 /* Expect to send one command message and one data message, but
132 * support looping over each or both if necessary.
135 /* slb9635 protocol should work in all cases */
136 for (count
= 0; count
< MAX_COUNT
; count
++) {
137 rc
= __i2c_transfer(tpm_dev
.client
->adapter
,
140 break; /* break here to skip sleep */
142 usleep_range(SLEEP_DURATION_LOW
,
149 /* After the TPM has successfully received the register
150 * address it needs some time, thus we're sleeping here
151 * again, before retrieving the data
153 for (count
= 0; count
< MAX_COUNT
; count
++) {
154 if (tpm_dev
.adapterlimit
) {
155 msglen
= min_t(unsigned int,
156 tpm_dev
.adapterlimit
,
160 usleep_range(SLEEP_DURATION_LOW
,
162 rc
= __i2c_transfer(tpm_dev
.client
->adapter
,
165 /* Since len is unsigned, make doubly
166 * sure we do not underflow it.
175 /* If the I2C adapter rejected the request (e.g
176 * when the quirk read_max_len < len) fall back
177 * to a sane minimum value and try again.
179 if (rc
== -EOPNOTSUPP
)
180 tpm_dev
.adapterlimit
=
190 i2c_unlock_bus(tpm_dev
.client
->adapter
, I2C_LOCK_SEGMENT
);
191 /* take care of 'guard time' */
192 usleep_range(SLEEP_DURATION_LOW
, SLEEP_DURATION_HI
);
194 /* __i2c_transfer returns the number of successfully transferred
196 * So rc should be greater than 0 here otherwise we have an error.
204 static int iic_tpm_write_generic(u8 addr
, u8
*buffer
, size_t len
,
205 unsigned int sleep_low
,
206 unsigned int sleep_hi
, u8 max_count
)
211 struct i2c_msg msg1
= {
212 .addr
= tpm_dev
.client
->addr
,
217 if (len
> TPM_I2C_INFINEON_BUFSIZE
)
220 if (!tpm_dev
.client
->adapter
->algo
->master_xfer
)
222 i2c_lock_bus(tpm_dev
.client
->adapter
, I2C_LOCK_SEGMENT
);
224 /* prepend the 'register address' to the buffer */
225 tpm_dev
.buf
[0] = addr
;
226 memcpy(&(tpm_dev
.buf
[1]), buffer
, len
);
229 * NOTE: We have to use these special mechanisms here and unfortunately
230 * cannot rely on the standard behavior of i2c_transfer.
231 * Even for newer chips the smbus functions are not
232 * suitable due to the 32 byte limit of the smbus.
234 for (count
= 0; count
< max_count
; count
++) {
235 rc
= __i2c_transfer(tpm_dev
.client
->adapter
, &msg1
, 1);
238 usleep_range(sleep_low
, sleep_hi
);
241 i2c_unlock_bus(tpm_dev
.client
->adapter
, I2C_LOCK_SEGMENT
);
242 /* take care of 'guard time' */
243 usleep_range(SLEEP_DURATION_LOW
, SLEEP_DURATION_HI
);
245 /* __i2c_transfer returns the number of successfully transferred
247 * So rc should be greater than 0 here otherwise we have an error.
256 * iic_tpm_write() - write to TPM register
257 * @addr: register address to write to
258 * @buffer: containing data to be written
259 * @len: number of bytes to write
261 * Write len bytes from provided buffer to TPM register (little
262 * endian format, i.e. buffer[0] is written as first byte).
264 * NOTE: TPM is big-endian for multi-byte values. Multi-byte
265 * values have to be swapped.
267 * NOTE: use this function instead of the iic_tpm_write_generic function.
269 * Return -EIO on error, 0 on success
271 static int iic_tpm_write(u8 addr
, u8
*buffer
, size_t len
)
273 return iic_tpm_write_generic(addr
, buffer
, len
, SLEEP_DURATION_LOW
,
274 SLEEP_DURATION_HI
, MAX_COUNT
);
278 * This function is needed especially for the cleanup situation after
281 static int iic_tpm_write_long(u8 addr
, u8
*buffer
, size_t len
)
283 return iic_tpm_write_generic(addr
, buffer
, len
, SLEEP_DURATION_LONG_LOW
,
284 SLEEP_DURATION_LONG_HI
, MAX_COUNT_LONG
);
288 TPM_ACCESS_VALID
= 0x80,
289 TPM_ACCESS_ACTIVE_LOCALITY
= 0x20,
290 TPM_ACCESS_REQUEST_PENDING
= 0x04,
291 TPM_ACCESS_REQUEST_USE
= 0x02,
295 TPM_STS_VALID
= 0x80,
296 TPM_STS_COMMAND_READY
= 0x40,
298 TPM_STS_DATA_AVAIL
= 0x10,
299 TPM_STS_DATA_EXPECT
= 0x08,
303 TIS_SHORT_TIMEOUT
= 750, /* ms */
304 TIS_LONG_TIMEOUT
= 2000, /* 2 sec */
307 #define TPM_ACCESS(l) (0x0000 | ((l) << 4))
308 #define TPM_STS(l) (0x0001 | ((l) << 4))
309 #define TPM_DATA_FIFO(l) (0x0005 | ((l) << 4))
310 #define TPM_DID_VID(l) (0x0006 | ((l) << 4))
312 static bool check_locality(struct tpm_chip
*chip
, int loc
)
317 rc
= iic_tpm_read(TPM_ACCESS(loc
), &buf
, 1);
321 if ((buf
& (TPM_ACCESS_ACTIVE_LOCALITY
| TPM_ACCESS_VALID
)) ==
322 (TPM_ACCESS_ACTIVE_LOCALITY
| TPM_ACCESS_VALID
)) {
323 tpm_dev
.locality
= loc
;
330 /* implementation similar to tpm_tis */
331 static void release_locality(struct tpm_chip
*chip
, int loc
, int force
)
334 if (iic_tpm_read(TPM_ACCESS(loc
), &buf
, 1) < 0)
337 if (force
|| (buf
& (TPM_ACCESS_REQUEST_PENDING
| TPM_ACCESS_VALID
)) ==
338 (TPM_ACCESS_REQUEST_PENDING
| TPM_ACCESS_VALID
)) {
339 buf
= TPM_ACCESS_ACTIVE_LOCALITY
;
340 iic_tpm_write(TPM_ACCESS(loc
), &buf
, 1);
344 static int request_locality(struct tpm_chip
*chip
, int loc
)
347 u8 buf
= TPM_ACCESS_REQUEST_USE
;
349 if (check_locality(chip
, loc
))
352 iic_tpm_write(TPM_ACCESS(loc
), &buf
, 1);
354 /* wait for burstcount */
355 stop
= jiffies
+ chip
->timeout_a
;
357 if (check_locality(chip
, loc
))
359 usleep_range(TPM_TIMEOUT_US_LOW
, TPM_TIMEOUT_US_HI
);
360 } while (time_before(jiffies
, stop
));
365 static u8
tpm_tis_i2c_status(struct tpm_chip
*chip
)
367 /* NOTE: since I2C read may fail, return 0 in this case --> time-out */
372 if (iic_tpm_read(TPM_STS(tpm_dev
.locality
), &buf
, 1) < 0)
376 /* if locallity is set STS should not be 0xFF */
377 } while ((buf
== 0xFF) && i
< 10);
382 static void tpm_tis_i2c_ready(struct tpm_chip
*chip
)
384 /* this causes the current command to be aborted */
385 u8 buf
= TPM_STS_COMMAND_READY
;
386 iic_tpm_write_long(TPM_STS(tpm_dev
.locality
), &buf
, 1);
389 static ssize_t
get_burstcount(struct tpm_chip
*chip
)
395 /* wait for burstcount */
396 /* which timeout value, spec has 2 answers (c & d) */
397 stop
= jiffies
+ chip
->timeout_d
;
399 /* Note: STS is little endian */
400 if (iic_tpm_read(TPM_STS(tpm_dev
.locality
)+1, buf
, 3) < 0)
403 burstcnt
= (buf
[2] << 16) + (buf
[1] << 8) + buf
[0];
408 usleep_range(TPM_TIMEOUT_US_LOW
, TPM_TIMEOUT_US_HI
);
409 } while (time_before(jiffies
, stop
));
413 static int wait_for_stat(struct tpm_chip
*chip
, u8 mask
, unsigned long timeout
,
418 /* check current status */
419 *status
= tpm_tis_i2c_status(chip
);
420 if ((*status
!= 0xFF) && (*status
& mask
) == mask
)
423 stop
= jiffies
+ timeout
;
425 /* since we just checked the status, give the TPM some time */
426 usleep_range(TPM_TIMEOUT_US_LOW
, TPM_TIMEOUT_US_HI
);
427 *status
= tpm_tis_i2c_status(chip
);
428 if ((*status
& mask
) == mask
)
431 } while (time_before(jiffies
, stop
));
436 static int recv_data(struct tpm_chip
*chip
, u8
*buf
, size_t count
)
443 while (size
< count
) {
444 burstcnt
= get_burstcount(chip
);
446 /* burstcnt < 0 = TPM is busy */
450 /* limit received data to max. left */
451 if (burstcnt
> (count
- size
))
452 burstcnt
= count
- size
;
454 rc
= iic_tpm_read(TPM_DATA_FIFO(tpm_dev
.locality
),
455 &(buf
[size
]), burstcnt
);
461 /* avoid endless loop in case of broken HW */
462 if (retries
> MAX_COUNT_LONG
)
468 static int tpm_tis_i2c_recv(struct tpm_chip
*chip
, u8
*buf
, size_t count
)
474 if (count
< TPM_HEADER_SIZE
) {
479 /* read first 10 bytes, including tag, paramsize, and result */
480 size
= recv_data(chip
, buf
, TPM_HEADER_SIZE
);
481 if (size
< TPM_HEADER_SIZE
) {
482 dev_err(&chip
->dev
, "Unable to read header\n");
486 expected
= be32_to_cpu(*(__be32
*)(buf
+ 2));
487 if (((size_t) expected
> count
) || (expected
< TPM_HEADER_SIZE
)) {
492 size
+= recv_data(chip
, &buf
[TPM_HEADER_SIZE
],
493 expected
- TPM_HEADER_SIZE
);
494 if (size
< expected
) {
495 dev_err(&chip
->dev
, "Unable to read remainder of result\n");
500 wait_for_stat(chip
, TPM_STS_VALID
, chip
->timeout_c
, &status
);
501 if (status
& TPM_STS_DATA_AVAIL
) { /* retry? */
502 dev_err(&chip
->dev
, "Error left over data\n");
508 tpm_tis_i2c_ready(chip
);
509 /* The TPM needs some time to clean up here,
510 * so we sleep rather than keeping the bus busy
512 usleep_range(SLEEP_DURATION_RESET_LOW
, SLEEP_DURATION_RESET_HI
);
513 release_locality(chip
, tpm_dev
.locality
, 0);
517 static int tpm_tis_i2c_send(struct tpm_chip
*chip
, u8
*buf
, size_t len
)
525 if (len
> TPM_I2C_INFINEON_BUFSIZE
)
528 if (request_locality(chip
, 0) < 0)
531 status
= tpm_tis_i2c_status(chip
);
532 if ((status
& TPM_STS_COMMAND_READY
) == 0) {
533 tpm_tis_i2c_ready(chip
);
535 (chip
, TPM_STS_COMMAND_READY
,
536 chip
->timeout_b
, &status
) < 0) {
542 while (count
< len
- 1) {
543 burstcnt
= get_burstcount(chip
);
545 /* burstcnt < 0 = TPM is busy */
549 if (burstcnt
> (len
- 1 - count
))
550 burstcnt
= len
- 1 - count
;
552 rc
= iic_tpm_write(TPM_DATA_FIFO(tpm_dev
.locality
),
553 &(buf
[count
]), burstcnt
);
559 /* avoid endless loop in case of broken HW */
560 if (retries
> MAX_COUNT_LONG
) {
565 wait_for_stat(chip
, TPM_STS_VALID
,
566 chip
->timeout_c
, &status
);
568 if ((status
& TPM_STS_DATA_EXPECT
) == 0) {
574 /* write last byte */
575 iic_tpm_write(TPM_DATA_FIFO(tpm_dev
.locality
), &(buf
[count
]), 1);
576 wait_for_stat(chip
, TPM_STS_VALID
, chip
->timeout_c
, &status
);
577 if ((status
& TPM_STS_DATA_EXPECT
) != 0) {
583 iic_tpm_write(TPM_STS(tpm_dev
.locality
), &sts
, 1);
587 tpm_tis_i2c_ready(chip
);
588 /* The TPM needs some time to clean up here,
589 * so we sleep rather than keeping the bus busy
591 usleep_range(SLEEP_DURATION_RESET_LOW
, SLEEP_DURATION_RESET_HI
);
592 release_locality(chip
, tpm_dev
.locality
, 0);
596 static bool tpm_tis_i2c_req_canceled(struct tpm_chip
*chip
, u8 status
)
598 return (status
== TPM_STS_COMMAND_READY
);
601 static const struct tpm_class_ops tpm_tis_i2c
= {
602 .flags
= TPM_OPS_AUTO_STARTUP
,
603 .status
= tpm_tis_i2c_status
,
604 .recv
= tpm_tis_i2c_recv
,
605 .send
= tpm_tis_i2c_send
,
606 .cancel
= tpm_tis_i2c_ready
,
607 .req_complete_mask
= TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
608 .req_complete_val
= TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
609 .req_canceled
= tpm_tis_i2c_req_canceled
,
612 static int tpm_tis_i2c_init(struct device
*dev
)
616 struct tpm_chip
*chip
;
618 chip
= tpmm_chip_alloc(dev
, &tpm_tis_i2c
);
620 return PTR_ERR(chip
);
622 /* Default timeouts */
623 chip
->timeout_a
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
624 chip
->timeout_b
= msecs_to_jiffies(TIS_LONG_TIMEOUT
);
625 chip
->timeout_c
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
626 chip
->timeout_d
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
628 if (request_locality(chip
, 0) != 0) {
629 dev_err(dev
, "could not request locality\n");
634 /* read four bytes from DID_VID register */
635 if (iic_tpm_read(TPM_DID_VID(0), (u8
*)&vendor
, 4) < 0) {
636 dev_err(dev
, "could not read vendor id\n");
641 if (vendor
== TPM_TIS_I2C_DID_VID_9645
) {
642 tpm_dev
.chip_type
= SLB9645
;
643 } else if (vendor
== TPM_TIS_I2C_DID_VID_9635
) {
644 tpm_dev
.chip_type
= SLB9635
;
646 dev_err(dev
, "vendor id did not match! ID was %08x\n", vendor
);
651 dev_info(dev
, "1.2 TPM (device-id 0x%X)\n", vendor
>> 16);
655 return tpm_chip_register(chip
);
657 release_locality(chip
, tpm_dev
.locality
, 1);
658 tpm_dev
.client
= NULL
;
663 static const struct i2c_device_id tpm_tis_i2c_table
[] = {
664 {"tpm_i2c_infineon"},
670 MODULE_DEVICE_TABLE(i2c
, tpm_tis_i2c_table
);
673 static const struct of_device_id tpm_tis_i2c_of_match
[] = {
674 {.compatible
= "infineon,tpm_i2c_infineon"},
675 {.compatible
= "infineon,slb9635tt"},
676 {.compatible
= "infineon,slb9645tt"},
679 MODULE_DEVICE_TABLE(of
, tpm_tis_i2c_of_match
);
682 static SIMPLE_DEV_PM_OPS(tpm_tis_i2c_ops
, tpm_pm_suspend
, tpm_pm_resume
);
684 static int tpm_tis_i2c_probe(struct i2c_client
*client
,
685 const struct i2c_device_id
*id
)
688 struct device
*dev
= &(client
->dev
);
690 if (tpm_dev
.client
!= NULL
) {
691 dev_err(dev
, "This driver only supports one client at a time\n");
692 return -EBUSY
; /* We only support one client */
695 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
)) {
696 dev_err(dev
, "no algorithms associated to the i2c bus\n");
700 tpm_dev
.client
= client
;
701 rc
= tpm_tis_i2c_init(&client
->dev
);
703 tpm_dev
.client
= NULL
;
709 static int tpm_tis_i2c_remove(struct i2c_client
*client
)
711 struct tpm_chip
*chip
= tpm_dev
.chip
;
713 tpm_chip_unregister(chip
);
714 release_locality(chip
, tpm_dev
.locality
, 1);
715 tpm_dev
.client
= NULL
;
720 static struct i2c_driver tpm_tis_i2c_driver
= {
721 .id_table
= tpm_tis_i2c_table
,
722 .probe
= tpm_tis_i2c_probe
,
723 .remove
= tpm_tis_i2c_remove
,
725 .name
= "tpm_i2c_infineon",
726 .pm
= &tpm_tis_i2c_ops
,
727 .of_match_table
= of_match_ptr(tpm_tis_i2c_of_match
),
731 module_i2c_driver(tpm_tis_i2c_driver
);
732 MODULE_AUTHOR("Peter Huewe <peter.huewe@infineon.com>");
733 MODULE_DESCRIPTION("TPM TIS I2C Infineon Driver");
734 MODULE_VERSION("2.2.0");
735 MODULE_LICENSE("GPL");