Lines Matching refs:ttm
32 #include <drm/ttm/ttm_bo.h>
33 #include <drm/ttm/ttm_placement.h>
34 #include <drm/ttm/ttm_range_manager.h>
35 #include <drm/ttm/ttm_tt.h>
102 static void qxl_ttm_backend_destroy(struct ttm_device *bdev, struct ttm_tt *ttm)
104 ttm_tt_fini(ttm);
105 kfree(ttm);
111 struct ttm_tt *ttm;
113 ttm = kzalloc(sizeof(struct ttm_tt), GFP_KERNEL);
114 if (ttm == NULL)
116 if (ttm_tt_init(ttm, bo, page_flags, ttm_cached, 0)) {
117 kfree(ttm);
120 return ttm;
163 if (old_mem->mem_type == TTM_PL_SYSTEM && bo->ttm == NULL) {
233 DRM_INFO("qxl: ttm finalized\n");