Re: [Nouveau] Nouveau support for GeForce GT 730 or GTX 750 Ti or AMD Radeon R7 240 and AMD ATI RADEON R7 260X ??

2016-01-04 Thread Csányi Pál
2016-01-03 20:11 GMT+01:00 Ilia Mirkin :
> On Sun, Jan 3, 2016 at 1:52 PM, Csányi Pál  wrote:

>> So there is an AMD card too:
>> VGA ASUS AMD Radeon R7 240, R7240-2GD3-L, 2GB DDR3, 128bit,
>> 730/1800MHz, HDMI, DVI-D, D-sub
>>
>> What would be the best choice here:
>> GEFORCE GT 730
>> or
>> AMD Radeon R7 240 ?
>
> I don't want to recommend one or the other, esp as I'm unaware of the
> specifics around exact AMD GPU support. But in general, if things
> don't Just Work (tm), AMD has full-time employees (plural) working on
> various aspects of the driver, and those employees are armed with
> documentation and access to hardware engineers.

> If I were betting on a team, I'd definitely bet on the AMD one :)

Well, my motherboard is P5E-E SLI with
Chipset:
North Bridge: NVIDIA nForce 650i SLI (C55)
South Bridge: NVIDIA nForce 430i (MPC 51)

Expansion slots:
2 x PCI Express x16 slots with SLI support
1x PCI Express x1 slot
2x PCI slots (PCI 2.2)

So can be used on this motherboard AMD Radeon graphics cards at all?

If yes, does nouveau support these two Radeon cards
with OpenGL of course:
1.
VGA ASUS AMD Radeon R7 240, R7240-2GD3-L, 2GB DDR3, 128bit,
730/1800MHz, HDMI, DVI-D, D-sub

2.
VGA ASUS R7260X-OC-2GD5, AMD ATI RADEON R7 260X, 2GB GDDR5, 128-bit,
1075/5000MHz, 2x DVI, 1x HDMI, 1 x Display Port, 1 x DVI to D-Sub
adaptor, PCI Express 3.0

-- 
Best, Pali
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


[Nouveau] [Bug 91954] "link training failed": nouveau does not recover from monitor suspend

2016-01-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=91954

--- Comment #5 from Julien HENRY  ---
Created attachment 120791
  --> https://bugs.freedesktop.org/attachment.cgi?id=120791&action=edit
Kernel logs

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


Re: [Nouveau] [PATCH] bios/fan: hardcode the fan mode to linear

2016-01-04 Thread Martin Peres

On 17/12/15 19:18, Martin Peres wrote:



On 29/11/15 16:10, Martin Peres wrote:
This is an oversight that made use of the trip-point-based fan 
managenent on

cards that never expose those. This led the fan to stay at fan_min.

Fortunately, the emergency code would kick when the temperature would 
reach

90°C.

Reported-by: Tom Englund 
Tested-by: Tom Englund 


Tested-by: Daemon32 
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92126


Signed-off-by: Martin Peres 
---
  drm/nouveau/nvkm/subdev/bios/fan.c | 1 +
  1 file changed, 1 insertion(+)

diff --git a/drm/nouveau/nvkm/subdev/bios/fan.c 
b/drm/nouveau/nvkm/subdev/bios/fan.c

index 43006db..80fed7e 100644
--- a/drm/nouveau/nvkm/subdev/bios/fan.c
+++ b/drm/nouveau/nvkm/subdev/bios/fan.c
@@ -83,6 +83,7 @@ nvbios_fan_parse(struct nvkm_bios *bios, struct 
nvbios_therm_fan *fan)

  fan->type = NVBIOS_THERM_FAN_UNK;
  }

+fan->fan_mode = NVBIOS_THERM_FAN_LINEAR;
  fan->min_duty = nvbios_rd08(bios, data + 0x02);
  fan->max_duty = nvbios_rd08(bios, data + 0x03);




Ben, can you merge this patch? It is kind of critical :s And it should 
be CCed to stable too, without it, some kepler/maxwell get 0% fan 
power which is kind of dangerous, even without reclocking!


Ping, this is really important :s
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


Re: [Nouveau] [PATCH] bios/fan: hardcode the fan mode to linear

