summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2016-08-03 04:58:29 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2016-08-03 04:58:28 -0700
commitb516b45787ecdb0fc32cd4e988cb1a09bb117cc2 (patch)
treed13efb746e9ae7aa70808fce4fd5690657e9c70f /include
parenta1307ec818916f90ffb9714a7b5010473ce1b172 (diff)
parent4f37c66dfa0c017fbefebc2db3e507cd62f9ee45 (diff)
Merge "msm: misc: hdcp: add hdcp support for display port"
Diffstat (limited to 'include')
-rw-r--r--include/linux/hdcp_qseecom.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/hdcp_qseecom.h b/include/linux/hdcp_qseecom.h
index d9835193961e..26e97700fc73 100644
--- a/include/linux/hdcp_qseecom.h
+++ b/include/linux/hdcp_qseecom.h
@@ -108,9 +108,15 @@ struct hdcp_client_ops {
int (*wakeup)(struct hdmi_hdcp_wakeup_data *data);
};
+enum hdcp_device_type {
+ HDCP_TXMTR_HDMI = 0x8001,
+ HDCP_TXMTR_DP = 0x8002
+};
+
struct hdcp_register_data {
struct hdcp_client_ops *client_ops;
struct hdcp_txmtr_ops *txmtr_ops;
+ enum hdcp_device_type device_type;
void *client_ctx;
void **hdcp_ctx;
bool tethered;