winsys/intel: test for and expose address swizzling 26/6626/1
authorChia-I Wu <olvaffe@gmail.com>
Fri, 10 May 2013 06:23:33 +0000 (14:23 +0800)
committerChia-I Wu <olvaffe@gmail.com>
Thu, 16 May 2013 03:24:59 +0000 (11:24 +0800)
Without knowing whether addresses are swizzled or not, we cannot manipulate a
tiled surface in CPU.

src/gallium/winsys/intel/drm/intel_drm_winsys.c
src/gallium/winsys/intel/drm/intel_winsys.h

index 8c0e292..1a8d0f7 100644 (file)
@@ -585,6 +585,26 @@ get_param(struct intel_drm_winsys *drm_ws, int param, int *value)
 }
 
 static bool
+test_address_swizzling(struct intel_drm_winsys *drm_ws)
+{
+   drm_intel_bo *bo;
+   uint32_t tiling = I915_TILING_X, swizzle;
+   unsigned long pitch;
+
+   bo = drm_intel_bo_alloc_tiled(drm_ws->bufmgr,
+         "address swizzling test", 64, 64, 4, &tiling, &pitch, 0);
+   if (bo) {
+      drm_intel_bo_get_tiling(bo, &tiling, &swizzle);
+      drm_intel_bo_unreference(bo);
+   }
+   else {
+      swizzle = I915_BIT_6_SWIZZLE_NONE;
+   }
+
+   return (swizzle != I915_BIT_6_SWIZZLE_NONE);
+}
+
+static bool
 init_info(struct intel_drm_winsys *drm_ws)
 {
    struct intel_winsys_info *info = &drm_ws->info;
@@ -605,6 +625,8 @@ init_info(struct intel_drm_winsys *drm_ws)
    get_param(drm_ws, I915_PARAM_HAS_GEN7_SOL_RESET, &val);
    info->has_gen7_sol_reset = val;
 
+   info->has_address_swizzling = test_address_swizzling(drm_ws);
+
    return true;
 }
 
index 37ee275..90f1b49 100644 (file)
@@ -74,6 +74,7 @@ struct intel_winsys_info {
    int devid;
    bool has_llc;
    bool has_gen7_sol_reset;
+   bool has_address_swizzling;
 };
 
 /**