diff options
| author | Greg Hackmann <ghackmann@google.com> | 2013-09-13 11:23:05 -0700 |
|---|---|---|
| committer | John Stultz <john.stultz@linaro.org> | 2016-02-16 13:53:12 -0800 |
| commit | e45fc30f3ee796625e26a8a9d7936bd273e1018f (patch) | |
| tree | caaa673f21e6844312a815ec4e90b2608172ad48 /include/uapi | |
| parent | 4b3bd37bd9c842f196115c5792cafeba7226d998 (diff) | |
video: adf: add informational flags to interfaces
Informational flags don't affect ADF directly but may be useful to
clients. Currently used to indicate primary and external displays.
Change-Id: I343c7f0148da0869244c8e818350e9855525df85
Signed-off-by: Greg Hackmann <ghackmann@google.com>
Diffstat (limited to 'include/uapi')
| -rw-r--r-- | include/uapi/video/adf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/uapi/video/adf.h b/include/uapi/video/adf.h index e35a505882da..2ba345ca458b 100644 --- a/include/uapi/video/adf.h +++ b/include/uapi/video/adf.h @@ -36,6 +36,9 @@ enum adf_interface_type { ADF_INTF_TYPE_MAX = (~(__u32)0), }; +#define ADF_INTF_FLAG_PRIMARY (1 << 0) +#define ADF_INTF_FLAG_EXTERNAL (1 << 1) + enum adf_event_type { ADF_EVENT_VSYNC = 0, ADF_EVENT_HOTPLUG = 1, @@ -256,6 +259,7 @@ struct adf_interface_data { __u32 type; __u32 id; /* e.g. type=ADF_INTF_TYPE_DSI, id=1 => DSI.1 */ + __u32 flags; __u8 dpms_state; __u8 hotplug_detect; |
