All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded
@ 2011-07-11 16:27 bugzilla-daemon
  2011-07-11 16:43 ` [Bug 39145] " bugzilla-daemon
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-07-11 16:27 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

           Summary: screen goes dark when the graphics driver (radeon) is
                    loaded
           Product: DRI
           Version: XOrg CVS
          Platform: x86 (IA32)
        OS/Version: Linux (All)
            Status: NEW
          Severity: critical
          Priority: medium
         Component: DRM/Radeon
        AssignedTo: dri-devel@lists.freedesktop.org
        ReportedBy: mikhail.v.gavrilov@gmail.com


Created an attachment (id=48979)
 --> (https://bugs.freedesktop.org/attachment.cgi?id=48979)
kernel log file

This issue ocurred when I updated kernel version 2.6.38-2-686-pae to
2.6.39-2-686-pae version.
- The GPU's device ID: 1002:9712 (M880G, Mobility Radeon HD 4200)
- The model name: Acer Aspire One 521
- I am using Debian testing (wheezy) x86 
- Also system couldn't enter in single mode, because screen goes dark again.

I attach link to youtube video that's demonstrates symptoms of this issue.
http://www.youtube.com/watch?v=KtxRLEtHu5w

Messages log attached to this report.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
@ 2011-07-11 16:43 ` bugzilla-daemon
  2011-07-11 16:45 ` bugzilla-daemon
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-07-11 16:43 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

Alex Deucher <agd5f@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #48979|application/octet-stream    |text/plain
          mime type|                            |
  Attachment #48979|0                           |1
           is patch|                            |

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
  2011-07-11 16:43 ` [Bug 39145] " bugzilla-daemon
@ 2011-07-11 16:45 ` bugzilla-daemon
  2011-08-05 17:19 ` bugzilla-daemon
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-07-11 16:45 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

--- Comment #1 from Alex Deucher <agd5f@yahoo.com> 2011-07-11 09:45:08 PDT ---
Can you bisect?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
  2011-07-11 16:43 ` [Bug 39145] " bugzilla-daemon
  2011-07-11 16:45 ` bugzilla-daemon
@ 2011-08-05 17:19 ` bugzilla-daemon
  2011-08-05 18:10 ` bugzilla-daemon
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-08-05 17:19 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

--- Comment #2 from Jonathan Nieder <jrnieder@gmail.com> 2011-08-05 10:19:10 PDT ---
Hi Mikhail,

