Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 1 | /* |
| 2 | * rcar_du_plane.h -- R-Car Display Unit Planes |
| 3 | * |
Laurent Pinchart | 36d5046 | 2014-02-06 18:13:52 +0100 | [diff] [blame] | 4 | * Copyright (C) 2013-2014 Renesas Electronics Corporation |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 5 | * |
| 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 Pinchart | ae425b6 | 2013-06-16 21:02:49 +0200 | [diff] [blame] | 17 | #include <linux/mutex.h> |
| 18 | |
| 19 | #include <drm/drmP.h> |
| 20 | #include <drm/drm_crtc.h> |
| 21 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 22 | struct rcar_du_format_info; |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 23 | struct rcar_du_group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 24 | |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 25 | /* The RCAR DU has 8 hardware planes, shared between primary and overlay planes. |
| 26 | * As using overlay planes requires at least one of the CRTCs being enabled, no |
| 27 | * more than 7 overlay planes can be available. We thus create 1 primary plane |
| 28 | * per CRTC and 7 overlay planes, for a total of up to 9 KMS planes. |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 29 | */ |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 30 | #define RCAR_DU_NUM_KMS_PLANES 9 |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 31 | #define RCAR_DU_NUM_HW_PLANES 8 |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 32 | |
| 33 | struct rcar_du_plane { |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 34 | struct drm_plane plane; |
| 35 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 36 | struct rcar_du_group *group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 37 | |
| 38 | int hwindex; /* 0-based, -1 means unused */ |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 39 | |
| 40 | const struct rcar_du_format_info *format; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 41 | }; |
| 42 | |
Laurent Pinchart | ae425b6 | 2013-06-16 21:02:49 +0200 | [diff] [blame] | 43 | struct rcar_du_planes { |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 44 | struct rcar_du_plane planes[RCAR_DU_NUM_KMS_PLANES]; |
Laurent Pinchart | ae425b6 | 2013-06-16 21:02:49 +0200 | [diff] [blame] | 45 | unsigned int free; |
| 46 | struct mutex lock; |
| 47 | |
| 48 | struct drm_property *alpha; |
| 49 | struct drm_property *colorkey; |
| 50 | struct drm_property *zpos; |
| 51 | }; |
| 52 | |
Laurent Pinchart | 4407cc0 | 2015-02-23 02:36:31 +0200 | [diff] [blame] | 53 | struct rcar_du_plane_state { |
| 54 | struct drm_plane_state state; |
| 55 | |
| 56 | unsigned int alpha; |
| 57 | unsigned int colorkey; |
| 58 | unsigned int zpos; |
| 59 | }; |
| 60 | |
| 61 | static inline struct rcar_du_plane_state * |
| 62 | to_rcar_du_plane_state(struct drm_plane_state *state) |
| 63 | { |
| 64 | return container_of(state, struct rcar_du_plane_state, state); |
| 65 | } |
| 66 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 67 | int rcar_du_planes_init(struct rcar_du_group *rgrp); |
Laurent Pinchart | 7fe99fd | 2013-06-16 19:18:31 +0200 | [diff] [blame] | 68 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 69 | void rcar_du_plane_setup(struct rcar_du_plane *plane); |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 70 | |
| 71 | #endif /* __RCAR_DU_PLANE_H__ */ |