]> git.ipfire.org Git - thirdparty/kernel/stable.git/blob - drivers/gpu/drm/rockchip/rockchip_drm_fb.c
Merge branch 'drm-next-5.1' of git://people.freedesktop.org/~agd5f/linux into drm...
[thirdparty/kernel/stable.git] / drivers / gpu / drm / rockchip / rockchip_drm_fb.c
1 /*
2 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
3 * Author:Mark Yao <mark.yao@rock-chips.com>
4 *
5 * This software is licensed under the terms of the GNU General Public
6 * License version 2, as published by the Free Software Foundation, and
7 * may be copied, distributed, and modified under those terms.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15 #include <linux/kernel.h>
16 #include <drm/drm.h>
17 #include <drm/drmP.h>
18 #include <drm/drm_atomic.h>
19 #include <drm/drm_fb_helper.h>
20 #include <drm/drm_gem_framebuffer_helper.h>
21 #include <drm/drm_probe_helper.h>
22
23 #include "rockchip_drm_drv.h"
24 #include "rockchip_drm_fb.h"
25 #include "rockchip_drm_gem.h"
26 #include "rockchip_drm_psr.h"
27
28 static int rockchip_drm_fb_dirty(struct drm_framebuffer *fb,
29 struct drm_file *file,
30 unsigned int flags, unsigned int color,
31 struct drm_clip_rect *clips,
32 unsigned int num_clips)
33 {
34 rockchip_drm_psr_flush_all(fb->dev);
35 return 0;
36 }
37
38 static const struct drm_framebuffer_funcs rockchip_drm_fb_funcs = {
39 .destroy = drm_gem_fb_destroy,
40 .create_handle = drm_gem_fb_create_handle,
41 .dirty = rockchip_drm_fb_dirty,
42 };
43
44 static struct drm_framebuffer *
45 rockchip_fb_alloc(struct drm_device *dev, const struct drm_mode_fb_cmd2 *mode_cmd,
46 struct drm_gem_object **obj, unsigned int num_planes)
47 {
48 struct drm_framebuffer *fb;
49 int ret;
50 int i;
51
52 fb = kzalloc(sizeof(*fb), GFP_KERNEL);
53 if (!fb)
54 return ERR_PTR(-ENOMEM);
55
56 drm_helper_mode_fill_fb_struct(dev, fb, mode_cmd);
57
58 for (i = 0; i < num_planes; i++)
59 fb->obj[i] = obj[i];
60
61 ret = drm_framebuffer_init(dev, fb, &rockchip_drm_fb_funcs);
62 if (ret) {
63 DRM_DEV_ERROR(dev->dev,
64 "Failed to initialize framebuffer: %d\n",
65 ret);
66 kfree(fb);
67 return ERR_PTR(ret);
68 }
69
70 return fb;
71 }
72
73 static struct drm_framebuffer *
74 rockchip_user_fb_create(struct drm_device *dev, struct drm_file *file_priv,
75 const struct drm_mode_fb_cmd2 *mode_cmd)
76 {
77 struct drm_framebuffer *fb;
78 struct drm_gem_object *objs[ROCKCHIP_MAX_FB_BUFFER];
79 struct drm_gem_object *obj;
80 unsigned int hsub;
81 unsigned int vsub;
82 int num_planes;
83 int ret;
84 int i;
85
86 hsub = drm_format_horz_chroma_subsampling(mode_cmd->pixel_format);
87 vsub = drm_format_vert_chroma_subsampling(mode_cmd->pixel_format);
88 num_planes = min(drm_format_num_planes(mode_cmd->pixel_format),
89 ROCKCHIP_MAX_FB_BUFFER);
90
91 for (i = 0; i < num_planes; i++) {
92 unsigned int width = mode_cmd->width / (i ? hsub : 1);
93 unsigned int height = mode_cmd->height / (i ? vsub : 1);
94 unsigned int min_size;
95
96 obj = drm_gem_object_lookup(file_priv, mode_cmd->handles[i]);
97 if (!obj) {
98 DRM_DEV_ERROR(dev->dev,
99 "Failed to lookup GEM object\n");
100 ret = -ENXIO;
101 goto err_gem_object_unreference;
102 }
103
104 min_size = (height - 1) * mode_cmd->pitches[i] +
105 mode_cmd->offsets[i] +
106 width * drm_format_plane_cpp(mode_cmd->pixel_format, i);
107
108 if (obj->size < min_size) {
109 drm_gem_object_put_unlocked(obj);
110 ret = -EINVAL;
111 goto err_gem_object_unreference;
112 }
113 objs[i] = obj;
114 }
115
116 fb = rockchip_fb_alloc(dev, mode_cmd, objs, i);
117 if (IS_ERR(fb)) {
118 ret = PTR_ERR(fb);
119 goto err_gem_object_unreference;
120 }
121
122 return fb;
123
124 err_gem_object_unreference:
125 for (i--; i >= 0; i--)
126 drm_gem_object_put_unlocked(objs[i]);
127 return ERR_PTR(ret);
128 }
129
130 static void
131 rockchip_atomic_helper_commit_tail_rpm(struct drm_atomic_state *old_state)
132 {
133 struct drm_device *dev = old_state->dev;
134
135 rockchip_drm_psr_inhibit_get_state(old_state);
136
137 drm_atomic_helper_commit_modeset_disables(dev, old_state);
138
139 drm_atomic_helper_commit_modeset_enables(dev, old_state);
140
141 drm_atomic_helper_commit_planes(dev, old_state,
142 DRM_PLANE_COMMIT_ACTIVE_ONLY);
143
144 rockchip_drm_psr_inhibit_put_state(old_state);
145
146 drm_atomic_helper_commit_hw_done(old_state);
147
148 drm_atomic_helper_wait_for_vblanks(dev, old_state);
149
150 drm_atomic_helper_cleanup_planes(dev, old_state);
151 }
152
153 static const struct drm_mode_config_helper_funcs rockchip_mode_config_helpers = {
154 .atomic_commit_tail = rockchip_atomic_helper_commit_tail_rpm,
155 };
156
157 static const struct drm_mode_config_funcs rockchip_drm_mode_config_funcs = {
158 .fb_create = rockchip_user_fb_create,
159 .output_poll_changed = drm_fb_helper_output_poll_changed,
160 .atomic_check = drm_atomic_helper_check,
161 .atomic_commit = drm_atomic_helper_commit,
162 };
163
164 struct drm_framebuffer *
165 rockchip_drm_framebuffer_init(struct drm_device *dev,
166 const struct drm_mode_fb_cmd2 *mode_cmd,
167 struct drm_gem_object *obj)
168 {
169 struct drm_framebuffer *fb;
170
171 fb = rockchip_fb_alloc(dev, mode_cmd, &obj, 1);
172 if (IS_ERR(fb))
173 return ERR_CAST(fb);
174
175 return fb;
176 }
177
178 void rockchip_drm_mode_config_init(struct drm_device *dev)
179 {
180 dev->mode_config.min_width = 0;
181 dev->mode_config.min_height = 0;
182
183 /*
184 * set max width and height as default value(4096x4096).
185 * this value would be used to check framebuffer size limitation
186 * at drm_mode_addfb().
187 */
188 dev->mode_config.max_width = 4096;
189 dev->mode_config.max_height = 4096;
190
191 dev->mode_config.funcs = &rockchip_drm_mode_config_funcs;
192 dev->mode_config.helper_private = &rockchip_mode_config_helpers;
193 }