2 * Copyright (c) 2006-2009 Red Hat Inc.
3 * Copyright (c) 2006-2008 Intel Corporation
4 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
6 * DRM framebuffer helper functions
8 * Permission to use, copy, modify, distribute, and sell this software and its
9 * documentation for any purpose is hereby granted without fee, provided that
10 * the above copyright notice appear in all copies and that both that copyright
11 * notice and this permission notice appear in supporting documentation, and
12 * that the name of the copyright holders not be used in advertising or
13 * publicity pertaining to distribution of the software without specific,
14 * written prior permission. The copyright holders make no representations
15 * about the suitability of this software for any purpose. It is provided "as
16 * is" without express or implied warranty.
18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
27 * Dave Airlie <airlied@linux.ie>
28 * Jesse Barnes <jesse.barnes@intel.com>
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/console.h>
33 #include <linux/sysrq.h>
35 #include <drm/drm_atomic.h>
36 #include <drm/drm_drv.h>
37 #include <drm/drm_fb_helper.h>
38 #include <drm/drm_fourcc.h>
39 #include <drm/drm_framebuffer.h>
40 #include <drm/drm_modeset_helper_vtables.h>
41 #include <drm/drm_print.h>
42 #include <drm/drm_vblank.h>
44 #include "drm_internal.h"
46 static bool drm_fbdev_emulation = true;
47 module_param_named(fbdev_emulation, drm_fbdev_emulation, bool, 0600);
48 MODULE_PARM_DESC(fbdev_emulation,
49 "Enable legacy fbdev emulation [default=true]");
51 static int drm_fbdev_overalloc = CONFIG_DRM_FBDEV_OVERALLOC;
52 module_param(drm_fbdev_overalloc, int, 0444);
53 MODULE_PARM_DESC(drm_fbdev_overalloc,
54 "Overallocation of the fbdev buffer (%) [default="
55 __MODULE_STRING(CONFIG_DRM_FBDEV_OVERALLOC) "]");
58 * In order to keep user-space compatibility, we want in certain use-cases
59 * to keep leaking the fbdev physical address to the user-space program
60 * handling the fbdev buffer.
61 * This is a bad habit essentially kept into closed source opengl driver
62 * that should really be moved into open-source upstream projects instead
63 * of using legacy physical addresses in user space to communicate with
64 * other out-of-tree kernel modules.
66 * This module_param *should* be removed as soon as possible and be
67 * considered as a broken and legacy behaviour from a modern fbdev device.
69 #if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM)
70 static bool drm_leak_fbdev_smem;
71 module_param_unsafe(drm_leak_fbdev_smem, bool, 0600);
72 MODULE_PARM_DESC(drm_leak_fbdev_smem,
73 "Allow unsafe leaking fbdev physical smem address [default=false]");
76 static LIST_HEAD(kernel_fb_helper_list);
77 static DEFINE_MUTEX(kernel_fb_helper_lock);
82 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
83 * mode setting driver. They can be used mostly independently from the crtc
84 * helper functions used by many drivers to implement the kernel mode setting
87 * Drivers that support a dumb buffer with a virtual address and mmap support,
88 * should try out the generic fbdev emulation using drm_fbdev_generic_setup().
89 * It will automatically set up deferred I/O if the driver requires a shadow
92 * Existing fbdev implementations should restore the fbdev console by using
93 * drm_fb_helper_lastclose() as their &drm_driver.lastclose callback.
94 * They should also notify the fb helper code from updates to the output
95 * configuration by using drm_fb_helper_output_poll_changed() as their
96 * &drm_mode_config_funcs.output_poll_changed callback. New implementations
97 * of fbdev should be build on top of struct &drm_client_funcs, which handles
98 * this automatically. Setting the old callbacks should be avoided.
100 * For suspend/resume consider using drm_mode_config_helper_suspend() and
101 * drm_mode_config_helper_resume() which takes care of fbdev as well.
103 * All other functions exported by the fb helper library can be used to
104 * implement the fbdev driver interface by the driver.
106 * It is possible, though perhaps somewhat tricky, to implement race-free
107 * hotplug detection using the fbdev helpers. The drm_fb_helper_prepare()
108 * helper must be called first to initialize the minimum required to make
109 * hotplug detection work. Drivers also need to make sure to properly set up
110 * the &drm_mode_config.funcs member. After calling drm_kms_helper_poll_init()
111 * it is safe to enable interrupts and start processing hotplug events. At the
112 * same time, drivers should initialize all modeset objects such as CRTCs,
113 * encoders and connectors. To finish up the fbdev helper initialization, the
114 * drm_fb_helper_init() function is called. To probe for all attached displays
115 * and set up an initial configuration using the detected hardware, drivers
116 * should call drm_fb_helper_initial_config().
118 * If &drm_framebuffer_funcs.dirty is set, the
119 * drm_fb_helper_{cfb,sys}_{write,fillrect,copyarea,imageblit} functions will
120 * accumulate changes and schedule &drm_fb_helper.dirty_work to run right
121 * away. This worker then calls the dirty() function ensuring that it will
122 * always run in process context since the fb_*() function could be running in
123 * atomic context. If drm_fb_helper_deferred_io() is used as the deferred_io
124 * callback it will also schedule dirty_work with the damage collected from the
127 * Deferred I/O is not compatible with SHMEM. Such drivers should request an
128 * fbdev shadow buffer and call drm_fbdev_generic_setup() instead.
131 static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc)
133 uint16_t *r_base, *g_base, *b_base;
135 if (crtc->funcs->gamma_set == NULL)
138 r_base = crtc->gamma_store;
139 g_base = r_base + crtc->gamma_size;
140 b_base = g_base + crtc->gamma_size;
142 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base,
143 crtc->gamma_size, NULL);
147 * drm_fb_helper_debug_enter - implementation for &fb_ops.fb_debug_enter
148 * @info: fbdev registered by the helper
150 int drm_fb_helper_debug_enter(struct fb_info *info)
152 struct drm_fb_helper *helper = info->par;
153 const struct drm_crtc_helper_funcs *funcs;
154 struct drm_mode_set *mode_set;
156 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
157 mutex_lock(&helper->client.modeset_mutex);
158 drm_client_for_each_modeset(mode_set, &helper->client) {
159 if (!mode_set->crtc->enabled)
162 funcs = mode_set->crtc->helper_private;
163 if (funcs->mode_set_base_atomic == NULL)
166 if (drm_drv_uses_atomic_modeset(mode_set->crtc->dev))
169 funcs->mode_set_base_atomic(mode_set->crtc,
173 ENTER_ATOMIC_MODE_SET);
175 mutex_unlock(&helper->client.modeset_mutex);
180 EXPORT_SYMBOL(drm_fb_helper_debug_enter);
183 * drm_fb_helper_debug_leave - implementation for &fb_ops.fb_debug_leave
184 * @info: fbdev registered by the helper
186 int drm_fb_helper_debug_leave(struct fb_info *info)
188 struct drm_fb_helper *helper = info->par;
189 struct drm_client_dev *client = &helper->client;
190 struct drm_device *dev = helper->dev;
191 struct drm_crtc *crtc;
192 const struct drm_crtc_helper_funcs *funcs;
193 struct drm_mode_set *mode_set;
194 struct drm_framebuffer *fb;
196 mutex_lock(&client->modeset_mutex);
197 drm_client_for_each_modeset(mode_set, client) {
198 crtc = mode_set->crtc;
199 if (drm_drv_uses_atomic_modeset(crtc->dev))
202 funcs = crtc->helper_private;
203 fb = crtc->primary->fb;
209 drm_err(dev, "no fb to restore?\n");
213 if (funcs->mode_set_base_atomic == NULL)
216 drm_fb_helper_restore_lut_atomic(mode_set->crtc);
217 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
218 crtc->y, LEAVE_ATOMIC_MODE_SET);
220 mutex_unlock(&client->modeset_mutex);
224 EXPORT_SYMBOL(drm_fb_helper_debug_leave);
227 __drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper,
233 if (!drm_fbdev_emulation || !fb_helper)
236 if (READ_ONCE(fb_helper->deferred_setup))
239 mutex_lock(&fb_helper->lock);
242 * Yes this is the _locked version which expects the master lock
243 * to be held. But for forced restores we're intentionally
244 * racing here, see drm_fb_helper_set_par().
246 ret = drm_client_modeset_commit_locked(&fb_helper->client);
248 ret = drm_client_modeset_commit(&fb_helper->client);
251 do_delayed = fb_helper->delayed_hotplug;
253 fb_helper->delayed_hotplug = false;
254 mutex_unlock(&fb_helper->lock);
257 drm_fb_helper_hotplug_event(fb_helper);
263 * drm_fb_helper_restore_fbdev_mode_unlocked - restore fbdev configuration
264 * @fb_helper: driver-allocated fbdev helper, can be NULL
266 * This should be called from driver's drm &drm_driver.lastclose callback
267 * when implementing an fbcon on top of kms using this helper. This ensures that
268 * the user isn't greeted with a black screen when e.g. X dies.
271 * Zero if everything went ok, negative error code otherwise.
273 int drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper)
275 return __drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper, false);
277 EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode_unlocked);
279 #ifdef CONFIG_MAGIC_SYSRQ
280 /* emergency restore, don't bother with error reporting */
281 static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
283 struct drm_fb_helper *helper;
285 mutex_lock(&kernel_fb_helper_lock);
286 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
287 struct drm_device *dev = helper->dev;
289 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
292 mutex_lock(&helper->lock);
293 drm_client_modeset_commit_locked(&helper->client);
294 mutex_unlock(&helper->lock);
296 mutex_unlock(&kernel_fb_helper_lock);
299 static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
301 static void drm_fb_helper_sysrq(int dummy1)
303 schedule_work(&drm_fb_helper_restore_work);
306 static const struct sysrq_key_op sysrq_drm_fb_helper_restore_op = {
307 .handler = drm_fb_helper_sysrq,
308 .help_msg = "force-fb(v)",
309 .action_msg = "Restore framebuffer console",
312 static const struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
315 static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
317 struct drm_fb_helper *fb_helper = info->par;
319 mutex_lock(&fb_helper->lock);
320 drm_client_modeset_dpms(&fb_helper->client, dpms_mode);
321 mutex_unlock(&fb_helper->lock);
325 * drm_fb_helper_blank - implementation for &fb_ops.fb_blank
326 * @blank: desired blanking state
327 * @info: fbdev registered by the helper
329 int drm_fb_helper_blank(int blank, struct fb_info *info)
331 if (oops_in_progress)
335 /* Display: On; HSync: On, VSync: On */
336 case FB_BLANK_UNBLANK:
337 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
339 /* Display: Off; HSync: On, VSync: On */
340 case FB_BLANK_NORMAL:
341 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
343 /* Display: Off; HSync: Off, VSync: On */
344 case FB_BLANK_HSYNC_SUSPEND:
345 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
347 /* Display: Off; HSync: On, VSync: Off */
348 case FB_BLANK_VSYNC_SUSPEND:
349 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
351 /* Display: Off; HSync: Off, VSync: Off */
352 case FB_BLANK_POWERDOWN:
353 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
358 EXPORT_SYMBOL(drm_fb_helper_blank);
360 static void drm_fb_helper_resume_worker(struct work_struct *work)
362 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper,
366 fb_set_suspend(helper->info, 0);
370 static void drm_fb_helper_fb_dirty(struct drm_fb_helper *helper)
372 struct drm_device *dev = helper->dev;
373 struct drm_clip_rect *clip = &helper->damage_clip;
374 struct drm_clip_rect clip_copy;
378 if (drm_WARN_ON_ONCE(dev, !helper->funcs->fb_dirty))
381 spin_lock_irqsave(&helper->damage_lock, flags);
383 clip->x1 = clip->y1 = ~0;
384 clip->x2 = clip->y2 = 0;
385 spin_unlock_irqrestore(&helper->damage_lock, flags);
387 ret = helper->funcs->fb_dirty(helper, &clip_copy);
395 * Restore damage clip rectangle on errors. The next run
396 * of the damage worker will perform the update.
398 spin_lock_irqsave(&helper->damage_lock, flags);
399 clip->x1 = min_t(u32, clip->x1, clip_copy.x1);
400 clip->y1 = min_t(u32, clip->y1, clip_copy.y1);
401 clip->x2 = max_t(u32, clip->x2, clip_copy.x2);
402 clip->y2 = max_t(u32, clip->y2, clip_copy.y2);
403 spin_unlock_irqrestore(&helper->damage_lock, flags);
406 static void drm_fb_helper_damage_work(struct work_struct *work)
408 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper, damage_work);
410 drm_fb_helper_fb_dirty(helper);
414 * drm_fb_helper_prepare - setup a drm_fb_helper structure
416 * @helper: driver-allocated fbdev helper structure to set up
417 * @funcs: pointer to structure of functions associate with this helper
419 * Sets up the bare minimum to make the framebuffer helper usable. This is
420 * useful to implement race-free initialization of the polling helpers.
422 void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
423 const struct drm_fb_helper_funcs *funcs)
425 INIT_LIST_HEAD(&helper->kernel_fb_list);
426 spin_lock_init(&helper->damage_lock);
427 INIT_WORK(&helper->resume_work, drm_fb_helper_resume_worker);
428 INIT_WORK(&helper->damage_work, drm_fb_helper_damage_work);
429 helper->damage_clip.x1 = helper->damage_clip.y1 = ~0;
430 mutex_init(&helper->lock);
431 helper->funcs = funcs;
434 EXPORT_SYMBOL(drm_fb_helper_prepare);
437 * drm_fb_helper_init - initialize a &struct drm_fb_helper
439 * @fb_helper: driver-allocated fbdev helper structure to initialize
441 * This allocates the structures for the fbdev helper with the given limits.
442 * Note that this won't yet touch the hardware (through the driver interfaces)
443 * nor register the fbdev. This is only done in drm_fb_helper_initial_config()
444 * to allow driver writes more control over the exact init sequence.
446 * Drivers must call drm_fb_helper_prepare() before calling this function.
449 * Zero if everything went ok, nonzero otherwise.
451 int drm_fb_helper_init(struct drm_device *dev,
452 struct drm_fb_helper *fb_helper)
457 * If this is not the generic fbdev client, initialize a drm_client
458 * without callbacks so we can use the modesets.
460 if (!fb_helper->client.funcs) {
461 ret = drm_client_init(dev, &fb_helper->client, "drm_fb_helper", NULL);
466 dev->fb_helper = fb_helper;
470 EXPORT_SYMBOL(drm_fb_helper_init);
473 * drm_fb_helper_alloc_info - allocate fb_info and some of its members
474 * @fb_helper: driver-allocated fbdev helper
476 * A helper to alloc fb_info and the members cmap and apertures. Called
477 * by the driver within the fb_probe fb_helper callback function. Drivers do not
478 * need to release the allocated fb_info structure themselves, this is
479 * automatically done when calling drm_fb_helper_fini().
482 * fb_info pointer if things went okay, pointer containing error code
485 struct fb_info *drm_fb_helper_alloc_info(struct drm_fb_helper *fb_helper)
487 struct device *dev = fb_helper->dev->dev;
488 struct fb_info *info;
491 info = framebuffer_alloc(0, dev);
493 return ERR_PTR(-ENOMEM);
495 ret = fb_alloc_cmap(&info->cmap, 256, 0);
500 * TODO: We really should be smarter here and alloc an aperture
501 * for each IORESOURCE_MEM resource helper->dev->dev has and also
502 * init the ranges of the appertures based on the resources.
503 * Note some drivers currently count on there being only 1 empty
504 * aperture and fill this themselves, these will need to be dealt
505 * with somehow when fixing this.
507 info->apertures = alloc_apertures(1);
508 if (!info->apertures) {
513 fb_helper->info = info;
514 info->skip_vt_switch = true;
519 fb_dealloc_cmap(&info->cmap);
521 framebuffer_release(info);
524 EXPORT_SYMBOL(drm_fb_helper_alloc_info);
527 * drm_fb_helper_unregister_info - unregister fb_info framebuffer device
528 * @fb_helper: driver-allocated fbdev helper, can be NULL
530 * A wrapper around unregister_framebuffer, to release the fb_info
531 * framebuffer device. This must be called before releasing all resources for
532 * @fb_helper by calling drm_fb_helper_fini().
534 void drm_fb_helper_unregister_info(struct drm_fb_helper *fb_helper)
536 if (fb_helper && fb_helper->info)
537 unregister_framebuffer(fb_helper->info);
539 EXPORT_SYMBOL(drm_fb_helper_unregister_info);
542 * drm_fb_helper_fini - finialize a &struct drm_fb_helper
543 * @fb_helper: driver-allocated fbdev helper, can be NULL
545 * This cleans up all remaining resources associated with @fb_helper.
547 void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
549 struct fb_info *info;
554 fb_helper->dev->fb_helper = NULL;
556 if (!drm_fbdev_emulation)
559 cancel_work_sync(&fb_helper->resume_work);
560 cancel_work_sync(&fb_helper->damage_work);
562 info = fb_helper->info;
565 fb_dealloc_cmap(&info->cmap);
566 framebuffer_release(info);
568 fb_helper->info = NULL;
570 mutex_lock(&kernel_fb_helper_lock);
571 if (!list_empty(&fb_helper->kernel_fb_list)) {
572 list_del(&fb_helper->kernel_fb_list);
573 if (list_empty(&kernel_fb_helper_list))
574 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
576 mutex_unlock(&kernel_fb_helper_lock);
578 mutex_destroy(&fb_helper->lock);
580 if (!fb_helper->client.funcs)
581 drm_client_release(&fb_helper->client);
583 EXPORT_SYMBOL(drm_fb_helper_fini);
585 static void drm_fb_helper_add_damage_clip(struct drm_fb_helper *helper, u32 x, u32 y,
586 u32 width, u32 height)
588 struct drm_clip_rect *clip = &helper->damage_clip;
591 spin_lock_irqsave(&helper->damage_lock, flags);
592 clip->x1 = min_t(u32, clip->x1, x);
593 clip->y1 = min_t(u32, clip->y1, y);
594 clip->x2 = max_t(u32, clip->x2, x + width);
595 clip->y2 = max_t(u32, clip->y2, y + height);
596 spin_unlock_irqrestore(&helper->damage_lock, flags);
599 static void drm_fb_helper_damage(struct drm_fb_helper *helper, u32 x, u32 y,
600 u32 width, u32 height)
602 drm_fb_helper_add_damage_clip(helper, x, y, width, height);
604 schedule_work(&helper->damage_work);
608 * Convert memory region into area of scanlines and pixels per
609 * scanline. The parameters off and len must not reach beyond
610 * the end of the framebuffer.
612 static void drm_fb_helper_memory_range_to_clip(struct fb_info *info, off_t off, size_t len,
613 struct drm_rect *clip)
615 off_t end = off + len;
617 u32 y1 = off / info->fix.line_length;
618 u32 x2 = info->var.xres;
619 u32 y2 = DIV_ROUND_UP(end, info->fix.line_length);
621 if ((y2 - y1) == 1) {
623 * We've only written to a single scanline. Try to reduce
624 * the number of horizontal pixels that need an update.
626 off_t bit_off = (off % info->fix.line_length) * 8;
627 off_t bit_end = (end % info->fix.line_length) * 8;
629 x1 = bit_off / info->var.bits_per_pixel;
630 x2 = DIV_ROUND_UP(bit_end, info->var.bits_per_pixel);
633 drm_rect_init(clip, x1, y1, x2 - x1, y2 - y1);
637 * drm_fb_helper_deferred_io() - fbdev deferred_io callback function
638 * @info: fb_info struct pointer
639 * @pagereflist: list of mmap framebuffer pages that have to be flushed
641 * This function is used as the &fb_deferred_io.deferred_io
642 * callback function for flushing the fbdev mmap writes.
644 void drm_fb_helper_deferred_io(struct fb_info *info, struct list_head *pagereflist)
646 struct drm_fb_helper *helper = info->par;
647 unsigned long start, end, min_off, max_off;
648 struct fb_deferred_io_pageref *pageref;
649 struct drm_rect damage_area;
653 list_for_each_entry(pageref, pagereflist, list) {
654 start = pageref->offset;
655 end = start + PAGE_SIZE;
656 min_off = min(min_off, start);
657 max_off = max(max_off, end);
661 * As we can only track pages, we might reach beyond the end
662 * of the screen and account for non-existing scanlines. Hence,
663 * keep the covered memory area within the screen buffer.
665 max_off = min(max_off, info->screen_size);
667 if (min_off < max_off) {
668 drm_fb_helper_memory_range_to_clip(info, min_off, max_off - min_off, &damage_area);
669 drm_fb_helper_add_damage_clip(helper, damage_area.x1, damage_area.y1,
670 drm_rect_width(&damage_area),
671 drm_rect_height(&damage_area));
675 * Flushes all dirty pages from mmap's pageref list and the
676 * areas that have been written by struct fb_ops callbacks.
678 drm_fb_helper_fb_dirty(helper);
680 EXPORT_SYMBOL(drm_fb_helper_deferred_io);
682 typedef ssize_t (*drm_fb_helper_read_screen)(struct fb_info *info, char __user *buf,
683 size_t count, loff_t pos);
685 static ssize_t __drm_fb_helper_read(struct fb_info *info, char __user *buf, size_t count,
686 loff_t *ppos, drm_fb_helper_read_screen read_screen)
692 if (info->screen_size)
693 total_size = info->screen_size;
695 total_size = info->fix.smem_len;
697 if (pos >= total_size)
699 if (count >= total_size)
701 if (total_size - count < pos)
702 count = total_size - pos;
704 if (info->fbops->fb_sync)
705 info->fbops->fb_sync(info);
707 ret = read_screen(info, buf, count, pos);
714 typedef ssize_t (*drm_fb_helper_write_screen)(struct fb_info *info, const char __user *buf,
715 size_t count, loff_t pos);
717 static ssize_t __drm_fb_helper_write(struct fb_info *info, const char __user *buf, size_t count,
718 loff_t *ppos, drm_fb_helper_write_screen write_screen)
725 if (info->screen_size)
726 total_size = info->screen_size;
728 total_size = info->fix.smem_len;
730 if (pos > total_size)
732 if (count > total_size) {
736 if (total_size - count < pos) {
739 count = total_size - pos;
742 if (info->fbops->fb_sync)
743 info->fbops->fb_sync(info);
746 * Copy to framebuffer even if we already logged an error. Emulates
747 * the behavior of the original fbdev implementation.
749 ret = write_screen(info, buf, count, pos);
751 return ret; /* return last error, if any */
753 return err; /* return previous error, if any */
760 static ssize_t drm_fb_helper_read_screen_buffer(struct fb_info *info, char __user *buf,
761 size_t count, loff_t pos)
763 const char *src = info->screen_buffer + pos;
765 if (copy_to_user(buf, src, count))
772 * drm_fb_helper_sys_read - Implements struct &fb_ops.fb_read for system memory
773 * @info: fb_info struct pointer
774 * @buf: userspace buffer to read from framebuffer memory
775 * @count: number of bytes to read from framebuffer memory
776 * @ppos: read offset within framebuffer memory
779 * The number of bytes read on success, or an error code otherwise.
781 ssize_t drm_fb_helper_sys_read(struct fb_info *info, char __user *buf,
782 size_t count, loff_t *ppos)
784 return __drm_fb_helper_read(info, buf, count, ppos, drm_fb_helper_read_screen_buffer);
786 EXPORT_SYMBOL(drm_fb_helper_sys_read);
788 static ssize_t drm_fb_helper_write_screen_buffer(struct fb_info *info, const char __user *buf,
789 size_t count, loff_t pos)
791 char *dst = info->screen_buffer + pos;
793 if (copy_from_user(dst, buf, count))
800 * drm_fb_helper_sys_write - Implements struct &fb_ops.fb_write for system memory
801 * @info: fb_info struct pointer
802 * @buf: userspace buffer to write to framebuffer memory
803 * @count: number of bytes to write to framebuffer memory
804 * @ppos: write offset within framebuffer memory
807 * The number of bytes written on success, or an error code otherwise.
809 ssize_t drm_fb_helper_sys_write(struct fb_info *info, const char __user *buf,
810 size_t count, loff_t *ppos)
812 struct drm_fb_helper *helper = info->par;
815 struct drm_rect damage_area;
817 ret = __drm_fb_helper_write(info, buf, count, ppos, drm_fb_helper_write_screen_buffer);
821 if (helper->funcs->fb_dirty) {
822 drm_fb_helper_memory_range_to_clip(info, pos, ret, &damage_area);
823 drm_fb_helper_damage(helper, damage_area.x1, damage_area.y1,
824 drm_rect_width(&damage_area),
825 drm_rect_height(&damage_area));
830 EXPORT_SYMBOL(drm_fb_helper_sys_write);
833 * drm_fb_helper_sys_fillrect - wrapper around sys_fillrect
834 * @info: fbdev registered by the helper
835 * @rect: info about rectangle to fill
837 * A wrapper around sys_fillrect implemented by fbdev core
839 void drm_fb_helper_sys_fillrect(struct fb_info *info,
840 const struct fb_fillrect *rect)
842 struct drm_fb_helper *helper = info->par;
844 sys_fillrect(info, rect);
846 if (helper->funcs->fb_dirty)
847 drm_fb_helper_damage(helper, rect->dx, rect->dy, rect->width, rect->height);
849 EXPORT_SYMBOL(drm_fb_helper_sys_fillrect);
852 * drm_fb_helper_sys_copyarea - wrapper around sys_copyarea
853 * @info: fbdev registered by the helper
854 * @area: info about area to copy
856 * A wrapper around sys_copyarea implemented by fbdev core
858 void drm_fb_helper_sys_copyarea(struct fb_info *info,
859 const struct fb_copyarea *area)
861 struct drm_fb_helper *helper = info->par;
863 sys_copyarea(info, area);
865 if (helper->funcs->fb_dirty)
866 drm_fb_helper_damage(helper, area->dx, area->dy, area->width, area->height);
868 EXPORT_SYMBOL(drm_fb_helper_sys_copyarea);
871 * drm_fb_helper_sys_imageblit - wrapper around sys_imageblit
872 * @info: fbdev registered by the helper
873 * @image: info about image to blit
875 * A wrapper around sys_imageblit implemented by fbdev core
877 void drm_fb_helper_sys_imageblit(struct fb_info *info,
878 const struct fb_image *image)
880 struct drm_fb_helper *helper = info->par;
882 sys_imageblit(info, image);
884 if (helper->funcs->fb_dirty)
885 drm_fb_helper_damage(helper, image->dx, image->dy, image->width, image->height);
887 EXPORT_SYMBOL(drm_fb_helper_sys_imageblit);
889 static ssize_t fb_read_screen_base(struct fb_info *info, char __user *buf, size_t count,
892 const char __iomem *src = info->screen_base + pos;
893 size_t alloc_size = min_t(size_t, count, PAGE_SIZE);
898 tmp = kmalloc(alloc_size, GFP_KERNEL);
903 size_t c = min_t(size_t, count, alloc_size);
905 memcpy_fromio(tmp, src, c);
906 if (copy_to_user(buf, tmp, c)) {
919 return ret ? ret : err;
923 * drm_fb_helper_cfb_read - Implements struct &fb_ops.fb_read for I/O memory
924 * @info: fb_info struct pointer
925 * @buf: userspace buffer to read from framebuffer memory
926 * @count: number of bytes to read from framebuffer memory
927 * @ppos: read offset within framebuffer memory
930 * The number of bytes read on success, or an error code otherwise.
932 ssize_t drm_fb_helper_cfb_read(struct fb_info *info, char __user *buf,
933 size_t count, loff_t *ppos)
935 return __drm_fb_helper_read(info, buf, count, ppos, fb_read_screen_base);
937 EXPORT_SYMBOL(drm_fb_helper_cfb_read);
939 static ssize_t fb_write_screen_base(struct fb_info *info, const char __user *buf, size_t count,
942 char __iomem *dst = info->screen_base + pos;
943 size_t alloc_size = min_t(size_t, count, PAGE_SIZE);
948 tmp = kmalloc(alloc_size, GFP_KERNEL);
953 size_t c = min_t(size_t, count, alloc_size);
955 if (copy_from_user(tmp, buf, c)) {
959 memcpy_toio(dst, tmp, c);
969 return ret ? ret : err;
973 * drm_fb_helper_cfb_write - Implements struct &fb_ops.fb_write for I/O memory
974 * @info: fb_info struct pointer
975 * @buf: userspace buffer to write to framebuffer memory
976 * @count: number of bytes to write to framebuffer memory
977 * @ppos: write offset within framebuffer memory
980 * The number of bytes written on success, or an error code otherwise.
982 ssize_t drm_fb_helper_cfb_write(struct fb_info *info, const char __user *buf,
983 size_t count, loff_t *ppos)
985 struct drm_fb_helper *helper = info->par;
988 struct drm_rect damage_area;
990 ret = __drm_fb_helper_write(info, buf, count, ppos, fb_write_screen_base);
994 if (helper->funcs->fb_dirty) {
995 drm_fb_helper_memory_range_to_clip(info, pos, ret, &damage_area);
996 drm_fb_helper_damage(helper, damage_area.x1, damage_area.y1,
997 drm_rect_width(&damage_area),
998 drm_rect_height(&damage_area));
1003 EXPORT_SYMBOL(drm_fb_helper_cfb_write);
1006 * drm_fb_helper_cfb_fillrect - wrapper around cfb_fillrect
1007 * @info: fbdev registered by the helper
1008 * @rect: info about rectangle to fill
1010 * A wrapper around cfb_fillrect implemented by fbdev core
1012 void drm_fb_helper_cfb_fillrect(struct fb_info *info,
1013 const struct fb_fillrect *rect)
1015 struct drm_fb_helper *helper = info->par;
1017 cfb_fillrect(info, rect);
1019 if (helper->funcs->fb_dirty)
1020 drm_fb_helper_damage(helper, rect->dx, rect->dy, rect->width, rect->height);
1022 EXPORT_SYMBOL(drm_fb_helper_cfb_fillrect);
1025 * drm_fb_helper_cfb_copyarea - wrapper around cfb_copyarea
1026 * @info: fbdev registered by the helper
1027 * @area: info about area to copy
1029 * A wrapper around cfb_copyarea implemented by fbdev core
1031 void drm_fb_helper_cfb_copyarea(struct fb_info *info,
1032 const struct fb_copyarea *area)
1034 struct drm_fb_helper *helper = info->par;
1036 cfb_copyarea(info, area);
1038 if (helper->funcs->fb_dirty)
1039 drm_fb_helper_damage(helper, area->dx, area->dy, area->width, area->height);
1041 EXPORT_SYMBOL(drm_fb_helper_cfb_copyarea);
1044 * drm_fb_helper_cfb_imageblit - wrapper around cfb_imageblit
1045 * @info: fbdev registered by the helper
1046 * @image: info about image to blit
1048 * A wrapper around cfb_imageblit implemented by fbdev core
1050 void drm_fb_helper_cfb_imageblit(struct fb_info *info,
1051 const struct fb_image *image)
1053 struct drm_fb_helper *helper = info->par;
1055 cfb_imageblit(info, image);
1057 if (helper->funcs->fb_dirty)
1058 drm_fb_helper_damage(helper, image->dx, image->dy, image->width, image->height);
1060 EXPORT_SYMBOL(drm_fb_helper_cfb_imageblit);
1063 * drm_fb_helper_set_suspend - wrapper around fb_set_suspend
1064 * @fb_helper: driver-allocated fbdev helper, can be NULL
1065 * @suspend: whether to suspend or resume
1067 * A wrapper around fb_set_suspend implemented by fbdev core.
1068 * Use drm_fb_helper_set_suspend_unlocked() if you don't need to take
1071 void drm_fb_helper_set_suspend(struct drm_fb_helper *fb_helper, bool suspend)
1073 if (fb_helper && fb_helper->info)
1074 fb_set_suspend(fb_helper->info, suspend);
1076 EXPORT_SYMBOL(drm_fb_helper_set_suspend);
1079 * drm_fb_helper_set_suspend_unlocked - wrapper around fb_set_suspend that also
1080 * takes the console lock
1081 * @fb_helper: driver-allocated fbdev helper, can be NULL
1082 * @suspend: whether to suspend or resume
1084 * A wrapper around fb_set_suspend() that takes the console lock. If the lock
1085 * isn't available on resume, a worker is tasked with waiting for the lock
1086 * to become available. The console lock can be pretty contented on resume
1087 * due to all the printk activity.
1089 * This function can be called multiple times with the same state since
1090 * &fb_info.state is checked to see if fbdev is running or not before locking.
1092 * Use drm_fb_helper_set_suspend() if you need to take the lock yourself.
1094 void drm_fb_helper_set_suspend_unlocked(struct drm_fb_helper *fb_helper,
1097 if (!fb_helper || !fb_helper->info)
1100 /* make sure there's no pending/ongoing resume */
1101 flush_work(&fb_helper->resume_work);
1104 if (fb_helper->info->state != FBINFO_STATE_RUNNING)
1110 if (fb_helper->info->state == FBINFO_STATE_RUNNING)
1113 if (!console_trylock()) {
1114 schedule_work(&fb_helper->resume_work);
1119 fb_set_suspend(fb_helper->info, suspend);
1122 EXPORT_SYMBOL(drm_fb_helper_set_suspend_unlocked);
1124 static int setcmap_pseudo_palette(struct fb_cmap *cmap, struct fb_info *info)
1126 u32 *palette = (u32 *)info->pseudo_palette;
1129 if (cmap->start + cmap->len > 16)
1132 for (i = 0; i < cmap->len; ++i) {
1133 u16 red = cmap->red[i];
1134 u16 green = cmap->green[i];
1135 u16 blue = cmap->blue[i];
1138 red >>= 16 - info->var.red.length;
1139 green >>= 16 - info->var.green.length;
1140 blue >>= 16 - info->var.blue.length;
1141 value = (red << info->var.red.offset) |
1142 (green << info->var.green.offset) |
1143 (blue << info->var.blue.offset);
1144 if (info->var.transp.length > 0) {
1145 u32 mask = (1 << info->var.transp.length) - 1;
1147 mask <<= info->var.transp.offset;
1150 palette[cmap->start + i] = value;
1156 static int setcmap_legacy(struct fb_cmap *cmap, struct fb_info *info)
1158 struct drm_fb_helper *fb_helper = info->par;
1159 struct drm_mode_set *modeset;
1160 struct drm_crtc *crtc;
1164 drm_modeset_lock_all(fb_helper->dev);
1165 drm_client_for_each_modeset(modeset, &fb_helper->client) {
1166 crtc = modeset->crtc;
1167 if (!crtc->funcs->gamma_set || !crtc->gamma_size) {
1172 if (cmap->start + cmap->len > crtc->gamma_size) {
1177 r = crtc->gamma_store;
1178 g = r + crtc->gamma_size;
1179 b = g + crtc->gamma_size;
1181 memcpy(r + cmap->start, cmap->red, cmap->len * sizeof(*r));
1182 memcpy(g + cmap->start, cmap->green, cmap->len * sizeof(*g));
1183 memcpy(b + cmap->start, cmap->blue, cmap->len * sizeof(*b));
1185 ret = crtc->funcs->gamma_set(crtc, r, g, b,
1186 crtc->gamma_size, NULL);
1191 drm_modeset_unlock_all(fb_helper->dev);
1196 static struct drm_property_blob *setcmap_new_gamma_lut(struct drm_crtc *crtc,
1197 struct fb_cmap *cmap)
1199 struct drm_device *dev = crtc->dev;
1200 struct drm_property_blob *gamma_lut;
1201 struct drm_color_lut *lut;
1202 int size = crtc->gamma_size;
1205 if (!size || cmap->start + cmap->len > size)
1206 return ERR_PTR(-EINVAL);
1208 gamma_lut = drm_property_create_blob(dev, sizeof(*lut) * size, NULL);
1209 if (IS_ERR(gamma_lut))
1212 lut = gamma_lut->data;
1213 if (cmap->start || cmap->len != size) {
1214 u16 *r = crtc->gamma_store;
1215 u16 *g = r + crtc->gamma_size;
1216 u16 *b = g + crtc->gamma_size;
1218 for (i = 0; i < cmap->start; i++) {
1220 lut[i].green = g[i];
1223 for (i = cmap->start + cmap->len; i < size; i++) {
1225 lut[i].green = g[i];
1230 for (i = 0; i < cmap->len; i++) {
1231 lut[cmap->start + i].red = cmap->red[i];
1232 lut[cmap->start + i].green = cmap->green[i];
1233 lut[cmap->start + i].blue = cmap->blue[i];
1239 static int setcmap_atomic(struct fb_cmap *cmap, struct fb_info *info)
1241 struct drm_fb_helper *fb_helper = info->par;
1242 struct drm_device *dev = fb_helper->dev;
1243 struct drm_property_blob *gamma_lut = NULL;
1244 struct drm_modeset_acquire_ctx ctx;
1245 struct drm_crtc_state *crtc_state;
1246 struct drm_atomic_state *state;
1247 struct drm_mode_set *modeset;
1248 struct drm_crtc *crtc;
1253 drm_modeset_acquire_init(&ctx, 0);
1255 state = drm_atomic_state_alloc(dev);
1261 state->acquire_ctx = &ctx;
1263 drm_client_for_each_modeset(modeset, &fb_helper->client) {
1264 crtc = modeset->crtc;
1267 gamma_lut = setcmap_new_gamma_lut(crtc, cmap);
1268 if (IS_ERR(gamma_lut)) {
1269 ret = PTR_ERR(gamma_lut);
1274 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1275 if (IS_ERR(crtc_state)) {
1276 ret = PTR_ERR(crtc_state);
1281 * FIXME: This always uses gamma_lut. Some HW have only
1282 * degamma_lut, in which case we should reset gamma_lut and set
1283 * degamma_lut. See drm_crtc_legacy_gamma_set().
1285 replaced = drm_property_replace_blob(&crtc_state->degamma_lut,
1287 replaced |= drm_property_replace_blob(&crtc_state->ctm, NULL);
1288 replaced |= drm_property_replace_blob(&crtc_state->gamma_lut,
1290 crtc_state->color_mgmt_changed |= replaced;
1293 ret = drm_atomic_commit(state);
1297 drm_client_for_each_modeset(modeset, &fb_helper->client) {
1298 crtc = modeset->crtc;
1300 r = crtc->gamma_store;
1301 g = r + crtc->gamma_size;
1302 b = g + crtc->gamma_size;
1304 memcpy(r + cmap->start, cmap->red, cmap->len * sizeof(*r));
1305 memcpy(g + cmap->start, cmap->green, cmap->len * sizeof(*g));
1306 memcpy(b + cmap->start, cmap->blue, cmap->len * sizeof(*b));
1310 if (ret == -EDEADLK)
1313 drm_property_blob_put(gamma_lut);
1314 drm_atomic_state_put(state);
1316 drm_modeset_drop_locks(&ctx);
1317 drm_modeset_acquire_fini(&ctx);
1322 drm_atomic_state_clear(state);
1323 drm_modeset_backoff(&ctx);
1328 * drm_fb_helper_setcmap - implementation for &fb_ops.fb_setcmap
1329 * @cmap: cmap to set
1330 * @info: fbdev registered by the helper
1332 int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
1334 struct drm_fb_helper *fb_helper = info->par;
1335 struct drm_device *dev = fb_helper->dev;
1338 if (oops_in_progress)
1341 mutex_lock(&fb_helper->lock);
1343 if (!drm_master_internal_acquire(dev)) {
1348 mutex_lock(&fb_helper->client.modeset_mutex);
1349 if (info->fix.visual == FB_VISUAL_TRUECOLOR)
1350 ret = setcmap_pseudo_palette(cmap, info);
1351 else if (drm_drv_uses_atomic_modeset(fb_helper->dev))
1352 ret = setcmap_atomic(cmap, info);
1354 ret = setcmap_legacy(cmap, info);
1355 mutex_unlock(&fb_helper->client.modeset_mutex);
1357 drm_master_internal_release(dev);
1359 mutex_unlock(&fb_helper->lock);
1363 EXPORT_SYMBOL(drm_fb_helper_setcmap);
1366 * drm_fb_helper_ioctl - legacy ioctl implementation
1367 * @info: fbdev registered by the helper
1368 * @cmd: ioctl command
1369 * @arg: ioctl argument
1371 * A helper to implement the standard fbdev ioctl. Only
1372 * FBIO_WAITFORVSYNC is implemented for now.
1374 int drm_fb_helper_ioctl(struct fb_info *info, unsigned int cmd,
1377 struct drm_fb_helper *fb_helper = info->par;
1378 struct drm_device *dev = fb_helper->dev;
1379 struct drm_crtc *crtc;
1382 mutex_lock(&fb_helper->lock);
1383 if (!drm_master_internal_acquire(dev)) {
1389 case FBIO_WAITFORVSYNC:
1391 * Only consider the first CRTC.
1393 * This ioctl is supposed to take the CRTC number as
1394 * an argument, but in fbdev times, what that number
1395 * was supposed to be was quite unclear, different
1396 * drivers were passing that argument differently
1397 * (some by reference, some by value), and most of the
1398 * userspace applications were just hardcoding 0 as an
1401 * The first CRTC should be the integrated panel on
1402 * most drivers, so this is the best choice we can
1403 * make. If we're not smart enough here, one should
1404 * just consider switch the userspace to KMS.
1406 crtc = fb_helper->client.modesets[0].crtc;
1409 * Only wait for a vblank event if the CRTC is
1410 * enabled, otherwise just don't do anythintg,
1411 * not even report an error.
1413 ret = drm_crtc_vblank_get(crtc);
1415 drm_crtc_wait_one_vblank(crtc);
1416 drm_crtc_vblank_put(crtc);
1425 drm_master_internal_release(dev);
1427 mutex_unlock(&fb_helper->lock);
1430 EXPORT_SYMBOL(drm_fb_helper_ioctl);
1432 static bool drm_fb_pixel_format_equal(const struct fb_var_screeninfo *var_1,
1433 const struct fb_var_screeninfo *var_2)
1435 return var_1->bits_per_pixel == var_2->bits_per_pixel &&
1436 var_1->grayscale == var_2->grayscale &&
1437 var_1->red.offset == var_2->red.offset &&
1438 var_1->red.length == var_2->red.length &&
1439 var_1->red.msb_right == var_2->red.msb_right &&
1440 var_1->green.offset == var_2->green.offset &&
1441 var_1->green.length == var_2->green.length &&
1442 var_1->green.msb_right == var_2->green.msb_right &&
1443 var_1->blue.offset == var_2->blue.offset &&
1444 var_1->blue.length == var_2->blue.length &&
1445 var_1->blue.msb_right == var_2->blue.msb_right &&
1446 var_1->transp.offset == var_2->transp.offset &&
1447 var_1->transp.length == var_2->transp.length &&
1448 var_1->transp.msb_right == var_2->transp.msb_right;
1451 static void drm_fb_helper_fill_pixel_fmt(struct fb_var_screeninfo *var,
1452 const struct drm_format_info *format)
1454 u8 depth = format->depth;
1456 if (format->is_color_indexed) {
1457 var->red.offset = 0;
1458 var->green.offset = 0;
1459 var->blue.offset = 0;
1460 var->red.length = depth;
1461 var->green.length = depth;
1462 var->blue.length = depth;
1463 var->transp.offset = 0;
1464 var->transp.length = 0;
1470 var->red.offset = 10;
1471 var->green.offset = 5;
1472 var->blue.offset = 0;
1473 var->red.length = 5;
1474 var->green.length = 5;
1475 var->blue.length = 5;
1476 var->transp.offset = 15;
1477 var->transp.length = 1;
1480 var->red.offset = 11;
1481 var->green.offset = 5;
1482 var->blue.offset = 0;
1483 var->red.length = 5;
1484 var->green.length = 6;
1485 var->blue.length = 5;
1486 var->transp.offset = 0;
1489 var->red.offset = 16;
1490 var->green.offset = 8;
1491 var->blue.offset = 0;
1492 var->red.length = 8;
1493 var->green.length = 8;
1494 var->blue.length = 8;
1495 var->transp.offset = 0;
1496 var->transp.length = 0;
1499 var->red.offset = 16;
1500 var->green.offset = 8;
1501 var->blue.offset = 0;
1502 var->red.length = 8;
1503 var->green.length = 8;
1504 var->blue.length = 8;
1505 var->transp.offset = 24;
1506 var->transp.length = 8;
1514 * drm_fb_helper_check_var - implementation for &fb_ops.fb_check_var
1515 * @var: screeninfo to check
1516 * @info: fbdev registered by the helper
1518 int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
1519 struct fb_info *info)
1521 struct drm_fb_helper *fb_helper = info->par;
1522 struct drm_framebuffer *fb = fb_helper->fb;
1523 const struct drm_format_info *format = fb->format;
1524 struct drm_device *dev = fb_helper->dev;
1527 if (in_dbg_master())
1530 if (var->pixclock != 0) {
1531 drm_dbg_kms(dev, "fbdev emulation doesn't support changing the pixel clock, value of pixclock is ignored\n");
1535 switch (format->format) {
1539 /* supported format with sub-byte pixels */
1543 if ((drm_format_info_block_width(format, 0) > 1) ||
1544 (drm_format_info_block_height(format, 0) > 1))
1550 * Changes struct fb_var_screeninfo are currently not pushed back
1551 * to KMS, hence fail if different settings are requested.
1553 bpp = drm_format_info_bpp(format, 0);
1554 if (var->bits_per_pixel > bpp ||
1555 var->xres > fb->width || var->yres > fb->height ||
1556 var->xres_virtual > fb->width || var->yres_virtual > fb->height) {
1557 drm_dbg_kms(dev, "fb requested width/height/bpp can't fit in current fb "
1558 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
1559 var->xres, var->yres, var->bits_per_pixel,
1560 var->xres_virtual, var->yres_virtual,
1561 fb->width, fb->height, bpp);
1566 * Workaround for SDL 1.2, which is known to be setting all pixel format
1567 * fields values to zero in some cases. We treat this situation as a
1568 * kind of "use some reasonable autodetected values".
1570 if (!var->red.offset && !var->green.offset &&
1571 !var->blue.offset && !var->transp.offset &&
1572 !var->red.length && !var->green.length &&
1573 !var->blue.length && !var->transp.length &&
1574 !var->red.msb_right && !var->green.msb_right &&
1575 !var->blue.msb_right && !var->transp.msb_right) {
1576 drm_fb_helper_fill_pixel_fmt(var, format);
1580 * Likewise, bits_per_pixel should be rounded up to a supported value.
1582 var->bits_per_pixel = bpp;
1585 * drm fbdev emulation doesn't support changing the pixel format at all,
1586 * so reject all pixel format changing requests.
1588 if (!drm_fb_pixel_format_equal(var, &info->var)) {
1589 drm_dbg_kms(dev, "fbdev emulation doesn't support changing the pixel format\n");
1595 EXPORT_SYMBOL(drm_fb_helper_check_var);
1598 * drm_fb_helper_set_par - implementation for &fb_ops.fb_set_par
1599 * @info: fbdev registered by the helper
1601 * This will let fbcon do the mode init and is called at initialization time by
1602 * the fbdev core when registering the driver, and later on through the hotplug
1605 int drm_fb_helper_set_par(struct fb_info *info)
1607 struct drm_fb_helper *fb_helper = info->par;
1608 struct fb_var_screeninfo *var = &info->var;
1611 if (oops_in_progress)
1614 if (var->pixclock != 0) {
1615 drm_err(fb_helper->dev, "PIXEL CLOCK SET\n");
1620 * Normally we want to make sure that a kms master takes precedence over
1621 * fbdev, to avoid fbdev flickering and occasionally stealing the
1622 * display status. But Xorg first sets the vt back to text mode using
1623 * the KDSET IOCTL with KD_TEXT, and only after that drops the master
1624 * status when exiting.
1626 * In the past this was caught by drm_fb_helper_lastclose(), but on
1627 * modern systems where logind always keeps a drm fd open to orchestrate
1628 * the vt switching, this doesn't work.
1630 * To not break the userspace ABI we have this special case here, which
1631 * is only used for the above case. Everything else uses the normal
1632 * commit function, which ensures that we never steal the display from
1633 * an active drm master.
1635 force = var->activate & FB_ACTIVATE_KD_TEXT;
1637 __drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper, force);
1641 EXPORT_SYMBOL(drm_fb_helper_set_par);
1643 static void pan_set(struct drm_fb_helper *fb_helper, int x, int y)
1645 struct drm_mode_set *mode_set;
1647 mutex_lock(&fb_helper->client.modeset_mutex);
1648 drm_client_for_each_modeset(mode_set, &fb_helper->client) {
1652 mutex_unlock(&fb_helper->client.modeset_mutex);
1655 static int pan_display_atomic(struct fb_var_screeninfo *var,
1656 struct fb_info *info)
1658 struct drm_fb_helper *fb_helper = info->par;
1661 pan_set(fb_helper, var->xoffset, var->yoffset);
1663 ret = drm_client_modeset_commit_locked(&fb_helper->client);
1665 info->var.xoffset = var->xoffset;
1666 info->var.yoffset = var->yoffset;
1668 pan_set(fb_helper, info->var.xoffset, info->var.yoffset);
1673 static int pan_display_legacy(struct fb_var_screeninfo *var,
1674 struct fb_info *info)
1676 struct drm_fb_helper *fb_helper = info->par;
1677 struct drm_client_dev *client = &fb_helper->client;
1678 struct drm_mode_set *modeset;
1681 mutex_lock(&client->modeset_mutex);
1682 drm_modeset_lock_all(fb_helper->dev);
1683 drm_client_for_each_modeset(modeset, client) {
1684 modeset->x = var->xoffset;
1685 modeset->y = var->yoffset;
1687 if (modeset->num_connectors) {
1688 ret = drm_mode_set_config_internal(modeset);
1690 info->var.xoffset = var->xoffset;
1691 info->var.yoffset = var->yoffset;
1695 drm_modeset_unlock_all(fb_helper->dev);
1696 mutex_unlock(&client->modeset_mutex);
1702 * drm_fb_helper_pan_display - implementation for &fb_ops.fb_pan_display
1703 * @var: updated screen information
1704 * @info: fbdev registered by the helper
1706 int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
1707 struct fb_info *info)
1709 struct drm_fb_helper *fb_helper = info->par;
1710 struct drm_device *dev = fb_helper->dev;
1713 if (oops_in_progress)
1716 mutex_lock(&fb_helper->lock);
1717 if (!drm_master_internal_acquire(dev)) {
1722 if (drm_drv_uses_atomic_modeset(dev))
1723 ret = pan_display_atomic(var, info);
1725 ret = pan_display_legacy(var, info);
1727 drm_master_internal_release(dev);
1729 mutex_unlock(&fb_helper->lock);
1733 EXPORT_SYMBOL(drm_fb_helper_pan_display);
1736 * Allocates the backing storage and sets up the fbdev info structure through
1737 * the ->fb_probe callback.
1739 static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
1742 struct drm_client_dev *client = &fb_helper->client;
1743 struct drm_device *dev = fb_helper->dev;
1744 struct drm_mode_config *config = &dev->mode_config;
1747 struct drm_connector_list_iter conn_iter;
1748 struct drm_fb_helper_surface_size sizes;
1749 struct drm_connector *connector;
1750 struct drm_mode_set *mode_set;
1753 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
1754 sizes.surface_depth = 24;
1755 sizes.surface_bpp = 32;
1756 sizes.fb_width = (u32)-1;
1757 sizes.fb_height = (u32)-1;
1760 * If driver picks 8 or 16 by default use that for both depth/bpp
1763 if (preferred_bpp != sizes.surface_bpp)
1764 sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
1766 drm_connector_list_iter_begin(fb_helper->dev, &conn_iter);
1767 drm_client_for_each_connector_iter(connector, &conn_iter) {
1768 struct drm_cmdline_mode *cmdline_mode;
1770 cmdline_mode = &connector->cmdline_mode;
1772 if (cmdline_mode->bpp_specified) {
1773 switch (cmdline_mode->bpp) {
1775 sizes.surface_depth = sizes.surface_bpp = 8;
1778 sizes.surface_depth = 15;
1779 sizes.surface_bpp = 16;
1782 sizes.surface_depth = sizes.surface_bpp = 16;
1785 sizes.surface_depth = sizes.surface_bpp = 24;
1788 sizes.surface_depth = 24;
1789 sizes.surface_bpp = 32;
1795 drm_connector_list_iter_end(&conn_iter);
1798 * If we run into a situation where, for example, the primary plane
1799 * supports RGBA5551 (16 bpp, depth 15) but not RGB565 (16 bpp, depth
1800 * 16) we need to scale down the depth of the sizes we request.
1802 mutex_lock(&client->modeset_mutex);
1803 drm_client_for_each_modeset(mode_set, client) {
1804 struct drm_crtc *crtc = mode_set->crtc;
1805 struct drm_plane *plane = crtc->primary;
1808 drm_dbg_kms(dev, "test CRTC %u primary plane\n", drm_crtc_index(crtc));
1810 for (j = 0; j < plane->format_count; j++) {
1811 const struct drm_format_info *fmt;
1813 fmt = drm_format_info(plane->format_types[j]);
1816 * Do not consider YUV or other complicated formats
1817 * for framebuffers. This means only legacy formats
1818 * are supported (fmt->depth is a legacy field) but
1819 * the framebuffer emulation can only deal with such
1820 * formats, specifically RGB/BGA formats.
1822 if (fmt->depth == 0)
1825 /* We found a perfect fit, great */
1826 if (fmt->depth == sizes.surface_depth) {
1827 best_depth = fmt->depth;
1831 /* Skip depths above what we're looking for */
1832 if (fmt->depth > sizes.surface_depth)
1835 /* Best depth found so far */
1836 if (fmt->depth > best_depth)
1837 best_depth = fmt->depth;
1840 if (sizes.surface_depth != best_depth && best_depth) {
1841 drm_info(dev, "requested bpp %d, scaled depth down to %d",
1842 sizes.surface_bpp, best_depth);
1843 sizes.surface_depth = best_depth;
1846 /* first up get a count of crtcs now in use and new min/maxes width/heights */
1848 drm_client_for_each_modeset(mode_set, client) {
1849 struct drm_display_mode *desired_mode;
1851 /* in case of tile group, are we the last tile vert or horiz?
1852 * If no tile group you are always the last one both vertically
1855 bool lastv = true, lasth = true;
1857 desired_mode = mode_set->mode;
1867 sizes.surface_width = max_t(u32, desired_mode->hdisplay + x, sizes.surface_width);
1868 sizes.surface_height = max_t(u32, desired_mode->vdisplay + y, sizes.surface_height);
1870 for (j = 0; j < mode_set->num_connectors; j++) {
1871 struct drm_connector *connector = mode_set->connectors[j];
1873 if (connector->has_tile &&
1874 desired_mode->hdisplay == connector->tile_h_size &&
1875 desired_mode->vdisplay == connector->tile_v_size) {
1876 lasth = (connector->tile_h_loc == (connector->num_h_tile - 1));
1877 lastv = (connector->tile_v_loc == (connector->num_v_tile - 1));
1878 /* cloning to multiple tiles is just crazy-talk, so: */
1884 sizes.fb_width = min_t(u32, desired_mode->hdisplay + x, sizes.fb_width);
1886 sizes.fb_height = min_t(u32, desired_mode->vdisplay + y, sizes.fb_height);
1888 mutex_unlock(&client->modeset_mutex);
1890 if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
1891 drm_info(dev, "Cannot find any crtc or sizes\n");
1893 /* First time: disable all crtc's.. */
1894 if (!fb_helper->deferred_setup)
1895 drm_client_modeset_commit(client);
1899 /* Handle our overallocation */
1900 sizes.surface_height *= drm_fbdev_overalloc;
1901 sizes.surface_height /= 100;
1902 if (sizes.surface_height > config->max_height) {
1903 drm_dbg_kms(dev, "Fbdev over-allocation too large; clamping height to %d\n",
1904 config->max_height);
1905 sizes.surface_height = config->max_height;
1908 #if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM)
1909 fb_helper->hint_leak_smem_start = drm_leak_fbdev_smem;
1912 /* push down into drivers */
1913 ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
1917 strcpy(fb_helper->fb->comm, "[fbcon]");
1921 static void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
1922 bool is_color_indexed)
1924 info->fix.type = FB_TYPE_PACKED_PIXELS;
1925 info->fix.visual = is_color_indexed ? FB_VISUAL_PSEUDOCOLOR
1926 : FB_VISUAL_TRUECOLOR;
1927 info->fix.mmio_start = 0;
1928 info->fix.mmio_len = 0;
1929 info->fix.type_aux = 0;
1930 info->fix.xpanstep = 1; /* doing it in hw */
1931 info->fix.ypanstep = 1; /* doing it in hw */
1932 info->fix.ywrapstep = 0;
1933 info->fix.accel = FB_ACCEL_NONE;
1935 info->fix.line_length = pitch;
1938 static void drm_fb_helper_fill_var(struct fb_info *info,
1939 struct drm_fb_helper *fb_helper,
1940 uint32_t fb_width, uint32_t fb_height)
1942 struct drm_framebuffer *fb = fb_helper->fb;
1943 const struct drm_format_info *format = fb->format;
1945 switch (format->format) {
1949 /* supported format with sub-byte pixels */
1953 WARN_ON((drm_format_info_block_width(format, 0) > 1) ||
1954 (drm_format_info_block_height(format, 0) > 1));
1958 info->pseudo_palette = fb_helper->pseudo_palette;
1959 info->var.xres_virtual = fb->width;
1960 info->var.yres_virtual = fb->height;
1961 info->var.bits_per_pixel = drm_format_info_bpp(format, 0);
1962 info->var.accel_flags = FB_ACCELF_TEXT;
1963 info->var.xoffset = 0;
1964 info->var.yoffset = 0;
1965 info->var.activate = FB_ACTIVATE_NOW;
1967 drm_fb_helper_fill_pixel_fmt(&info->var, format);
1969 info->var.xres = fb_width;
1970 info->var.yres = fb_height;
1974 * drm_fb_helper_fill_info - initializes fbdev information
1975 * @info: fbdev instance to set up
1976 * @fb_helper: fb helper instance to use as template
1977 * @sizes: describes fbdev size and scanout surface size
1979 * Sets up the variable and fixed fbdev metainformation from the given fb helper
1980 * instance and the drm framebuffer allocated in &drm_fb_helper.fb.
1982 * Drivers should call this (or their equivalent setup code) from their
1983 * &drm_fb_helper_funcs.fb_probe callback after having allocated the fbdev
1984 * backing storage framebuffer.
1986 void drm_fb_helper_fill_info(struct fb_info *info,
1987 struct drm_fb_helper *fb_helper,
1988 struct drm_fb_helper_surface_size *sizes)
1990 struct drm_framebuffer *fb = fb_helper->fb;
1992 drm_fb_helper_fill_fix(info, fb->pitches[0],
1993 fb->format->is_color_indexed);
1994 drm_fb_helper_fill_var(info, fb_helper,
1995 sizes->fb_width, sizes->fb_height);
1997 info->par = fb_helper;
1999 * The DRM drivers fbdev emulation device name can be confusing if the
2000 * driver name also has a "drm" suffix on it. Leading to names such as
2001 * "simpledrmdrmfb" in /proc/fb. Unfortunately, it's an uAPI and can't
2002 * be changed due user-space tools (e.g: pm-utils) matching against it.
2004 snprintf(info->fix.id, sizeof(info->fix.id), "%sdrmfb",
2005 fb_helper->dev->driver->name);
2008 EXPORT_SYMBOL(drm_fb_helper_fill_info);
2011 * This is a continuation of drm_setup_crtcs() that sets up anything related
2012 * to the framebuffer. During initialization, drm_setup_crtcs() is called before
2013 * the framebuffer has been allocated (fb_helper->fb and fb_helper->info).
2014 * So, any setup that touches those fields needs to be done here instead of in
2015 * drm_setup_crtcs().
2017 static void drm_setup_crtcs_fb(struct drm_fb_helper *fb_helper)
2019 struct drm_client_dev *client = &fb_helper->client;
2020 struct drm_connector_list_iter conn_iter;
2021 struct fb_info *info = fb_helper->info;
2022 unsigned int rotation, sw_rotations = 0;
2023 struct drm_connector *connector;
2024 struct drm_mode_set *modeset;
2026 mutex_lock(&client->modeset_mutex);
2027 drm_client_for_each_modeset(modeset, client) {
2028 if (!modeset->num_connectors)
2031 modeset->fb = fb_helper->fb;
2033 if (drm_client_rotation(modeset, &rotation))
2034 /* Rotating in hardware, fbcon should not rotate */
2035 sw_rotations |= DRM_MODE_ROTATE_0;
2037 sw_rotations |= rotation;
2039 mutex_unlock(&client->modeset_mutex);
2041 drm_connector_list_iter_begin(fb_helper->dev, &conn_iter);
2042 drm_client_for_each_connector_iter(connector, &conn_iter) {
2044 /* use first connected connector for the physical dimensions */
2045 if (connector->status == connector_status_connected) {
2046 info->var.width = connector->display_info.width_mm;
2047 info->var.height = connector->display_info.height_mm;
2051 drm_connector_list_iter_end(&conn_iter);
2053 switch (sw_rotations) {
2054 case DRM_MODE_ROTATE_0:
2055 info->fbcon_rotate_hint = FB_ROTATE_UR;
2057 case DRM_MODE_ROTATE_90:
2058 info->fbcon_rotate_hint = FB_ROTATE_CCW;
2060 case DRM_MODE_ROTATE_180:
2061 info->fbcon_rotate_hint = FB_ROTATE_UD;
2063 case DRM_MODE_ROTATE_270:
2064 info->fbcon_rotate_hint = FB_ROTATE_CW;
2068 * Multiple bits are set / multiple rotations requested
2069 * fbcon cannot handle separate rotation settings per
2070 * output, so fallback to unrotated.
2072 info->fbcon_rotate_hint = FB_ROTATE_UR;
2076 /* Note: Drops fb_helper->lock before returning. */
2078 __drm_fb_helper_initial_config_and_unlock(struct drm_fb_helper *fb_helper,
2081 struct drm_device *dev = fb_helper->dev;
2082 struct fb_info *info;
2083 unsigned int width, height;
2086 width = dev->mode_config.max_width;
2087 height = dev->mode_config.max_height;
2089 drm_client_modeset_probe(&fb_helper->client, width, height);
2090 ret = drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
2092 if (ret == -EAGAIN) {
2093 fb_helper->preferred_bpp = bpp_sel;
2094 fb_helper->deferred_setup = true;
2097 mutex_unlock(&fb_helper->lock);
2101 drm_setup_crtcs_fb(fb_helper);
2103 fb_helper->deferred_setup = false;
2105 info = fb_helper->info;
2106 info->var.pixclock = 0;
2107 /* Shamelessly allow physical address leaking to userspace */
2108 #if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM)
2109 if (!fb_helper->hint_leak_smem_start)
2111 /* don't leak any physical addresses to userspace */
2112 info->flags |= FBINFO_HIDE_SMEM_START;
2114 /* Need to drop locks to avoid recursive deadlock in
2115 * register_framebuffer. This is ok because the only thing left to do is
2116 * register the fbdev emulation instance in kernel_fb_helper_list. */
2117 mutex_unlock(&fb_helper->lock);
2119 ret = register_framebuffer(info);
2123 drm_info(dev, "fb%d: %s frame buffer device\n",
2124 info->node, info->fix.id);
2126 mutex_lock(&kernel_fb_helper_lock);
2127 if (list_empty(&kernel_fb_helper_list))
2128 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
2130 list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
2131 mutex_unlock(&kernel_fb_helper_lock);
2137 * drm_fb_helper_initial_config - setup a sane initial connector configuration
2138 * @fb_helper: fb_helper device struct
2139 * @bpp_sel: bpp value to use for the framebuffer configuration
2141 * Scans the CRTCs and connectors and tries to put together an initial setup.
2142 * At the moment, this is a cloned configuration across all heads with
2143 * a new framebuffer object as the backing store.
2145 * Note that this also registers the fbdev and so allows userspace to call into
2146 * the driver through the fbdev interfaces.
2148 * This function will call down into the &drm_fb_helper_funcs.fb_probe callback
2149 * to let the driver allocate and initialize the fbdev info structure and the
2150 * drm framebuffer used to back the fbdev. drm_fb_helper_fill_info() is provided
2151 * as a helper to setup simple default values for the fbdev info structure.
2155 * When you have fbcon support built-in or already loaded, this function will do
2156 * a full modeset to setup the fbdev console. Due to locking misdesign in the
2157 * VT/fbdev subsystem that entire modeset sequence has to be done while holding
2158 * console_lock. Until console_unlock is called no dmesg lines will be sent out
2159 * to consoles, not even serial console. This means when your driver crashes,
2160 * you will see absolutely nothing else but a system stuck in this function,
2161 * with no further output. Any kind of printk() you place within your own driver
2162 * or in the drm core modeset code will also never show up.
2164 * Standard debug practice is to run the fbcon setup without taking the
2165 * console_lock as a hack, to be able to see backtraces and crashes on the
2166 * serial line. This can be done by setting the fb.lockless_register_fb=1 kernel
2169 * The other option is to just disable fbdev emulation since very likely the
2170 * first modeset from userspace will crash in the same way, and is even easier
2171 * to debug. This can be done by setting the drm_kms_helper.fbdev_emulation=0
2172 * kernel cmdline option.
2175 * Zero if everything went ok, nonzero otherwise.
2177 int drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
2181 if (!drm_fbdev_emulation)
2184 mutex_lock(&fb_helper->lock);
2185 ret = __drm_fb_helper_initial_config_and_unlock(fb_helper, bpp_sel);
2189 EXPORT_SYMBOL(drm_fb_helper_initial_config);
2192 * drm_fb_helper_hotplug_event - respond to a hotplug notification by
2193 * probing all the outputs attached to the fb
2194 * @fb_helper: driver-allocated fbdev helper, can be NULL
2196 * Scan the connectors attached to the fb_helper and try to put together a
2197 * setup after notification of a change in output configuration.
2199 * Called at runtime, takes the mode config locks to be able to check/change the
2200 * modeset configuration. Must be run from process context (which usually means
2201 * either the output polling work or a work item launched from the driver's
2202 * hotplug interrupt).
2204 * Note that drivers may call this even before calling
2205 * drm_fb_helper_initial_config but only after drm_fb_helper_init. This allows
2206 * for a race-free fbcon setup and will make sure that the fbdev emulation will
2207 * not miss any hotplug events.
2210 * 0 on success and a non-zero error code otherwise.
2212 int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
2216 if (!drm_fbdev_emulation || !fb_helper)
2219 mutex_lock(&fb_helper->lock);
2220 if (fb_helper->deferred_setup) {
2221 err = __drm_fb_helper_initial_config_and_unlock(fb_helper,
2222 fb_helper->preferred_bpp);
2226 if (!fb_helper->fb || !drm_master_internal_acquire(fb_helper->dev)) {
2227 fb_helper->delayed_hotplug = true;
2228 mutex_unlock(&fb_helper->lock);
2232 drm_master_internal_release(fb_helper->dev);
2234 drm_dbg_kms(fb_helper->dev, "\n");
2236 drm_client_modeset_probe(&fb_helper->client, fb_helper->fb->width, fb_helper->fb->height);
2237 drm_setup_crtcs_fb(fb_helper);
2238 mutex_unlock(&fb_helper->lock);
2240 drm_fb_helper_set_par(fb_helper->info);
2244 EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
2247 * drm_fb_helper_lastclose - DRM driver lastclose helper for fbdev emulation
2250 * This function can be used as the &drm_driver->lastclose callback for drivers
2251 * that only need to call drm_fb_helper_restore_fbdev_mode_unlocked().
2253 void drm_fb_helper_lastclose(struct drm_device *dev)
2255 drm_fb_helper_restore_fbdev_mode_unlocked(dev->fb_helper);
2257 EXPORT_SYMBOL(drm_fb_helper_lastclose);
2260 * drm_fb_helper_output_poll_changed - DRM mode config \.output_poll_changed
2261 * helper for fbdev emulation
2264 * This function can be used as the
2265 * &drm_mode_config_funcs.output_poll_changed callback for drivers that only
2266 * need to call drm_fbdev.hotplug_event().
2268 void drm_fb_helper_output_poll_changed(struct drm_device *dev)
2270 drm_fb_helper_hotplug_event(dev->fb_helper);
2272 EXPORT_SYMBOL(drm_fb_helper_output_poll_changed);