Re: [Nouveau] [PATCH 3/4] subdev/pmu/fuc: implement perf

2015-10-26 Thread Roy Spliet
See my tiny nit-pick below. Op 26-10-15 om 18:13 schreef Karol Herbst: From: Karol Herbst --- drm/nouveau/nvkm/subdev/pmu/fuc/gf100.fuc3.h | 788 +++ drm/nouveau/nvkm/subdev/pmu/fuc/gf119.fuc4.h | 740 ++---

Re: [Nouveau] Documentation request for MP warp error 0x10

2015-10-26 Thread Robert Morell
On Mon, Oct 26, 2015 at 03:28:59PM -0400, Ilia Mirkin wrote: > On Fri, Oct 2, 2015 at 6:14 PM, Robert Morell wrote: > > Hi Ilia, > > > > On Fri, Oct 02, 2015 at 06:05:21PM -0400, Ilia Mirkin wrote: > >> Hi Robert, > >> > >> Thanks for the quick response! That goes in line with

Re: [Nouveau] Documentation request for MP warp error 0x10

2015-10-26 Thread Ilia Mirkin
On Fri, Oct 2, 2015 at 6:14 PM, Robert Morell wrote: > Hi Ilia, > > On Fri, Oct 02, 2015 at 06:05:21PM -0400, Ilia Mirkin wrote: >> Hi Robert, >> >> Thanks for the quick response! That goes in line with my observations >> which is that these things happen when using an

Re: [Nouveau] PWM-based voltage management input clock

2015-10-26 Thread Martin Peres
On 19/09/15 19:21, Martin Peres wrote: On 18/09/15 23:30, Andy Ritger wrote: Thanks, Martin. I'll try to follow up on this next week and get you an answer. What GPUs have you observed this on? Thanks Andy, As far as I can tell, it is the case for all GPUs using the PWM-based voltage

[Nouveau] [Bug 92274] nouveau black screen and errors with two monitors attached

2015-10-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=92274 --- Comment #16 from joseph-thom...@gmx.de --- Just saw this (https://bugs.freedesktop.org/show_bug.cgi?id=91705) thread which is about the same problem on another card so its not just this card. I don't know if this helps, but I hope so. (You

[Nouveau] [PATCH v2 4/4] nouveau/debugfs: add interface for current load

2015-10-26 Thread Karol Herbst
From: Karol Herbst v2: optimize macro and fixed data array type --- drm/nouveau/include/nvif/device.h | 1 + drm/nouveau/include/nvkm/subdev/pmu.h | 10 ++ drm/nouveau/nouveau_debugfs.c | 23 +++ drm/nouveau/nvkm/subdev/pmu/base.c

[Nouveau] [PATCH v3 4/4] nouveau/debugfs: add interface for current load

2015-10-26 Thread Karol Herbst
From: Karol Herbst v2: optimize macro and fixed data array type v3: fix bug I added in the last version --- drm/nouveau/include/nvif/device.h | 1 + drm/nouveau/include/nvkm/subdev/pmu.h | 10 ++ drm/nouveau/nouveau_debugfs.c | 23

[Nouveau] [PATCH 3/4] subdev/pmu/fuc: implement perf

2015-10-26 Thread Karol Herbst
From: Karol Herbst --- drm/nouveau/nvkm/subdev/pmu/fuc/gf100.fuc3.h | 788 +++ drm/nouveau/nvkm/subdev/pmu/fuc/gf119.fuc4.h | 740 ++--- drm/nouveau/nvkm/subdev/pmu/fuc/gk104.fuc4.h | 740 ++---

[Nouveau] [PATCH 2/4] pmu/fuc: add macros for pdaemon pwr counters

2015-10-26 Thread Karol Herbst
From: Karol Herbst --- drm/nouveau/nvkm/subdev/pmu/fuc/macros.fuc | 23 +++ 1 file changed, 23 insertions(+) diff --git a/drm/nouveau/nvkm/subdev/pmu/fuc/macros.fuc b/drm/nouveau/nvkm/subdev/pmu/fuc/macros.fuc index c5ec61f..86b8fd4 100644 ---

[Nouveau] [PATCH 0/4] Add pdaemon load counters

2015-10-26 Thread Karol Herbst
this series makes use of the load counters we can use to get information about the current load of the gpu. This series includes the needed pmu bits and a debugfs interface to read them out. Currently the values are between 0 and 255, because it is much easier to implement it this way on the pmu.

[Nouveau] [PATCH 1/4] subdev/pmu/fuc: add gk104

2015-10-26 Thread Karol Herbst
From: Karol Herbst we need this, because since kepler there is PCOPY2 and this is needed for the counters later in this series --- drm/nouveau/nvkm/subdev/pmu/fuc/gk104.fuc4 | 70 + drm/nouveau/nvkm/subdev/pmu/fuc/gk104.fuc4.h | 1795 ++