All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/3] drm/ttm: cleanup and add TTM_PL_FLAG_TEMPORARY flag
@ 2021-05-31  8:22 ` Lang Yu
  0 siblings, 0 replies; 12+ messages in thread
From: Lang Yu @ 2021-05-31  8:22 UTC (permalink / raw)
  To: amd-gfx, dri-devel
  Cc: Marek Olsak, Christian König, Huang Rui, Alex Deucher,
	Lang Yu, Thomas Hellströ

Cleanup and just make TTM_PL_FLAG_* start from zero.

Currently, we have a limitted GTT memory size and need a bounce buffer
when doing buffer migration between VRAM and SYSTEM domain.

The problem is under GTT memory pressure we can't do buffer migration
between VRAM and SYSTEM domain. But in some cases we really need that.
Eespecially when validating a VRAM backing store BO which resides in
SYSTEM domain.

Add TTM_PL_FLAG_TEMPORARY flag for temporary GTT memory allocation under
memory pressure. It may be useful for dirvers with a limited GTT memory
size.

v2: add detailed comments

Suggested-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Lang Yu <Lang.Yu@amd.com>
---
 include/drm/ttm/ttm_placement.h | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/drm/ttm/ttm_placement.h b/include/drm/ttm/ttm_placement.h
index aa6ba4d0cf78..9f5cfc7c2d5a 100644
--- a/include/drm/ttm/ttm_placement.h
+++ b/include/drm/ttm/ttm_placement.h
@@ -47,8 +47,9 @@
  * top of the memory area, instead of the bottom.
  */
 
-#define TTM_PL_FLAG_CONTIGUOUS  (1 << 19)
-#define TTM_PL_FLAG_TOPDOWN     (1 << 22)
+#define TTM_PL_FLAG_CONTIGUOUS  (1 << 0)
+#define TTM_PL_FLAG_TOPDOWN     (1 << 1)
+#define TTM_PL_FLAG_TEMPORARY   (1 << 2)
 
 /**
  * struct ttm_place
-- 
2.25.1


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

end of thread, other threads:[~2021-05-31 12:59 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-31  8:22 [PATCH v2 1/3] drm/ttm: cleanup and add TTM_PL_FLAG_TEMPORARY flag Lang Yu
2021-05-31  8:22 ` Lang Yu
2021-05-31  8:22 ` [PATCH 2/3] drm/ttm: check with temporary GTT memory in BO validation Lang Yu
2021-05-31  8:22   ` Lang Yu
2021-05-31  9:04   ` Christian König
2021-05-31  9:04     ` Christian König
2021-05-31  8:22 ` [PATCH v2 3/3] drm/amdgpu: allow temporary GTT allocation under memory pressure Lang Yu
2021-05-31  8:22   ` Lang Yu
2021-05-31 12:48   ` Christian König
2021-05-31 12:48     ` Christian König
2021-05-31 12:59     ` Yu, Lang
2021-05-31 12:59       ` Yu, Lang

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.