2 * rcar_du_vsp.h -- R-Car Display Unit VSP-Based Compositor
4 * Copyright (C) 2015 Renesas Electronics Corporation
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #ifndef __RCAR_DU_VSP_H__
15 #define __RCAR_DU_VSP_H__
18 #include <drm/drm_crtc.h>
20 struct rcar_du_format_info
;
23 struct rcar_du_vsp_plane
{
24 struct drm_plane plane
;
25 struct rcar_du_vsp
*vsp
;
32 struct rcar_du_device
*dev
;
33 struct rcar_du_vsp_plane
*planes
;
34 unsigned int num_planes
;
37 static inline struct rcar_du_vsp_plane
*to_rcar_vsp_plane(struct drm_plane
*p
)
39 return container_of(p
, struct rcar_du_vsp_plane
, plane
);
43 * struct rcar_du_vsp_plane_state - Driver-specific plane state
44 * @state: base DRM plane state
45 * @format: information about the pixel format used by the plane
46 * @sg_tables: scatter-gather tables for the frame buffer memory
47 * @alpha: value of the plane alpha property
48 * @zpos: value of the plane zpos property
50 struct rcar_du_vsp_plane_state
{
51 struct drm_plane_state state
;
53 const struct rcar_du_format_info
*format
;
54 struct sg_table sg_tables
[3];
60 static inline struct rcar_du_vsp_plane_state
*
61 to_rcar_vsp_plane_state(struct drm_plane_state
*state
)
63 return container_of(state
, struct rcar_du_vsp_plane_state
, state
);
66 #ifdef CONFIG_DRM_RCAR_VSP
67 int rcar_du_vsp_init(struct rcar_du_vsp
*vsp
, struct device_node
*np
,
69 void rcar_du_vsp_enable(struct rcar_du_crtc
*crtc
);
70 void rcar_du_vsp_disable(struct rcar_du_crtc
*crtc
);
71 void rcar_du_vsp_atomic_begin(struct rcar_du_crtc
*crtc
);
72 void rcar_du_vsp_atomic_flush(struct rcar_du_crtc
*crtc
);
74 static inline int rcar_du_vsp_init(struct rcar_du_vsp
*vsp
,
75 struct device_node
*np
,
80 static inline void rcar_du_vsp_enable(struct rcar_du_crtc
*crtc
) { };
81 static inline void rcar_du_vsp_disable(struct rcar_du_crtc
*crtc
) { };
82 static inline void rcar_du_vsp_atomic_begin(struct rcar_du_crtc
*crtc
) { };
83 static inline void rcar_du_vsp_atomic_flush(struct rcar_du_crtc
*crtc
) { };
86 #endif /* __RCAR_DU_VSP_H__ */