blob: 9372f69e1859ff96986b0cea5c795f3d3325c047 [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_DRV_H_
8#define _STI_DRV_H_
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +02009
10#include <drm/drmP.h>
11
12struct sti_compositor;
13struct sti_tvout;
14
15/**
16 * STI drm private structure
17 * This structure is stored as private in the drm_device
18 *
19 * @compo: compositor
20 * @plane_zorder_property: z-order property for CRTC planes
21 * @drm_dev: drm device
22 */
Vincent Abriou9e1f05b2015-07-31 11:32:34 +020023struct sti_private {
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020024 struct sti_compositor *compo;
25 struct drm_property *plane_zorder_property;
26 struct drm_device *drm_dev;
Benjamin Gaignardde4b00b2015-03-19 13:35:16 +010027
28 struct {
29 struct drm_atomic_state *state;
30 struct work_struct work;
31 struct mutex lock;
32 } commit;
Benjamin Gaignard9bbf86f2014-07-31 09:39:11 +020033};
34
35#endif