Loading...
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
31struct drm_device;
32struct drm_connector;
33
34/*
35 * Rockchip drm private crtc funcs.
36 * @enable_vblank: enable crtc vblank irq.
37 * @disable_vblank: disable crtc vblank irq.
38 */
39struct rockchip_crtc_funcs {
40 int (*enable_vblank)(struct drm_crtc *crtc);
41 void (*disable_vblank)(struct drm_crtc *crtc);
42 void (*wait_for_update)(struct drm_crtc *crtc);
43 void (*cancel_pending_vblank)(struct drm_crtc *crtc, struct drm_file *file_priv);
44};
45
46struct rockchip_atomic_commit {
47 struct work_struct work;
48 struct drm_atomic_state *state;
49 struct drm_device *dev;
50 struct mutex lock;
51};
52
53/*
54 * Rockchip drm private structure.
55 *
56 * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
57 * @num_pipe: number of pipes for this device.
58 */
59struct rockchip_drm_private {
60 struct drm_fb_helper fbdev_helper;
61 struct drm_gem_object *fbdev_bo;
62 const struct rockchip_crtc_funcs *crtc_funcs[ROCKCHIP_MAX_CRTC];
63
64 struct rockchip_atomic_commit commit;
65};
66
67void rockchip_drm_atomic_work(struct work_struct *work);
68int rockchip_register_crtc_funcs(struct drm_crtc *crtc,
69 const struct rockchip_crtc_funcs *crtc_funcs);
70void rockchip_unregister_crtc_funcs(struct drm_crtc *crtc);
71int rockchip_drm_crtc_mode_config(struct drm_crtc *crtc, int connector_type,
72 int out_mode);
73int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
74 struct device *dev);
75void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
76 struct device *dev);
77#endif /* _ROCKCHIP_DRM_DRV_H_ */
1/* SPDX-License-Identifier: GPL-2.0-only */
2/*
3 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
4 * Author:Mark Yao <mark.yao@rock-chips.com>
5 *
6 * based on exynos_drm_drv.h
7 */
8
9#ifndef _ROCKCHIP_DRM_DRV_H
10#define _ROCKCHIP_DRM_DRV_H
11
12#include <drm/drm_fb_helper.h>
13#include <drm/drm_atomic_helper.h>
14#include <drm/drm_gem.h>
15
16#include <linux/module.h>
17#include <linux/component.h>
18
19#define ROCKCHIP_MAX_FB_BUFFER 3
20#define ROCKCHIP_MAX_CONNECTOR 2
21#define ROCKCHIP_MAX_CRTC 2
22
23struct drm_device;
24struct drm_connector;
25struct iommu_domain;
26
27struct rockchip_crtc_state {
28 struct drm_crtc_state base;
29 int output_type;
30 int output_mode;
31 int output_bpc;
32 int output_flags;
33 bool enable_afbc;
34};
35#define to_rockchip_crtc_state(s) \
36 container_of(s, struct rockchip_crtc_state, base)
37
38/*
39 * Rockchip drm private structure.
40 *
41 * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
42 * @num_pipe: number of pipes for this device.
43 * @mm_lock: protect drm_mm on multi-threads.
44 */
45struct rockchip_drm_private {
46 struct drm_fb_helper fbdev_helper;
47 struct drm_gem_object *fbdev_bo;
48 struct iommu_domain *domain;
49 struct mutex mm_lock;
50 struct drm_mm mm;
51 struct list_head psr_list;
52 struct mutex psr_list_lock;
53};
54
55int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
56 struct device *dev);
57void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
58 struct device *dev);
59int rockchip_drm_wait_vact_end(struct drm_crtc *crtc, unsigned int mstimeout);
60
61int rockchip_drm_endpoint_is_subdriver(struct device_node *ep);
62extern struct platform_driver cdn_dp_driver;
63extern struct platform_driver dw_hdmi_rockchip_pltfm_driver;
64extern struct platform_driver dw_mipi_dsi_rockchip_driver;
65extern struct platform_driver inno_hdmi_driver;
66extern struct platform_driver rockchip_dp_driver;
67extern struct platform_driver rockchip_lvds_driver;
68extern struct platform_driver vop_platform_driver;
69extern struct platform_driver rk3066_hdmi_driver;
70#endif /* _ROCKCHIP_DRM_DRV_H_ */