]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
drm/i915: Fix sprite offset on HSW
authorDamien Lespiau <damien.lespiau@intel.com>
Fri, 26 Oct 2012 17:20:11 +0000 (18:20 +0100)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Sun, 11 Nov 2012 22:51:01 +0000 (23:51 +0100)
HSW consolidates SPRTILEOFF and SPRLINOFF into a single SPROFFSET
register.

v2: Remove a useless level of indentation (Paulo Zanoni)

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Reviewed-by: Paulo Zanoni <paulo.r.zanoni@intel.com> (v1)
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_reg.h
drivers/gpu/drm/i915/intel_sprite.c

index 393f22bf43f28822518feb2777b9559b0cab0147..876af8e282951f30a54cb07d8d38bd0b6a4e3f2c 100644 (file)
 #define _SPRA_SURF             0x7029c
 #define _SPRA_KEYMAX           0x702a0
 #define _SPRA_TILEOFF          0x702a4
+#define _SPRA_OFFSET           0x702a4
 #define _SPRA_SCALE            0x70304
 #define   SPRITE_SCALE_ENABLE  (1<<31)
 #define   SPRITE_FILTER_MASK   (3<<29)
 #define _SPRB_SURF             0x7129c
 #define _SPRB_KEYMAX           0x712a0
 #define _SPRB_TILEOFF          0x712a4
+#define _SPRB_OFFSET           0x712a4
 #define _SPRB_SCALE            0x71304
 #define _SPRB_GAMC             0x71400
 
 #define SPRSURF(pipe) _PIPE(pipe, _SPRA_SURF, _SPRB_SURF)
 #define SPRKEYMAX(pipe) _PIPE(pipe, _SPRA_KEYMAX, _SPRB_KEYMAX)
 #define SPRTILEOFF(pipe) _PIPE(pipe, _SPRA_TILEOFF, _SPRB_TILEOFF)
+#define SPROFFSET(pipe) _PIPE(pipe, _SPRA_OFFSET, _SPRB_OFFSET)
 #define SPRSCALE(pipe) _PIPE(pipe, _SPRA_SCALE, _SPRB_SCALE)
 #define SPRGAMC(pipe) _PIPE(pipe, _SPRA_GAMC, _SPRB_GAMC)
 
index f9001af4a30d2093d27d76e857ceec98bad1fad3..e36123d2497e351290a5662f1edd5356b0ff7f23 100644 (file)
@@ -127,7 +127,12 @@ ivb_update_plane(struct drm_plane *plane, struct drm_framebuffer *fb,
 
        I915_WRITE(SPRSTRIDE(pipe), fb->pitches[0]);
        I915_WRITE(SPRPOS(pipe), (crtc_y << 16) | crtc_x);
-       if (obj->tiling_mode != I915_TILING_NONE) {
+
+       if (IS_HASWELL(dev)) {
+               /* HSW consolidates SPRTILEOFF and SPRLINOFF into a single
+                * SPROFFSET register */
+               I915_WRITE(SPROFFSET(pipe), (y << 16) | x);
+       } else if (obj->tiling_mode != I915_TILING_NONE) {
                I915_WRITE(SPRTILEOFF(pipe), (y << 16) | x);
        } else {
                unsigned long offset;
@@ -135,6 +140,7 @@ ivb_update_plane(struct drm_plane *plane, struct drm_framebuffer *fb,
                offset = y * fb->pitches[0] + x * (fb->bits_per_pixel / 8);
                I915_WRITE(SPRLINOFF(pipe), offset);
        }
+
        I915_WRITE(SPRSIZE(pipe), (crtc_h << 16) | crtc_w);
        if (intel_plane->can_scale)
                I915_WRITE(SPRSCALE(pipe), sprscale);