diff options
| author | nakul kachhwaha <nkachhwa@codeaurora.org> | 2018-01-30 19:18:30 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2018-02-16 00:53:28 -0800 |
| commit | b12445cf0ab5632ecdc273a767f09679e62fb523 (patch) | |
| tree | a727e1bb179b43d9c569829762d46f4b94c13b62 | |
| parent | bc9f5e14647216cfa04a2d10a86206c7a0f2af1a (diff) | |
qcacld-2.0: CL 3956160 - update fw commmon interface files
WMI: add mux_config_val field to wmi_gpio_config_cmd msg
Change-Id: I8cec5795b25a956748a02982374b7459246e9d0b
CRs-Fixed: 865207
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_unified.h | 7 | ||||
| -rw-r--r-- | CORE/SERVICES/COMMON/wmi_version.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/CORE/SERVICES/COMMON/wmi_unified.h b/CORE/SERVICES/COMMON/wmi_unified.h index 7cf8a3321e30..354f5fe3de1c 100644 --- a/CORE/SERVICES/COMMON/wmi_unified.h +++ b/CORE/SERVICES/COMMON/wmi_unified.h @@ -13099,6 +13099,13 @@ typedef struct { A_UINT32 input; /* 0 - Output/ 1 - Input */ A_UINT32 pull_type; /* Pull type defined above */ A_UINT32 intr_mode; /* Interrupt mode defined above (Input) */ + /* mux_config_val - configure pin MUX + * A value of 0x0 for this field means to use the default MUX configuration. + * Valid non-zero values are as follows: + * Rome: + * 0x4 - use the pin as GPIO (rather than UART) + */ + A_UINT32 mux_config_val; } wmi_gpio_config_cmd_fixed_param; /* WMI_GPIO_OUTPUT_CMDID */ diff --git a/CORE/SERVICES/COMMON/wmi_version.h b/CORE/SERVICES/COMMON/wmi_version.h index cc965fe1ac5c..1f48d2f00dbd 100644 --- a/CORE/SERVICES/COMMON/wmi_version.h +++ b/CORE/SERVICES/COMMON/wmi_version.h @@ -36,7 +36,7 @@ #define __WMI_VER_MINOR_ 0 /** WMI revision number has to be incremented when there is a * change that may or may not break compatibility. */ -#define __WMI_REVISION_ 484 +#define __WMI_REVISION_ 485 /** The Version Namespace should not be normally changed. Only * host and firmware of the same WMI namespace will work |