(In reply to comment #0)

> This issue ocurred when I updated kernel version 2.6.38-2-686-pae to
> 2.6.39-2-686-pae version.
> - The GPU's device ID: 1002:9712 (M880G, Mobility Radeon HD 4200)
> - The model name: Acer Aspire One 521
> - I am using Debian testing (wheezy) x86 
> - Also system couldn't enter in single mode, because screen goes dark again.
>
> I attach link to youtube video that's demonstrates symptoms of this issue.
> http://www.youtube.com/watch?v=KtxRLEtHu5w
>
> Messages log attached to this report.

Thanks.  If you have time, could you bisect to find the change that introduced
this bug?

It works like this:

0. Write a script named "as" with the following content and put it in
your $PATH to work around <http://bugs.debian.org/620448>.

    #!/bin/sh
    exec /usr/bin/as --size-check=warning "$@"

1. Grab the latest mainline source:

 # apt-get install git build-essential
 $ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
 $ cd linux

2. Minimal configuration.

 $ make localmodconfig

3. Test.

 $ make deb-pkg
 # dpkg -i ../<name of .deb>
 # reboot

4. If it works, let us know and declare victory. Otherwise:

 $ git bisect start v2.6.39 v2.6.38 -- drivers/gpu

Git will check out a version half-way between to test.

 $ make silentoldconfig; # reuse configuration
 $ make deb-pkg
 # dpkg -i ../<name of .deb>
 # reboot
 $ cd ~/src/linux
 $ git bisect good; # if it works
 $ git bisect bad; # if it fails in the same way
 $ git bisect skip; # if some other bug makes it hard to test

5. Git will check out a next version to check; repeat step 4 until
it gives the "first bad commit" or you get bored.  If you finish
early, you can send the output of "git bisect log" to let us know
the information acquired so far.

If gitk is installed, at any step you can run "git bisect visualize"
to see the regression range narrowing.

Hope that helps.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
                   ` (2 preceding siblings ...)
  2011-08-05 17:19 ` bugzilla-daemon
@ 2011-08-05 18:10 ` bugzilla-daemon
  2011-08-15  2:13 ` bugzilla-daemon
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-08-05 18:10 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

--- Comment #3 from mikhail.v.gavrilov@gmail.com 2011-08-05 11:10:32 PDT ---
Hi Jonathan,
I am ready follow instruction, but how do it on machine wich unbootable?
Thanks.

> Thanks.  If you have time, could you bisect to find the change that introduced
> this bug?
>
...

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
                   ` (3 preceding siblings ...)
  2011-08-05 18:10 ` bugzilla-daemon
@ 2011-08-15  2:13 ` bugzilla-daemon
  2011-08-25 17:49 ` bugzilla-daemon
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-08-15  2:13 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

Jonathan Nieder <jrnieder@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jrnieder@gmail.com

--- Comment #4 from Jonathan Nieder <jrnieder@gmail.com> 2011-08-14 19:13:05 PDT ---
Sorry I missed your message before.  Do you mean that you don't have a working
kernel installed in addition to the broken one?

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
                   ` (4 preceding siblings ...)
  2011-08-15  2:13 ` bugzilla-daemon
@ 2011-08-25 17:49 ` bugzilla-daemon
  2011-08-25 17:59 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-08-25 17:49 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

--- Comment #5 from mikhail.v.gavrilov@gmail.com 2011-08-25 10:49:18 PDT ---
> --- Comment #4 from Jonathan Nieder <jrnieder@gmail.com> 2011-08-14 19:13:05 PDT ---
> Sorry I missed your message before.  Do you mean that you don't have a working
> kernel installed in addition to the broken one?

After this when my system has broken with updated kernel I decide
reinstall system. Now I have system only with new unworkable kernel.
Also I try new debian wich build at 22-Aug-2011 with kernel
3.0.0-1-686-pae. Problem not fixed yet.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
                   ` (5 preceding siblings ...)
  2011-08-25 17:49 ` bugzilla-daemon
@ 2011-08-25 17:59 ` bugzilla-daemon
  2011-10-16 23:03 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-08-25 17:59 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

--- Comment #6 from Jonathan Nieder <jrnieder@gmail.com> 2011-08-25 10:59:49 PDT ---
bugzilla-daemon@freedesktop.org wrote:

> After this when my system has broken with updated kernel I decide
> reinstall system. Now I have system only with new unworkable kernel.
> Also I try new debian wich build at 22-Aug-2011 with kernel
> 3.0.0-1-686-pae. Problem not fixed yet.

It would _really_ help to have a working system.  Could you try
installing Debian squeeze and then just upgrading the kernel?

Alternatively, it might be possible to do experiments using a live
CD[*], but I don't know how to swap out the kernel there.

[*] http://www.debian.org/CD/live/

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
                   ` (6 preceding siblings ...)
  2011-08-25 17:59 ` bugzilla-daemon
@ 2011-10-16 23:03 ` bugzilla-daemon
  2011-10-16 23:52 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-10-16 23:03 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

--- Comment #7 from mikhail.v.gavrilov@gmail.com 2011-10-16 16:03:40 PDT ---
> 1. Grab the latest mainline source:
>
>  # apt-get install git build-essential
>  $ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
>  $ cd linux
>
> 2. Minimal configuration.
>
>  $ make localmodconfig
>
> 3. Test.
>
>  $ make deb-pkg
>  # dpkg -i ../<name of .deb>
>  # reboot
>
> 4. If it works, let us know and declare victory. Otherwise:

Debian 6.0.3 (squeeze) can boot without described issue with linux
kernel 3.1.0-rc9+ but without usb and network support :(
How enabling usb and network support???

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
                   ` (7 preceding siblings ...)
  2011-10-16 23:03 ` bugzilla-daemon
@ 2011-10-16 23:52 ` bugzilla-daemon
  2011-10-17 13:41 ` bugzilla-daemon
  2011-10-17 13:42 ` bugzilla-daemon
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-10-16 23:52 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

--- Comment #8 from Jonathan Nieder <jrnieder@gmail.com> 2011-10-16 16:52:35 PDT ---
bugzilla-daemon@freedesktop.org wrote:

> Debian 6.0.3 (squeeze) can boot without described issue with linux
> kernel 3.1.0-rc9+ but without usb and network support :(
> How enabling usb and network support???

Thanks for testing; that's good news.  You can configure the choice of
drivers for a linux build with "make nconfig".

Administrivia:

 - can you reproduce the bug with a 2.6.39 kernel on squeeze?
   If not, that would mean there is some complicating factor other
   than the kernel.

 - does a distro 3.x kernel[1] also avoid the bug?  If not, please
   attach the .config file from the 3.1.0-rc9+ build you tested with.

[1] e.g. from <http://wiki.debian.org/DebianExperimental>.  It would
include usb and networking support. :)

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
                   ` (8 preceding siblings ...)
  2011-10-16 23:52 ` bugzilla-daemon
@ 2011-10-17 13:41 ` bugzilla-daemon
  2011-10-17 13:42 ` bugzilla-daemon
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-10-17 13:41 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

--- Comment #9 from mikhail.v.gavrilov@gmail.com 2011-10-17 06:41:06 PDT ---
>
> Thanks for testing; that's good news.  You can configure the choice of
> drivers for a linux build with "make nconfig".
>
> Administrivia:
>
>  - can you reproduce the bug with a 2.6.39 kernel on squeeze?
>   If not, that would mean there is some complicating factor other
>   than the kernel.
>
>  - does a distro 3.x kernel[1] also avoid the bug?  If not, please
>   attach the .config file from the 3.1.0-rc9+ build you tested with.
>
> [1] e.g. from <http://wiki.debian.org/DebianExperimental>.  It would
> include usb and networking support. :)
>

