163b6f0f3ad3b328a44f12984c3f374dfddbd162
[firefly-linux-kernel-4.4.55.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 /*
35  * Rockchip drm private crtc funcs.
36  * @enable_vblank: enable crtc vblank irq.
37  * @disable_vblank: disable crtc vblank irq.
38  */
39 struct 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
46 struct drm_rockchip_subdrv {
47         struct list_head list;
48         struct device *dev;
49         struct drm_device *drm_dev;
50
51         int (*open)(struct drm_device *drm_dev, struct device *dev,
52                     struct drm_file *file);
53         void (*close)(struct drm_device *drm_dev, struct device *dev,
54                       struct drm_file *file);
55 };
56
57 struct rockchip_atomic_commit {
58         struct work_struct      work;
59         struct drm_atomic_state *state;
60         struct drm_device *dev;
61         struct mutex lock;
62 };
63
64 struct rockchip_crtc_state {
65         struct drm_crtc_state base;
66         int dsp_layer_sel;
67         int output_type;
68         int output_mode;
69 };
70
71 #define to_rockchip_crtc_state(s) \
72                 container_of(s, struct rockchip_crtc_state, base)
73
74 /*
75  * Rockchip drm_file private structure.
76  *
77  * @gem_cpu_acquire_list: list of GEM objects we hold acquires on
78  */
79 struct rockchip_drm_file_private {
80         struct list_head                gem_cpu_acquire_list;
81         struct rockchip_drm_rga_private *rga_priv;
82 };
83
84 /*
85  * Rockchip drm private structure.
86  *
87  * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
88  * @num_pipe: number of pipes for this device.
89  * @cpu_fence_context: fence context used for CPU acquire/release
90  * @cpu_fence_seqno: fence sequence number
91  */
92 struct rockchip_drm_private {
93         struct drm_fb_helper fbdev_helper;
94         struct drm_gem_object *fbdev_bo;
95         const struct rockchip_crtc_funcs *crtc_funcs[ROCKCHIP_MAX_CRTC];
96         struct drm_atomic_state *state;
97
98         struct rockchip_atomic_commit commit;
99         struct iommu_domain *domain;
100 #ifdef CONFIG_DRM_DMA_SYNC
101         unsigned int cpu_fence_context;
102         atomic_t cpu_fence_seqno;
103 #endif
104 };
105
106 void rockchip_drm_atomic_work(struct work_struct *work);
107 int rockchip_register_crtc_funcs(struct drm_crtc *crtc,
108                                  const struct rockchip_crtc_funcs *crtc_funcs);
109 void rockchip_unregister_crtc_funcs(struct drm_crtc *crtc);
110 int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
111                                    struct device *dev);
112 void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
113                                     struct device *dev);
114
115 int rockchip_drm_register_subdrv(struct drm_rockchip_subdrv *subdrv);
116 int rockchip_drm_unregister_subdrv(struct drm_rockchip_subdrv *subdrv);
117
118 #endif /* _ROCKCHIP_DRM_DRV_H_ */