Re: [Nouveau] [PATCH] Take shift in crtc positions for ZaphodHeads configs into account.

2015-11-14 Thread Mario Kleiner
Ping? Could we merge this patch? Nobody seems to have objections, it works since months on my test machines and an identical patch got reviewed and merged into xf86-video-modesetting, where it works without trouble, so it should be safe to apply. thanks, -mario On 08/06/2015 07:34 PM, Ilia

[Nouveau] [PATCH] pmu: fix queued messages while getting no IRQ

2015-11-14 Thread Karol Herbst
I encountered while stresstesting the reclocking code, that rarely (1 out of 20.000+ requests) we don't get any IRQ in nvkm_pmu_intr. This means we have a queued message on the pmu, but nouveau doesn't read it and waits infinitely in nvkm_pmu_send: if (reply) {

Re: [Nouveau] [PATCH v2] pmu: fix queued messages while getting no IRQ

2015-11-14 Thread Ilia Mirkin
On Sat, Nov 14, 2015 at 1:44 PM, Karol Herbst wrote: > I encountered while stresstesting the reclocking code, that rarely (1 out of > 20.000+ requests) we don't get any IRQ in nvkm_pmu_intr. > > This means we have a queued message on the pmu, but nouveau doesn't read it >

[Nouveau] [Bug 92307] G98/GM206: WARNING: ... at include/drm/drm_crtc.h:1577 drm_helper_choose_encoder_dpms+0x8a/0x90 [drm_kms_helper]()

2015-11-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=92307 --- Comment #12 from poma --- (In reply to poma from comment #8) > (In reply to poma from comment #7) > > FTR procedure: > > > > $ uname -r > > 4.3.0-0.rc6.git2.1.fc24.x86_64 > > > > $ git clone

[Nouveau] [PATCH] pmu: use nvkm_msec instead of do while

2015-11-14 Thread Karol Herbst
I hit this while loop in an error state of the gpu Signed-off-by: Karol Herbst --- drm/nouveau/nvkm/subdev/pmu/base.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/drm/nouveau/nvkm/subdev/pmu/base.c b/drm/nouveau/nvkm/subdev/pmu/base.c

[Nouveau] [Bug 92307] G98/GM206: WARNING: ... at include/drm/drm_crtc.h:1577 drm_helper_choose_encoder_dpms+0x8a/0x90 [drm_kms_helper]()

2015-11-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=92307 --- Comment #13 from poma --- Created attachment 119664 --> https://bugs.freedesktop.org/attachment.cgi?id=119664=edit dmesg 4.4.0-0.rc0.git9.1.fc24.x86_64 connector_hotplug nvif_notify - nouveau.ko built of:

[Nouveau] [PATCH v2] pmu: fix queued messages while getting no IRQ

2015-11-14 Thread Karol Herbst
I encountered while stresstesting the reclocking code, that rarely (1 out of 20.000+ requests) we don't get any IRQ in nvkm_pmu_intr. This means we have a queued message on the pmu, but nouveau doesn't read it and waits infinitely in nvkm_pmu_send: if (reply) {

Re: [Nouveau] [PATCH v2] pmu: use nvkm_msec instead of do while

2015-11-14 Thread Emil Velikov
On 14 November 2015 at 19:51, Karol Herbst wrote: > I hit this while loop in an error state of the gpu > > v2: unlock mutex only if reply == true > > Signed-off-by: Karol Herbst > --- > drm/nouveau/nvkm/subdev/pmu/base.c | 11 +-- > 1 file

[Nouveau] [PATCH v3] pmu: fix queued messages while getting no IRQ

2015-11-14 Thread Karol Herbst
I encountered while stresstesting the reclocking code, that rarely (1 out of 20.000+ requests) we don't get any IRQ in nvkm_pmu_intr. This means we have a queued message on the pmu, but nouveau doesn't read it and waits infinitely in nvkm_pmu_send: if (reply) {

[Nouveau] [PATCH v2] pmu: use nvkm_msec instead of do while

2015-11-14 Thread Karol Herbst
I hit this while loop in an error state of the gpu v2: unlock mutex only if reply == true Signed-off-by: Karol Herbst --- drm/nouveau/nvkm/subdev/pmu/base.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git