]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blob - drivers/gpu/drm/rockchip/rockchip_drm_drv.h
drm: Add name for DRM_DP_DUAL_MODE_LSPCON
[mirror_ubuntu-eoan-kernel.git] / drivers / gpu / drm / rockchip / rockchip_drm_drv.h
1 /*
2 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
3 * Author:Mark Yao <mark.yao@rock-chips.com>
4 *
5 * based on exynos_drm_drv.h
6 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17 #ifndef _ROCKCHIP_DRM_DRV_H
18 #define _ROCKCHIP_DRM_DRV_H
19
20 #include <drm/drm_fb_helper.h>
21 #include <drm/drm_atomic_helper.h>
22 #include <drm/drm_gem.h>
23
24 #include <linux/module.h>
25 #include <linux/component.h>
26
27 #define ROCKCHIP_MAX_FB_BUFFER 3
28 #define ROCKCHIP_MAX_CONNECTOR 2
29 #define ROCKCHIP_MAX_CRTC 2
30
31 struct drm_device;
32 struct drm_connector;
33
34 struct rockchip_crtc_state {
35 struct drm_crtc_state base;
36 int output_type;
37 int output_mode;
38 };
39 #define to_rockchip_crtc_state(s) \
40 container_of(s, struct rockchip_crtc_state, base)
41
42 /*
43 * Rockchip drm private structure.
44 *
45 * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
46 * @num_pipe: number of pipes for this device.
47 */
48 struct rockchip_drm_private {
49 struct drm_fb_helper fbdev_helper;
50 struct drm_gem_object *fbdev_bo;
51 struct drm_atomic_state *state;
52
53 struct list_head psr_list;
54 spinlock_t psr_list_lock;
55 };
56
57 int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
58 struct device *dev);
59 void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
60 struct device *dev);
61 int rockchip_drm_wait_line_flag(struct drm_crtc *crtc, unsigned int line_num,
62 unsigned int mstimeout);
63
64 #endif /* _ROCKCHIP_DRM_DRV_H_ */