xref: /rk3399_ARM-atf/drivers/tpm/tpm2_chip.c (revision 1727d690d29ef604f1fcf183e35c06d33d974e63)
1 
2 /*
3  * Copyright (c) 2025, Arm Limited. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #include <drivers/tpm/tpm2_chip.h>
9 
10 /*
11  * TPM timeout values
12  * Reference: TCG PC Client Platform TPM Profile (PTP) Specification v1.05
13  */
14 struct tpm_chip_data tpm_chip_data = {
15 	.locality = -1,
16 	.timeout_msec_a = 750,
17 	.timeout_msec_b = 2000,
18 	.timeout_msec_c = 200,
19 	.timeout_msec_d = 30,
20 	.address = 0,
21 };
22