Bug 32945 - [RADEON:KMS:R300G] HiZ: Weird behavior with 3 pipes
Summary: [RADEON:KMS:R300G] HiZ: Weird behavior with 3 pipes
Status: RESOLVED FIXED
Alias: None
Product: Mesa
Classification: Unclassified
Component: Drivers/Gallium/r300 (show other bugs)
Version: git
Hardware: Other All
: medium normal
Assignee: Default DRI bug account
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-09 13:55 UTC by Sven Arvidsson
Modified: 2011-03-11 11:33 UTC (History)
1 user (show)

See Also:
i915 platform:
i915 features:


Attachments
Screenshot of gears (13.23 KB, image/png)
2011-01-09 13:55 UTC, Sven Arvidsson
Details
glxgears screenshot with patch (6.65 KB, image/png)
2011-01-25 06:32 UTC, Sven Arvidsson
Details
screenshot from doom3 (148.86 KB, image/jpeg)
2011-01-25 06:34 UTC, Sven Arvidsson
Details
doom3 with second version of patch (159.51 KB, image/jpeg)
2011-01-25 08:06 UTC, Sven Arvidsson
Details
dmesg output (58.02 KB, text/plain)
2011-01-25 14:29 UTC, Sven Arvidsson
Details
hyperz fix v3 (50.71 KB, patch)
2011-01-25 16:38 UTC, Marek Olšák
Details | Splinter Review
shadowtex screenshot (12.16 KB, image/png)
2011-01-26 07:59 UTC, Sven Arvidsson
Details
Screenshot of ETQW (222.35 KB, image/jpeg)
2011-03-01 04:05 UTC, Sven Arvidsson
Details
shadowtex (4.32 KB, image/png)
2011-03-01 04:06 UTC, Sven Arvidsson
Details
Possible fix (2.04 KB, patch)
2011-03-10 13:13 UTC, Nicolas Peninguy
Details | Splinter Review

Description Sven Arvidsson 2011-01-09 13:55:23 UTC
Created attachment 41815 [details]
Screenshot of gears

When HyperZ is used on my RV570 the lower part of the screen isn't rendered correctly.  I'm attaching a screenshot of glxgears, but it's also visible in most real-world games and apps.

I'm not sure if this is the same as bug 29851 since the hardware differs.

(HyperZ gives a pretty nice performance boost otherwise, about a 30% fps increase with Doom 3 in 1680x1050!) 

System environment:
-- system architecture: 32-bit
-- Linux distribution: Debian unstable
-- GPU: RV570
-- Model: Asus EAX1950Pro 256MB
-- Display connector: DVI
-- xf86-video-ati: 6.13.2
-- xserver: 1.9.2
-- mesa: ac6306e9ca904ae9674bf2a15222efe4cb861bf5
-- drm: 2.4.23
-- kernel: 2.6.37
Comment 1 Marek Olšák 2011-01-09 15:07:37 UTC
Doesn't the performance boost come from the fact that a large part of the screen is not rendered?
Comment 2 Sven Arvidsson 2011-01-10 08:00:41 UTC
Doh! Yeah, I suppose that's a lot more plausible.(In reply to comment #1)
> Doesn't the performance boost come from the fact that a large part of the
> screen is not rendered?

Doh! Yeah, I suppose that's a lot more plausible.
Comment 3 Marek Olšák 2011-01-24 21:00:14 UTC
Does this patch fix anything?

https://bugs.freedesktop.org/attachment.cgi?id=42432
Comment 4 Sven Arvidsson 2011-01-25 06:32:09 UTC
Created attachment 42458 [details]
glxgears screenshot with patch

The patch is a big improvment, but it doesn't completely solve it. 

I'm attaching a screenshot of glxgears. In Doom3 the bug seems to mostly involve the gun, any time it's moved there's a sort of black after image still visible on the screen.
Comment 5 Sven Arvidsson 2011-01-25 06:34:55 UTC
Created attachment 42459 [details]
screenshot from doom3
Comment 6 Marek Olšák 2011-01-25 07:54:26 UTC
I've made a new patch. Could you give it a try?

