blob: 537ce92a9a69a4bebd855ab34afbe62205cc1ed3 [file] [log] [blame]
Abhi.Singhc8c5faf2024-08-28 14:17:52 -05001
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 */
14struct 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};