Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * omap_plane.h -- OMAP DRM Plane
0004  *
0005  * Copyright (C) 2011 Texas Instruments
0006  * Author: Rob Clark <rob@ti.com>
0007  */
0008 
0009 #ifndef __OMAPDRM_PLANE_H__
0010 #define __OMAPDRM_PLANE_H__
0011 
0012 #include <linux/types.h>
0013 
0014 enum drm_plane_type;
0015 
0016 struct drm_device;
0017 struct drm_mode_object;
0018 struct drm_plane;
0019 
0020 struct drm_plane *omap_plane_init(struct drm_device *dev,
0021         int idx, enum drm_plane_type type,
0022         u32 possible_crtcs);
0023 void omap_plane_install_properties(struct drm_plane *plane,
0024         struct drm_mode_object *obj);
0025 bool is_omap_plane_dual_overlay(struct drm_plane_state *state);
0026 
0027 #endif /* __OMAPDRM_PLANE_H__ */