Bug 24726

Summary: intel driver 2.9.0: Setting TV Format is broken
Product: xorg Reporter: Roland Tapken <freedesktop>
Component: Driver/intelAssignee: Gordon Jin <gordon.jin>
Status: RESOLVED INVALID QA Contact: Xorg Project Team <xorg-team>
Severity: major    
Priority: medium CC: freedesktop
Version: 7.4 (2008.09)   
Hardware: Other   
OS: All   
Whiteboard:
i915 platform: i915 features:
Attachments:
Description Flags
/var/log/Xorg.0.log
none
xrandr --verbose none

Description Roland Tapken 2009-10-25 14:26:11 UTC
Setting the TV Format in xorg.conf doesn't work any longer.

xorg.conf:

Section "Monitor"
  Identifier "TV1"
  Option "TV Format" "PAL"
EndSection

Expected result:
"xrandr --verbose" should report PAL as current mode, but actually "NTSC" is enabled (TV is attached when X starts!).

The bug was introduced by git commit 7ae1d0dde6cef3437b67dbc21384cb179616a6c0:

src/i830_tv.c:
--- a/src/i830_tv.c
+++ b/src/i830_tv.c
@@ -1819,7 +1819,7 @@ i830_tv_set_property(xf86OutputPtr output, Atom property,
        xfree (dev_priv->tv_format);
        dev_priv->tv_format = val;
 
-       if (pI830->starting)
+       if (pI830->starting || output->crtc == NULL)
            return TRUE;
 
        /* TV format change will generate new modelines, try

After I reverted these changes from 2.9.0 sources, setting TV Format works properly.
Comment 1 Roland Tapken 2009-10-25 14:38:41 UTC
Changing TV_Format via xrandr still doesn't work:

$ xrandr --output TV1 --set TV_FORMAT NTSC
X Error of failed request:  BadName (named color or font does not exist)
  Major opcode of failed request:  149 (RANDR)
  Minor opcode of failed request:  11 (RRQueryOutputProperty)
  Serial number of failed request:  29
  Current serial number in output stream:  29
Comment 2 Roland Tapken 2009-10-25 14:39:25 UTC
Created attachment 30677 [details]
/var/log/Xorg.0.log
Comment 3 Roland Tapken 2009-10-25 14:39:53 UTC
Created attachment 30678 [details]
xrandr --verbose
Comment 4 Roland Tapken 2009-10-25 14:44:07 UTC
Changing LEFT/RIGHT/TOP/BOTTOM-Margin doesn't work either:

$ xrandr --output TV1 --set BOTTOM 20 --set RIGHT 30 --set TOP 10 --set LEFT 0
X Error of failed request:  BadName (named color or font does not exist)
  Major opcode of failed request:  149 (RANDR)
  Minor opcode of failed request:  11 (RRQueryOutputProperty)
  Serial number of failed request:  29
  Current serial number in output stream:  29
Comment 5 Julien Cristau 2009-10-25 15:26:50 UTC
> --- Comment #1 from Roland Tapken <freedesktop@tmp.dau-sicher.de>  2009-10-25 14:38:41 PST ---
> Changing TV_Format via xrandr still doesn't work:
> 
> $ xrandr --output TV1 --set TV_FORMAT NTSC

> --- Comment #4 from Roland Tapken <freedesktop@tmp.dau-sicher.de>  2009-10-25 14:44:07 PST ---
> Changing LEFT/RIGHT/TOP/BOTTOM-Margin doesn't work either:
> 
> $ xrandr --output TV1 --set BOTTOM 20 --set RIGHT 30 --set TOP 10 --set LEFT 0

you're using KMS, which doesn't have the same names for properties as
UMS.  Try 'mode' instead of 'TV_FORMAT', and 'bottom margin' instead of
'BOTTOM' (as listed in your xrandr --verbose output).  So I think this
should be closed as invalid.
Comment 6 Roland Tapken 2009-10-26 02:08:56 UTC
You're right, this was it. 

Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.