Re: [Nouveau] [PATCH] hwmon: return EINVAL if the GPU is powered down for sensors reads

2019-06-21 Thread Rhys Kidd
On Tue, 18 Jun 2019 at 21:01, Karol Herbst wrote: > fixes bogus values userspace gets from hwmon while the GPU is powered down > > Signed-off-by: Karol Herbst > Looks good to me and successfully tested on my GP107M with runtime power management fixes, so Reviewed-by: Rhys Kidd > --- >

Re: [Nouveau] NOUVEAU_LEGACY_CTX_SUPPORT Fan Speed

2019-06-21 Thread Mar Mel
Thanks for finding this Emil! The change you point out also landed on 4.19.49 and I am able to reproduce the fan speed issue with that kernel as well, whereas previous 4.19.x series kernels were fine. I'll attempt to build both the latest 4.19.x and 5.1.x stable kernels with that patch

Re: [Nouveau] [PATCH] drm/nouveau: fix bogus GPL-2 license header

2019-06-21 Thread Emil Velikov
On 2019/06/19, Ilia Mirkin wrote: > The bulk SPDX addition made all these files into GPL-2.0 licensed files. > However the remainder of the project is MIT-licensed, these files > (primarily header files) were simply missing the boiler plate and got > caught up in the global update. > > Fixes:

[Nouveau] [Bug 110955] Mesa 18.2.8 implementation error: Invalid GLSL version in shading_language_version()

2019-06-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110955 --- Comment #2 from Emil Velikov --- s/wine/wine or application/ -- You are receiving this mail because: You are the assignee for the bug. You are the QA Contact for the bug.___ Nouveau mailing list

[Nouveau] [Bug 110955] Mesa 18.2.8 implementation error: Invalid GLSL version in shading_language_version()

2019-06-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110955 --- Comment #1 from Emil Velikov --- AFAICT there's a couple of things here: - the crash Most likely a wine bug, since the GL spec clearly says that glGetString (the only API which can give this message) can return 0/NULL on error. -

Re: [Nouveau] NOUVEAU_LEGACY_CTX_SUPPORT Fan Speed

2019-06-21 Thread Emil Velikov
Some weird interaction with disabling the i2c access, in the following patch perhaps? commit cd68344b283174a9b38e9488d5a929464e1f417c Author: Lyude Paul Date: Tue Apr 9 16:23:30 2019 -0400 drm/nouveau/i2c: Disable i2c bus access after ->fini() On Sun, 16 Jun 2019 at 15:28, Ilia Mirkin

[Nouveau] [Bug 110955] Mesa 18.2.8 implementation error: Invalid GLSL version in shading_language_version()

2019-06-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110955 power.c...@openmail.cc changed: What|Removed |Added Keywords||have-backtrace -- You are

[Nouveau] [Bug 110955] New: Mesa 18.2.8 implementation error: Invalid GLSL version in shading_language_version()

2019-06-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=110955 Bug ID: 110955 Summary: Mesa 18.2.8 implementation error: Invalid GLSL version in shading_language_version() Product: Mesa Version: 18.2 Hardware: x86 (IA32)

Re: [Nouveau] Instable graphics with GeForce GT 730M, especially on external monitor

2019-06-21 Thread Harald Harders
In the meanwhile I have tried OpenSUSE Tumbleweed as live version: Kernel version 5.1.7 xf86-video-nouveau 1.0.15 libdrm_nouveau2 2.4.98 libvdpau_nouveau 19.0.5 Mesa-dri-nouveau 19.0.5   Behaviour is the same: - In most cases, external display does not show correct screen - After

[PATCH v2 08/18] drm/ttm: use gem vma_node

2019-06-21 Thread Gerd Hoffmann
Drop vma_node from ttm_buffer_object, use the gem struct (base.vma_node) instead. Signed-off-by: Gerd Hoffmann --- drivers/gpu/drm/amd/amdgpu/amdgpu_object.h | 2 +- drivers/gpu/drm/qxl/qxl_object.h | 2 +- drivers/gpu/drm/radeon/radeon_object.h | 2 +-

[PATCH v2 15/18] drm/nouveau: switch driver from bo->resv to bo->base.resv

2019-06-21 Thread Gerd Hoffmann
Signed-off-by: Gerd Hoffmann --- drivers/gpu/drm/nouveau/dispnv50/wndw.c | 2 +- drivers/gpu/drm/nouveau/nouveau_bo.c| 4 ++-- drivers/gpu/drm/nouveau/nouveau_fence.c | 2 +- drivers/gpu/drm/nouveau/nouveau_gem.c | 2 +- drivers/gpu/drm/nouveau/nouveau_prime.c | 2 +- 5 files changed, 6

[PATCH v2 06/18] drm/nouveau: use embedded gem object

2019-06-21 Thread Gerd Hoffmann
Drop drm_gem_object from nouveau_bo, use the ttm_buffer_object.base instead. Build tested only. Signed-off-by: Gerd Hoffmann --- drivers/gpu/drm/nouveau/nouveau_bo.h | 5 - drivers/gpu/drm/nouveau/nouveau_gem.h | 2 +- drivers/gpu/drm/nouveau/nouveau_abi16.c | 4 ++--