From: Sid Boyce <sboyce@blueyonder.co.uk>
To: Ilia Mirkin <imirkin@alum.mit.edu>
Cc: LKML Mailing List <linux-kernel@vger.kernel.org>,
opensuse factory list <opensuse-factory@opensuse.org>,
"nouveau@lists.freedesktop.org" <nouveau@lists.freedesktop.org>
Subject: Re: Possible 3.13-rc nouveau regression with GT 560 Ti
Date: Thu, 02 Jan 2014 02:59:48 +0000 [thread overview]
Message-ID: <52C4D624.6030602@blueyonder.co.uk> (raw)
In-Reply-To: <CAKb7UvgiYn9Wy=EsrHWsoGH7Zj2=-8n=qunyzHTLKnSW3RL=iQ@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 3568 bytes --]
On 02/01/14 02:40, Ilia Mirkin wrote:
> On Wed, Jan 1, 2014 at 9:36 PM, Sid Boyce <sboyce@blueyonder.co.uk> wrote:
>> On 01/01/14 18:46, Ilia Mirkin wrote:
>>> On Wed, Jan 1, 2014 at 9:04 AM, Sid Boyce <sboyce@blueyonder.co.uk> wrote:
>>>> On 01/01/14 00:55, Ilia Mirkin wrote:
>>>>> On Tue, Dec 31, 2013 at 7:41 PM, Sid Boyce <sboyce@blueyonder.co.uk>
>>>>> wrote:
>>>>>> On 31/12/13 10:36, Ilia Mirkin wrote:
>>>>>>> Having a dmesg would be nice. One thing I can think of off-hand is
>>>>>>> that 3.13-rc has MSI turned on by default. You can turn it off by
>>>>>>> adding "nouveau.config=NvMSI=0" to your kernel cmdline. If that
>>>>>>> doesn't help, a bisect restricted to drivers/gpu/drm/nouveau should
>>>>>>> show the offending commit fairly quickly.
>>>>>>>
>>>>>>> -ilia
>>>>>>>
>>>>>> Adding "nouveau.config=NvMSI=0" to the command line fixed the problem.
>>>>>> So it looks like commit 049ffa8ab33a63b3bff672d1a0ee6a35ad253fe8
>>>>>> introduced
>>>>>> it.
>>>>> Any chance you might mmiotrace the blob (version 325 or later) to see
>>>>> which registers it fiddles with? Or alternatively, if you have a NVCE
>>>>> card (you never did end up providing the logs which would have made
>>>>> that apparent), could you try replacing nvc3_mc_oclass with
>>>>> nvc0_mc_oclass for the 0xce case in
>>>>> drivers/gpu/drm/nouveau/core/engine/device/nvc0.c? (and boot without
>>>>> the MSI disabling.) The switch has already been made for NVC8 in
>>>>> 0bae1d61c75 -- perhaps there are more "odd" ones.
>>>>>
>>>>> -ilia
>>>>>
>>>> Fails exactly the same.
>>>> case 0xc3:
>>>> device->cname = "GF106";
>>>>
>>>> device->oclass[NVDEV_SUBDEV_VBIOS ] =
>>>> &nouveau_bios_oclass;
>>>> device->oclass[NVDEV_SUBDEV_GPIO ] =
>>>> &nv50_gpio_oclass;
>>>> device->oclass[NVDEV_SUBDEV_I2C ] = &nv94_i2c_oclass;
>>>> device->oclass[NVDEV_SUBDEV_CLOCK ] =
>>>> &nvc0_clock_oclass;
>>>> device->oclass[NVDEV_SUBDEV_THERM ] =
>>>> &nva3_therm_oclass;
>>>> device->oclass[NVDEV_SUBDEV_MXM ] = &nv50_mxm_oclass;
>>>> device->oclass[NVDEV_SUBDEV_DEVINIT] =
>>>> &nvc0_devinit_oclass;
>>>> device->oclass[NVDEV_SUBDEV_MC ] = nvc0_mc_oclass;
>>>> <<<<<====
>>>> device->oclass[NVDEV_SUBDEV_BUS ] = nvc0_bus_oclass;
>>>> device->oclass[NVDEV_SUBDEV_TIMER ] =
>>>> &nv04_timer_oclass;
>>> That's the 0xc3 case... you have a nvce card, not nvc3 -- you would
>>> need to change the NVDEV_SUBDEV_MC line to nvc0_mc_oclass for the 0xce
>>> case.
>>>
>>>> The dmesg and Xorg.0.log with the problem captured across a ssh link.
>>>>
>>>> # ps fax|grep X
>>>> 5633 pts/0 S+ 0:00 \_ grep --color=auto X
>>>> 5160 tty7 Ss+ 0:08 \_ /usr/bin/Xorg -br :0 vt7 -nolisten tcp
>>>> -auth
>>>> /var/lib/kdm/AuthFiles/A:0-yqspza
>>>>
>>>> Also
>>>> # echo mmiotrace > /sys/kernel/debug/tracing/current_tracer
>>>> -bash: echo: write error: Invalid argument.
>>> Take a look at https://wiki.ubuntu.com/X/MMIOTracing
>>>
>>> -ilia
>>>
>> Of course it's a GF114.
>> Made the change and it boots without the command line change.
> Great! Care to send a patch?
>
> -ilia
>
Here it is.
Regards
Sid.
--
Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot
Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support
Senior Staff Specialist, Cricket Coach
Microsoft Windows Free Zone - Linux used for all Computing Tasks
[-- Attachment #2: GF114.diff --]
[-- Type: text/x-patch, Size: 738 bytes --]
--- /usr/src/linux-3.13.0-rc6/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c 2013-11-23 13:03:23.797604441 +0000
+++ /usr/src/linux-3.13.0-rc61/drivers/gpu/drm/nouveau/core/engine/device/nvc0.c 2014-01-02 02:13:32.445643092 +0000
@@ -161,7 +161,7 @@
device->oclass[NVDEV_SUBDEV_THERM ] = &nva3_therm_oclass;
device->oclass[NVDEV_SUBDEV_MXM ] = &nv50_mxm_oclass;
device->oclass[NVDEV_SUBDEV_DEVINIT] = &nvc0_devinit_oclass;
- device->oclass[NVDEV_SUBDEV_MC ] = nvc3_mc_oclass;
+ device->oclass[NVDEV_SUBDEV_MC ] = nvc0_mc_oclass;
device->oclass[NVDEV_SUBDEV_BUS ] = nvc0_bus_oclass;
device->oclass[NVDEV_SUBDEV_TIMER ] = &nv04_timer_oclass;
device->oclass[NVDEV_SUBDEV_FB ] = nvc0_fb_oclass;
next prev parent reply other threads:[~2014-01-02 2:59 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-31 10:14 Possible 3.13-rc nouveau regression with GT 560 Ti Sid Boyce
2013-12-31 10:36 ` Ilia Mirkin
2014-01-01 0:41 ` Sid Boyce
2014-01-01 0:55 ` Ilia Mirkin
2014-01-01 1:44 ` Sid Boyce
2014-01-01 14:04 ` Sid Boyce
2014-01-01 18:46 ` Ilia Mirkin
2014-01-02 2:36 ` Sid Boyce
2014-01-02 2:40 ` Ilia Mirkin
2014-01-02 2:59 ` Sid Boyce [this message]
2014-01-02 14:58 ` [PATCH] Fix hang problem with GeForce GT 560 Ti and nouveau in 3.13-rc Sid Boyce
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=52C4D624.6030602@blueyonder.co.uk \
--to=sboyce@blueyonder.co.uk \
--cc=imirkin@alum.mit.edu \
--cc=linux-kernel@vger.kernel.org \
--cc=nouveau@lists.freedesktop.org \
--cc=opensuse-factory@opensuse.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox