summaryrefslogtreecommitdiff
path: root/src/drivers/wwan/fm/chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/wwan/fm/chip.h')
-rw-r--r--src/drivers/wwan/fm/chip.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/drivers/wwan/fm/chip.h b/src/drivers/wwan/fm/chip.h
new file mode 100644
index 0000000000..635178bd16
--- /dev/null
+++ b/src/drivers/wwan/fm/chip.h
@@ -0,0 +1,25 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#ifndef __DRIVERS_WWAN_FM_CHIP_H__
+#define __DRIVERS_WWAN_FM_CHIP_H__
+
+struct drivers_wwan_fm_config {
+ const char *name;
+ const char *desc;
+ /* GPIO used for FULL_CARD_POWER_OFF# */
+ struct acpi_gpio fcpo_gpio;
+
+ /* GPIO used for RESET# */
+ struct acpi_gpio reset_gpio;
+
+ /* GPIO used for PERST# */
+ struct acpi_gpio perst_gpio;
+
+ /* GPIO used for wake */
+ struct acpi_gpio wake_gpio;
+
+ /* Pointer to the corresponding RTD3 */
+ DEVTREE_CONST struct device *rtd3dev;
+};
+
+#endif /* __DRIVERS_WWAN_FM_CHIP_H__ */