• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef DRIVERS_PC80_TPM_CHIP_H
4 #define DRIVERS_PC80_TPM_CHIP_H
5 
6 typedef struct drivers_pc80_tpm_config {
7 	/*
8 	 * TPM Interrupt polarity:
9 	 *
10 	 *  High Level    0
11 	 *  Low Level     1
12 	 *  Rising Edge   2
13 	 *  Falling Edge  3
14 	 */
15 	u8 irq_polarity;
16 } tpm_config_t;
17 
18 #endif /* DRIVERS_PC80_TPM_CHIP_H */
19