2016-01-04 Thread Emil Velikov
On 4 January 2016 at 14:56, Martin Peres  wrote:
> On 17/12/15 19:18, Martin Peres wrote:
>> On 29/11/15 16:10, Martin Peres wrote:
>>>
>>> This is an oversight that made use of the trip-point-based fan managenent
>>> on
>>> cards that never expose those. This led the fan to stay at fan_min.
>>>
>>> Fortunately, the emergency code would kick when the temperature would
>>> reach
>>> 90°C.
>>>
>>> Reported-by: Tom Englund 
>>> Tested-by: Tom Englund 
>>
>>
>> Tested-by: Daemon32 
>> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92126
>>
>>> Signed-off-by: Martin Peres 
>>> ---
>>>   drm/nouveau/nvkm/subdev/bios/fan.c | 1 +
>>>   1 file changed, 1 insertion(+)
>>>
>>> diff --git a/drm/nouveau/nvkm/subdev/bios/fan.c
>>> b/drm/nouveau/nvkm/subdev/bios/fan.c
>>> index 43006db..80fed7e 100644
>>> --- a/drm/nouveau/nvkm/subdev/bios/fan.c
>>> +++ b/drm/nouveau/nvkm/subdev/bios/fan.c
>>> @@ -83,6 +83,7 @@ nvbios_fan_parse(struct nvkm_bios *bios, struct
>>> nvbios_therm_fan *fan)
>>>   fan->type = NVBIOS_THERM_FAN_UNK;
>>>   }
>>>
>>> +fan->fan_mode = NVBIOS_THERM_FAN_LINEAR;
>>>   fan->min_duty = nvbios_rd08(bios, data + 0x02);
>>>   fan->max_duty = nvbios_rd08(bios, data + 0x03);
>>>
>>>
>>
>> Ben, can you merge this patch? It is kind of critical :s And it should be
>> CCed to stable too, without it, some kepler/maxwell get 0% fan power which
>> is kind of dangerous, even without reclocking!
>
>
> Ping, this is really important :s
>
Not sure who picked it up, but it seems to be in the latest fixes batch [1].

[1] http://lists.freedesktop.org/archives/dri-devel/2015-December/097589.html

-Emil
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


[Nouveau] [Bug 93557] Kernel Panic on Linux Kernel 4.4 when loading KDE/KDM on Nvidia GeForce 7025 / nForce 630a

2016-01-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=93557

--- Comment #3 from xgfwt...@sharklasers.com ---
The bug is half solved!
I compiled a new kernel image. I did not get the kernel panic any more but
still get the full dmesg full of errors like:

[ 1059.265197] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b020
[ 1059.265516] nouveau :00:0d.0: bus: MMIO write of 010d0001 FAULT at
00b010
[ 1060.724984] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b010
[ 1060.847845] nouveau :00:0d.0: bus: MMIO write of 010a0001 FAULT at
00b010
[ 1060.848340] nouveau :00:0d.0: bus: MMIO write of 010c0001 FAULT at
00b020
[ 1061.073132] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b010
[ 1061.073350] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b020
[ 1061.265858] nouveau :00:0d.0: bus: MMIO write of 01890001 FAULT at
00b010
[ 1061.266331] nouveau :00:0d.0: bus: MMIO write of 018c0001 FAULT at
00b020
[ 1061.266954] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b010
[ 1068.679841] nouveau :00:0d.0: bus: MMIO write of 01890001 FAULT at
00b010
[ 1068.691605] nouveau :00:0d.0: bus: MMIO write of 018b0001 FAULT at
00b030
[ 1069.007856] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b010
[ 1069.008076] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b030
[ 1069.009128] nouveau :00:0d.0: bus: MMIO write of 0421 FAULT at
00b010
[ 1071.267098] nouveau :00:0d.0: bus: MMIO write of 01890001 FAULT at
00b030
[ 1071.267686] nouveau :00:0d.0: bus: MMIO write of 018b0001 FAULT at
00b040
[ 1075.811130] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b030
[ 1075.811472] nouveau :00:0d.0: bus: MMIO write of  FAULT at
00b040

Could you quickly push the fix that is already done to solve the kernel panic
in kernel 4.4 before it gets stable?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


[Nouveau] [Bug 93557] Kernel Panic on Linux Kernel 4.4 when loading KDE/KDM on Nvidia GeForce 7025 / nForce 630a

2016-01-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=93557

