From b20efcf585af65b1cff8b76b8bac5af9252d9391 Mon Sep 17 00:00:00 2001 From: "Xiang, Haihao" Date: Thu, 3 Sep 2009 09:35:50 +0800 Subject: [PATCH] CS FENCE in URB_FENCE is 11-bits wide Signed-off-by: Xiang, Haihao --- tools/intel_gpu_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/intel_gpu_dump.c b/tools/intel_gpu_dump.c index 1793fd79..bbeb7865 100644 --- a/tools/intel_gpu_dump.c +++ b/tools/intel_gpu_dump.c @@ -1474,7 +1474,7 @@ i965_decode_urb_fence(uint32_t *data, uint32_t hw_offset, int len, int count, clip_fence = (data[1] >> 20) & 0x3ff; sf_fence = data[2] & 0x3ff; vfe_fence = (data[2] >> 10) & 0x3ff; - cs_fence = (data[2] >> 20) & 0x3ff; + cs_fence = (data[2] >> 20) & 0x7ff; instr_out(data, hw_offset, 0, "URB_FENCE: %s%s%s%s%s%s\n", (data[0] >> 13) & 1 ? "cs " : "",