Bug 20785 - [SDVO-TV UMS]Sometimes X doesn't start on D945GCLF2 with only TV connected
Summary: [SDVO-TV UMS]Sometimes X doesn't start on D945GCLF2 with only TV connected
Status: RESOLVED DUPLICATE of bug 24290
Alias: None
Product: xorg
Classification: Unclassified
Component: Driver/intel (show other bugs)
Version: unspecified
Hardware: Other All
: medium normal
Assignee: ykzhao
QA Contact: Xorg Project Team
URL:
Whiteboard:
Keywords: NEEDINFO, patch
Depends on:
Blocks:
 
Reported: 2009-03-21 03:52 UTC by georgy@kibardin.name
Modified: 2009-10-28 20:49 UTC (History)
3 users (show)

See Also:
i915 platform:
i915 features:


Attachments
Debug log (62.51 KB, text/plain)
2009-04-02 12:27 UTC, georgy@kibardin.name
no flags Details
Could you please try the debug patch on your machine, then upload log with modedebug option on, thanks. (455 bytes, application/octet-stream)
2009-04-06 07:29 UTC, MaLing
no flags Details
please try the patch on your machine, thanks. (1.05 KB, application/octet-stream)
2009-04-06 20:10 UTC, MaLing
no flags Details
please try the patch on your machine, thanks. (637 bytes, application/octet-stream)
2009-04-16 05:54 UTC, MaLing
no flags Details
please try the debug patch against latest driver on your machine (1.72 KB, text/plain)
2009-06-14 22:51 UTC, MaLing
no flags Details
ROM dump (48.00 KB, application/octet-stream)
2009-09-05 12:23 UTC, georgy@kibardin.name
no flags Details
Add some delay for SDVO tv detection (827 bytes, patch)
2009-09-14 23:07 UTC, ykzhao
no flags Details | Splinter Review
New SDVO properties (20.22 KB, patch)
2009-09-27 13:00 UTC, georgy@kibardin.name
no flags Details | Splinter Review

Description georgy@kibardin.name 2009-03-21 03:52:48 UTC
Log has following lines:

(II) intel(0): EDID for output VGA
(II) intel(0): SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Success)
(II) intel(0): EDID for output TV-1
(II) intel(0): Output VGA disconnected
(II) intel(0): Output TV-1 disconnected
(WW) intel(0): No outputs definitely connected, trying again...
(II) intel(0): Output VGA disconnected
(II) intel(0): Output TV-1 disconnected
(WW) intel(0): Unable to find initial modes
 
It looks like the problem is that connected TV detection is not 100% reliable.
It seems that following patch fixes the problem:

--- a/src/i830_sdvo.c
+++ b/src/i830_sdvo.c
@@ -1680,13 +1757,20 @@ i830_sdvo_detect(xf86OutputPtr output)
     struct i830_sdvo_priv *dev_priv = intel_output->dev_priv;
     uint16_t response;
     uint8_t status;
+    int attempts = 5;

-    i830_sdvo_write_cmd(output, SDVO_CMD_GET_ATTACHED_DISPLAYS, NULL, 0);
-    status = i830_sdvo_read_response(output, &response, 2);
-
-    if (status != SDVO_CMD_STATUS_SUCCESS)
-       return XF86OutputStatusUnknown;
+    /* Detecting attached TV is not 100% reliable so lets make several attempts */
+    while(attempts--)
+    {
+        i830_sdvo_write_cmd(output, SDVO_CMD_GET_ATTACHED_DISPLAYS, NULL, 0);
+        status = i830_sdvo_read_response(output, &response, 2);

+        if (status != SDVO_CMD_STATUS_SUCCESS)
+           return XF86OutputStatusUnknown;
+
+       if (response != 0)
+           break;
+    }
     if (response == 0)
        return XF86OutputStatusDisconnected;
Comment 1 Wang Zhenyu 2009-03-22 09:01:12 UTC
Try more times is usually method to make TV light up, even on my LF2 board BIOS can't seem to light up TV every time. Have you tried to tune on i2c delay timers to see if external SDVO device likes more delays?

Comment 2 georgy@kibardin.name 2009-03-22 12:38:42 UTC
As far as I understand the logic there is no timeout, after some replies with "pending" status we get "success" with no devices detected:

(II) intel(0): SDVOB: W: 0B                        
(SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Success)

Then, I made a conclusion that TV detection fails sometimes and in this case sending the command again looks like the only solution.

P.S. My board's bios sometimes also doesn't light up a TV, but when it does in most cases it is out of sync.
Comment 3 Michael Fu 2009-03-23 22:14:26 UTC
why 5? is it the best number you've tried?

have you tried if 2 will just work for you?
Comment 4 georgy@kibardin.name 2009-03-24 01:37:55 UTC
Once or twice it required 3 attempts. So, I decided that 5 would be enough :)
Comment 5 MaLing 2009-04-01 06:50:48 UTC
Hi George,

Could you please upload your log file with modedebug option on?


