Searched refs:dpt_obj (Results 1 - 1 of 1) sorted by relevance

/openbsd-current/sys/dev/pci/drm/i915/display/
H A Dintel_dpt.c248 struct drm_i915_gem_object *dpt_obj; local
261 dpt_obj = i915_gem_object_create_lmem(i915, size, I915_BO_ALLOC_CONTIGUOUS);
262 if (IS_ERR(dpt_obj) && i915_ggtt_has_aperture(to_gt(i915)->ggtt))
263 dpt_obj = i915_gem_object_create_stolen(i915, size);
264 if (IS_ERR(dpt_obj) && !HAS_LMEM(i915)) {
266 dpt_obj = i915_gem_object_create_shmem(i915, size);
268 if (IS_ERR(dpt_obj))
269 return ERR_CAST(dpt_obj);
271 ret = i915_gem_object_lock_interruptible(dpt_obj, NULL);
273 ret = i915_gem_object_set_cache_level(dpt_obj, I915_CACHE_NON
[all...]

Completed in 115 milliseconds