mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-23 05:56:14 -04:00
Move the FB plane related functions from skl_universal_plane.c to intel_fb.c. Signed-off-by: Imre Deak <imre.deak@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210325214808.2071517-8-imre.deak@intel.com
22 lines
648 B
C
22 lines
648 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020-2021 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_FB_H__
|
|
#define __INTEL_FB_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct drm_framebuffer;
|
|
|
|
bool is_ccs_plane(const struct drm_framebuffer *fb, int plane);
|
|
bool is_gen12_ccs_plane(const struct drm_framebuffer *fb, int plane);
|
|
bool is_gen12_ccs_cc_plane(const struct drm_framebuffer *fb, int plane);
|
|
|
|
int main_to_ccs_plane(const struct drm_framebuffer *fb, int main_plane);
|
|
int skl_ccs_to_main_plane(const struct drm_framebuffer *fb, int ccs_plane);
|
|
int skl_main_to_aux_plane(const struct drm_framebuffer *fb, int main_plane);
|
|
|
|
#endif /* __INTEL_FB_H__ */
|