https://bugs.freedesktop.org/attachment.cgi?id=42464
Comment 7 Sven Arvidsson 2011-01-25 08:06:53 UTC
Created attachment 42469 [details]
doom3 with second version of patch

(In reply to comment #6)
> I've made a new patch. Could you give it a try?
> 
> https://bugs.freedesktop.org/attachment.cgi?id=42464

This seems slightly worse. Not much difference in glxgears, but in Doom3 the corruption is a lot more persistent.

Not sure if it's relevant, but in glxgears, the amount of corruption depends on what angle you're viewing the gears from.
Comment 8 Marek Olšák 2011-01-25 08:33:52 UTC
It appears that one third of the zbuffer is not cleared on your machine. In src/gallium/drivers/r300/r300_emit.c, can you add this line:

numdw = ALIGN_DIVUP(numdw * 3, 2);

at line 1171 and do some testing?

Could you also please attach your dmesg?
Comment 9 Sven Arvidsson 2011-01-25 14:29:28 UTC
Created attachment 42495 [details]
dmesg output

(In reply to comment #8)
> It appears that one third of the zbuffer is not cleared on your machine. In
> src/gallium/drivers/r300/r300_emit.c, can you add this line:
> 
> numdw = ALIGN_DIVUP(numdw * 3, 2);
> 
> at line 1171 and do some testing?
> 
> Could you also please attach your dmesg?

Adding the line didn't make any difference. 

In fact, I did some poking around (without any real understanding) and the value of numdw doesn't seem to make any difference. Replacing OUT_CS(numdw); with OUT_CS(0); gives the same result here. But maybe that's expected?

dmesg is attached.
Comment 10 Marek Olšák 2011-01-25 14:55:02 UTC
It doesn't add up. Changing numdw must make a visible difference, it determines how many pixels are cleared (multiplied by something).

I don't think 0 is even allowed. Try 1 and see how large part of the screen is rendered correctly. It should be 64x64 or something like that, I don't know for sure. Knowing that size would come in handy. The rest of the screen should be corrupted.
Comment 11 Sven Arvidsson 2011-01-25 15:37:15 UTC
(In reply to comment #10)
> It doesn't add up. Changing numdw must make a visible difference, it determines
> how many pixels are cleared (multiplied by something).
> 
> I don't think 0 is even allowed. Try 1 and see how large part of the screen is
> rendered correctly. It should be 64x64 or something like that, I don't know for
> sure. Knowing that size would come in handy. The rest of the screen should be
> corrupted.

With 1 the whole screen is corrupt and mostly black - but you can still see part of the gears flickering though it's hard to catch in a screenshot.
Comment 12 Marek Olšák 2011-01-25 16:38:57 UTC
Created attachment 42497 [details] [review]
hyperz fix v3

Thanks for your time. I've attached a new patch. It fixes more bugs and although it doesn't fix yours, it's needed for additional testing.

Please do the following.

1) Use numdw = 1.

2) Download Mesa demos if you don't already have them.
(git://anongit.freedesktop.org/mesa/demos, compile with "cmake .; make")

3) Go to src/demos.

4) Execute ./shadowtex with hyperz enabled. Press 'i'.

5) Hold 'p'. You should see flickering all over the screen, but there should be a little tile in the bottom left-hand corner. How large is the tile?
Comment 13 Sven Arvidsson 2011-01-26 07:59:30 UTC
Created attachment 42527 [details]
shadowtex screenshot

Okay, so if I have done this correctly, the small white area in the left corner is 48x16, if you mean the larger black and white rendering it seems to be 256x257.

I'm attaching a screenshot of shadowtex.
Comment 14 Marek Olšák 2011-01-27 16:10:23 UTC
I have fixed the 8x8 compression mode in master. It should fix the bottom of the screen being uninitialized. Please test.
Comment 15 Marek Olšák 2011-01-28 03:08:44 UTC
If the latest commits don't help, please add the following line at the end of r300_chipset.c and test again:

