blob: 9732bff1911ba15f8d45e158350fb866fcd6274d [file] [log] [blame]
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02001/*
2 * rcar_du_plane.h -- R-Car Display Unit Planes
3 *
Laurent Pinchart36d50462014-02-06 18:13:52 +01004 * Copyright (C) 2013-2014 Renesas Electronics Corporation
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02005 *
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 *
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.
12 */
13
14#ifndef __RCAR_DU_PLANE_H__
15#define __RCAR_DU_PLANE_H__
16
Laurent Pinchartae425b62013-06-16 21:02:49 +020017#include <drm/drmP.h>
18#include <drm/drm_crtc.h>
19
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020020struct rcar_du_format_info;
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020021struct rcar_du_group;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020022
Laurent Pinchart917de182015-02-17 18:34:17 +020023/* The RCAR DU has 8 hardware planes, shared between primary and overlay planes.
24 * As using overlay planes requires at least one of the CRTCs being enabled, no
25 * more than 7 overlay planes can be available. We thus create 1 primary plane
26 * per CRTC and 7 overlay planes, for a total of up to 9 KMS planes.
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020027 */
Laurent Pinchart917de182015-02-17 18:34:17 +020028#define RCAR_DU_NUM_KMS_PLANES 9
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020029#define RCAR_DU_NUM_HW_PLANES 8
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020030
31struct rcar_du_plane {
Laurent Pinchart917de182015-02-17 18:34:17 +020032 struct drm_plane plane;
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020033 struct rcar_du_group *group;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020034};
35
Laurent Pinchart5ee5a812015-02-25 18:27:19 +020036static inline struct rcar_du_plane *to_rcar_plane(struct drm_plane *plane)
37{
38 return container_of(plane, struct rcar_du_plane, plane);
39}
40
Laurent Pinchart0855c682015-04-29 00:12:40 +030041/**
42 * struct rcar_du_plane_state - Driver-specific plane state
43 * @state: base DRM plane state
44 * @format: information about the pixel format used by the plane
45 * @hwindex: 0-based hardware plane index, -1 means unused
46 * @alpha: value of the plane alpha property
47 * @colorkey: value of the plane colorkey property
48 * @zpos: value of the plane zpos property
49 */
Laurent Pinchart4407cc02015-02-23 02:36:31 +020050struct rcar_du_plane_state {
51 struct drm_plane_state state;
52
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +020053 const struct rcar_du_format_info *format;
Laurent Pinchart0855c682015-04-29 00:12:40 +030054 int hwindex;
Laurent Pinchart5bfcbce2015-02-23 02:59:35 +020055
Laurent Pinchart4407cc02015-02-23 02:36:31 +020056 unsigned int alpha;
57 unsigned int colorkey;
58 unsigned int zpos;
59};
60
61static inline struct rcar_du_plane_state *
Laurent Pinchartec69a402015-04-29 00:48:17 +030062to_rcar_plane_state(struct drm_plane_state *state)
Laurent Pinchart4407cc02015-02-23 02:36:31 +020063{
64 return container_of(state, struct rcar_du_plane_state, state);
65}
66
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020067int rcar_du_planes_init(struct rcar_du_group *rgrp);
Laurent Pinchart7fe99fd2013-06-16 19:18:31 +020068
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020069void rcar_du_plane_setup(struct rcar_du_plane *plane);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020070
71#endif /* __RCAR_DU_PLANE_H__ */