All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t 1/2] lib/igt_kms: Fix igt_fb_set_size() debug message
@ 2016-03-01 16:38 ville.syrjala
  2016-03-01 16:38 ` [PATCH i-g-t 2/2] lib/igt_fb: Fix gen2 and 915 Y tile sizes ville.syrjala
  0 siblings, 1 reply; 2+ messages in thread
From: ville.syrjala @ 2016-03-01 16:38 UTC (permalink / raw
  To: intel-gfx

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

The debug message in igt_fb_set_size() was copy pasted
from igt_fb_set_position() and not adjusted to say the
right thing. Fix it up.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 lib/igt_kms.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index 90c8da7a3772..cfd7af31a3f0 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -1912,7 +1912,7 @@ void igt_fb_set_size(struct igt_fb *fb, igt_plane_t *plane,
 	igt_pipe_t *pipe = plane->pipe;
 	igt_display_t *display = pipe->display;
 
-	LOG(display, "%s.%d: fb_set_position(%dx%d)\n",
+	LOG(display, "%s.%d: fb_set_size(%dx%d)\n",
 	    kmstest_pipe_name(pipe->pipe), plane->index, w, h);
 
 	fb->src_w = w;
-- 
2.4.10

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [PATCH i-g-t 2/2] lib/igt_fb: Fix gen2 and 915 Y tile sizes
  2016-03-01 16:38 [PATCH i-g-t 1/2] lib/igt_kms: Fix igt_fb_set_size() debug message ville.syrjala
@ 2016-03-01 16:38 ` ville.syrjala
  0 siblings, 0 replies; 2+ messages in thread
From: ville.syrjala @ 2016-03-01 16:38 UTC (permalink / raw
  To: intel-gfx; +Cc: Paulo Zanoni

From: Ville Syrjälä <ville.syrjala@linux.intel.com>

gen2 tile dimensions are 128x32 for both X and Y tiling
915 tile dimensions are 512x8 for both X and Y tiling

Fix igt_get_fb_tile_size() to return the correct Y tile dimensions
for these platforms. X tile was fine already.

Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
 lib/igt_fb.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 5f23136e01ac..1d5981a3fc6f 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -93,11 +93,16 @@ static void igt_get_fb_tile_size(int fd, uint64_t tiling, int fb_bpp,
 		}
 		break;
 	case LOCAL_I915_FORMAT_MOD_Y_TILED:
-		if (IS_915(devid))
+		if (intel_gen(devid) == 2) {
+			*width_ret = 128;
+			*height_ret = 16;
+		} else if (IS_915(devid)) {
 			*width_ret = 512;
-		else
+			*height_ret = 8;
+		} else {
 			*width_ret = 128;
-		*height_ret = 32;
+			*height_ret = 32;
+		}
 		break;
 	case LOCAL_I915_FORMAT_MOD_Yf_TILED:
 		switch (fb_bpp) {
-- 
2.4.10

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-03-01 16:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-01 16:38 [PATCH i-g-t 1/2] lib/igt_kms: Fix igt_fb_set_size() debug message ville.syrjala
2016-03-01 16:38 ` [PATCH i-g-t 2/2] lib/igt_fb: Fix gen2 and 915 Y tile sizes ville.syrjala

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.