caps->hiz_ram = 0;
Comment 16 Sven Arvidsson 2011-01-28 04:38:04 UTC
No change with the latest commits, but caps->hiz_ram = 0; makes the problem go away.
Comment 17 Marek Olšák 2011-02-28 16:34:37 UTC
Please check out the latest Mesa master branch. There are some new fixes, which should fix even this bug.
Comment 18 Sven Arvidsson 2011-03-01 04:05:00 UTC
Created attachment 43961 [details]
Screenshot of ETQW

(In reply to comment #17)
> Please check out the latest Mesa master branch. There are some new fixes, which
> should fix even this bug.

Things are considerably better now. The corruption in gears and doom3 seems to be completely gone. (And the speedup in doom is around 40%!)

There's still something funky in ETQW, on the left and right sides. A screenshot is attached.
Comment 19 Sven Arvidsson 2011-03-01 04:06:20 UTC
Created attachment 43962 [details]
shadowtex

Attaching new shadowtex screenshot in case that's useful.
Comment 20 Marek Olšák 2011-03-03 12:52:56 UTC
I can't fix this by myself, because I don't have your GPU. If you want to play with it, here's how:

In mesa/src/gallium/drivers/r300, there is file r300_texture_desc.c. On lines 356 and 357, there are two arrays containing info how HiZ buffers should be aligned:

static unsigned hiz_align_x[4] = {8, 32, 48, 32};
static unsigned hiz_align_y[4] = {8, 8, 8, 32};

The 3rd element in those arrays contains a number for your GPU (because your GPU has 3 pipes). Currently the alignment is 48x8. Feel free to try a different size, like 32x32, 64x64, 48x32, whatever comes to your mind.

If nothing helps, it means the alignment is right and the problem is somewhere else.
Comment 21 Nicolas Peninguy 2011-03-06 14:07:08 UTC
I can see the same problems in shadowtex with a "ATI Technologies Inc R580 [Radeon X1900]" card. (MESA master)

Moreover while the comment at the start of r300_setup_hyperz_properties() says a R580 should have 4 pipes, when I print the "pipes" variable, its value is 3.

Anyway playing with hiz_align_(x|y) values doesn't change anything for me.
Comment 22 Sven Arvidsson 2011-03-06 14:12:34 UTC
(In reply to comment #21)
> Anyway playing with hiz_align_(x|y) values doesn't change anything for me.

I've been doing the same, with no change in behaviour. So I guess the problem is somewhere else? :/
Comment 23 Nicolas Peninguy 2011-03-10 13:13:28 UTC
Created attachment 44333 [details] [review]
Possible fix

The attached patch fixes the issue with shadowtex for me. Sven, can you try it and also see if doom3 is still OK with it ?

With 3 pipes values are NPOT, so align() is not suitable in some places I think.
Comment 24 Marek Olšák 2011-03-10 19:40:15 UTC
(In reply to comment #23)
> Created an attachment (id=44333) [details]
> Possible fix
> 
> The attached patch fixes the issue with shadowtex for me. Sven, can you try it
> and also see if doom3 is still OK with it ?
> 
> With 3 pipes values are NPOT, so align() is not suitable in some places I
> think.

Pushed, thanks a lot!
Comment 25 Sven Arvidsson 2011-03-11 08:47:47 UTC
(In reply to comment #23)
> Created an attachment (id=44333) [details]
> Possible fix
> 
> The attached patch fixes the issue with shadowtex for me. Sven, can you try it
> and also see if doom3 is still OK with it ?
> 
> With 3 pipes values are NPOT, so align() is not suitable in some places I
> think.

Cool! This does indeed fix things!

The only remaining app with HiZ problems here is Lightsmark, but it seems to be a general problem tracked in bug 33648.
Comment 26 Marek Olšák 2011-03-11 11:33:40 UTC
(In reply to comment #25)
> Cool! This does indeed fix things!

Alright, closing.


Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.