summaryrefslogtreecommitdiff
path: root/drivers/video/tegra/dc/hdmi.c
diff options
context:
space:
mode:
authorRobert Morell <rmorell@nvidia.com>2011-08-24 16:52:56 -0700
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:48:45 -0800
commit97d5a84a90ab41cab1c49c8a259aa84799458455 (patch)
treea1175aaa2f54966774159523e2a7416557064493 /drivers/video/tegra/dc/hdmi.c
parentf237f2f6f25be739efaacc254a74d1a97b942d62 (diff)
video: tegra: Implement EDID query
This change implements the TEGRA_DC_EXT_CONTROL_GET_OUTPUT_EDID ioctl in the dc_ext interface. It first adds a way for the tegra dc EDID module to export EDID data safely, without the risk of reading an incomplete or corrupted EDID in the presence of hotplug, by moving the actual data to a substructure with a lifetime maintained by a kref. Then, that support is plumbed through the hdmi block (which is currently the only way to get at the EDID) and out to userspace. Signed-off-by: Robert Morell <rmorell@nvidia.com> Bug 817119 Original-Change-Id: I78cd170e15322011b428cb71ffad2c0c3ea058ac Reviewed-on: http://git-master/r/49127 Reviewed-by: Rohan Somvanshi <rsomvanshi@nvidia.com> Tested-by: Rohan Somvanshi <rsomvanshi@nvidia.com> Rebase-Id: Rafafc0a6fbacda5494b12162ad99a8c70ceeb2e0
Diffstat (limited to 'drivers/video/tegra/dc/hdmi.c')
-rw-r--r--drivers/video/tegra/dc/hdmi.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/video/tegra/dc/hdmi.c b/drivers/video/tegra/dc/hdmi.c
index 1516051ab9ba..506d59a24bf5 100644
--- a/drivers/video/tegra/dc/hdmi.c
+++ b/drivers/video/tegra/dc/hdmi.c
@@ -1639,3 +1639,22 @@ struct tegra_dc_out_ops tegra_dc_hdmi_ops = {
.resume = tegra_dc_hdmi_resume,
};
+struct tegra_dc_edid *tegra_dc_get_edid(struct tegra_dc *dc)
+{
+ struct tegra_dc_hdmi_data *hdmi;
+
+ /* TODO: Support EDID on non-HDMI devices */
+ if (dc->out->type != TEGRA_DC_OUT_HDMI)
+ return ERR_PTR(-ENODEV);
+
+ hdmi = tegra_dc_get_outdata(dc);
+
+ return tegra_edid_get_data(hdmi->edid);
+}
+EXPORT_SYMBOL(tegra_dc_get_edid);
+
+void tegra_dc_put_edid(struct tegra_dc_edid *edid)
+{
+ tegra_edid_put_data(edid);
+}
+EXPORT_SYMBOL(tegra_dc_put_edid);