summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/mediatek/mtk_cec.h
diff options
context:
space:
mode:
authorJie Qiu <jie.qiu@mediatek.com>2016-01-04 18:36:38 +0100
committerPhilipp Zabel <p.zabel@pengutronix.de>2016-06-16 16:30:38 +0200
commit8f83f26891e12570780dcfc8ae376b655915ff6d (patch)
tree92acfec15b83acebdf74d5ab879b4c88693728c7 /drivers/gpu/drm/mediatek/mtk_cec.h
parent7cdeb24db4d12d42c237f28afade69c09e8a85e2 (diff)
downloadlinux-stable-8f83f26891e12570780dcfc8ae376b655915ff6d.tar.gz
linux-stable-8f83f26891e12570780dcfc8ae376b655915ff6d.tar.bz2
linux-stable-8f83f26891e12570780dcfc8ae376b655915ff6d.zip
drm/mediatek: Add HDMI support
This patch adds drivers for the HDMI bridge connected to the DPI0 display subsystem function block, for the HDMI DDC block, and for the HDMI PHY to support HDMI output. This includes an interface to the generic hdmi-codec driver to start or stop audio playback and to retrieve ELD (EDID like data) to limit the supported audio formats to the HDMI sink capabilities. Signed-off-by: Jie Qiu <jie.qiu@mediatek.com> Signed-off-by: Junzhi Zhao <junzhi.zhao@mediatek.com> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Diffstat (limited to 'drivers/gpu/drm/mediatek/mtk_cec.h')
-rw-r--r--drivers/gpu/drm/mediatek/mtk_cec.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/drivers/gpu/drm/mediatek/mtk_cec.h b/drivers/gpu/drm/mediatek/mtk_cec.h
new file mode 100644
index 000000000000..10057b7eabec
--- /dev/null
+++ b/drivers/gpu/drm/mediatek/mtk_cec.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2014 MediaTek Inc.
+ * Author: Jie Qiu <jie.qiu@mediatek.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+#ifndef _MTK_CEC_H
+#define _MTK_CEC_H
+
+#include <linux/types.h>
+
+struct device;
+
+void mtk_cec_set_hpd_event(struct device *dev,
+ void (*hotplug_event)(bool hpd, struct device *dev),
+ struct device *hdmi_dev);
+bool mtk_cec_hpd_high(struct device *dev);
+
+#endif /* _MTK_CEC_H */