1 /* 2 * Copyright (c) 2025, Arm Limited. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #include "drivers/gpio_spi.h" 8 9 #ifndef SLB9670_GPIO_H 10 #define SLB9670_GPIO_H 11 12 void tpm2_slb9670_reset_chip(const struct gpio_spi_config *tpm_gpio_data); 13 14 void tpm2_slb9670_gpio_init(const struct gpio_spi_config *tpm_gpio_data); 15 16 const struct gpio_spi_config *tpm2_slb9670_get_config(void); 17 18 #endif /* SLB9670_GPIO_H */ 19