--- Comment #4 from Ilia Mirkin  ---
(In reply to xgfwtvdh from comment #3)
> The bug is half solved!
> I compiled a new kernel image. I did not get the kernel panic any more but
> still get the full dmesg full of errors like:
> 
> [ 1059.265197] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b020
> [ 1059.265516] nouveau :00:0d.0: bus: MMIO write of 010d0001 FAULT at
> 00b010
> [ 1060.724984] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b010
> [ 1060.847845] nouveau :00:0d.0: bus: MMIO write of 010a0001 FAULT at
> 00b010
> [ 1060.848340] nouveau :00:0d.0: bus: MMIO write of 010c0001 FAULT at
> 00b020
> [ 1061.073132] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b010
> [ 1061.073350] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b020
> [ 1061.265858] nouveau :00:0d.0: bus: MMIO write of 01890001 FAULT at
> 00b010
> [ 1061.266331] nouveau :00:0d.0: bus: MMIO write of 018c0001 FAULT at
> 00b020
> [ 1061.266954] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b010
> [ 1068.679841] nouveau :00:0d.0: bus: MMIO write of 01890001 FAULT at
> 00b010
> [ 1068.691605] nouveau :00:0d.0: bus: MMIO write of 018b0001 FAULT at
> 00b030
> [ 1069.007856] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b010
> [ 1069.008076] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b030
> [ 1069.009128] nouveau :00:0d.0: bus: MMIO write of 0421 FAULT at
> 00b010
> [ 1071.267098] nouveau :00:0d.0: bus: MMIO write of 01890001 FAULT at
> 00b030
> [ 1071.267686] nouveau :00:0d.0: bus: MMIO write of 018b0001 FAULT at
> 00b040
> [ 1075.811130] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b030
> [ 1075.811472] nouveau :00:0d.0: bus: MMIO write of  FAULT at
> 00b040

These are unrelated and should be nothing to worry about.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


[Nouveau] [Bug 93557] Kernel Panic on Linux Kernel 4.4 when loading KDE/KDM on Nvidia GeForce 7025 / nForce 630a

2016-01-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=93557

--- Comment #5 from xgfwt...@sharklasers.com ---
They are REDLINED in dmesg. More/bigger warning is not possible for the users.
It were something like a big red flashing "WARNING, MOTOR FAILURE" on the
Screen of your car and then someone would say "nah, that warning is just fine,
ignore it".

I would like to help fixing them by testing something when you need me testing
something.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau


Re: [Nouveau] Nouveau support for GeForce GT 730 or GTX 750 Ti or AMD Radeon R7 240 and AMD ATI RADEON R7 260X ??

2016-01-04 Thread Ilia Mirkin
On Mon, Jan 4, 2016 at 3:02 AM, Csányi Pál  wrote:
> 2016-01-03 20:11 GMT+01:00 Ilia Mirkin :
>> On Sun, Jan 3, 2016 at 1:52 PM, Csányi Pál  wrote:
>
>>> So there is an AMD card too:
>>> VGA ASUS AMD Radeon R7 240, R7240-2GD3-L, 2GB DDR3, 128bit,
>>> 730/1800MHz, HDMI, DVI-D, D-sub
>>>
>>> What would be the best choice here:
>>> GEFORCE GT 730
>>> or
>>> AMD Radeon R7 240 ?
>>
>> I don't want to recommend one or the other, esp as I'm unaware of the
>> specifics around exact AMD GPU support. But in general, if things
>> don't Just Work (tm), AMD has full-time employees (plural) working on
>> various aspects of the driver, and those employees are armed with
>> documentation and access to hardware engineers.
>
>> If I were betting on a team, I'd definitely bet on the AMD one :)
>
> Well, my motherboard is P5E-E SLI with
> Chipset:
> North Bridge: NVIDIA nForce 650i SLI (C55)
> South Bridge: NVIDIA nForce 430i (MPC 51)
>
> Expansion slots:
> 2 x PCI Express x16 slots with SLI support
> 1x PCI Express x1 slot
> 2x PCI slots (PCI 2.2)
>
> So can be used on this motherboard AMD Radeon graphics cards at all?
>
> If yes, does nouveau support these two Radeon cards
> with OpenGL of course:
> 1.
> VGA ASUS AMD Radeon R7 240, R7240-2GD3-L, 2GB DDR3, 128bit,
> 730/1800MHz, HDMI, DVI-D, D-sub
>
> 2.
> VGA ASUS R7260X-OC-2GD5, AMD ATI RADEON R7 260X, 2GB GDDR5, 128-bit,
> 1075/5000MHz, 2x DVI, 1x HDMI, 1 x Display Port, 1 x DVI to D-Sub
> adaptor, PCI Express 3.0

Either should be fine, I think, obviously the latter is more powerful.
Note that this will run with the radeon (or amdgpu) drivers, not
nouveau. You should ask the radeon folk as they will know this stuff
for sure. The best way to obtain this type of info is over IRC
(irc.freenode.net #radeon)

  -ilia
___
Nouveau mailing list
Nouveau@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/nouveau