Thanks
Ma Ling
Comment 6 georgy@kibardin.name 2009-04-02 12:27:16 UTC
Created attachment 24470 [details]
Debug log

Sure.
Actually, the log fragment I mentioned before was also created with debug mode on
Comment 7 MaLing 2009-04-06 07:29:11 UTC
Created attachment 24603 [details]
Could you please try the debug patch on your machine, then upload log with modedebug option on, thanks.
Comment 8 georgy@kibardin.name 2009-04-06 11:45:43 UTC
I tried several times and it looks like this works.

In logs I use to get something like this:

(II) intel(0): SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 08 00                   (Success)

Sometimes it is just 3 lines:

(II) intel(0): SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 08 00                   (Success)

So, Wang was right it is about timeouts!

Thank you!
Comment 9 MaLing 2009-04-06 17:54:39 UTC
(In reply to comment #8)
> I tried several times and it looks like this works.
> In logs I use to get something like this:
That means the patch work for you?
Comment 10 MaLing 2009-04-06 20:10:09 UTC
Created attachment 24629 [details]
please try the patch on your machine, thanks.

hi George,
Could you please try the general debug patch on your machine?
Thanks
Ma Ling
Comment 11 georgy@kibardin.name 2009-04-07 11:41:15 UTC
First time I tried to restart X after applying this patch I got:

(II) intel(0): SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Success)

as you can see no displays are detected.

Best,
George
Comment 12 MaLing 2009-04-07 18:32:39 UTC
(In reply to comment #11)
> First time I tried to restart X after applying this patch I got:
> (II) intel(0): SDVOB: W: 0B                        
> (SDVO_CMD_GET_ATTACHED_DISPLAYS)
> (II) intel(0): SDVOB: R: 00 00                   (Pending)
> (II) intel(0): SDVOB: R: 00 00                   (Success)
> as you can see no displays are detected.
> Best,
> George

So only the patch in  comments #7  is useful to you ?

Comment 13 georgy@kibardin.name 2009-04-08 02:08:07 UTC
Yes, but this looks very strange. Maybe first time I was lucky and accidentally had no problems. I'll try #7 again.
Comment 14 MaLing 2009-04-09 19:53:21 UTC
h(In reply to comment #13)
> Yes, but this looks very strange. Maybe first time I was lucky and accidentally
> had no problems. I'll try #7 again.

George, do you have some update :-)?

Thanks
Ma Ling
Comment 15 georgy@kibardin.name 2009-04-09 23:59:01 UTC
Sorry, I ran out of time for a while. I hope this weekend I try it.
Comment 16 georgy@kibardin.name 2009-04-12 11:15:00 UTC
Finally with #7 I got:
(II) intel(0): SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 00 00                   (Success)

so, no device connected.
Comment 17 MaLing 2009-04-16 05:54:17 UTC
Created attachment 24859 [details]
please try the patch on your machine, thanks.

Sdvo device shall act on optcode and update
commmand status register within 15 micro-seconds, but our code has waited for 50 micro-seconds. BTW could you have another the same brand and model machine or sdvo card to try this issue?
thanks
maling
Comment 18 georgy@kibardin.name 2009-04-17 12:09:23 UTC
The very first reboot I got:

(II) intel(0): SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Success)

