public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel@ffwll.ch>
To: Robert Foss <robert.foss@collabora.com>
Cc: daniel.vetter@ffwll.ch, intel-gfx@lists.freedesktop.org,
	marius.vlad@intel.com
Subject: Re: [PATCH i-g-t 7/7] kms_panel_fitting: Add support for LVDS and DSI connectors.
Date: Thu, 28 Apr 2016 16:41:41 +0200	[thread overview]
Message-ID: <20160428144141.GD5784@phenom.ffwll.local> (raw)
In-Reply-To: <5722192D.90805@collabora.com>

On Thu, Apr 28, 2016 at 10:07:41AM -0400, Robert Foss wrote:
> 
> 
> On 04/28/2016 04:02 AM, Daniel Vetter wrote:
> >On Tue, Apr 26, 2016 at 01:08:35PM -0400, Robert Foss wrote:
> >>
> >>
> >>On 04/26/2016 01:00 PM, Ville Syrjälä wrote:
> >>>On Tue, Apr 26, 2016 at 12:55:54PM -0400, Robert Foss wrote:
> >>>>
> >>>>
> >>>>On 04/26/2016 10:11 AM, Daniel Vetter wrote:
> >>>>>On Fri, Apr 22, 2016 at 05:25:00PM -0400, robert.foss@collabora.com wrote:
> >>>>>>From: Robert Foss <robert.foss@collabora.com>
> >>>>>>
> >>>>>>Add support for DRM_MODE_CONNECTOR_LVDS and DRM_MODE_CONNECTOR_DSI
> >>>>>>connectors.
> >>>>>>
> >>>>>>Signed-off-by: Robert Foss <robert.foss@collabora.com>
> >>>>>>---
> >>>>>>   tests/kms_panel_fitting.c | 12 +++++++++---
> >>>>>>   1 file changed, 9 insertions(+), 3 deletions(-)
> >>>>>>
> >>>>>>diff --git a/tests/kms_panel_fitting.c b/tests/kms_panel_fitting.c
> >>>>>>index 60a22b0..933776c 100644
> >>>>>>--- a/tests/kms_panel_fitting.c
> >>>>>>+++ b/tests/kms_panel_fitting.c
> >>>>>>@@ -140,9 +140,15 @@ static void test_panel_fitting(data_t *d)
> >>>>>>   	for_each_connected_output(display, output) {
> >>>>>>   		drmModeModeInfo *mode, native_mode;
> >>>>>>
> >>>>>>-		if (output->config.connector->connector_type !=
> >>>>>>-			DRM_MODE_CONNECTOR_eDP)
> >>>>>>-			continue;
> >>>>>>+		switch (output->config.connector->connector_type)
> >>>>>>+		{
> >>>>>>+		    case DRM_MODE_CONNECTOR_LVDS:
> >>>>>>+		    case DRM_MODE_CONNECTOR_eDP:
> >>>>>>+		    case DRM_MODE_CONNECTOR_DSI:
> >>>>>>+			    break;
> >>>>>>+		    default:
> >>>>>>+			    continue;
> >>>>>>+		}
> >>>>>
> >>>>>I think ville commented that we should instead check for "scaling mode",
> >>>>>and we discussed this on irc. Am I accidentally looking at an old patch
> >>>>>series?
> >>>>>-Daniel
> >>>>>
> >>>>No, this isn't an old patch, I misunderstood where our conversation ended.
> >>>>
> >>>>"scaling mode" is an intel specific extension as far as I understand it,
> >>>>which is somewhat the opposite of generalizing i-g-t tests.
> >>>>
> >>>>Is there an architecture independent way forward?
> >>>
> >>>A quick poke at cscope tells me "scaling mode" is used by amdgpu, gma500,
> >>>i915, nouveau, and radeon. Seems fairly independent to me.
> >>>
> >>If that is the case, and it seems to be, "scaling mode" is definitely
> >>worth pursuing.
> >
> >Perhaps also send in a kernel patch to update the docbook table? It's
> >awful, but the best thing we have right now ...
> >-Daniel
> >
> 
> Other than a Description/Restrictions entry for "scaling mode", is there
> anything you'd like to see added?

I meant moving it into the generic section and list which drivers support
it. No need to change the description itself - that's an entire project on
itself.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2016-04-28 14:41 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-22 21:24 [PATCH i-g-t 0/7] Improve kms_panel_fitting robert.foss
2016-04-22 21:24 ` [PATCH i-g-t 1/7] kms_panel_fitting: Remove un-read variable robert.foss
2016-04-22 21:24 ` [PATCH i-g-t 2/7] kms_panel_fitting: Remove un-read variable pipe_crc robert.foss
2016-04-22 21:24 ` [PATCH i-g-t 3/7] kms_panel_fitting: Remove un-used variable robert.foss
2016-04-22 21:24 ` [PATCH i-g-t 4/7] kms_panel_fitting: Switched DRM format to a hardware agnostic alternative robert.foss
2016-04-22 21:24 ` [PATCH i-g-t 5/7] kms_panel_fitting: Enabled test on non-Intel hardware robert.foss
2016-04-22 21:24 ` [PATCH i-g-t 6/7] kms_panel_fitting: Don't skip test after finding an incompatible connector robert.foss
2016-04-26 14:10   ` Daniel Vetter
2016-04-26 16:50     ` Robert Foss
2016-04-28  8:01       ` Daniel Vetter
2016-04-22 21:25 ` [PATCH i-g-t 7/7] kms_panel_fitting: Add support for LVDS and DSI connectors robert.foss
2016-04-22 22:31   ` Marius Vlad
2016-04-26 14:11   ` Daniel Vetter
2016-04-26 16:55     ` Robert Foss
2016-04-26 17:00       ` Ville Syrjälä
2016-04-26 17:08         ` Robert Foss
2016-04-28  8:02           ` Daniel Vetter
2016-04-28 14:07             ` Robert Foss
2016-04-28 14:41               ` Daniel Vetter [this message]
2016-04-28 15:57                 ` Robert Foss
2016-05-02  8:20                   ` Daniel Vetter
2016-05-02 19:16                     ` Robert Foss
2016-04-26 14:11 ` [PATCH i-g-t 0/7] Improve kms_panel_fitting Daniel Vetter

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=20160428144141.GD5784@phenom.ffwll.local \
    --to=daniel@ffwll.ch \
    --cc=daniel.vetter@ffwll.ch \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=marius.vlad@intel.com \
    --cc=robert.foss@collabora.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox