All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH-v2 0/3] drm/i915: interlaced mode support
@ 2012-01-18 13:29 Peter Ross
  2012-01-18 13:30 ` [PATCH-v2 1/3] drm/i915: specify vertical timings in frame units for interlaced modes (gen3+) Peter Ross
                   ` (5 more replies)
  0 siblings, 6 replies; 16+ messages in thread
From: Peter Ross @ 2012-01-18 13:29 UTC (permalink / raw)
  To: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 1086 bytes --]

This patch set enables enables interlaced mode output on
generation 3 and above chipsets.

History here: https://bugs.freedesktop.org/show_bug.cgi?id=11220

It has been tested on the following hardware:
* ASUS P5E-VM-HDMI (G35_G) and LG 32FS4D (VGA and SDVO connectors)
* Intel DQ45CB (Q45_G) and Sony GDM 5411 (VGA connector)
* Toshiba Portege R500 (I935_GM) and Sony GDM 5411 CRT (VGA connector)

PATCH HISTORY
Version 1. Initial cut.
Version 2. Set timings for gen3 and ILK/SB chipsets.
           Allow interlaced output on HDMI connector.

Peter Ross (3):
  drm/i915: specify vertical timings in frame units for interlaced
    modes (gen3+)
  drm/i915: allow interlaced mode output on the SDVO connector
  drm/i915: allow interlaced mode output on the HDMI connector

 drivers/gpu/drm/i915/intel_display.c |   14 ++++++++++++++
 drivers/gpu/drm/i915/intel_hdmi.c    |    2 +-
 drivers/gpu/drm/i915/intel_sdvo.c    |    2 +-
 3 files changed, 16 insertions(+), 2 deletions(-)

-- 
1.7.5.4

-- Peter
(A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 16+ messages in thread
* Re: [PATCH-v2 0/3] drm/i915: interlaced mode support
@ 2012-01-19 11:38 Peter Ross
  2012-01-19 12:23 ` Paulo Zanoni
  0 siblings, 1 reply; 16+ messages in thread
From: Peter Ross @ 2012-01-19 11:38 UTC (permalink / raw)
  To: intel-gfx


[-- Attachment #1.1: Type: text/plain, Size: 2280 bytes --]

On Thu, Jan 19, 2012 at 11:28:35AM +0100, Daniel Vetter wrote:
> On Thu, Jan 19, 2012 at 09:51:16AM +0000, Sun, Yi wrote:
> > > > This patch set enables enables interlaced mode output on generation 3
> > > > and above chipsets.
> > > >
> > > > History here: https://bugs.freedesktop.org/show_bug.cgi?id=11220
> > > >
> > > > It has been tested on the following hardware:
> > > > * ASUS P5E-VM-HDMI (G35_G) and LG 32FS4D (VGA and SDVO connectors)
> > > > * Intel DQ45CB (Q45_G) and Sony GDM 5411 (VGA connector)
> > > > * Toshiba Portege R500 (I935_GM) and Sony GDM 5411 CRT (VGA connector)
> > > >
> > > > PATCH HISTORY
> > > > Version 1. Initial cut.
> > > > Version 2. Set timings for gen3 and ILK/SB chipsets.
> > > >            Allow interlaced output on HDMI connector.
> > > >
> > > > Peter Ross (3):
> > > >   drm/i915: specify vertical timings in frame units for interlaced
> > > >     modes (gen3+)
> > > >   drm/i915: allow interlaced mode output on the SDVO connector
> > > >   drm/i915: allow interlaced mode output on the HDMI connector
> > > >
> > > >  drivers/gpu/drm/i915/intel_display.c |   14 ++++++++++++++
> > > >  drivers/gpu/drm/i915/intel_hdmi.c    |    2 +-
> > > >  drivers/gpu/drm/i915/intel_sdvo.c    |    2 +-
> > > >  3 files changed, 16 insertions(+), 2 deletions(-)
> > > 
> > > Cool, this series looks good.
> > > 
> > > Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
> > > 
> > > Yi, can you give these patches a try with interlaced modes on SDVO and HDMI
> > > attached displays and reply with your tested-by?
> > > 
> > 
> > I tried the 3 patches on 3 machines, gm45(HDMI), g45(SDVO-HDMI) and a SandyBridge mobile(HDMI).
> > The patches work well on gm45 with HDMI and g45 with SDVO-HDMI card. I could reproduce the issue and fix it.
> > 
> > But on the SandyBridge, it seems that the issue still exists.
> > 
> > Tested-by: Sun Yi <yi.sun@intel.com>

Thanks.

> So I guess it works on pre-PCH_SPLIT machines, but not on later ones.
> Peter, on which machines have you tried this out?

Have tested successfully on:

I935_GM (VGA)
G35_G (VGA, SDVO-HDMI)
Q45 (VGA)

Expect to also have results for I915_G on the weekend.

-- Peter
(A907 E02F A6E5 0CD2 34CD 20D2 6760 79C5 AC40 DD6B)

[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2012-01-22  9:38 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-18 13:29 [PATCH-v2 0/3] drm/i915: interlaced mode support Peter Ross
2012-01-18 13:30 ` [PATCH-v2 1/3] drm/i915: specify vertical timings in frame units for interlaced modes (gen3+) Peter Ross
2012-01-18 13:30 ` [PATCH-v2 2/3] drm/i915: allow interlaced mode output on the SDVO connector Peter Ross
2012-01-18 13:30 ` [PATCH-v2 3/3] drm/i915: allow interlaced mode output on the HDMI connector Peter Ross
2012-01-18 16:42 ` [PATCH-v2 0/3] drm/i915: interlaced mode support Jesse Barnes
2012-01-19  9:51   ` Sun, Yi
2012-01-19 10:28     ` Daniel Vetter
2012-01-18 17:27 ` Eugeni Dodonov
2012-01-18 20:39 ` Paulo Zanoni
2012-01-18 20:55   ` Jesse Barnes
2012-01-20 11:24     ` Peter Ross
2012-01-22  7:14       ` Peter Ross
2012-01-22  9:38         ` Peter Ross
2012-01-19 10:29   ` Daniel Vetter
  -- strict thread matches above, loose matches on Subject: below --
2012-01-19 11:38 Peter Ross
2012-01-19 12:23 ` Paulo Zanoni

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.