2 * Copyright (C) 2011 Infineon Technologies
5 * Peter Huewe <huewe.external@infineon.com>
10 * Device driver for TCG/TCPA TPM (trusted platform module).
11 * Specifications at www.trustedcomputinggroup.org
13 * It is based on the Linux kernel driver tpm.c from Leendert van
14 * Dorn, Dave Safford, Reiner Sailer, and Kyleen Hall.
16 * SPDX-License-Identifier: GPL-2.0
19 #ifndef _TPM_TIS_I2C_H
20 #define _TPM_TIS_I2C_H
22 #include <linux/compiler.h>
23 #include <linux/types.h>
26 TPM_TIMEOUT = 5, /* msecs */
29 /* Size of external transmit buffer (used in tpm_transmit)*/
30 #define TPM_BUFSIZE 4096
32 /* Index of Count field in TPM response buffer */
33 #define TPM_RSP_SIZE_BYTE 2
34 #define TPM_RSP_RC_BYTE 6
36 /* Max buffer size supported by our tpm */
37 #define TPM_DEV_BUFSIZE 1260
53 unsigned long timeout_a, timeout_b, timeout_c, timeout_d; /* msec */
54 unsigned long duration[3]; /* msec */
56 u8 buf[TPM_DEV_BUFSIZE + sizeof(u8)]; /* Max buffer size + addr */
57 enum i2c_chip_type chip_type;
60 struct tpm_input_header {
66 struct tpm_output_header {
86 struct timeout_t timeout;
87 struct duration_t duration;
90 struct tpm_getcap_params_in {
96 struct tpm_getcap_params_out {
101 union tpm_cmd_header {
102 struct tpm_input_header in;
103 struct tpm_output_header out;
106 union tpm_cmd_params {
107 struct tpm_getcap_params_out getcap_out;
108 struct tpm_getcap_params_in getcap_in;
112 union tpm_cmd_header header;
113 union tpm_cmd_params params;