Abhi.Singh | c8c5faf | 2024-08-28 14:17:52 -0500 | [diff] [blame] | 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 | }; |