Bug 20265 - [i915 UXA,EXA] rotation messes display with tiling on
Summary: [i915 UXA,EXA] rotation messes display with tiling on
Status: VERIFIED FIXED
Alias: None
Product: xorg
Classification: Unclassified
Component: Driver/intel (show other bugs)
Version: git
Hardware: x86 (IA32) Linux (All)
: high major
Assignee: Jesse Barnes
QA Contact: Xorg Project Team
URL:
Whiteboard:
Keywords: NEEDINFO
: 20434 (view as bug list)
Depends on:
Blocks: 20276
  Show dependency treegraph
 
Reported: 2009-02-23 01:23 UTC by zhao jian
Modified: 2009-03-23 18:50 UTC (History)
3 users (show)

See Also:
i915 platform:
i915 features:


Attachments
xorg.conf (3.69 KB, text/plain)
2009-02-23 01:23 UTC, zhao jian
no flags Details
xorg.0.log (116.18 KB, text/plain)
2009-02-23 01:24 UTC, zhao jian
no flags Details
rotate_on_gm945 (699.36 KB, image/pjpeg)
2009-02-23 01:32 UTC, zhao jian
no flags Details
don't set up fence registers if the kernel can do it (1.04 KB, patch)
2009-03-12 15:44 UTC, Jesse Barnes
no flags Details | Splinter Review

Description zhao jian 2009-02-23 01:23:07 UTC
System Environment:
----------------------
Platform:               945gm
Arch:           i386
OSD:            Fedora release 9 (Sulphur)
Libdrm:         (master)4a0d19ef4f210cea9e60c5acc355df03723ef808
Mesa:            (mesa_7_4_branch)e2092bb23c956ba9ab940935f803ef843db81af2
Xserver:         (server-1.6-branch)4557b3f6c4273cd83b701beaf7a150c806fed298
Xf86_video_intel:  (master)81c652e9a666a7459bcc5217c8a5ec518b6e00da
Kernel:           (for-airlied)66647dc60d16fae9f6963fd98b6d9baa1a8dac69

Bug Description:
---------------------
In both UXA and EXA mode, it will have a disordered output when rotate the screen using 'xrandr --output LVDS --rotate left'. (See the picture in attachment)


Reproduce Steps:
---------------------
1. xinit&
2. xrandr --output LVDS --rotate left (right or inverted)
Comment 1 zhao jian 2009-02-23 01:23:55 UTC
Created attachment 23202 [details]
xorg.conf
Comment 2 zhao jian 2009-02-23 01:24:42 UTC
Created attachment 23203 [details]
xorg.0.log
Comment 3 zhao jian 2009-02-23 01:32:40 UTC
Created attachment 23204 [details]
rotate_on_gm945
Comment 4 zhao jian 2009-02-23 21:03:44 UTC
I think it was caused by tiling. If I add an option Tiling false disabling it, then it works well. 
Comment 5 zhao jian 2009-02-24 19:01:42 UTC
It also existed on G33 and 915gm with tiling on. 
Comment 6 Eric Anholt 2009-02-28 00:49:46 UTC
I think the fence register setup for tiling at execbuf time is interfering with rendering due to there being two fence registers set up for the front buffer: one by the UMS 2D driver, and another by the kernel when we execute the Render operation to draw the rotated buffer.  If we set the tiling bits in i915_render.c instead of relying on the fences, then the problem goes away.
Comment 7 Eric Anholt 2009-03-09 16:19:31 UTC
*** Bug 20434 has been marked as a duplicate of this bug. ***
Comment 8 zhao jian 2009-03-11 02:08:25 UTC
I find it was caused by the commit 0f973f27888e4664b253ab2cf69c67c2eb80ab1b in
the for-airlied branch. The commit's detail is as following:
commit 0f973f27888e4664b253ab2cf69c67c2eb80ab1b
Author: Jesse Barnes <jbarnes@virtuousgeek.org>
Date:   Mon Jan 26 17:10:45 2009 -0800

    drm/i915: add fence register management to execbuf

    Adds code to set up fence registers at execbuf time on pre-965 chips as
    necessary.  Also fixes up a few bugs in the pre-965 tile register support
    (get_order != ffs).  The number of fences available to the kernel defaults
    to the hw limit minus 3 (for legacy X front/back/depth), but a new  
    parameter allows userspace to override that as needed.

Comment 9 Jesse Barnes 2009-03-12 15:43:11 UTC
Ok so the duplicate fence setup should be coming from:
  - 2D driver sets up a fence reg at allocation time
  - pin ioctl sets up another fence at pin time
the second one will set the fence register number etc in the bo so subsequent execbufs shouldn't allocate one; Eric how did you remove the duplicate setup?

If I'm correct then the attached patch should work, can you give it a try?
Comment 10 Jesse Barnes 2009-03-12 15:44:01 UTC
Created attachment 23815 [details] [review]
don't set up fence registers if the kernel can do it

This patch avoids setting up fence registers at allocation time if execbuf fencing is active, since the pin ioctl should take care of that for us.
Comment 11 Jesse Barnes 2009-03-16 14:13:33 UTC
Jian, can you give the patch a try?
Comment 12 Eric Anholt 2009-03-16 18:23:40 UTC
jbarnes, how does this ensure that the fence stays permanently on the scanned out buffer?  it'll just get stolen by other clients execing, right?
Comment 13 Jesse Barnes 2009-03-16 18:38:48 UTC
It shouldn't, since the scanout buffer is pinned.  The fence stealing code shouldn't try to steal those regs & reuse them in that case, but maybe I need to look at the code again.
Comment 14 zhao jian 2009-03-17 03:19:47 UTC
(In reply to comment #11)
> Jian, can you give the patch a try?
Hi, Jesse. I tried with your patch and it worked well now, it will display normally when rotate both with UXA and EXA. But I have to mention that after rotate then log into the gnome, it will have a blurred desktop. As #20287. 

Comment 15 Jesse Barnes 2009-03-19 13:28:15 UTC
Fix pushed.  Still trying to reproduce #20287.

commit 636d252f3b1eac687f7b11952e949c383cb86ed4
Author: Jesse Barnes <jbarnes@nietzche.localdomain>
Date:   Thu Mar 19 13:25:29 2009 -0700

    Don't install fences if the kernel is managing them
Comment 16 zhao jian 2009-03-23 18:50:06 UTC
It is OK now. 


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.