mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Make the intel_fb_bo.h interfaces operated purely in base drm_ types so that each driver (i915 and xe) doesn't have to know about each other, or the display stuff. v2: s/dev/drm/ (Jani) Reviewed-by: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20250206185533.32306-4-ville.syrjala@linux.intel.com
26 lines
612 B
C
26 lines
612 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_FB_BO_H__
|
|
#define __INTEL_FB_BO_H__
|
|
|
|
struct drm_device;
|
|
struct drm_file;
|
|
struct drm_framebuffer;
|
|
struct drm_gem_object;
|
|
struct drm_mode_fb_cmd2;
|
|
|
|
void intel_fb_bo_framebuffer_fini(struct drm_gem_object *obj);
|
|
|
|
int intel_fb_bo_framebuffer_init(struct drm_framebuffer *fb,
|
|
struct drm_gem_object *obj,
|
|
struct drm_mode_fb_cmd2 *mode_cmd);
|
|
|
|
struct drm_gem_object *
|
|
intel_fb_bo_lookup_valid_bo(struct drm_device *drm,
|
|
struct drm_file *filp,
|
|
const struct drm_mode_fb_cmd2 *user_mode_cmd);
|
|
|
|
#endif
|