Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / drivers / gpu / drm / rcar-du / rcar_du_plane.h
blob890321b4665d16d241af49f2a9c62e87982a8749
1 /*
2 * rcar_du_plane.h -- R-Car Display Unit Planes
4 * Copyright (C) 2013-2014 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_PLANE_H__
15 #define __RCAR_DU_PLANE_H__
17 #include <drm/drmP.h>
18 #include <drm/drm_crtc.h>
20 struct rcar_du_format_info;
21 struct rcar_du_group;
24 * The RCAR DU has 8 hardware planes, shared between primary and overlay planes.
25 * As using overlay planes requires at least one of the CRTCs being enabled, no
26 * more than 7 overlay planes can be available. We thus create 1 primary plane
27 * per CRTC and 7 overlay planes, for a total of up to 9 KMS planes.
29 #define RCAR_DU_NUM_KMS_PLANES 9
30 #define RCAR_DU_NUM_HW_PLANES 8
32 enum rcar_du_plane_source {
33 RCAR_DU_PLANE_MEMORY,
34 RCAR_DU_PLANE_VSPD0,
35 RCAR_DU_PLANE_VSPD1,
38 struct rcar_du_plane {
39 struct drm_plane plane;
40 struct rcar_du_group *group;
43 static inline struct rcar_du_plane *to_rcar_plane(struct drm_plane *plane)
45 return container_of(plane, struct rcar_du_plane, plane);
48 /**
49 * struct rcar_du_plane_state - Driver-specific plane state
50 * @state: base DRM plane state
51 * @format: information about the pixel format used by the plane
52 * @hwindex: 0-based hardware plane index, -1 means unused
53 * @alpha: value of the plane alpha property
54 * @colorkey: value of the plane colorkey property
56 struct rcar_du_plane_state {
57 struct drm_plane_state state;
59 const struct rcar_du_format_info *format;
60 int hwindex;
61 enum rcar_du_plane_source source;
63 unsigned int alpha;
64 unsigned int colorkey;
67 static inline struct rcar_du_plane_state *
68 to_rcar_plane_state(struct drm_plane_state *state)
70 return container_of(state, struct rcar_du_plane_state, state);
73 int rcar_du_atomic_check_planes(struct drm_device *dev,
74 struct drm_atomic_state *state);
76 int __rcar_du_plane_atomic_check(struct drm_plane *plane,
77 struct drm_plane_state *state,
78 const struct rcar_du_format_info **format);
80 int rcar_du_planes_init(struct rcar_du_group *rgrp);
82 void __rcar_du_plane_setup(struct rcar_du_group *rgrp,
83 const struct rcar_du_plane_state *state);
85 static inline void rcar_du_plane_setup(struct rcar_du_plane *plane)
87 struct rcar_du_plane_state *state =
88 to_rcar_plane_state(plane->plane.state);
90 return __rcar_du_plane_setup(plane->group, state);
93 #endif /* __RCAR_DU_PLANE_H__ */