1 /*
2 * Copyright © 2013 Red Hat
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * David Airlie
25 */
26 #include <linux/module.h>
27
28 #include <drm/drmP.h>
29 #include <drm/drm.h>
30 #include <drm/drm_crtc.h>
31 #include <drm/drm_crtc_helper.h>
32 #include <drm/drm_fb_helper.h>
33
34 #include "qxl_drv.h"
35
36 #include "qxl_object.h"
37
38 #define QXL_DIRTY_DELAY (HZ / 30)
39
40 struct qxl_fbdev {
41 struct drm_fb_helper helper;
42 struct qxl_framebuffer qfb;
43 struct qxl_device *qdev;
44
45 spinlock_t delayed_ops_lock;
46 struct list_head delayed_ops;
47 void *shadow;
48 int size;
49 };
50
qxl_fb_image_init(struct qxl_fb_image * qxl_fb_image,struct qxl_device * qdev,struct fb_info * info,const struct fb_image * image)51 static void qxl_fb_image_init(struct qxl_fb_image *qxl_fb_image,
52 struct qxl_device *qdev, struct fb_info *info,
53 const struct fb_image *image)
54 {
55 qxl_fb_image->qdev = qdev;
56 if (info) {
57 qxl_fb_image->visual = info->fix.visual;
58 if (qxl_fb_image->visual == FB_VISUAL_TRUECOLOR ||
59 qxl_fb_image->visual == FB_VISUAL_DIRECTCOLOR)
60 memcpy(&qxl_fb_image->pseudo_palette,
61 info->pseudo_palette,
62 sizeof(qxl_fb_image->pseudo_palette));
63 } else {
64 /* fallback */
65 if (image->depth == 1)
66 qxl_fb_image->visual = FB_VISUAL_MONO10;
67 else
68 qxl_fb_image->visual = FB_VISUAL_DIRECTCOLOR;
69 }
70 if (image) {
71 memcpy(&qxl_fb_image->fb_image, image,
72 sizeof(qxl_fb_image->fb_image));
73 }
74 }
75
76 #ifdef CONFIG_DRM_FBDEV_EMULATION
77 static struct fb_deferred_io qxl_defio = {
78 .delay = QXL_DIRTY_DELAY,
79 .deferred_io = drm_fb_helper_deferred_io,
80 };
81 #endif
82
83 static struct fb_ops qxlfb_ops = {
84 .owner = THIS_MODULE,
85 DRM_FB_HELPER_DEFAULT_OPS,
86 .fb_fillrect = drm_fb_helper_sys_fillrect,
87 .fb_copyarea = drm_fb_helper_sys_copyarea,
88 .fb_imageblit = drm_fb_helper_sys_imageblit,
89 };
90
qxlfb_destroy_pinned_object(struct drm_gem_object * gobj)91 static void qxlfb_destroy_pinned_object(struct drm_gem_object *gobj)
92 {
93 struct qxl_bo *qbo = gem_to_qxl_bo(gobj);
94
95 qxl_bo_kunmap(qbo);
96 qxl_bo_unpin(qbo);
97
98 drm_gem_object_unreference_unlocked(gobj);
99 }
100
qxl_get_handle_for_primary_fb(struct qxl_device * qdev,struct drm_file * file_priv,uint32_t * handle)101 int qxl_get_handle_for_primary_fb(struct qxl_device *qdev,
102 struct drm_file *file_priv,
103 uint32_t *handle)
104 {
105 int r;
106 struct drm_gem_object *gobj = qdev->fbdev_qfb->obj;
107
108 BUG_ON(!gobj);
109 /* drm_get_handle_create adds a reference - good */
110 r = drm_gem_handle_create(file_priv, gobj, handle);
111 if (r)
112 return r;
113 return 0;
114 }
115
qxlfb_create_pinned_object(struct qxl_fbdev * qfbdev,const struct drm_mode_fb_cmd2 * mode_cmd,struct drm_gem_object ** gobj_p)116 static int qxlfb_create_pinned_object(struct qxl_fbdev *qfbdev,
117 const struct drm_mode_fb_cmd2 *mode_cmd,
118 struct drm_gem_object **gobj_p)
119 {
120 struct qxl_device *qdev = qfbdev->qdev;
121 struct drm_gem_object *gobj = NULL;
122 struct qxl_bo *qbo = NULL;
123 int ret;
124 int aligned_size, size;
125 int height = mode_cmd->height;
126
127 size = mode_cmd->pitches[0] * height;
128 aligned_size = ALIGN(size, PAGE_SIZE);
129 /* TODO: unallocate and reallocate surface0 for real. Hack to just
130 * have a large enough surface0 for 1024x768 Xorg 32bpp mode */
131 ret = qxl_gem_object_create(qdev, aligned_size, 0,
132 QXL_GEM_DOMAIN_SURFACE,
133 false, /* is discardable */
134 false, /* is kernel (false means device) */
135 NULL,
136 &gobj);
137 if (ret) {
138 pr_err("failed to allocate framebuffer (%d)\n",
139 aligned_size);
140 return -ENOMEM;
141 }
142 qbo = gem_to_qxl_bo(gobj);
143
144 qbo->surf.width = mode_cmd->width;
145 qbo->surf.height = mode_cmd->height;
146 qbo->surf.stride = mode_cmd->pitches[0];
147 qbo->surf.format = SPICE_SURFACE_FMT_32_xRGB;
148
149 ret = qxl_bo_pin(qbo, QXL_GEM_DOMAIN_SURFACE, NULL);
150 if (ret) {
151 goto out_unref;
152 }
153 ret = qxl_bo_kmap(qbo, NULL);
154
155 if (ret)
156 goto out_unref;
157
158 *gobj_p = gobj;
159 return 0;
160 out_unref:
161 qxlfb_destroy_pinned_object(gobj);
162 *gobj_p = NULL;
163 return ret;
164 }
165
166 /*
167 * FIXME
168 * It should not be necessary to have a special dirty() callback for fbdev.
169 */
qxlfb_framebuffer_dirty(struct drm_framebuffer * fb,struct drm_file * file_priv,unsigned flags,unsigned color,struct drm_clip_rect * clips,unsigned num_clips)170 static int qxlfb_framebuffer_dirty(struct drm_framebuffer *fb,
171 struct drm_file *file_priv,
172 unsigned flags, unsigned color,
173 struct drm_clip_rect *clips,
174 unsigned num_clips)
175 {
176 struct qxl_device *qdev = fb->dev->dev_private;
177 struct fb_info *info = qdev->fbdev_info;
178 struct qxl_fbdev *qfbdev = info->par;
179 struct qxl_fb_image qxl_fb_image;
180 struct fb_image *image = &qxl_fb_image.fb_image;
181
182 /* TODO: hard coding 32 bpp */
183 int stride = qfbdev->qfb.base.pitches[0];
184
185 /*
186 * we are using a shadow draw buffer, at qdev->surface0_shadow
187 */
188 qxl_io_log(qdev, "dirty x[%d, %d], y[%d, %d]\n", clips->x1, clips->x2,
189 clips->y1, clips->y2);
190 image->dx = clips->x1;
191 image->dy = clips->y1;
192 image->width = clips->x2 - clips->x1;
193 image->height = clips->y2 - clips->y1;
194 image->fg_color = 0xffffffff; /* unused, just to avoid uninitialized
195 warnings */
196 image->bg_color = 0;
197 image->depth = 32; /* TODO: take from somewhere? */
198 image->cmap.start = 0;
199 image->cmap.len = 0;
200 image->cmap.red = NULL;
201 image->cmap.green = NULL;
202 image->cmap.blue = NULL;
203 image->cmap.transp = NULL;
204 image->data = qfbdev->shadow + (clips->x1 * 4) + (stride * clips->y1);
205
206 qxl_fb_image_init(&qxl_fb_image, qdev, info, NULL);
207 qxl_draw_opaque_fb(&qxl_fb_image, stride);
208
209 return 0;
210 }
211
212 static const struct drm_framebuffer_funcs qxlfb_fb_funcs = {
213 .destroy = qxl_user_framebuffer_destroy,
214 .dirty = qxlfb_framebuffer_dirty,
215 };
216
qxlfb_create(struct qxl_fbdev * qfbdev,struct drm_fb_helper_surface_size * sizes)217 static int qxlfb_create(struct qxl_fbdev *qfbdev,
218 struct drm_fb_helper_surface_size *sizes)
219 {
220 struct qxl_device *qdev = qfbdev->qdev;
221 struct fb_info *info;
222 struct drm_framebuffer *fb = NULL;
223 struct drm_mode_fb_cmd2 mode_cmd;
224 struct drm_gem_object *gobj = NULL;
225 struct qxl_bo *qbo = NULL;
226 int ret;
227 int size;
228 int bpp = sizes->surface_bpp;
229 int depth = sizes->surface_depth;
230 void *shadow;
231
232 mode_cmd.width = sizes->surface_width;
233 mode_cmd.height = sizes->surface_height;
234
235 mode_cmd.pitches[0] = ALIGN(mode_cmd.width * ((bpp + 1) / 8), 64);
236 mode_cmd.pixel_format = drm_mode_legacy_fb_format(bpp, depth);
237
238 ret = qxlfb_create_pinned_object(qfbdev, &mode_cmd, &gobj);
239 if (ret < 0)
240 return ret;
241
242 qbo = gem_to_qxl_bo(gobj);
243 QXL_INFO(qdev, "%s: %dx%d %d\n", __func__, mode_cmd.width,
244 mode_cmd.height, mode_cmd.pitches[0]);
245
246 shadow = vmalloc(mode_cmd.pitches[0] * mode_cmd.height);
247 /* TODO: what's the usual response to memory allocation errors? */
248 BUG_ON(!shadow);
249 QXL_INFO(qdev,
250 "surface0 at gpu offset %lld, mmap_offset %lld (virt %p, shadow %p)\n",
251 qxl_bo_gpu_offset(qbo),
252 qxl_bo_mmap_offset(qbo),
253 qbo->kptr,
254 shadow);
255 size = mode_cmd.pitches[0] * mode_cmd.height;
256
257 info = drm_fb_helper_alloc_fbi(&qfbdev->helper);
258 if (IS_ERR(info)) {
259 ret = PTR_ERR(info);
260 goto out_unref;
261 }
262
263 info->par = qfbdev;
264
265 qxl_framebuffer_init(&qdev->ddev, &qfbdev->qfb, &mode_cmd, gobj,
266 &qxlfb_fb_funcs);
267
268 fb = &qfbdev->qfb.base;
269
270 /* setup helper with fb data */
271 qfbdev->helper.fb = fb;
272
273 qfbdev->shadow = shadow;
274 strcpy(info->fix.id, "qxldrmfb");
275
276 drm_fb_helper_fill_fix(info, fb->pitches[0], fb->format->depth);
277
278 info->fbops = &qxlfb_ops;
279
280 /*
281 * TODO: using gobj->size in various places in this function. Not sure
282 * what the difference between the different sizes is.
283 */
284 info->fix.smem_start = qdev->vram_base; /* TODO - correct? */
285 info->fix.smem_len = gobj->size;
286 info->screen_base = qfbdev->shadow;
287 info->screen_size = gobj->size;
288
289 drm_fb_helper_fill_var(info, &qfbdev->helper, sizes->fb_width,
290 sizes->fb_height);
291
292 /* setup aperture base/size for vesafb takeover */
293 info->apertures->ranges[0].base = qdev->ddev.mode_config.fb_base;
294 info->apertures->ranges[0].size = qdev->vram_size;
295
296 info->fix.mmio_start = 0;
297 info->fix.mmio_len = 0;
298
299 if (info->screen_base == NULL) {
300 ret = -ENOSPC;
301 goto out_unref;
302 }
303
304 #ifdef CONFIG_DRM_FBDEV_EMULATION
305 info->fbdefio = &qxl_defio;
306 fb_deferred_io_init(info);
307 #endif
308
309 qdev->fbdev_info = info;
310 qdev->fbdev_qfb = &qfbdev->qfb;
311 DRM_INFO("fb mappable at 0x%lX, size %lu\n", info->fix.smem_start, (unsigned long)info->screen_size);
312 DRM_INFO("fb: depth %d, pitch %d, width %d, height %d\n",
313 fb->format->depth, fb->pitches[0], fb->width, fb->height);
314 return 0;
315
316 out_unref:
317 if (qbo) {
318 qxl_bo_kunmap(qbo);
319 qxl_bo_unpin(qbo);
320 }
321 if (fb && ret) {
322 drm_gem_object_unreference_unlocked(gobj);
323 drm_framebuffer_cleanup(fb);
324 kfree(fb);
325 }
326 drm_gem_object_unreference_unlocked(gobj);
327 return ret;
328 }
329
qxl_fb_find_or_create_single(struct drm_fb_helper * helper,struct drm_fb_helper_surface_size * sizes)330 static int qxl_fb_find_or_create_single(
331 struct drm_fb_helper *helper,
332 struct drm_fb_helper_surface_size *sizes)
333 {
334 struct qxl_fbdev *qfbdev =
335 container_of(helper, struct qxl_fbdev, helper);
336 int new_fb = 0;
337 int ret;
338
339 if (!helper->fb) {
340 ret = qxlfb_create(qfbdev, sizes);
341 if (ret)
342 return ret;
343 new_fb = 1;
344 }
345 return new_fb;
346 }
347
qxl_fbdev_destroy(struct drm_device * dev,struct qxl_fbdev * qfbdev)348 static int qxl_fbdev_destroy(struct drm_device *dev, struct qxl_fbdev *qfbdev)
349 {
350 struct qxl_framebuffer *qfb = &qfbdev->qfb;
351
352 drm_fb_helper_unregister_fbi(&qfbdev->helper);
353
354 if (qfb->obj) {
355 qxlfb_destroy_pinned_object(qfb->obj);
356 qfb->obj = NULL;
357 }
358 drm_fb_helper_fini(&qfbdev->helper);
359 vfree(qfbdev->shadow);
360 drm_framebuffer_cleanup(&qfb->base);
361
362 return 0;
363 }
364
365 static const struct drm_fb_helper_funcs qxl_fb_helper_funcs = {
366 .fb_probe = qxl_fb_find_or_create_single,
367 };
368
qxl_fbdev_init(struct qxl_device * qdev)369 int qxl_fbdev_init(struct qxl_device *qdev)
370 {
371 int ret = 0;
372
373 #ifdef CONFIG_DRM_FBDEV_EMULATION
374 struct qxl_fbdev *qfbdev;
375 int bpp_sel = 32; /* TODO: parameter from somewhere? */
376
377 qfbdev = kzalloc(sizeof(struct qxl_fbdev), GFP_KERNEL);
378 if (!qfbdev)
379 return -ENOMEM;
380
381 qfbdev->qdev = qdev;
382 qdev->mode_info.qfbdev = qfbdev;
383 spin_lock_init(&qfbdev->delayed_ops_lock);
384 INIT_LIST_HEAD(&qfbdev->delayed_ops);
385
386 drm_fb_helper_prepare(&qdev->ddev, &qfbdev->helper,
387 &qxl_fb_helper_funcs);
388
389 ret = drm_fb_helper_init(&qdev->ddev, &qfbdev->helper,
390 QXLFB_CONN_LIMIT);
391 if (ret)
392 goto free;
393
394 ret = drm_fb_helper_single_add_all_connectors(&qfbdev->helper);
395 if (ret)
396 goto fini;
397
398 ret = drm_fb_helper_initial_config(&qfbdev->helper, bpp_sel);
399 if (ret)
400 goto fini;
401
402 return 0;
403
404 fini:
405 drm_fb_helper_fini(&qfbdev->helper);
406 free:
407 kfree(qfbdev);
408 #endif
409
410 return ret;
411 }
412
qxl_fbdev_fini(struct qxl_device * qdev)413 void qxl_fbdev_fini(struct qxl_device *qdev)
414 {
415 if (!qdev->mode_info.qfbdev)
416 return;
417
418 qxl_fbdev_destroy(&qdev->ddev, qdev->mode_info.qfbdev);
419 kfree(qdev->mode_info.qfbdev);
420 qdev->mode_info.qfbdev = NULL;
421 }
422
qxl_fbdev_set_suspend(struct qxl_device * qdev,int state)423 void qxl_fbdev_set_suspend(struct qxl_device *qdev, int state)
424 {
425 if (!qdev->mode_info.qfbdev)
426 return;
427
428 drm_fb_helper_set_suspend(&qdev->mode_info.qfbdev->helper, state);
429 }
430
qxl_fbdev_qobj_is_fb(struct qxl_device * qdev,struct qxl_bo * qobj)431 bool qxl_fbdev_qobj_is_fb(struct qxl_device *qdev, struct qxl_bo *qobj)
432 {
433 if (qobj == gem_to_qxl_bo(qdev->mode_info.qfbdev->qfb.obj))
434 return true;
435 return false;
436 }
437