blob: 0cd827e11fa20d8af7f038cecb8ea12465014523 [file] [log] [blame]
Dave Airlie312fec12012-02-29 13:40:04 +00001/*
2 * Copyright 2012 Red Hat Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sub license, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
15 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
16 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
17 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
18 * USE OR OTHER DEALINGS IN THE SOFTWARE.
19 *
20 * The above copyright notice and this permission notice (including the
21 * next paragraph) shall be included in all copies or substantial portions
22 * of the Software.
23 *
24 */
25/*
26 * Authors: Dave Airlie <airlied@redhat.com>
27 */
28#include <linux/module.h>
29#include <linux/kernel.h>
30#include <linux/errno.h>
31#include <linux/string.h>
32#include <linux/mm.h>
33#include <linux/tty.h>
34#include <linux/sysrq.h>
35#include <linux/delay.h>
Dave Airlie312fec12012-02-29 13:40:04 +000036#include <linux/init.h>
37
38
David Howells760285e2012-10-02 18:01:07 +010039#include <drm/drmP.h>
40#include <drm/drm_crtc.h>
41#include <drm/drm_fb_helper.h>
Daniel Vetter76a39db2013-01-20 23:12:54 +010042#include <drm/drm_crtc_helper.h>
Dave Airlie312fec12012-02-29 13:40:04 +000043#include "ast_drv.h"
44
45static void ast_dirty_update(struct ast_fbdev *afbdev,
46 int x, int y, int width, int height)
47{
48 int i;
49 struct drm_gem_object *obj;
50 struct ast_bo *bo;
51 int src_offset, dst_offset;
Ville Syrjälä272725c2016-12-14 23:32:20 +020052 int bpp = afbdev->afb.base.format->cpp[0];
Maarten Lankhorst8ade2b82013-06-27 13:38:26 +020053 int ret = -EBUSY;
Dave Airlie312fec12012-02-29 13:40:04 +000054 bool unmap = false;
Dave Airlie306373b2013-05-02 02:40:25 -040055 bool store_for_later = false;
56 int x2, y2;
57 unsigned long flags;
Dave Airlie312fec12012-02-29 13:40:04 +000058
59 obj = afbdev->afb.obj;
60 bo = gem_to_ast_bo(obj);
61
Dave Airlie306373b2013-05-02 02:40:25 -040062 /*
63 * try and reserve the BO, if we fail with busy
64 * then the BO is being moved and we should
65 * store up the damage until later.
66 */
Dave Airlie8b7ad1b2014-02-05 14:47:45 +100067 if (drm_can_sleep())
Maarten Lankhorst8ade2b82013-06-27 13:38:26 +020068 ret = ast_bo_reserve(bo, true);
Dave Airlie312fec12012-02-29 13:40:04 +000069 if (ret) {
Dave Airlie306373b2013-05-02 02:40:25 -040070 if (ret != -EBUSY)
71 return;
72
73 store_for_later = true;
74 }
75
76 x2 = x + width - 1;
77 y2 = y + height - 1;
78 spin_lock_irqsave(&afbdev->dirty_lock, flags);
79
80 if (afbdev->y1 < y)
81 y = afbdev->y1;
82 if (afbdev->y2 > y2)
83 y2 = afbdev->y2;
84 if (afbdev->x1 < x)
85 x = afbdev->x1;
86 if (afbdev->x2 > x2)
87 x2 = afbdev->x2;
88
89 if (store_for_later) {
90 afbdev->x1 = x;
91 afbdev->x2 = x2;
92 afbdev->y1 = y;
93 afbdev->y2 = y2;
94 spin_unlock_irqrestore(&afbdev->dirty_lock, flags);
Dave Airlie312fec12012-02-29 13:40:04 +000095 return;
96 }
97
Dave Airlie306373b2013-05-02 02:40:25 -040098 afbdev->x1 = afbdev->y1 = INT_MAX;
99 afbdev->x2 = afbdev->y2 = 0;
100 spin_unlock_irqrestore(&afbdev->dirty_lock, flags);
101
Dave Airlie312fec12012-02-29 13:40:04 +0000102 if (!bo->kmap.virtual) {
103 ret = ttm_bo_kmap(&bo->bo, 0, bo->bo.num_pages, &bo->kmap);
104 if (ret) {
105 DRM_ERROR("failed to kmap fb updates\n");
106 ast_bo_unreserve(bo);
107 return;
108 }
109 unmap = true;
110 }
Dave Airlie306373b2013-05-02 02:40:25 -0400111 for (i = y; i <= y2; i++) {
Dave Airlie312fec12012-02-29 13:40:04 +0000112 /* assume equal stride for now */
113 src_offset = dst_offset = i * afbdev->afb.base.pitches[0] + (x * bpp);
Dave Airlie306373b2013-05-02 02:40:25 -0400114 memcpy_toio(bo->kmap.virtual + src_offset, afbdev->sysram + src_offset, (x2 - x + 1) * bpp);
Dave Airlie312fec12012-02-29 13:40:04 +0000115
116 }
117 if (unmap)
118 ttm_bo_kunmap(&bo->kmap);
119
120 ast_bo_unreserve(bo);
121}
122
123static void ast_fillrect(struct fb_info *info,
124 const struct fb_fillrect *rect)
125{
126 struct ast_fbdev *afbdev = info->par;
Archit Taneja990e8442015-07-22 14:58:05 +0530127 drm_fb_helper_sys_fillrect(info, rect);
Dave Airlie312fec12012-02-29 13:40:04 +0000128 ast_dirty_update(afbdev, rect->dx, rect->dy, rect->width,
129 rect->height);
130}
131
132static void ast_copyarea(struct fb_info *info,
133 const struct fb_copyarea *area)
134{
135 struct ast_fbdev *afbdev = info->par;
Archit Taneja990e8442015-07-22 14:58:05 +0530136 drm_fb_helper_sys_copyarea(info, area);
Dave Airlie312fec12012-02-29 13:40:04 +0000137 ast_dirty_update(afbdev, area->dx, area->dy, area->width,
138 area->height);
139}
140
141static void ast_imageblit(struct fb_info *info,
142 const struct fb_image *image)
143{
144 struct ast_fbdev *afbdev = info->par;
Archit Taneja990e8442015-07-22 14:58:05 +0530145 drm_fb_helper_sys_imageblit(info, image);
Dave Airlie312fec12012-02-29 13:40:04 +0000146 ast_dirty_update(afbdev, image->dx, image->dy, image->width,
147 image->height);
148}
149
150static struct fb_ops astfb_ops = {
151 .owner = THIS_MODULE,
152 .fb_check_var = drm_fb_helper_check_var,
153 .fb_set_par = drm_fb_helper_set_par,
154 .fb_fillrect = ast_fillrect,
155 .fb_copyarea = ast_copyarea,
156 .fb_imageblit = ast_imageblit,
157 .fb_pan_display = drm_fb_helper_pan_display,
158 .fb_blank = drm_fb_helper_blank,
159 .fb_setcmap = drm_fb_helper_setcmap,
160 .fb_debug_enter = drm_fb_helper_debug_enter,
161 .fb_debug_leave = drm_fb_helper_debug_leave,
162};
163
164static int astfb_create_object(struct ast_fbdev *afbdev,
Ville Syrjälä1eb83452015-11-11 19:11:29 +0200165 const struct drm_mode_fb_cmd2 *mode_cmd,
Dave Airlie312fec12012-02-29 13:40:04 +0000166 struct drm_gem_object **gobj_p)
167{
168 struct drm_device *dev = afbdev->helper.dev;
Dave Airlie312fec12012-02-29 13:40:04 +0000169 u32 size;
170 struct drm_gem_object *gobj;
Dave Airlie312fec12012-02-29 13:40:04 +0000171 int ret = 0;
Dave Airlie312fec12012-02-29 13:40:04 +0000172
173 size = mode_cmd->pitches[0] * mode_cmd->height;
174 ret = ast_gem_create(dev, size, true, &gobj);
175 if (ret)
176 return ret;
177
178 *gobj_p = gobj;
179 return ret;
180}
181
Daniel Vettercd5428a2013-01-21 23:42:49 +0100182static int astfb_create(struct drm_fb_helper *helper,
Dave Airlie312fec12012-02-29 13:40:04 +0000183 struct drm_fb_helper_surface_size *sizes)
184{
Fabian Frederick0d634f62014-09-14 18:40:21 +0200185 struct ast_fbdev *afbdev =
186 container_of(helper, struct ast_fbdev, helper);
Dave Airlie312fec12012-02-29 13:40:04 +0000187 struct drm_device *dev = afbdev->helper.dev;
188 struct drm_mode_fb_cmd2 mode_cmd;
189 struct drm_framebuffer *fb;
190 struct fb_info *info;
191 int size, ret;
Dave Airlie312fec12012-02-29 13:40:04 +0000192 void *sysram;
193 struct drm_gem_object *gobj = NULL;
194 struct ast_bo *bo = NULL;
195 mode_cmd.width = sizes->surface_width;
196 mode_cmd.height = sizes->surface_height;
197 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7)/8);
198
199 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
200 sizes->surface_depth);
201
202 size = mode_cmd.pitches[0] * mode_cmd.height;
203
204 ret = astfb_create_object(afbdev, &mode_cmd, &gobj);
205 if (ret) {
206 DRM_ERROR("failed to create fbcon backing object %d\n", ret);
207 return ret;
208 }
209 bo = gem_to_ast_bo(gobj);
210
211 sysram = vmalloc(size);
212 if (!sysram)
213 return -ENOMEM;
214
Archit Taneja990e8442015-07-22 14:58:05 +0530215 info = drm_fb_helper_alloc_fbi(helper);
216 if (IS_ERR(info)) {
217 ret = PTR_ERR(info);
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100218 goto out;
Dave Airlie312fec12012-02-29 13:40:04 +0000219 }
220 info->par = afbdev;
221
222 ret = ast_framebuffer_init(dev, &afbdev->afb, &mode_cmd, gobj);
223 if (ret)
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100224 goto out;
Dave Airlie312fec12012-02-29 13:40:04 +0000225
226 afbdev->sysram = sysram;
227 afbdev->size = size;
228
229 fb = &afbdev->afb.base;
230 afbdev->helper.fb = fb;
Dave Airlie312fec12012-02-29 13:40:04 +0000231
232 strcpy(info->fix.id, "astdrmfb");
233
Dave Airlie312fec12012-02-29 13:40:04 +0000234 info->fbops = &astfb_ops;
235
Dave Airlie312fec12012-02-29 13:40:04 +0000236 info->apertures->ranges[0].base = pci_resource_start(dev->pdev, 0);
237 info->apertures->ranges[0].size = pci_resource_len(dev->pdev, 0);
238
Ville Syrjäläb00c6002016-12-14 23:31:35 +0200239 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth);
Dave Airlie312fec12012-02-29 13:40:04 +0000240 drm_fb_helper_fill_var(info, &afbdev->helper, sizes->fb_width, sizes->fb_height);
241
242 info->screen_base = sysram;
243 info->screen_size = size;
244
245 info->pixmap.flags = FB_PIXMAP_SYSTEM;
246
247 DRM_DEBUG_KMS("allocated %dx%d\n",
248 fb->width, fb->height);
249
250 return 0;
Archit Taneja990e8442015-07-22 14:58:05 +0530251
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100252out:
Andrew Donnellan554dd692016-11-14 14:03:59 +1100253 vfree(sysram);
Dave Airlie312fec12012-02-29 13:40:04 +0000254 return ret;
255}
256
Thierry Reding3a493872014-06-27 17:19:23 +0200257static const struct drm_fb_helper_funcs ast_fb_helper_funcs = {
Daniel Vettercd5428a2013-01-21 23:42:49 +0100258 .fb_probe = astfb_create,
Dave Airlie312fec12012-02-29 13:40:04 +0000259};
260
261static void ast_fbdev_destroy(struct drm_device *dev,
262 struct ast_fbdev *afbdev)
263{
Dave Airlie312fec12012-02-29 13:40:04 +0000264 struct ast_framebuffer *afb = &afbdev->afb;
Archit Taneja990e8442015-07-22 14:58:05 +0530265
266 drm_fb_helper_unregister_fbi(&afbdev->helper);
Dave Airlie312fec12012-02-29 13:40:04 +0000267
268 if (afb->obj) {
Cihangir Akturk1feba032017-08-11 15:32:50 +0300269 drm_gem_object_put_unlocked(afb->obj);
Dave Airlie312fec12012-02-29 13:40:04 +0000270 afb->obj = NULL;
271 }
272 drm_fb_helper_fini(&afbdev->helper);
273
274 vfree(afbdev->sysram);
Daniel Vetter36206362012-12-10 20:42:17 +0100275 drm_framebuffer_unregister_private(&afb->base);
Dave Airlie312fec12012-02-29 13:40:04 +0000276 drm_framebuffer_cleanup(&afb->base);
277}
278
279int ast_fbdev_init(struct drm_device *dev)
280{
281 struct ast_private *ast = dev->dev_private;
282 struct ast_fbdev *afbdev;
283 int ret;
284
285 afbdev = kzalloc(sizeof(struct ast_fbdev), GFP_KERNEL);
286 if (!afbdev)
287 return -ENOMEM;
288
289 ast->fbdev = afbdev;
Dave Airlie306373b2013-05-02 02:40:25 -0400290 spin_lock_init(&afbdev->dirty_lock);
Thierry Reding10a23102014-06-27 17:19:24 +0200291
292 drm_fb_helper_prepare(dev, &afbdev->helper, &ast_fb_helper_funcs);
293
Gabriel Krisman Bertazie4563f62017-02-02 14:26:40 -0200294 ret = drm_fb_helper_init(dev, &afbdev->helper, 1);
Thierry Reding01934c22014-12-19 11:21:32 +0100295 if (ret)
296 goto free;
Dave Airlie312fec12012-02-29 13:40:04 +0000297
Thierry Reding01934c22014-12-19 11:21:32 +0100298 ret = drm_fb_helper_single_add_all_connectors(&afbdev->helper);
299 if (ret)
300 goto fini;
Daniel Vetter76a39db2013-01-20 23:12:54 +0100301
302 /* disable all the possible outputs/crtcs before entering KMS mode */
303 drm_helper_disable_unused_functions(dev);
304
Thierry Reding01934c22014-12-19 11:21:32 +0100305 ret = drm_fb_helper_initial_config(&afbdev->helper, 32);
306 if (ret)
307 goto fini;
308
Dave Airlie312fec12012-02-29 13:40:04 +0000309 return 0;
Thierry Reding01934c22014-12-19 11:21:32 +0100310
311fini:
312 drm_fb_helper_fini(&afbdev->helper);
313free:
314 kfree(afbdev);
315 return ret;
Dave Airlie312fec12012-02-29 13:40:04 +0000316}
317
318void ast_fbdev_fini(struct drm_device *dev)
319{
320 struct ast_private *ast = dev->dev_private;
321
322 if (!ast->fbdev)
323 return;
324
325 ast_fbdev_destroy(dev, ast->fbdev);
326 kfree(ast->fbdev);
327 ast->fbdev = NULL;
328}
329
330void ast_fbdev_set_suspend(struct drm_device *dev, int state)
331{
332 struct ast_private *ast = dev->dev_private;
333
334 if (!ast->fbdev)
335 return;
336
Archit Taneja990e8442015-07-22 14:58:05 +0530337 drm_fb_helper_set_suspend(&ast->fbdev->helper, state);
Dave Airlie312fec12012-02-29 13:40:04 +0000338}
Egbert Eich28fb4cb2014-06-11 14:59:55 +0200339
340void ast_fbdev_set_base(struct ast_private *ast, unsigned long gpu_addr)
341{
342 ast->fbdev->helper.fbdev->fix.smem_start =
343 ast->fbdev->helper.fbdev->apertures->ranges[0].base + gpu_addr;
344 ast->fbdev->helper.fbdev->fix.smem_len = ast->vram_size - gpu_addr;
345}