I has downloaded from this location
http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.39.4.tar.bz2
linux kernel compiled and works fine! Also without issue with screen
and with usb and network support.

Seems this is not problem in kernel.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 39145] screen goes dark when the graphics driver (radeon) is loaded
  2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
                   ` (9 preceding siblings ...)
  2011-10-17 13:41 ` bugzilla-daemon
@ 2011-10-17 13:42 ` bugzilla-daemon
  10 siblings, 0 replies; 12+ messages in thread
From: bugzilla-daemon @ 2011-10-17 13:42 UTC (permalink / raw)
  To: dri-devel

https://bugs.freedesktop.org/show_bug.cgi?id=39145

Alex Deucher <agd5f@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

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

end of thread, other threads:[~2011-10-17 13:42 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-11 16:27 [Bug 39145] New: screen goes dark when the graphics driver (radeon) is loaded bugzilla-daemon
2011-07-11 16:43 ` [Bug 39145] " bugzilla-daemon
2011-07-11 16:45 ` bugzilla-daemon
2011-08-05 17:19 ` bugzilla-daemon
2011-08-05 18:10 ` bugzilla-daemon
2011-08-15  2:13 ` bugzilla-daemon
2011-08-25 17:49 ` bugzilla-daemon
2011-08-25 17:59 ` bugzilla-daemon
2011-10-16 23:03 ` bugzilla-daemon
2011-10-16 23:52 ` bugzilla-daemon
2011-10-17 13:41 ` bugzilla-daemon
2011-10-17 13:42 ` bugzilla-daemon

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.