2 * rcar_du_plane.h -- R-Car Display Unit Planes
4 * Copyright (C) 2013 Renesas 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_PLANE_H__
15 #define __RCAR_DU_PLANE_H__
17 #include <linux/mutex.h>
20 #include <drm/drm_crtc.h>
22 struct rcar_du_format_info
;
25 /* The RCAR DU has 8 hardware planes, shared between KMS planes and CRTCs. As
26 * using KMS planes requires at least one of the CRTCs being enabled, no more
27 * than 7 KMS planes can be available. We thus create 7 KMS planes and
28 * 9 software planes (one for each KMS planes and one for each CRTC).
31 #define RCAR_DU_NUM_KMS_PLANES 7
32 #define RCAR_DU_NUM_HW_PLANES 8
33 #define RCAR_DU_NUM_SW_PLANES 9
35 struct rcar_du_plane
{
36 struct rcar_du_group
*group
;
37 struct drm_crtc
*crtc
;
41 int hwindex
; /* 0-based, -1 means unused */
43 unsigned int colorkey
;
46 const struct rcar_du_format_info
*format
;
60 struct rcar_du_planes
{
61 struct rcar_du_plane planes
[RCAR_DU_NUM_SW_PLANES
];
65 struct drm_property
*alpha
;
66 struct drm_property
*colorkey
;
67 struct drm_property
*zpos
;
70 int rcar_du_planes_init(struct rcar_du_group
*rgrp
);
71 int rcar_du_planes_register(struct rcar_du_group
*rgrp
);
73 void rcar_du_plane_setup(struct rcar_du_plane
*plane
);
74 void rcar_du_plane_update_base(struct rcar_du_plane
*plane
);
75 void rcar_du_plane_compute_base(struct rcar_du_plane
*plane
,
76 struct drm_framebuffer
*fb
);
77 int rcar_du_plane_reserve(struct rcar_du_plane
*plane
,
78 const struct rcar_du_format_info
*format
);
79 void rcar_du_plane_release(struct rcar_du_plane
*plane
);
81 #endif /* __RCAR_DU_PLANE_H__ */