Line data Source code
1 0 : /*
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 0 : struct gpio_acpi_res {
15 0 : uint8_t num_pins;
16 0 : uint32_t pad_base;
17 0 : uint32_t host_owner_reg;
18 0 : uint32_t pad_owner_reg;
19 0 : uint32_t intr_stat_reg;
20 0 : uint16_t base_num;
21 0 : uintptr_t reg_base;
22 : };
23 :
24 : #ifdef __cplusplus
25 : }
26 : #endif
27 :
28 : #endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_INTEL_H_ */
|