Home
last modified time | relevance | path

Searched refs:phys_obj (Results 1 – 4 of 4) sorted by relevance

/drivers/gpu/drm/i915/
Di915_gem.c902 if (obj->phys_obj) { in i915_gem_pwrite_ioctl()
3810 if (obj->phys_obj) in i915_gem_free_object()
4213 struct drm_i915_gem_phys_object *phys_obj; in i915_gem_init_phys_object() local
4219 phys_obj = kzalloc(sizeof(struct drm_i915_gem_phys_object), GFP_KERNEL); in i915_gem_init_phys_object()
4220 if (!phys_obj) in i915_gem_init_phys_object()
4223 phys_obj->id = id; in i915_gem_init_phys_object()
4225 phys_obj->handle = drm_pci_alloc(dev, size, align); in i915_gem_init_phys_object()
4226 if (!phys_obj->handle) { in i915_gem_init_phys_object()
4231 set_memory_wc((unsigned long)phys_obj->handle->vaddr, phys_obj->handle->size / PAGE_SIZE); in i915_gem_init_phys_object()
4234 dev_priv->mm.phys_objs[id - 1] = phys_obj; in i915_gem_init_phys_object()
[all …]
Dintel_overlay.c196 regs = (struct overlay_registers __iomem *)overlay->reg_bo->phys_obj->handle->vaddr; in intel_overlay_map_regs()
1351 overlay->flip_addr = reg_bo->phys_obj->handle->busaddr; in intel_setup_overlay()
1435 overlay->reg_bo->phys_obj->handle->vaddr; in intel_overlay_map_regs_atomic()
1469 error->base = (__force long)overlay->reg_bo->phys_obj->handle->vaddr; in intel_overlay_capture_error_state()
Di915_drv.h1251 struct drm_i915_gem_phys_object *phys_obj; member
Dintel_display.c6431 addr = obj->phys_obj->handle->busaddr; in intel_crtc_cursor_set()