blob: 86f1e6fc81b968c4b92d811866f074ebc53c0f87 [file] [log] [blame]
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +02001/*
2 * Copyright (C) STMicroelectronics SA 2014
3 * Author: Benjamin Gaignard <benjamin.gaignard@st.com> for STMicroelectronics.
4 * License terms: GNU General Public License (GPL), version 2
5 */
6
Vincent Abriou9e1f05b2015-07-31 11:32:34 +02007#ifndef _STI_PLANE_H_
8#define _STI_PLANE_H_
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +02009
10#include <drm/drmP.h>
Vincent Abriou29d1dc62015-08-03 14:22:16 +020011#include <drm/drm_atomic_helper.h>
12#include <drm/drm_plane_helper.h>
13
14extern struct drm_plane_funcs sti_plane_helpers_funcs;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020015
Vincent Abriou871bcdf2015-07-31 11:32:13 +020016#define to_sti_plane(x) container_of(x, struct sti_plane, drm_plane)
17
18#define STI_PLANE_TYPE_SHIFT 8
19#define STI_PLANE_TYPE_MASK (~((1 << STI_PLANE_TYPE_SHIFT) - 1))
20
21enum sti_plane_type {
22 STI_GDP = 1 << STI_PLANE_TYPE_SHIFT,
23 STI_VDP = 2 << STI_PLANE_TYPE_SHIFT,
24 STI_CUR = 3 << STI_PLANE_TYPE_SHIFT,
25 STI_BCK = 4 << STI_PLANE_TYPE_SHIFT
26};
27
28enum sti_plane_id_of_type {
29 STI_ID_0 = 0,
30 STI_ID_1 = 1,
31 STI_ID_2 = 2,
32 STI_ID_3 = 3
33};
34
35enum sti_plane_desc {
36 STI_GDP_0 = STI_GDP | STI_ID_0,
37 STI_GDP_1 = STI_GDP | STI_ID_1,
38 STI_GDP_2 = STI_GDP | STI_ID_2,
39 STI_GDP_3 = STI_GDP | STI_ID_3,
40 STI_HQVDP_0 = STI_VDP | STI_ID_0,
41 STI_CURSOR = STI_CUR,
42 STI_BACK = STI_BCK
43};
44
Vincent Abriou29d1dc62015-08-03 14:22:16 +020045enum sti_plane_status {
46 STI_PLANE_READY,
47 STI_PLANE_UPDATED,
48 STI_PLANE_DISABLING,
49 STI_PLANE_FLUSHING,
50 STI_PLANE_DISABLED,
51};
52
Vincent Abriou871bcdf2015-07-31 11:32:13 +020053/**
54 * STI plane structure
55 *
56 * @plane: drm plane it is bound to (if any)
Vincent Abriou871bcdf2015-07-31 11:32:13 +020057 * @desc: plane type & id
Vincent Abriou29d1dc62015-08-03 14:22:16 +020058 * @status: to know the status of the plane
Vincent Abriou871bcdf2015-07-31 11:32:13 +020059 * @zorder: plane z-order
Vincent Abriou871bcdf2015-07-31 11:32:13 +020060 */
61struct sti_plane {
62 struct drm_plane drm_plane;
Vincent Abriou871bcdf2015-07-31 11:32:13 +020063 enum sti_plane_desc desc;
Vincent Abriou29d1dc62015-08-03 14:22:16 +020064 enum sti_plane_status status;
Vincent Abriou871bcdf2015-07-31 11:32:13 +020065 int zorder;
Vincent Abriou871bcdf2015-07-31 11:32:13 +020066};
67
Vincent Abriou871bcdf2015-07-31 11:32:13 +020068const char *sti_plane_to_str(struct sti_plane *plane);
Vincent Abriou29d1dc62015-08-03 14:22:16 +020069void sti_plane_init_property(struct sti_plane *plane,
70 enum drm_plane_type type);
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020071#endif