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 <drm/drmP.h> |
| 18 | #include <drm/drm_crtc.h> |
| 19 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 20 | struct rcar_du_format_info; |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 21 | struct rcar_du_group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 22 | |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 23 | /* 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 Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 27 | */ |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 28 | #define RCAR_DU_NUM_KMS_PLANES 9 |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 29 | #define RCAR_DU_NUM_HW_PLANES 8 |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 30 | |
Laurent Pinchart | af8ad96 | 2013-06-21 17:36:15 +0200 | [diff] [blame] | 31 | enum rcar_du_plane_source { |
| 32 | RCAR_DU_PLANE_MEMORY, |
| 33 | RCAR_DU_PLANE_VSPD0, |
| 34 | RCAR_DU_PLANE_VSPD1, |
| 35 | }; |
| 36 | |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 37 | struct rcar_du_plane { |
Laurent Pinchart | 917de18 | 2015-02-17 18:34:17 +0200 | [diff] [blame] | 38 | struct drm_plane plane; |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 39 | struct rcar_du_group *group; |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 40 | }; |
| 41 | |
Laurent Pinchart | 5ee5a81 | 2015-02-25 18:27:19 +0200 | [diff] [blame] | 42 | static inline struct rcar_du_plane *to_rcar_plane(struct drm_plane *plane) |
| 43 | { |
| 44 | return container_of(plane, struct rcar_du_plane, plane); |
| 45 | } |
| 46 | |
Laurent Pinchart | 0855c68 | 2015-04-29 00:12:40 +0300 | [diff] [blame] | 47 | /** |
| 48 | * struct rcar_du_plane_state - Driver-specific plane state |
| 49 | * @state: base DRM plane state |
| 50 | * @format: information about the pixel format used by the plane |
| 51 | * @hwindex: 0-based hardware plane index, -1 means unused |
| 52 | * @alpha: value of the plane alpha property |
| 53 | * @colorkey: value of the plane colorkey property |
| 54 | * @zpos: value of the plane zpos property |
| 55 | */ |
Laurent Pinchart | 4407cc0 | 2015-02-23 02:36:31 +0200 | [diff] [blame] | 56 | struct rcar_du_plane_state { |
| 57 | struct drm_plane_state state; |
| 58 | |
Laurent Pinchart | 5bfcbce | 2015-02-23 02:59:35 +0200 | [diff] [blame] | 59 | const struct rcar_du_format_info *format; |
Laurent Pinchart | 0855c68 | 2015-04-29 00:12:40 +0300 | [diff] [blame] | 60 | int hwindex; |
Laurent Pinchart | af8ad96 | 2013-06-21 17:36:15 +0200 | [diff] [blame] | 61 | enum rcar_du_plane_source source; |
Laurent Pinchart | 5bfcbce | 2015-02-23 02:59:35 +0200 | [diff] [blame] | 62 | |
Laurent Pinchart | 4407cc0 | 2015-02-23 02:36:31 +0200 | [diff] [blame] | 63 | unsigned int alpha; |
| 64 | unsigned int colorkey; |
| 65 | unsigned int zpos; |
| 66 | }; |
| 67 | |
| 68 | static inline struct rcar_du_plane_state * |
Laurent Pinchart | ec69a40 | 2015-04-29 00:48:17 +0300 | [diff] [blame] | 69 | to_rcar_plane_state(struct drm_plane_state *state) |
Laurent Pinchart | 4407cc0 | 2015-02-23 02:36:31 +0200 | [diff] [blame] | 70 | { |
| 71 | return container_of(state, struct rcar_du_plane_state, state); |
| 72 | } |
| 73 | |
Laurent Pinchart | ab334e1 | 2015-07-27 15:34:18 +0300 | [diff] [blame] | 74 | int rcar_du_atomic_check_planes(struct drm_device *dev, |
| 75 | struct drm_atomic_state *state); |
| 76 | |
Laurent Pinchart | cb2025d | 2013-06-16 21:01:02 +0200 | [diff] [blame] | 77 | int rcar_du_planes_init(struct rcar_du_group *rgrp); |
Laurent Pinchart | 7fe99fd | 2013-06-16 19:18:31 +0200 | [diff] [blame] | 78 | |
Laurent Pinchart | 6d62ef3 | 2015-09-07 17:14:58 +0300 | [diff] [blame] | 79 | void __rcar_du_plane_setup(struct rcar_du_group *rgrp, |
| 80 | const struct rcar_du_plane_state *state); |
| 81 | |
| 82 | static inline void rcar_du_plane_setup(struct rcar_du_plane *plane) |
| 83 | { |
| 84 | struct rcar_du_plane_state *state = |
| 85 | to_rcar_plane_state(plane->plane.state); |
| 86 | |
| 87 | return __rcar_du_plane_setup(plane->group, state); |
| 88 | } |
Laurent Pinchart | 4bf8e19 | 2013-06-19 13:54:11 +0200 | [diff] [blame] | 89 | |
| 90 | #endif /* __RCAR_DU_PLANE_H__ */ |