As for display, the intent is to share the display code with the i915 driver so that there is maximum reuse there. We do this by recompiling i915/display code twice. Now that i915 has been adapted to support the Xe build, we can add the xe/display support. This initial work is a collaboration of many people and unfortunately this squashed patch won't fully honor the proper credits. But let's try to add a few from the squashed patches: Co-developed-by: Matthew Brost <matthew.brost@intel.com> Co-developed-by: Jani Nikula <jani.nikula@intel.com> Co-developed-by: Lucas De Marchi <lucas.demarchi@intel.com> Co-developed-by: Matt Roper <matthew.d.roper@intel.com> Co-developed-by: Mauro Carvalho Chehab <mchehab@kernel.org> Co-developed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Co-developed-by: Dave Airlie <airlied@redhat.com> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
24 lines
590 B
C
24 lines
590 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_FB_BO_H__
|
|
#define __INTEL_FB_BO_H__
|
|
|
|
struct drm_file;
|
|
struct drm_mode_fb_cmd2;
|
|
struct drm_i915_private;
|
|
struct intel_framebuffer;
|
|
struct xe_bo;
|
|
|
|
void intel_fb_bo_framebuffer_fini(struct xe_bo *bo);
|
|
int intel_fb_bo_framebuffer_init(struct intel_framebuffer *intel_fb,
|
|
struct xe_bo *bo,
|
|
struct drm_mode_fb_cmd2 *mode_cmd);
|
|
|
|
struct xe_bo *intel_fb_bo_lookup_valid_bo(struct drm_i915_private *i915,
|
|
struct drm_file *filp,
|
|
const struct drm_mode_fb_cmd2 *mode_cmd);
|
|
|
|
#endif
|