[Nouveau] [Bug 80901] [NVCF] PWM fan speed too high

2014-08-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80901 --- Comment #23 from Gianni Vialetto --- Sorry but I find myself short on time since currently. I will start working on this again as soon as I can. -- You are receiving this mail because: You are the assignee for the bug. _

[Nouveau] [Bug 80901] [NVCF] PWM fan speed too high

2014-08-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80901 --- Comment #24 from Martin Peres --- (In reply to comment #23) > Sorry but I find myself short on time since currently. > I will start working on this again as soon as I can. Ok, good luck! TTYL then ;) -- You are receiving this mail because:

[Nouveau] [Bug 74485] [NVE6] system hangs with 3D applications

2014-08-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74485 p...@cooco.de changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

[Nouveau] [PATCH envytools] docs: Fix some spelling and remove some trailing spaces.

2014-08-25 Thread Christian Costa
--- docs/hw/fifo/intro.rst | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/hw/fifo/intro.rst b/docs/hw/fifo/intro.rst index 8b1d69d..0e023bf 100644 --- a/docs/hw/fifo/intro.rst +++ b/docs/hw/fifo/intro.rst @@ -10,7 +10,7 @@ FIFO overview

[Nouveau] [PATCH envytools] nva: Clean up nva tools doc

2014-08-25 Thread Christian Costa
- Sort commands by name for easier update - Make more readable - Remove no more existing commands --- nva/README | 83 +- 1 file changed, 44 insertions(+), 39 deletions(-) diff --git a/nva/README b/nva/README index 625ea7c..d4347c5 10064

[Nouveau] [PATCH envytools] nvbios: Return an error if mem train subentries is above the limit to avoid stack corruption.

