From: José Roberto de Souza Date: Wed, 26 Apr 2023 16:20:05 +0000 (-0700) Subject: drm/xe: Limit the system memory size to half of the system memory X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=a121594006813eff7864a63e14573f3f5523e29c;p=users%2Fjedix%2Flinux-maple.git drm/xe: Limit the system memory size to half of the system memory ttm_global_init() imposes this limitation. Cc: Matthew Auld Reviewed-by: Matthew Auld Signed-off-by: José Roberto de Souza Signed-off-by: Rodrigo Vivi --- diff --git a/drivers/gpu/drm/xe/xe_ttm_sys_mgr.c b/drivers/gpu/drm/xe/xe_ttm_sys_mgr.c index 5b0674bbb8ed..3e1fa0c832ca 100644 --- a/drivers/gpu/drm/xe/xe_ttm_sys_mgr.c +++ b/drivers/gpu/drm/xe/xe_ttm_sys_mgr.c @@ -105,7 +105,10 @@ int xe_ttm_sys_mgr_init(struct xe_device *xe) u64 gtt_size; si_meminfo(&si); - gtt_size = (u64)si.totalram * si.mem_unit * 3/4; + gtt_size = (u64)si.totalram * si.mem_unit; + /* TTM limits allocation of all TTM devices by 50% of system memory */ + gtt_size /= 2; + man->use_tt = true; man->func = &xe_ttm_sys_mgr_func; ttm_resource_manager_init(man, &xe->ttm, gtt_size >> PAGE_SHIFT);