aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/gpiomux/mux/chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/i2c/gpiomux/mux/chip.h')
-rw-r--r--src/drivers/i2c/gpiomux/mux/chip.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/drivers/i2c/gpiomux/mux/chip.h b/src/drivers/i2c/gpiomux/mux/chip.h
new file mode 100644
index 0000000000..9906b258db
--- /dev/null
+++ b/src/drivers/i2c/gpiomux/mux/chip.h
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef __I2C_GPIOMUX_MUX_CHIP_H__
+#define __I2C_GPIOMUX_MUX_CHIP_H__
+
+#include <acpi/acpi_device.h>
+#include <types.h>
+
+#define MAX_NUM_MUX_GPIOS 4
+
+struct drivers_i2c_gpiomux_mux_config {
+ /* GPIOs used to select the mux lines */
+ uint32_t mux_gpio_count;
+ struct acpi_gpio mux_gpio[MAX_NUM_MUX_GPIOS];
+};
+
+#endif /* __I2C_GPIOMUX_MUX_CHIP_H__ */