All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: dri-devel@lists.freedesktop.org
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Subject: [PATCH v3 12/23] drm/omap: Remove .get_timings() operation from display connectors
Date: Sun, 19 Aug 2018 16:41:54 +0300	[thread overview]
Message-ID: <20180819134205.31106-13-laurent.pinchart@ideasonboard.com> (raw)
In-Reply-To: <20180819134205.31106-1-laurent.pinchart@ideasonboard.com>

The analog TV, DVI and HDMI connectors all report timing information
through the .get_timings() information.

For analog TV outputs the information is queried from the encoder, so
the operation is unused. Remove it.

For HDMI outputs the display pipeline provides EDID capability, so the
operation is unused as well. Remove it.

For DVI outputs the operation is also unused if the pipeline provides
EDID capability. Otherwise (when the DDC bus is not connected) we
shouldn't hardcode a single mode, but instead report no mode and let the
KMS core add default modes. This is achieved by removing the operation.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
---
 .../gpu/drm/omapdrm/displays/connector-analog-tv.c | 31 --------------------
 drivers/gpu/drm/omapdrm/displays/connector-dvi.c   | 33 ----------------------
 drivers/gpu/drm/omapdrm/displays/connector-hdmi.c  | 30 --------------------
 3 files changed, 94 deletions(-)

diff --git a/drivers/gpu/drm/omapdrm/displays/connector-analog-tv.c b/drivers/gpu/drm/omapdrm/displays/connector-analog-tv.c
index a9e2a366a851..4866bf8ed524 100644
--- a/drivers/gpu/drm/omapdrm/displays/connector-analog-tv.c
+++ b/drivers/gpu/drm/omapdrm/displays/connector-analog-tv.c
@@ -20,23 +20,6 @@ struct panel_drv_data {
 	struct omap_dss_device dssdev;
 
 	struct device *dev;
-
-	struct videomode vm;
-};
-
-static const struct videomode tvc_pal_vm = {
-	.hactive	= 720,
-	.vactive	= 574,
-	.pixelclock	= 13500000,
-	.hsync_len	= 64,
-	.hfront_porch	= 12,
-	.hback_porch	= 68,
-	.vsync_len	= 5,
-	.vfront_porch	= 5,
-	.vback_porch	= 41,
-
-	.flags		= DISPLAY_FLAGS_INTERLACED | DISPLAY_FLAGS_HSYNC_LOW |
-			  DISPLAY_FLAGS_VSYNC_LOW,
 };
 
 #define to_panel_data(x) container_of(x, struct panel_drv_data, dssdev)
@@ -93,22 +76,11 @@ static void tvc_disable(struct omap_dss_device *dssdev)
 static void tvc_set_timings(struct omap_dss_device *dssdev,
 			    const struct videomode *vm)
 {
-	struct panel_drv_data *ddata = to_panel_data(dssdev);
 	struct omap_dss_device *src = dssdev->src;
 
-	ddata->vm = *vm;
-
 	src->ops->set_timings(src, vm);
 }
 
