From: Alex Deucher Date: Tue, 3 May 2016 21:48:41 +0000 (-0400) Subject: drm/radeon/gfx7: expand cp jt size to handle GDS as well X-Git-Tag: v4.8-rc1~62^2~23^2~181 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9406d216fe6f8c530fc7b7ca3b6b25ad54069698;p=karo-tx-linux.git drm/radeon/gfx7: expand cp jt size to handle GDS as well The size needs to handle the CP JT and GDS. Signed-off-by: Alex Deucher --- diff --git a/drivers/gpu/drm/radeon/cik.c b/drivers/gpu/drm/radeon/cik.c index 20a4bd5f823d..3beac4ecf6a6 100644 --- a/drivers/gpu/drm/radeon/cik.c +++ b/drivers/gpu/drm/radeon/cik.c @@ -8366,7 +8366,8 @@ static int cik_startup(struct radeon_device *rdev) } } rdev->rlc.cs_data = ci_cs_data; - rdev->rlc.cp_table_size = CP_ME_TABLE_SIZE * 5 * 4; + rdev->rlc.cp_table_size = CP_ME_TABLE_SIZE * 5 * 4; /* CP JT */ + rdev->rlc.cp_table_size += 64 * 1024; /* GDS */ r = sumo_rlc_init(rdev); if (r) { DRM_ERROR("Failed to init rlc BOs!\n");