diff options
| author | Linux Build Service Account <lnxbuild@localhost> | 2016-10-10 18:28:29 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-10-10 18:28:28 -0700 |
| commit | 4fc0b5ac1b74e304dadc0920a85fd74a5bc21c21 (patch) | |
| tree | 40e03b21f0b3e47b2966c767826d9564ab3ac4c6 /include/linux | |
| parent | fe9dc22a3788668a65d745af83258969df9f3b48 (diff) | |
| parent | 6a5831d879b2665168432ef556d2d9f5f26265ba (diff) | |
Merge "msm: gsi: driver upgrade for gsi version 1.2 and 1.3"
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/msm_gsi.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/msm_gsi.h b/include/linux/msm_gsi.h index c95a529b029b..fb2607dd365b 100644 --- a/include/linux/msm_gsi.h +++ b/include/linux/msm_gsi.h @@ -13,6 +13,14 @@ #define MSM_GSI_H #include <linux/types.h> +enum gsi_ver { + GSI_VER_ERR = 0, + GSI_VER_1_0 = 1, + GSI_VER_1_2 = 2, + GSI_VER_1_3 = 3, + GSI_VER_MAX, +}; + enum gsi_status { GSI_STATUS_SUCCESS = 0, GSI_STATUS_ERROR = 1, @@ -65,6 +73,7 @@ enum gsi_intr_type { /** * gsi_per_props - Peripheral related properties * + * @gsi: GSI core version * @ee: EE where this driver and peripheral driver runs * @intr: control interrupt type * @intvec: write data for MSI write @@ -87,6 +96,7 @@ enum gsi_intr_type { * */ struct gsi_per_props { + enum gsi_ver ver; unsigned int ee; enum gsi_intr_type intr; uint32_t intvec; |
