summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/xlnx/zynqmp_kms.h
blob: 01be96b00e3fb6f49c1d6e50b1c3c96bc3de74bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * ZynqMP DisplayPort Subsystem - KMS API
 *
 * Copyright (C) 2017 - 2021 Xilinx, Inc.
 *
 * Authors:
 * - Hyun Woo Kwon <hyun.kwon@xilinx.com>
 * - Laurent Pinchart <laurent.pinchart@ideasonboard.com>
 */

#ifndef _ZYNQMP_KMS_H_
#define _ZYNQMP_KMS_H_

#include <drm/drm_crtc.h>
#include <drm/drm_device.h>
#include <drm/drm_encoder.h>
#include <drm/drm_plane.h>

#include "zynqmp_dpsub.h"

struct zynqmp_dpsub;

/**
 * struct zynqmp_dpsub - ZynqMP DisplayPort Subsystem DRM/KMS data
 * @dpsub: Backpointer to the DisplayPort subsystem
 * @drm: The DRM/KMS device
 * @planes: The DRM planes
 * @crtc: The DRM CRTC
 * @encoder: The dummy DRM encoder
 */
struct zynqmp_dpsub_drm {
	struct zynqmp_dpsub *dpsub;

	struct drm_device dev;
	struct drm_plane planes[ZYNQMP_DPSUB_NUM_LAYERS];
	struct drm_crtc crtc;
	struct drm_encoder encoder;
};

void zynqmp_dpsub_drm_handle_vblank(struct zynqmp_dpsub *dpsub);

int zynqmp_dpsub_drm_init(struct zynqmp_dpsub *dpsub);
void zynqmp_dpsub_drm_cleanup(struct zynqmp_dpsub *dpsub);

#endif /* _ZYNQMP_KMS_H_ */