[Nouveau] [Bug 69488] GF108 (NVC1) GPU lockup

2013-10-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69488 --- Comment #15 from Dave Airlie airl...@freedesktop.org --- sounds like runtime pm is killing it, boot with nouveau.runpm=0 maybe, though it does seem like the GPU is in trouble before that point. -- You are receiving this mail because: You

[Nouveau] [Bug 69488] GF108 (NVC1) GPU lockup

2013-10-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69488 --- Comment #16 from Maarten Lankhorst b...@mblankhorst.nl --- Can you try with nouveau.config=NvMSI=0 ? -- You are receiving this mail because: You are the assignee for the bug. ___ Nouveau mailing

[Nouveau] [PATCH] drm/nouveau/fb: fix suspend/resume fbcon

2013-10-03 Thread Christoph Rudorff
On resume of a hibernated notebook, I get garbled virtual consoles. fb_set_suspend(*dev, state == 0 means dev is running ...) This patch fixes that issue for me: hibernate: kernel: nouveau [ DRM] suspending fbcon... kernel: nouveau [ DRM] suspending display... kernel: nouveau [

[Nouveau] [Bug 69488] GF108 (NVC1) GPU lockup

2013-10-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69488 --- Comment #17 from Kevin N. vek...@gmail.com --- Created attachment 87081 -- https://bugs.freedesktop.org/attachment.cgi?id=87081action=edit dmesg 3.12-rc3 with nouveau.runpm=0 nouveau.runpm=0 gets me into Xorg. I tried to use the nouveau

[Nouveau] [Bug 69488] GF108 (NVC1) GPU lockup

2013-10-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69488 --- Comment #18 from Kevin N. vek...@gmail.com --- (In reply to comment #17) Created attachment 87081 [details] dmesg 3.12-rc3 with nouveau.runpm=0 nouveau.runpm=0 gets me into Xorg. I tried to use the nouveau card #xrandr

[Nouveau] [Bug 69488] GF108 (NVC1) GPU lockup

2013-10-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69488 --- Comment #19 from Kevin N. vek...@gmail.com --- Created attachment 87082 -- https://bugs.freedesktop.org/attachment.cgi?id=87082action=edit dmesg 3.12-rc3 with nouveau.config=NvMSI=0 nouveau.config=NvMSI=0 Running startx causes it to stop

[Nouveau] GeForce 8400 GS

2013-10-03 Thread Fernando Negro
Hi everyone. I read on a 2011 article - http://www.phoronix.com/scan.php?page=articleitem=nouveau_comp_2011num=19 - that my particular card, GeForce 8400 GS, overheats with nouveau. (So, I never tried using if for long, before, as soon as possible, installing the proprietary drivers...) But,

Re: [Nouveau] GeForce 8400 GS

2013-10-03 Thread Ilia Mirkin
On Thu, Oct 3, 2013 at 2:45 PM, Fernando Negro fernando.ne...@mail.ru wrote: Hi everyone. I read on a 2011 article - http://www.phoronix.com/scan.php?page=articleitem=nouveau_comp_2011num=19 - that my particular card, GeForce 8400 GS, overheats with nouveau. (So, I never tried using if for

Re: [Nouveau] GeForce 8400 GS

2013-10-03 Thread Emil Velikov
On 03/10/13 19:45, Fernando Negro wrote: Hi everyone. I read on a 2011 article - http://www.phoronix.com/scan.php?page=articleitem=nouveau_comp_2011num=19 - that my particular card, GeForce 8400 GS, overheats with nouveau. (So, I never tried using if for long, before, as soon as

[Nouveau] [Bug 58556] MacBook Pro 5, 1 with nVidia 9400m and 9600m, scrambled screen

2013-10-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58556 --- Comment #19 from chr[] ch...@rudorff.com --- Hi! Regarding suspend/resume scrambling screen issues, try this patch: [PATCH] drm/nouveau/fb: fix suspend/resume fbcon http://lists.freedesktop.org/archives/nouveau/2013-October/014656.html

[Nouveau] [Bug 62835] Screen freezes after resume from s2ram

2013-10-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62835 --- Comment #6 from chr[] ch...@rudorff.com --- Hi! Regarding suspend/resume scrambling screen issues, try this patch: [PATCH] drm/nouveau/fb: fix suspend/resume fbcon http://lists.freedesktop.org/archives/nouveau/2013-October/014656.html

Re: [Nouveau] Resource map sanity check fails after GRUB keeps the gfx mode

2013-10-03 Thread Pavel Roskin
Hi David, On Thu, 3 Oct 2013 00:19:56 +0200 David Herrmann dh.herrm...@gmail.com wrote: And your PCI-BAR adjustment doesn't change anything either, sorry. I simply tried another approach to pacify the resource checker. However, there is some difference. nvidiafb cannot access the

Re: [Nouveau] [PATCH] drm/nouveau/fb: fix suspend/resume fbcon

2013-10-03 Thread Emil Velikov
On 03/10/13 15:41, Christoph Rudorff wrote: On resume of a hibernated notebook, I get garbled virtual consoles. fb_set_suspend(*dev, state == 0 means dev is running ...) This patch fixes that issue for me: Ouch, nice catch Christoph :) Seems like the following commit flipped the logic

Re: [Nouveau] Resource map sanity check fails after GRUB keeps the gfx mode

2013-10-03 Thread David Herrmann
Hi Pavel On Fri, Oct 4, 2013 at 12:10 AM, Pavel Roskin pro...@gnu.org wrote: Hi David, On Thu, 3 Oct 2013 00:19:56 +0200 David Herrmann dh.herrm...@gmail.com wrote: And your PCI-BAR adjustment doesn't change anything either, sorry. I simply tried another approach to pacify the

Re: [Nouveau] [PATCH] drm/nouveau/fb: fix suspend/resume fbcon

2013-10-03 Thread Christoph Rudorff
Am Donnerstag, den 03.10.2013, 23:50 +0100 schrieb Emil Velikov: I'm not entirely sure this is correct. One needs to save and disable accleration before suspending the fb. Please try the following - if (state == 0) + if (state == 1)