Unfortunately, I have no other intel device :(
Comment 19 MaLing 2009-06-14 22:51:40 UTC
Created attachment 26795 [details]
please try the debug patch against latest driver on your machine

The patch attempt to detect connection status at multiple times (5 as you suggested), please try it.

Thanks for your help
Ma Ling
Comment 20 MaLing 2009-06-16 06:23:10 UTC
(In reply to comment #19)
> Created an attachment (id=26795) [details]
> please try the debug patch against latest driver on your machine
> The patch attempt to detect connection status at multiple times (5 as you
> suggested), please try it.
> Thanks for your help
> Ma Ling

Ping ~
Comment 21 georgy@kibardin.name 2009-06-16 07:34:00 UTC
Sorry, I'm a bit out of time currently, but, I hope, this week I'll test it.
Comment 22 MaLing 2009-06-23 21:44:04 UTC
*** Bug 20639 has been marked as a duplicate of this bug. ***
Comment 23 georgy@kibardin.name 2009-06-24 21:44:11 UTC
This patch works. I got this in logs:

(II) intel(0): SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Pending)
(II) intel(0): SDVOB: R: 00 00                   (Success)
(II) intel(0): SDVOB: W: 0B                         (SDVO_CMD_GET_ATTACHED_DISPLAYS)
(II) intel(0): SDVOB: R: 08 00                   (Pending)
(II) intel(0): SDVOB: R: 08 00                   (Pending)
(II) intel(0): SDVOB: R: 08 00                   (Pending)
(II) intel(0): SDVOB: R: 08 00                   (Pending)
(II) intel(0): SDVOB: R: 08 00                   (Success)

Thank you!
Comment 24 ykzhao 2009-08-05 23:28:10 UTC
Thanks for the testing.
From the test it seems that it can work well only when the SDVO command is sent several times.
If so, IMO this will be related with the hardware issue.

Will you please also attach the vbios dump?
Thanks.
Comment 25 georgy@kibardin.name 2009-08-06 00:16:36 UTC
vbios dump - how to do this?
Comment 26 Michael Fu 2009-08-25 22:32:31 UTC
# cd /sys/devices/pci0000\:00/0000\:00\:02.0/
# echo 1 > rom
# cat rom > /tmp/rom.bin
# echo 0 > rom

then submit teh rom.bin
Comment 27 georgy@kibardin.name 2009-09-05 12:23:28 UTC
Created attachment 29252 [details]
ROM dump

Sorry for delay :(
Comment 28 ykzhao 2009-09-14 23:07:58 UTC
Created attachment 29549 [details] [review]
Add some delay for SDVO tv detection

Will you please try this debug patch on the latest intel-graphics driver and see whether the SDVO-TV can be detected correctly?
thanks.
Comment 29 georgy@kibardin.name 2009-09-15 00:35:09 UTC
Its not that easy. First I need to upgrade a lot of stuff then I need to port my patch (those one attached to https://bugs.freedesktop.org/show_bug.cgi?id=20684 and also posted to mailing list) to the latest version, so, this will take a while.
Comment 30 Michael Fu 2009-09-26 20:05:29 UTC
ping~  George Kibardin
Comment 31 georgy@kibardin.name 2009-09-27 00:20:46 UTC
PING George Kibardin with 56(84) bytes of data.
64 bytes from George Kibardin: icmp_seq=1 ttl=55 time=5.95 ms
64 bytes from George Kibardin: icmp_seq=2 ttl=55 time=4.86 ms
64 bytes from George Kibardin: icmp_seq=3 ttl=55 time=4.94 ms
.....

Sorry, I hope this week I find some time to upgrade (my current xorg is 1.5.3 which is not enough to build 2.8.1)
Comment 32 georgy@kibardin.name 2009-09-27 13:00:54 UTC
Created attachment 29898 [details] [review]
New SDVO properties

It looks like upgrade is almost complete so I'll check the patch.

BTW, I've ported new SDVO properties forward to 2.8.1. Please take a look.
Comment 33 ykzhao 2009-09-27 18:01:20 UTC
(In reply to comment #32)
> Created an attachment (id=29898) [details]
> New SDVO properties
> 
> It looks like upgrade is almost complete so I'll check the patch.
> 
> BTW, I've ported new SDVO properties forward to 2.8.1. Please take a look.
This is to add the SDVO-TV property in UMS mode. Is it still necessary to add it in UMS mode?
As a whole, it is ok. But I have the following problems.
    a. the picture enhancement property should be defined for every SDVO device. Maybe there exist two SDVO devices with the picture enhancement property.
    b. whether the property should be added based on the enhancement capability.

After you finish it, please send it to intel-gfx mailing list.

thanks.

Comment 34 georgy@kibardin.name 2009-09-29 08:47:20 UTC
Do you mean that everything is supposed to happen in KMS? I could port it there, but it looks like in this case it is still required to do something in UMS (at least to transfer the settings to KMS).

About more than one SDVO devices. Do you mean that i830_sdvo_priv is shared between theese devices?

P.S. For now the patch is still ok :)
Comment 35 ykzhao 2009-10-15 02:23:11 UTC
The UMS will not be supported again. So please try the debug patch in 
https://bugs.freedesktop.org/show_bug.cgi?id=24290#C6 and see whether the issue still exists(Please do the test in KMS mode).
Thanks.
Comment 36 ykzhao 2009-10-19 23:45:36 UTC
(In reply to comment #35)
> The UMS will not be supported again. So please try the debug patch in 
> https://bugs.freedesktop.org/show_bug.cgi?id=24290#C6 and see whether the issue
> still exists(Please do the test in KMS mode).
> Thanks.
From the description it seems that the SDVO-TV sometimes can't be detected correctly. But sometimes it can be detected correctly. It has the same issue with the bug 24290. So please try the debug patch in bug24290#c6 and see whether the issue still exists.

And this bug will be marked as the dup of bug24290.
Thanks.



*** This bug has been marked as a duplicate of bug 24290 ***
Comment 37 georgy@kibardin.name 2009-10-28 13:07:36 UTC
About my patch with new SDVO properties. I found that all these properties are implemented in kernel mode so, my patch is almost unnecessary. The only problem is that I don't quite get how to use these properties? They don't seem to be accessible via xrandr or xorg.conf
Comment 38 ykzhao 2009-10-28 20:49:18 UTC
(In reply to comment #37)
> About my patch with new SDVO properties. I found that all these properties are
> implemented in kernel mode so, my patch is almost unnecessary. The only problem
> is that I don't quite get how to use these properties? They don't seem to be
> accessible via xrandr or xorg.conf
>
The property can be adjusted by using xrandr.

Thanks. 




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.