From: James Cloos <cloos@jhcloos.com>
To: benh@kernel.crashing.org
Cc: linux-kernel@vger.kernel.org,
Linus Torvalds <torvalds@linux-foundation.org>,
Andrew Morton <akpm@linux-foundation.org>,
Krzysztof Halasa <khc@pm.waw.pl>,
"David S. Miller" <davem@davemloft.net>,
linux-fbdev-devel@lists.sourceforge.net
Subject: Re: radeonfb lockup in .28-rc (bisected)
Date: Tue, 28 Oct 2008 05:24:44 -0400 [thread overview]
Message-ID: <m3k5bt2hsc.fsf@lugabout.jhcloos.org> (raw)
In-Reply-To: <1225152347.8004.49.camel@pasglop> (Benjamin Herrenschmidt's message of "Tue, 28 Oct 2008 11:05:47 +1100")
>>>>> "Benjamin" == Benjamin Herrenschmidt <benh@kernel.crashing.org> writes:
Benjamin> First, let's see if it's related to the imageblit. Can you
Benjamin> re-apply the reverted patch and apply this little hack on top:
Benjamin> +#if 0
Benjamin> /* We only do 1 bpp color expansion for now */
Benjamin> if (info->flags & FBINFO_HWACCEL_DISABLED || image->depth != 1)
Benjamin> goto fallback;
Benjamin> @@ -275,6 +276,7 @@ void radeonfb_imageblit(struct fb_info *
Benjamin> return;
Benjamin> fallback:
Benjamin> +#endif
Benjamin> And let me know if that makes it not lockup.
Indeed, if-zero-ing out that block does work.
Since that if essentially removes to call to radeonfb_prim_imageblit(),
I wonder whether:
/* X here pads width to a multiple of 32 and uses the clipper to
* adjust the result. Is that really necessary ? Things seem to
* work ok for me without that and the doco doesn't seem to imply
* there is such a restriction.
*/
is relevant?
Or whether the card is unhappy with the creg settings. It does seem,
now that I read the code, that:
void radeon_fifo_update_and_wait(struct radeonfb_info *rinfo, int entries)
{
int i;
for (i=0; i<2000000; i++) {
rinfo->fifo_free = INREG(RBBM_STATUS) & 0x7f;
if (rinfo->fifo_free >= entries)
return;
udelay(10);
}
printk(KERN_ERR "radeonfb: FIFO Timeout !\n");
/* XXX Todo: attempt to reset the engine */
}
is in play. It is probably spinning through all of the 2000000 possible
udelay(10) calls. I don't think I ever gave it twenty seconds before
giving up. And certainly not forty seconds, if the freeze happens after
setting the DST_Y_X register.
-JimC
--
James Cloos <cloos@jhcloos.com> OpenPGP: 1024D/ED7DAEA6
next prev parent reply other threads:[~2008-10-28 9:24 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-27 23:45 radeonfb lockup in .28-rc (bisected) James Cloos
2008-10-28 0:00 ` David Miller
2008-10-28 1:46 ` James Cloos
2008-10-28 0:05 ` Benjamin Herrenschmidt
2008-10-28 1:50 ` James Cloos
2008-10-28 9:24 ` James Cloos [this message]
2008-11-02 21:48 ` [Linux-fbdev-devel] " Benjamin Herrenschmidt
2008-11-03 7:01 ` Paul Collins
2008-11-03 7:34 ` Benjamin Herrenschmidt
2008-11-04 6:49 ` Paul Collins
2008-11-04 21:33 ` Benjamin Herrenschmidt
2008-11-06 6:00 ` Paul Collins
2008-11-06 7:52 ` Benjamin Herrenschmidt
2008-11-04 21:36 ` Benjamin Herrenschmidt
2008-11-05 8:39 ` Benjamin Herrenschmidt
2008-11-05 10:28 ` Paul Collins
2008-11-05 20:31 ` Benjamin Herrenschmidt
2008-11-06 3:49 ` Benjamin Herrenschmidt
2008-11-06 4:49 ` Paul Collins
2008-11-03 15:33 ` James Cloos
2008-11-03 20:22 ` Benjamin Herrenschmidt
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=m3k5bt2hsc.fsf@lugabout.jhcloos.org \
--to=cloos@jhcloos.com \
--cc=akpm@linux-foundation.org \
--cc=benh@kernel.crashing.org \
--cc=davem@davemloft.net \
--cc=khc@pm.waw.pl \
--cc=linux-fbdev-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.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;
as well as URLs for NNTP newsgroup(s).