2014-08-25 Thread Christian Costa
--- nvbios/mem.c | 4 1 file changed, 4 insertions(+) diff --git a/nvbios/mem.c b/nvbios/mem.c index 911ce5c..2c8a929 100644 --- a/nvbios/mem.c +++ b/nvbios/mem.c @@ -111,6 +111,10 @@ envy_bios_parse_mem_train (struct envy_bios *bios) { struct envy_bios_mem_train_entry *entry

[Nouveau] [PATCH envytools] nvbios: Check if HWEA entry length == -1.

2014-08-25 Thread Christian Costa
--- nvbios/bios.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nvbios/bios.c b/nvbios/bios.c index fac3840..ca8c54e 100644 --- a/nvbios/bios.c +++ b/nvbios/bios.c @@ -276,9 +276,14 @@ int envy_bios_parse (struct envy_bios *bios) {

[Nouveau] [PATCH envytools] nvbios: Write missing null terminating byte.

2014-08-25 Thread Christian Costa
--- nvbios/nvbios.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvbios/nvbios.c b/nvbios/nvbios.c index 4fc667b..7bb768a 100644 --- a/nvbios/nvbios.c +++ b/nvbios/nvbios.c @@ -797,9 +797,9 @@ void find_strap(char *filename) { path = (char*) malloc(base_length

[Nouveau] [PATCH envytools] demmio: Add decoding of some MEM_TIMINGS registers for NVC0.

2014-08-25 Thread Christian Costa
--- rnndb/memory/nvc0_pbfb.xml | 37 ++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/rnndb/memory/nvc0_pbfb.xml b/rnndb/memory/nvc0_pbfb.xml index 500cea9..e006dbe 100644 --- a/rnndb/memory/nvc0_pbfb.xml +++ b/rnndb/memory/nvc0_pbfb.xml @@ -49,2

[Nouveau] [PATCH envytools] Don't try to use bios->pars if NULL (parse_pcir function has probably failed).

2014-08-25 Thread Christian Costa
--- nvbios/info.c | 4 1 file changed, 4 insertions(+) diff --git a/nvbios/info.c b/nvbios/info.c index 87a33d8..6b8d209 100644 --- a/nvbios/info.c +++ b/nvbios/info.c @@ -119,6 +119,10 @@ int envy_bios_parse_bit_i (struct envy_bios *bios, struct envy_bios_bit_entry *b

[Nouveau] [PATCH envytools] Fix range end to the last value of timing table.

2014-08-25 Thread Christian Costa
--- nva/set_timings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nva/set_timings.c b/nva/set_timings.c index 7376486..985a707 100644 --- a/nva/set_timings.c +++ b/nva/set_timings.c @@ -506,7 +506,7 @@ shallow_dump(struct nvamemtiming_conf *conf) if (conf->range.sta

Re: [Nouveau] [PATCH envytools] Don't try to use bios->pars if NULL (parse_pcir function has probably failed).

2014-08-25 Thread Ilia Mirkin
On Mon, Aug 25, 2014 at 2:58 PM, Christian Costa wrote: > --- > nvbios/info.c | 4 > 1 file changed, 4 insertions(+) > > diff --git a/nvbios/info.c b/nvbios/info.c > index 87a33d8..6b8d209 100644 > --- a/nvbios/info.c > +++ b/nvbios/info.c > @@ -119,6 +119,10 @@ int envy_bios_parse_bit_i (st

[Nouveau] [PATCH] subdev: add a pfuse subdev v2

2014-08-25 Thread Martin Peres
We will use this subdev to disable temperature reading on cards that did not get a sensor calibration in the factory. v2: - rename "nouveau_fuse_rd32" to "gxXXX_fuse_rd32" as adviced by Christian Costa - fold the code a little as adviced by Emil Velikov Signed-off-by: Martin Peres --- configure

Re: [Nouveau] [PATCH envytools] demmio: Add decoding of some MEM_TIMINGS registers for NVC0.

2014-08-25 Thread Martin Peres
On 25/08/2014 20:58, Christian Costa wrote: --- rnndb/memory/nvc0_pbfb.xml | 37 ++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/rnndb/memory/nvc0_pbfb.xml b/rnndb/memory/nvc0_pbfb.xml index 500cea9..e006dbe 100644 --- a/rnndb/memory/nvc0_pb

Re: [Nouveau] [PATCH envytools] docs: Fix some spelling and remove some trailing spaces.

2014-08-25 Thread Martin Peres
On 25/08/2014 20:58, Christian Costa wrote: --- docs/hw/fifo/intro.rst | 32 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/hw/fifo/intro.rst b/docs/hw/fifo/intro.rst index 8b1d69d..0e023bf 100644 --- a/docs/hw/fifo/intro.rst +++ b/docs/hw

Re: [Nouveau] [PATCH envytools] nva: Clean up nva tools doc

2014-08-25 Thread Martin Peres
On 25/08/2014 20:58, Christian Costa wrote: - Sort commands by name for easier update - Make more readable - Remove no more existing commands --- nva/README | 83 +- 1 file changed, 44 insertions(+), 39 deletions(-) diff --git a/nva/

Re: [Nouveau] [PATCH envytools] nvbios: Write missing null terminating byte.

2014-08-25 Thread Martin Peres
On 25/08/2014 20:58, Christian Costa wrote: --- nvbios/nvbios.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvbios/nvbios.c b/nvbios/nvbios.c index 4fc667b..7bb768a 100644 --- a/nvbios/nvbios.c +++ b/nvbios/nvbios.c @@ -797,9 +797,9 @@ void find_strap(char *filename

Re: [Nouveau] [PATCH envytools] nva: Clean up nva tools doc

2014-08-25 Thread Ilia Mirkin
On Mon, Aug 25, 2014 at 6:35 PM, Martin Peres wrote: > On 25/08/2014 20:58, Christian Costa wrote: >> >> - Sort commands by name for easier update >> - Make more readable >> - Remove no more existing commands >> --- >> nva/README | 83 >> +-

Re: [Nouveau] [PATCH envytools] demmio: Add decoding of some MEM_TIMINGS registers for NVC0.

2014-08-25 Thread Christian Costa
Le 26/08/2014 00:30, Martin Peres a écrit : On 25/08/2014 20:58, Christian Costa wrote: --- rnndb/memory/nvc0_pbfb.xml | 37 ++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/rnndb/memory/nvc0_pbfb.xml b/rnndb/memory/nvc0_pbfb.xml index 500ce

Re: [Nouveau] [PATCH envytools] nva: Clean up nva tools doc

2014-08-25 Thread Christian Costa
Le 26/08/2014 00:35, Martin Peres a écrit : On 25/08/2014 20:58, Christian Costa wrote: - Sort commands by name for easier update - Make more readable - Remove no more existing commands --- nva/README | 83 +- 1 file changed, 44 in

Re: [Nouveau] [PATCH envytools] nva: Clean up nva tools doc

2014-08-25 Thread Christian Costa
Le 26/08/2014 00:55, Ilia Mirkin a écrit : On Mon, Aug 25, 2014 at 6:35 PM, Martin Peres wrote: On 25/08/2014 20:58, Christian Costa wrote: - Sort commands by name for easier update - Make more readable - Remove no more existing commands --- nva/README | 83 +

Re: [Nouveau] [PATCH envytools] Don't try to use bios->pars if NULL (parse_pcir function has probably failed).

2014-08-25 Thread Christian Costa
Le 25/08/2014 21:09, Ilia Mirkin a écrit : On Mon, Aug 25, 2014 at 2:58 PM, Christian Costa wrote: --- nvbios/info.c | 4 1 file changed, 4 insertions(+) diff --git a/nvbios/info.c b/nvbios/info.c index 87a33d8..6b8d209 100644 --- a/nvbios/info.c +++ b/nvbios/info.c @@ -119,6 +119,10 @

[Nouveau] [Bug 83079] New: Dota 2 under Wine freezes with Nouveau Drivers

2014-08-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83079 Priority: medium Bug ID: 83079 Assignee: nouveau@lists.freedesktop.org Summary: Dota 2 under Wine freezes with Nouveau Drivers Severity: normal Classification: Unclassified O

[Nouveau] [Bug 83079] Dota 2 under Wine freezes with Nouveau Drivers

2014-08-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83079 Luke changed: What|Removed |Added See Also||https://bugs.winehq.org/sho |

[Nouveau] [Bug 83079] Dota 2 under Wine freezes with Nouveau Drivers

2014-08-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83079 --- Comment #1 from Ilia Mirkin --- What hardware do you have? Are you using d3d9 (via gallium-nine) or opengl? If gallium-nine, try opengl. Do you get anything interesting in dmesg when this happens? Can you try an older version of mesa to see