mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Add intel_bo_key_check() next to intel_bo_is_protected() where it feels like it belongs, and drop the extra pxp compat header. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patch.msgid.link/20251201172730.2154668-1-jani.nikula@intel.com Signed-off-by: Jani Nikula <jani.nikula@intel.com>
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/* SPDX-License-Identifier: MIT */
|
|
/* Copyright © 2024 Intel Corporation */
|
|
|
|
#ifndef __INTEL_BO__
|
|
#define __INTEL_BO__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct drm_gem_object;
|
|
struct drm_scanout_buffer;
|
|
struct intel_framebuffer;
|
|
struct seq_file;
|
|
struct vm_area_struct;
|
|
|
|
bool intel_bo_is_tiled(struct drm_gem_object *obj);
|
|
bool intel_bo_is_userptr(struct drm_gem_object *obj);
|
|
bool intel_bo_is_shmem(struct drm_gem_object *obj);
|
|
bool intel_bo_is_protected(struct drm_gem_object *obj);
|
|
int intel_bo_key_check(struct drm_gem_object *obj);
|
|
int intel_bo_fb_mmap(struct drm_gem_object *obj, struct vm_area_struct *vma);
|
|
int intel_bo_read_from_page(struct drm_gem_object *obj, u64 offset, void *dst, int size);
|
|
|
|
struct intel_frontbuffer *intel_bo_frontbuffer_get(struct drm_gem_object *obj);
|
|
void intel_bo_frontbuffer_ref(struct intel_frontbuffer *front);
|
|
void intel_bo_frontbuffer_put(struct intel_frontbuffer *front);
|
|
void intel_bo_frontbuffer_flush_for_display(struct intel_frontbuffer *front);
|
|
|
|
void intel_bo_describe(struct seq_file *m, struct drm_gem_object *obj);
|
|
|
|
#endif /* __INTEL_BO__ */
|