* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
@ 2011-02-02 21:48 ` bugzilla-daemon
2011-02-02 21:50 ` bugzilla-daemon
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-02 21:48 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #1 from Antti Lahtinen <ahlaht@gmail.com> 2011-02-02 13:48:46 PST ---
Created an attachment (id=42867)
--> (https://bugs.freedesktop.org/attachment.cgi?id=42867)
dmesg on latest kernel with my 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] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
2011-02-02 21:48 ` [Bug 33851] " bugzilla-daemon
@ 2011-02-02 21:50 ` bugzilla-daemon
2011-02-02 22:44 ` bugzilla-daemon
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-02 21:50 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #2 from Antti Lahtinen <ahlaht@gmail.com> 2011-02-02 13:50:10 PST ---
Created an attachment (id=42868)
--> (https://bugs.freedesktop.org/attachment.cgi?id=42868)
lspci -vvv
--
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] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
2011-02-02 21:48 ` [Bug 33851] " bugzilla-daemon
2011-02-02 21:50 ` bugzilla-daemon
@ 2011-02-02 22:44 ` bugzilla-daemon
2011-02-02 23:07 ` bugzilla-daemon
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-02 22:44 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #3 from Alex Deucher <agd5f@yahoo.com> 2011-02-02 14:44:08 PST ---
Please attach a copy of your vbios:
(as root)
(use lspci to get the bus id)
cd /sys/bus/pci/devices/<pci bus id>
echo 1 > rom
cat rom > /tmp/vbios.rom
echo 0 > rom
--
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] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
` (2 preceding siblings ...)
2011-02-02 22:44 ` bugzilla-daemon
@ 2011-02-02 23:07 ` bugzilla-daemon
2011-02-02 23:23 ` bugzilla-daemon
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-02 23:07 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #4 from Antti Lahtinen <ahlaht@gmail.com> 2011-02-02 15:07:08 PST ---
Created an attachment (id=42875)
--> (https://bugs.freedesktop.org/attachment.cgi?id=42875)
vbios
--
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] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
` (3 preceding siblings ...)
2011-02-02 23:07 ` bugzilla-daemon
@ 2011-02-02 23:23 ` bugzilla-daemon
2011-02-02 23:25 ` bugzilla-daemon
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-02 23:23 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #5 from Alex Deucher <agd5f@yahoo.com> 2011-02-02 15:23:23 PST ---
I see the problem, you have more power modes than space allocated to hold them.
This patch should fix the issue:
diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h
index 49a6890..59750dc 100644
--- a/drivers/gpu/drm/radeon/radeon.h
+++ b/drivers/gpu/drm/radeon/radeon.h
@@ -815,7 +815,7 @@ struct radeon_pm {
fixed20_12 mclk;
fixed20_12 needed_bandwidth;
/* XXX: use a define for num power modes */
- struct radeon_power_state power_state[8];
+ struct radeon_power_state power_state[16];
/* number of valid power states */
int num_power_states;
int current_power_state_index;
I'll write up a better one to dynamically allocate space depending on the
number of tables.
--
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 related [flat|nested] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
` (4 preceding siblings ...)
2011-02-02 23:23 ` bugzilla-daemon
@ 2011-02-02 23:25 ` bugzilla-daemon
2011-02-02 23:40 ` bugzilla-daemon
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-02 23:25 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #6 from Alex Deucher <agd5f@yahoo.com> 2011-02-02 15:25:55 PST ---
(In reply to comment #4)
> Created an attachment (id=42875)
--> (https://bugs.freedesktop.org/attachment.cgi?id=42875)
> vbios
This looks like the intel vbios unfortunately.
--
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] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
` (5 preceding siblings ...)
2011-02-02 23:25 ` bugzilla-daemon
@ 2011-02-02 23:40 ` bugzilla-daemon
2011-02-02 23:46 ` bugzilla-daemon
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-02 23:40 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #7 from Alex Deucher <agd5f@yahoo.com> 2011-02-02 15:40:30 PST ---
Created an attachment (id=42878)
View: https://bugs.freedesktop.org/attachment.cgi?id=42878
Review: https://bugs.freedesktop.org/review?bug=33851&attachment=42878
dynamically allocate power state space
This patch should fix the issue.
--
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] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
` (6 preceding siblings ...)
2011-02-02 23:40 ` bugzilla-daemon
@ 2011-02-02 23:46 ` bugzilla-daemon
2011-02-03 0:07 ` bugzilla-daemon
2011-02-03 0:11 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-02 23:46 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #8 from Antti Lahtinen <ahlaht@gmail.com> 2011-02-02 15:46:59 PST ---
Created an attachment (id=42879)
--> (https://bugs.freedesktop.org/attachment.cgi?id=42879)
Here is another vbios if still needed
--
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] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
` (7 preceding siblings ...)
2011-02-02 23:46 ` bugzilla-daemon
@ 2011-02-03 0:07 ` bugzilla-daemon
2011-02-03 0:11 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-03 0:07 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
--- Comment #9 from Antti Lahtinen <ahlaht@gmail.com> 2011-02-02 16:07:51 PST ---
Thank you! You were right. I tested both patches and they both seem to work.
Even Xorg and OpenGL seem to work now. --> 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] 11+ messages in thread* [Bug 33851] [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop
2011-02-02 21:44 [Bug 33851] New: [KMS Evergreen bisected] Crash on modeset on HP dv6-3050eo laptop bugzilla-daemon
` (8 preceding siblings ...)
2011-02-03 0:07 ` bugzilla-daemon
@ 2011-02-03 0:11 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2011-02-03 0:11 UTC (permalink / raw)
To: dri-devel
https://bugs.freedesktop.org/show_bug.cgi?id=33851
Alex Deucher <agd5f@yahoo.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #10 from Alex Deucher <agd5f@yahoo.com> 2011-02-02 16:11:36 PST ---
I've sent the patch to Dave for 2.6.38 and stable.
--
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] 11+ messages in thread