summaryrefslogtreecommitdiffstats
path: root/src/drivers/pc80/tpm/chip.h
blob: 35f66c9bc51f5f2353454310a7dcb6e54e2ff93f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#ifndef DRIVERS_PC80_TPM_CHIP_H
#define DRIVERS_PC80_TPM_CHIP_H

typedef struct drivers_pc80_tpm_config {
	/*
	 * TPM Interrupt polarity:
	 *
	 *  High Level    0
	 *  Low Level     1
	 *  Rising Edge   2
	 *  Falling Edge  3
	 */
	u8 irq_polarity;
} tpm_config_t;

#endif /* DRIVERS_PC80_TPM_CHIP_H */