-static void tvc_get_timings(struct omap_dss_device *dssdev,
-			    struct videomode *vm)
-{
-	struct panel_drv_data *ddata = to_panel_data(dssdev);
-
-	*vm = ddata->vm;
-}
-
 static const struct omap_dss_device_ops tvc_ops = {
 	.connect		= tvc_connect,
 	.disconnect		= tvc_disconnect,
@@ -117,7 +89,6 @@ static const struct omap_dss_device_ops tvc_ops = {
 	.disable		= tvc_disable,
 
 	.set_timings		= tvc_set_timings,
-	.get_timings		= tvc_get_timings,
 };
 
 static int tvc_probe(struct platform_device *pdev)
@@ -132,8 +103,6 @@ static int tvc_probe(struct platform_device *pdev)
 	platform_set_drvdata(pdev, ddata);
 	ddata->dev = &pdev->dev;
 
-	ddata->vm = tvc_pal_vm;
-
 	dssdev = &ddata->dssdev;
 	dssdev->ops = &tvc_ops;
 	dssdev->dev = &pdev->dev;
diff --git a/drivers/gpu/drm/omapdrm/displays/connector-dvi.c b/drivers/gpu/drm/omapdrm/displays/connector-dvi.c
index a9e2f1181987..818a4dc452e0 100644
--- a/drivers/gpu/drm/omapdrm/displays/connector-dvi.c
+++ b/drivers/gpu/drm/omapdrm/displays/connector-dvi.c
@@ -19,28 +19,9 @@
 
 #include "../dss/omapdss.h"
 
-static const struct videomode dvic_default_vm = {
-	.hactive	= 640,
-	.vactive	= 480,
-
-	.pixelclock	= 23500000,
-
-	.hfront_porch	= 48,
-	.hsync_len	= 32,
-	.hback_porch	= 80,
-
-	.vfront_porch	= 3,
-	.vsync_len	= 4,
-	.vback_porch	= 7,
-
-	.flags		= DISPLAY_FLAGS_HSYNC_HIGH | DISPLAY_FLAGS_VSYNC_HIGH,
-};
-
 struct panel_drv_data {
 	struct omap_dss_device dssdev;
 
-	struct videomode vm;
-
 	struct i2c_adapter *i2c_adapter;
 
 	struct gpio_desc *hpd_gpio;
@@ -100,22 +81,11 @@ static void dvic_disable(struct omap_dss_device *dssdev)
 static void dvic_set_timings(struct omap_dss_device *dssdev,
 			     const struct videomode *vm)
 {
-	struct panel_drv_data *ddata = to_panel_data(dssdev);
 	struct omap_dss_device *src = dssdev->src;
 
-	ddata->vm = *vm;
-
 	src->ops->set_timings(src, vm);
 }
 
-static void dvic_get_timings(struct omap_dss_device *dssdev,
-			     struct videomode *vm)
-{
-	struct panel_drv_data *ddata = to_panel_data(dssdev);
-
-	*vm = ddata->vm;
-}
-
 static int dvic_ddc_read(struct i2c_adapter *adapter,
 		unsigned char *buf, u16 count, u8 offset)
 {
@@ -223,7 +193,6 @@ static const struct omap_dss_device_ops dvic_ops = {
 	.disable	= dvic_disable,
 
 	.set_timings	= dvic_set_timings,
-	.get_timings	= dvic_get_timings,
 
 	.read_edid	= dvic_read_edid,
 	.detect		= dvic_detect,
@@ -311,8 +280,6 @@ static int dvic_probe(struct platform_device *pdev)
 	if (r)
 		return r;
 
-	ddata->vm = dvic_default_vm;
-
 	dssdev = &ddata->dssdev;
 	dssdev->ops = &dvic_ops;
 	dssdev->dev = &pdev->dev;
diff --git a/drivers/gpu/drm/omapdrm/displays/connector-hdmi.c b/drivers/gpu/drm/omapdrm/displays/connector-hdmi.c
index 7e449f8a9b5d..a32e4159242d 100644
--- a/drivers/gpu/drm/omapdrm/displays/connector-hdmi.c
+++ b/drivers/gpu/drm/omapdrm/displays/connector-hdmi.c
@@ -17,20 +17,6 @@
 
 #include "../dss/omapdss.h"
 
-static const struct videomode hdmic_default_vm = {
-	.hactive	= 640,
-	.vactive	= 480,
-	.pixelclock	= 25175000,
-	.hsync_len	= 96,
-	.hfront_porch	= 16,
-	.hback_porch	= 48,
-	.vsync_len	= 2,
-	.vfront_porch	= 11,
-	.vback_porch	= 31,
-
-	.flags		= DISPLAY_FLAGS_HSYNC_LOW | DISPLAY_FLAGS_VSYNC_LOW,
-};
-
 struct panel_drv_data {
 	struct omap_dss_device dssdev;
 	void (*hpd_cb)(void *cb_data, enum drm_connector_status status);
@@ -39,8 +25,6 @@ struct panel_drv_data {
 
 	struct device *dev;
 
-	struct videomode vm;
-
 	struct gpio_desc *hpd_gpio;
 };
 
@@ -98,22 +82,11 @@ static void hdmic_disable(struct omap_dss_device *dssdev)
 static void hdmic_set_timings(struct omap_dss_device *dssdev,
 			      const struct videomode *vm)
 {
-	struct panel_drv_data *ddata = to_panel_data(dssdev);
 	struct omap_dss_device *src = dssdev->src;
 
-	ddata->vm = *vm;
-
 	src->ops->set_timings(src, vm);
 }
 
-static void hdmic_get_timings(struct omap_dss_device *dssdev,
-			      struct videomode *vm)
-{
-	struct panel_drv_data *ddata = to_panel_data(dssdev);
-
-	*vm = ddata->vm;
-}
-
 static bool hdmic_detect(struct omap_dss_device *dssdev)
 {
 	struct panel_drv_data *ddata = to_panel_data(dssdev);
@@ -152,7 +125,6 @@ static const struct omap_dss_device_ops hdmic_ops = {
 	.disable		= hdmic_disable,
 
 	.set_timings		= hdmic_set_timings,
-	.get_timings		= hdmic_get_timings,
 
 	.detect			= hdmic_detect,
 	.register_hpd_cb	= hdmic_register_hpd_cb,
@@ -215,8 +187,6 @@ static int hdmic_probe(struct platform_device *pdev)
 			return r;
 	}
 
-	ddata->vm = hdmic_default_vm;
-
 	dssdev = &ddata->dssdev;
 	dssdev->ops = &hdmic_ops;
 	dssdev->dev = &pdev->dev;
-- 
Regards,

Laurent Pinchart

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  parent reply	other threads:[~2018-08-19 13:41 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-19 13:41 [PATCH v3 00/23] omapdrm: Rework the timing-related operations Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 01/23] drm/omap: Pass both output and display omap_dss_device to connector init Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 02/23] drm/omap: Determine connector type directly in omap_connector.c Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 03/23] drm/omap: dss: hdmi: Rename hdmi_display_(set|check)_timing() functions Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 04/23] drm/omap: encoder-tfp410: Don't fix timings in .set_timings() handler Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 05/23] drm/omap: Make the video_mode pointer to .set_timings() const Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 06/23] drm/omap: Remove duplicate calls to .set_timings() operation Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 07/23] drm/omap: Remove unneeded fallback for missing .check_timings() Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 08/23] drm/omap: Don't store video mode internally for external encoders Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 09/23] drm/omap: Store bus flags in the omap_dss_device structure Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 10/23] drm/omap: Don't call .check_timings() operation recursively Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 11/23] drm/omap: Query timing information from analog TV encoder Laurent Pinchart
2018-08-19 13:41 ` Laurent Pinchart [this message]
2018-08-19 13:41 ` [PATCH v3 13/23] drm/omap: panels: Don't modify fixed timings Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 14/23] drm/omap: Move bus flag hack to encoder implementation Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 15/23] drm/omap: Split mode fixup and mode set from encoder enable Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 16/23] drm/omap: Call dispc timings check operation directly Laurent Pinchart
2018-08-19 13:41 ` [PATCH v3 17/23] drm/omap: dpi: Don't fixup video mode in dpi_set_mode() Laurent Pinchart
2018-08-19 13:42 ` [PATCH v3 18/23] drm/omap: dsi: Fixup video mode in .set_config() operation Laurent Pinchart
2018-08-19 13:42 ` [PATCH v3 19/23] drm/omap: hdmi: Constify video mode and related pointers Laurent Pinchart
2018-08-19 13:42 ` [PATCH v3 20/23] drm/omap: sdi: Fixup video mode in .check_timings() operation Laurent Pinchart
2018-08-19 13:42 ` [PATCH v3 21/23] drm/omap: venc: " Laurent Pinchart
2018-08-19 13:42 ` [PATCH v3 22/23] drm/omap: Store CRTC timings in .set_timings() operation Laurent Pinchart
2018-08-19 13:42 ` [PATCH v3 23/23] drm/omap: Don't call .set_timings() operation recursively Laurent Pinchart

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180819134205.31106-13-laurent.pinchart@ideasonboard.com \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=tomi.valkeinen@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.