1 /* 2 * Copyright (c) 2023 Intel Corporation. 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_INTEL_H_ 8 #define ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_INTEL_H_ 9 10 #ifdef __cplusplus 11 extern "C" { 12 #endif 13 14 struct gpio_acpi_res { 15 uint8_t num_pins; 16 uint32_t pad_base; 17 uint32_t host_owner_reg; 18 uint32_t pad_owner_reg; 19 uint32_t intr_stat_reg; 20 uint16_t base_num; 21 uintptr_t reg_base; 22 }; 23 24 #ifdef __cplusplus 25 } 26 #endif 27 28 #endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_INTEL_H_ */ 29