radeonsi: disable 2D tiling on CIK for now

Causes GPU hangs.

Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Alex Deucher 2013-05-03 17:12:04 -04:00
parent 1357624abc
commit d669992e35

View file

@ -532,7 +532,10 @@ struct pipe_resource *si_texture_create(struct pipe_screen *screen,
if (util_format_is_compressed(templ->format)) {
array_mode = V_009910_ARRAY_1D_TILED_THIN1;
} else {
array_mode = V_009910_ARRAY_2D_TILED_THIN1;
if (rscreen->chip_class >= CIK)
array_mode = V_009910_ARRAY_1D_TILED_THIN1; /* XXX fix me */
else
array_mode = V_009910_ARRAY_2D_TILED_THIN1;
}
}