soc/mediatek: Correct value's data type to u8 in dptx
[coreboot.git] / src / drivers / wwan / fm / chip.h
blob19bc4c90083feedb74ec9e72ef8e3356363df3ae
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __DRIVERS_WWAN_FM_CHIP_H__
4 #define __DRIVERS_WWAN_FM_CHIP_H__
6 struct drivers_wwan_fm_config {
7 const char *name;
8 const char *desc;
9 /* GPIO used for FULL_CARD_POWER_OFF# */
10 struct acpi_gpio fcpo_gpio;
12 /* GPIO used for RESET# */
13 struct acpi_gpio reset_gpio;
15 /* GPIO used for PERST# */
16 struct acpi_gpio perst_gpio;
18 /* GPIO used for wake */
19 struct acpi_gpio wake_gpio;
21 /* Pointer to the corresponding RTD3 */
22 DEVTREE_CONST struct device *rtd3dev;
24 /* Add `DmaProperty` in _DSD */
25 bool add_acpi_dma_property;
28 #endif /* __DRIVERS_WWAN_FM_CHIP_H__ */