drm/rockchip: vop: support overscan setting
[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 struct iommu_domain;
34
35 /*
36  * Rockchip drm private crtc funcs.
37  * @loader_protect: protect loader logo crtc's power
38  * @enable_vblank: enable crtc vblank irq.
39  * @disable_vblank: disable crtc vblank irq.
40  */
41 struct rockchip_crtc_funcs {
42         int (*loader_protect)(struct drm_crtc *crtc, bool on);
43         int (*enable_vblank)(struct drm_crtc *crtc);
44         void (*disable_vblank)(struct drm_crtc *crtc);
45         void (*wait_for_update)(struct drm_crtc *crtc);
46         void (*cancel_pending_vblank)(struct drm_crtc *crtc, struct drm_file *file_priv);
47         int (*debugfs_dump)(struct drm_crtc *crtc, struct seq_file *s);
48 };
49
50 struct drm_rockchip_subdrv {
51         struct list_head list;
52         struct device *dev;
53         struct drm_device *drm_dev;
54
55         int (*open)(struct drm_device *drm_dev, struct device *dev,
56                     struct drm_file *file);
57         void (*close)(struct drm_device *drm_dev, struct device *dev,
58                       struct drm_file *file);
59 };
60
61 struct rockchip_atomic_commit {
62         struct work_struct      work;
63         struct drm_atomic_state *state;
64         struct drm_device *dev;
65         struct mutex lock;
66 };
67
68 struct rockchip_crtc_state {
69         struct drm_crtc_state base;
70         int left_margin;
71         int right_margin;
72         int top_margin;
73         int bottom_margin;
74         int afbdc_win_format;
75         int afbdc_win_width;
76         int afbdc_win_height;
77         int afbdc_win_ptr;
78         int afbdc_win_id;
79         int afbdc_en;
80         int dsp_layer_sel;
81         int output_type;
82         int output_mode;
83         int bus_format;
84 };
85
86 #define to_rockchip_crtc_state(s) \
87                 container_of(s, struct rockchip_crtc_state, base)
88
89 /*
90  * Rockchip drm_file private structure.
91  *
92  * @gem_cpu_acquire_list: list of GEM objects we hold acquires on
93  */
94 struct rockchip_drm_file_private {
95         struct list_head                gem_cpu_acquire_list;
96         struct rockchip_drm_rga_private *rga_priv;
97 };
98
99 struct rockchip_logo {
100         struct sg_table *sgt;
101         struct drm_mm_node mm;
102         dma_addr_t dma_addr;
103         phys_addr_t start;
104         phys_addr_t size;
105         int count;
106 };
107
108 /*
109  * Rockchip drm private structure.
110  *
111  * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
112  * @num_pipe: number of pipes for this device.
113  * @cpu_fence_context: fence context used for CPU acquire/release
114  * @cpu_fence_seqno: fence sequence number
115  */
116 struct rockchip_drm_private {
117         struct rockchip_logo *logo;
118         struct drm_fb_helper *fbdev_helper;
119         struct drm_gem_object *fbdev_bo;
120         const struct rockchip_crtc_funcs *crtc_funcs[ROCKCHIP_MAX_CRTC];
121         struct drm_atomic_state *state;
122
123         struct rockchip_atomic_commit commit;
124         struct iommu_domain *domain;
125 #ifdef CONFIG_DRM_DMA_SYNC
126         unsigned int cpu_fence_context;
127         atomic_t cpu_fence_seqno;
128 #endif
129         /* protect drm_mm on multi-threads */
130         struct mutex mm_lock;
131         struct drm_mm mm;
132 };
133
134 void rockchip_drm_atomic_work(struct work_struct *work);
135 int rockchip_register_crtc_funcs(struct drm_crtc *crtc,
136                                  const struct rockchip_crtc_funcs *crtc_funcs);
137 void rockchip_unregister_crtc_funcs(struct drm_crtc *crtc);
138 int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
139                                    struct device *dev);
140 void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
141                                     struct device *dev);
142 int rockchip_drm_wait_line_flag(struct drm_crtc *crtc, unsigned int line_num,
143                                 unsigned int mstimeout);
144
145 int rockchip_drm_register_subdrv(struct drm_rockchip_subdrv *subdrv);
146 int rockchip_drm_unregister_subdrv(struct drm_rockchip_subdrv *subdrv);
147
148 #endif /* _ROCKCHIP_DRM_DRV_H_ */