Revert "drm/fb-helper: Remove damage worker"
[platform/kernel/linux-rpi.git] / drivers / gpu / drm / drm_fb_helper.c
1 /*
2  * Copyright (c) 2006-2009 Red Hat Inc.
3  * Copyright (c) 2006-2008 Intel Corporation
4  * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
5  *
6  * DRM framebuffer helper functions
7  *
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.
17  *
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
24  * OF THIS SOFTWARE.
25  *
26  * Authors:
27  *      Dave Airlie <airlied@linux.ie>
28  *      Jesse Barnes <jesse.barnes@intel.com>
29  */
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
32 #include <linux/console.h>
33 #include <linux/sysrq.h>
34
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>
43
44 #include "drm_internal.h"
45
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]");
50
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) "]");
56
57 /*
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.
65  *
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.
68  */
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]");
74 #endif
75
76 static LIST_HEAD(kernel_fb_helper_list);
77 static DEFINE_MUTEX(kernel_fb_helper_lock);
78
79 /**
80  * DOC: fbdev helpers
81  *
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
85  * interfaces.
86  *
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
90  * buffer.
91  *
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.
99  *
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.
102  *
103  * All other functions exported by the fb helper library can be used to
104  * implement the fbdev driver interface by the driver.
105  *
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().
117  *
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
125  * mmap page writes.
126  *
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.
129  */
130
131 static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc)
132 {
133         uint16_t *r_base, *g_base, *b_base;
134
135         if (crtc->funcs->gamma_set == NULL)
136                 return;
137
138         r_base = crtc->gamma_store;
139         g_base = r_base + crtc->gamma_size;
140         b_base = g_base + crtc->gamma_size;
141
142         crtc->funcs->gamma_set(crtc, r_base, g_base, b_base,
143                                crtc->gamma_size, NULL);
144 }
145
146 /**
147  * drm_fb_helper_debug_enter - implementation for &fb_ops.fb_debug_enter
148  * @info: fbdev registered by the helper
149  */
150 int drm_fb_helper_debug_enter(struct fb_info *info)
151 {
152         struct drm_fb_helper *helper = info->par;
153         const struct drm_crtc_helper_funcs *funcs;
154         struct drm_mode_set *mode_set;
155
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)
160                                 continue;
161
162                         funcs = mode_set->crtc->helper_private;
163                         if (funcs->mode_set_base_atomic == NULL)
164                                 continue;
165
166                         if (drm_drv_uses_atomic_modeset(mode_set->crtc->dev))
167                                 continue;
168
169                         funcs->mode_set_base_atomic(mode_set->crtc,
170                                                     mode_set->fb,
171                                                     mode_set->x,
172                                                     mode_set->y,
173                                                     ENTER_ATOMIC_MODE_SET);
174                 }
175                 mutex_unlock(&helper->client.modeset_mutex);
176         }
177
178         return 0;
179 }
180 EXPORT_SYMBOL(drm_fb_helper_debug_enter);
181
182 /**
183  * drm_fb_helper_debug_leave - implementation for &fb_ops.fb_debug_leave
184  * @info: fbdev registered by the helper
185  */
186 int drm_fb_helper_debug_leave(struct fb_info *info)
187 {
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;
195
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))
200                         continue;
201
202                 funcs = crtc->helper_private;
203                 fb = crtc->primary->fb;
204
205                 if (!crtc->enabled)
206                         continue;
207
208                 if (!fb) {
209                         drm_err(dev, "no fb to restore?\n");
210                         continue;
211                 }
212
213                 if (funcs->mode_set_base_atomic == NULL)
214                         continue;
215
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);
219         }
220         mutex_unlock(&client->modeset_mutex);
221
222         return 0;
223 }
224 EXPORT_SYMBOL(drm_fb_helper_debug_leave);
225
226 static int
227 __drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper,
228                                             bool force)
229 {
230         bool do_delayed;
231         int ret;
232
233         if (!drm_fbdev_emulation || !fb_helper)
234                 return -ENODEV;
235
236         if (READ_ONCE(fb_helper->deferred_setup))
237                 return 0;
238
239         mutex_lock(&fb_helper->lock);
240         if (force) {
241                 /*
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().
245                  */
246                 ret = drm_client_modeset_commit_locked(&fb_helper->client);
247         } else {
248                 ret = drm_client_modeset_commit(&fb_helper->client);
249         }
250
251         do_delayed = fb_helper->delayed_hotplug;
252         if (do_delayed)
253                 fb_helper->delayed_hotplug = false;
254         mutex_unlock(&fb_helper->lock);
255
256         if (do_delayed)
257                 drm_fb_helper_hotplug_event(fb_helper);
258
259         return ret;
260 }
261
262 /**
263  * drm_fb_helper_restore_fbdev_mode_unlocked - restore fbdev configuration
264  * @fb_helper: driver-allocated fbdev helper, can be NULL
265  *
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.
269  *
270  * RETURNS:
271  * Zero if everything went ok, negative error code otherwise.
272  */
273 int drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper)
274 {
275         return __drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper, false);
276 }
277 EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode_unlocked);
278
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)
282 {
283         struct drm_fb_helper *helper;
284
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;
288
289                 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
290                         continue;
291
292                 mutex_lock(&helper->lock);
293                 drm_client_modeset_commit_locked(&helper->client);
294                 mutex_unlock(&helper->lock);
295         }
296         mutex_unlock(&kernel_fb_helper_lock);
297 }
298
299 static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
300
301 static void drm_fb_helper_sysrq(int dummy1)
302 {
303         schedule_work(&drm_fb_helper_restore_work);
304 }
305
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",
310 };
311 #else
312 static const struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
313 #endif
314
315 static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
316 {
317         struct drm_fb_helper *fb_helper = info->par;
318
319         mutex_lock(&fb_helper->lock);
320         drm_client_modeset_dpms(&fb_helper->client, dpms_mode);
321         mutex_unlock(&fb_helper->lock);
322 }
323
324 /**
325  * drm_fb_helper_blank - implementation for &fb_ops.fb_blank
326  * @blank: desired blanking state
327  * @info: fbdev registered by the helper
328  */
329 int drm_fb_helper_blank(int blank, struct fb_info *info)
330 {
331         if (oops_in_progress)
332                 return -EBUSY;
333
334         switch (blank) {
335         /* Display: On; HSync: On, VSync: On */
336         case FB_BLANK_UNBLANK:
337                 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
338                 break;
339         /* Display: Off; HSync: On, VSync: On */
340         case FB_BLANK_NORMAL:
341                 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
342                 break;
343         /* Display: Off; HSync: Off, VSync: On */
344         case FB_BLANK_HSYNC_SUSPEND:
345                 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
346                 break;
347         /* Display: Off; HSync: On, VSync: Off */
348         case FB_BLANK_VSYNC_SUSPEND:
349                 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
350                 break;
351         /* Display: Off; HSync: Off, VSync: Off */
352         case FB_BLANK_POWERDOWN:
353                 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
354                 break;
355         }
356         return 0;
357 }
358 EXPORT_SYMBOL(drm_fb_helper_blank);
359
360 static void drm_fb_helper_resume_worker(struct work_struct *work)
361 {
362         struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper,
363                                                     resume_work);
364
365         console_lock();
366         fb_set_suspend(helper->info, 0);
367         console_unlock();
368 }
369
370 static void drm_fb_helper_fb_dirty(struct drm_fb_helper *helper)
371 {
372         struct drm_device *dev = helper->dev;
373         struct drm_clip_rect *clip = &helper->damage_clip;
374         struct drm_clip_rect clip_copy;
375         unsigned long flags;
376         int ret;
377
378         if (drm_WARN_ON_ONCE(dev, !helper->funcs->fb_dirty))
379                 return;
380
381         spin_lock_irqsave(&helper->damage_lock, flags);
382         clip_copy = *clip;
383         clip->x1 = clip->y1 = ~0;
384         clip->x2 = clip->y2 = 0;
385         spin_unlock_irqrestore(&helper->damage_lock, flags);
386
387         ret = helper->funcs->fb_dirty(helper, &clip_copy);
388         if (ret)
389                 goto err;
390
391         return;
392
393 err:
394         /*
395          * Restore damage clip rectangle on errors. The next run
396          * of the damage worker will perform the update.
397          */
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);
404 }
405
406 static void drm_fb_helper_damage_work(struct work_struct *work)
407 {
408         struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper, damage_work);
409
410         drm_fb_helper_fb_dirty(helper);
411 }
412
413 /**
414  * drm_fb_helper_prepare - setup a drm_fb_helper structure
415  * @dev: DRM device
416  * @helper: driver-allocated fbdev helper structure to set up
417  * @funcs: pointer to structure of functions associate with this helper
418  *
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.
421  */
422 void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
423                            const struct drm_fb_helper_funcs *funcs)
424 {
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;
432         helper->dev = dev;
433 }
434 EXPORT_SYMBOL(drm_fb_helper_prepare);
435
436 /**
437  * drm_fb_helper_init - initialize a &struct drm_fb_helper
438  * @dev: drm device
439  * @fb_helper: driver-allocated fbdev helper structure to initialize
440  *
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.
445  *
446  * Drivers must call drm_fb_helper_prepare() before calling this function.
447  *
448  * RETURNS:
449  * Zero if everything went ok, nonzero otherwise.
450  */
451 int drm_fb_helper_init(struct drm_device *dev,
452                        struct drm_fb_helper *fb_helper)
453 {
454         int ret;
455
456         /*
457          * If this is not the generic fbdev client, initialize a drm_client
458          * without callbacks so we can use the modesets.
459          */
460         if (!fb_helper->client.funcs) {
461                 ret = drm_client_init(dev, &fb_helper->client, "drm_fb_helper", NULL);
462                 if (ret)
463                         return ret;
464         }
465
466         dev->fb_helper = fb_helper;
467
468         return 0;
469 }
470 EXPORT_SYMBOL(drm_fb_helper_init);
471
472 /**
473  * drm_fb_helper_alloc_info - allocate fb_info and some of its members
474  * @fb_helper: driver-allocated fbdev helper
475  *
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().
480  *
481  * RETURNS:
482  * fb_info pointer if things went okay, pointer containing error code
483  * otherwise
484  */
485 struct fb_info *drm_fb_helper_alloc_info(struct drm_fb_helper *fb_helper)
486 {
487         struct device *dev = fb_helper->dev->dev;
488         struct fb_info *info;
489         int ret;
490
491         info = framebuffer_alloc(0, dev);
492         if (!info)
493                 return ERR_PTR(-ENOMEM);
494
495         ret = fb_alloc_cmap(&info->cmap, 256, 0);
496         if (ret)
497                 goto err_release;
498
499         /*
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.
506          */
507         info->apertures = alloc_apertures(1);
508         if (!info->apertures) {
509                 ret = -ENOMEM;
510                 goto err_free_cmap;
511         }
512
513         fb_helper->info = info;
514         info->skip_vt_switch = true;
515
516         return info;
517
518 err_free_cmap:
519         fb_dealloc_cmap(&info->cmap);
520 err_release:
521         framebuffer_release(info);
522         return ERR_PTR(ret);
523 }
524 EXPORT_SYMBOL(drm_fb_helper_alloc_info);
525
526 /**
527  * drm_fb_helper_unregister_info - unregister fb_info framebuffer device
528  * @fb_helper: driver-allocated fbdev helper, can be NULL
529  *
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().
533  */
534 void drm_fb_helper_unregister_info(struct drm_fb_helper *fb_helper)
535 {
536         if (fb_helper && fb_helper->info)
537                 unregister_framebuffer(fb_helper->info);
538 }
539 EXPORT_SYMBOL(drm_fb_helper_unregister_info);
540
541 /**
542  * drm_fb_helper_fini - finialize a &struct drm_fb_helper
543  * @fb_helper: driver-allocated fbdev helper, can be NULL
544  *
545  * This cleans up all remaining resources associated with @fb_helper.
546  */
547 void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
548 {
549         struct fb_info *info;
550
551         if (!fb_helper)
552                 return;
553
554         fb_helper->dev->fb_helper = NULL;
555
556         if (!drm_fbdev_emulation)
557                 return;
558
559         cancel_work_sync(&fb_helper->resume_work);
560         cancel_work_sync(&fb_helper->damage_work);
561
562         info = fb_helper->info;
563         if (info) {
564                 if (info->cmap.len)
565                         fb_dealloc_cmap(&info->cmap);
566                 framebuffer_release(info);
567         }
568         fb_helper->info = NULL;
569
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);
575         }
576         mutex_unlock(&kernel_fb_helper_lock);
577
578         mutex_destroy(&fb_helper->lock);
579
580         if (!fb_helper->client.funcs)
581                 drm_client_release(&fb_helper->client);
582 }
583 EXPORT_SYMBOL(drm_fb_helper_fini);
584
585 static void drm_fb_helper_add_damage_clip(struct drm_fb_helper *helper, u32 x, u32 y,
586                                           u32 width, u32 height)
587 {
588         struct drm_clip_rect *clip = &helper->damage_clip;
589         unsigned long flags;
590
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);
597 }
598
599 static void drm_fb_helper_damage(struct drm_fb_helper *helper, u32 x, u32 y,
600                                  u32 width, u32 height)
601 {
602         struct fb_info *info = helper->info;
603
604         drm_fb_helper_add_damage_clip(helper, x, y, width, height);
605
606         /*
607          * The current fbdev emulation only flushes buffers if a damage
608          * update is necessary. And we can assume that deferred I/O has
609          * been enabled as damage updates require deferred I/O for mmap.
610          */
611         fb_deferred_io_schedule_flush(info);
612 }
613
614 /*
615  * Convert memory region into area of scanlines and pixels per
616  * scanline. The parameters off and len must not reach beyond
617  * the end of the framebuffer.
618  */
619 static void drm_fb_helper_memory_range_to_clip(struct fb_info *info, off_t off, size_t len,
620                                                struct drm_rect *clip)
621 {
622         off_t end = off + len;
623         u32 x1 = 0;
624         u32 y1 = off / info->fix.line_length;
625         u32 x2 = info->var.xres;
626         u32 y2 = DIV_ROUND_UP(end, info->fix.line_length);
627
628         if ((y2 - y1) == 1) {
629                 /*
630                  * We've only written to a single scanline. Try to reduce
631                  * the number of horizontal pixels that need an update.
632                  */
633                 off_t bit_off = (off % info->fix.line_length) * 8;
634                 off_t bit_end = (end % info->fix.line_length) * 8;
635
636                 x1 = bit_off / info->var.bits_per_pixel;
637                 x2 = DIV_ROUND_UP(bit_end, info->var.bits_per_pixel);
638         }
639
640         drm_rect_init(clip, x1, y1, x2 - x1, y2 - y1);
641 }
642
643 /**
644  * drm_fb_helper_deferred_io() - fbdev deferred_io callback function
645  * @info: fb_info struct pointer
646  * @pagereflist: list of mmap framebuffer pages that have to be flushed
647  *
648  * This function is used as the &fb_deferred_io.deferred_io
649  * callback function for flushing the fbdev mmap writes.
650  */
651 void drm_fb_helper_deferred_io(struct fb_info *info, struct list_head *pagereflist)
652 {
653         struct drm_fb_helper *helper = info->par;
654         unsigned long start, end, min_off, max_off;
655         struct fb_deferred_io_pageref *pageref;
656         struct drm_rect damage_area;
657
658         min_off = ULONG_MAX;
659         max_off = 0;
660         list_for_each_entry(pageref, pagereflist, list) {
661                 start = pageref->offset;
662                 end = start + PAGE_SIZE;
663                 min_off = min(min_off, start);
664                 max_off = max(max_off, end);
665         }
666
667         /*
668          * As we can only track pages, we might reach beyond the end
669          * of the screen and account for non-existing scanlines. Hence,
670          * keep the covered memory area within the screen buffer.
671          */
672         max_off = min(max_off, info->screen_size);
673
674         if (min_off < max_off) {
675                 drm_fb_helper_memory_range_to_clip(info, min_off, max_off - min_off, &damage_area);
676                 drm_fb_helper_add_damage_clip(helper, damage_area.x1, damage_area.y1,
677                                               drm_rect_width(&damage_area),
678                                               drm_rect_height(&damage_area));
679         }
680
681         /*
682          * Flushes all dirty pages from mmap's pageref list and the
683          * areas that have been written by struct fb_ops callbacks.
684          */
685         drm_fb_helper_fb_dirty(helper);
686 }
687 EXPORT_SYMBOL(drm_fb_helper_deferred_io);
688
689 typedef ssize_t (*drm_fb_helper_read_screen)(struct fb_info *info, char __user *buf,
690                                              size_t count, loff_t pos);
691
692 static ssize_t __drm_fb_helper_read(struct fb_info *info, char __user *buf, size_t count,
693                                     loff_t *ppos, drm_fb_helper_read_screen read_screen)
694 {
695         loff_t pos = *ppos;
696         size_t total_size;
697         ssize_t ret;
698
699         if (info->screen_size)
700                 total_size = info->screen_size;
701         else
702                 total_size = info->fix.smem_len;
703
704         if (pos >= total_size)
705                 return 0;
706         if (count >= total_size)
707                 count = total_size;
708         if (total_size - count < pos)
709                 count = total_size - pos;
710
711         if (info->fbops->fb_sync)
712                 info->fbops->fb_sync(info);
713
714         ret = read_screen(info, buf, count, pos);
715         if (ret > 0)
716                 *ppos += ret;
717
718         return ret;
719 }
720
721 typedef ssize_t (*drm_fb_helper_write_screen)(struct fb_info *info, const char __user *buf,
722                                               size_t count, loff_t pos);
723
724 static ssize_t __drm_fb_helper_write(struct fb_info *info, const char __user *buf, size_t count,
725                                      loff_t *ppos, drm_fb_helper_write_screen write_screen)
726 {
727         loff_t pos = *ppos;
728         size_t total_size;
729         ssize_t ret;
730         int err = 0;
731
732         if (info->screen_size)
733                 total_size = info->screen_size;
734         else
735                 total_size = info->fix.smem_len;
736
737         if (pos > total_size)
738                 return -EFBIG;
739         if (count > total_size) {
740                 err = -EFBIG;
741                 count = total_size;
742         }
743         if (total_size - count < pos) {
744                 if (!err)
745                         err = -ENOSPC;
746                 count = total_size - pos;
747         }
748
749         if (info->fbops->fb_sync)
750                 info->fbops->fb_sync(info);
751
752         /*
753          * Copy to framebuffer even if we already logged an error. Emulates
754          * the behavior of the original fbdev implementation.
755          */
756         ret = write_screen(info, buf, count, pos);
757         if (ret < 0)
758                 return ret; /* return last error, if any */
759         else if (!ret)
760                 return err; /* return previous error, if any */
761
762         *ppos += ret;
763
764         return ret;
765 }
766
767 static ssize_t drm_fb_helper_read_screen_buffer(struct fb_info *info, char __user *buf,
768                                                 size_t count, loff_t pos)
769 {
770         const char *src = info->screen_buffer + pos;
771
772         if (copy_to_user(buf, src, count))
773                 return -EFAULT;
774
775         return count;
776 }
777
778 /**
779  * drm_fb_helper_sys_read - Implements struct &fb_ops.fb_read for system memory
780  * @info: fb_info struct pointer
781  * @buf: userspace buffer to read from framebuffer memory
782  * @count: number of bytes to read from framebuffer memory
783  * @ppos: read offset within framebuffer memory
784  *
785  * Returns:
786  * The number of bytes read on success, or an error code otherwise.
787  */
788 ssize_t drm_fb_helper_sys_read(struct fb_info *info, char __user *buf,
789                                size_t count, loff_t *ppos)
790 {
791         return __drm_fb_helper_read(info, buf, count, ppos, drm_fb_helper_read_screen_buffer);
792 }
793 EXPORT_SYMBOL(drm_fb_helper_sys_read);
794
795 static ssize_t drm_fb_helper_write_screen_buffer(struct fb_info *info, const char __user *buf,
796                                                  size_t count, loff_t pos)
797 {
798         char *dst = info->screen_buffer + pos;
799
800         if (copy_from_user(dst, buf, count))
801                 return -EFAULT;
802
803         return count;
804 }
805
806 /**
807  * drm_fb_helper_sys_write - Implements struct &fb_ops.fb_write for system memory
808  * @info: fb_info struct pointer
809  * @buf: userspace buffer to write to framebuffer memory
810  * @count: number of bytes to write to framebuffer memory
811  * @ppos: write offset within framebuffer memory
812  *
813  * Returns:
814  * The number of bytes written on success, or an error code otherwise.
815  */
816 ssize_t drm_fb_helper_sys_write(struct fb_info *info, const char __user *buf,
817                                 size_t count, loff_t *ppos)
818 {
819         struct drm_fb_helper *helper = info->par;
820         loff_t pos = *ppos;
821         ssize_t ret;
822         struct drm_rect damage_area;
823
824         ret = __drm_fb_helper_write(info, buf, count, ppos, drm_fb_helper_write_screen_buffer);
825         if (ret <= 0)
826                 return ret;
827
828         if (helper->funcs->fb_dirty) {
829                 drm_fb_helper_memory_range_to_clip(info, pos, ret, &damage_area);
830                 drm_fb_helper_damage(helper, damage_area.x1, damage_area.y1,
831                                      drm_rect_width(&damage_area),
832                                      drm_rect_height(&damage_area));
833         }
834
835         return ret;
836 }
837 EXPORT_SYMBOL(drm_fb_helper_sys_write);
838
839 /**
840  * drm_fb_helper_sys_fillrect - wrapper around sys_fillrect
841  * @info: fbdev registered by the helper
842  * @rect: info about rectangle to fill
843  *
844  * A wrapper around sys_fillrect implemented by fbdev core
845  */
846 void drm_fb_helper_sys_fillrect(struct fb_info *info,
847                                 const struct fb_fillrect *rect)
848 {
849         struct drm_fb_helper *helper = info->par;
850
851         sys_fillrect(info, rect);
852
853         if (helper->funcs->fb_dirty)
854                 drm_fb_helper_damage(helper, rect->dx, rect->dy, rect->width, rect->height);
855 }
856 EXPORT_SYMBOL(drm_fb_helper_sys_fillrect);
857
858 /**
859  * drm_fb_helper_sys_copyarea - wrapper around sys_copyarea
860  * @info: fbdev registered by the helper
861  * @area: info about area to copy
862  *
863  * A wrapper around sys_copyarea implemented by fbdev core
864  */
865 void drm_fb_helper_sys_copyarea(struct fb_info *info,
866                                 const struct fb_copyarea *area)
867 {
868         struct drm_fb_helper *helper = info->par;
869
870         sys_copyarea(info, area);
871
872         if (helper->funcs->fb_dirty)
873                 drm_fb_helper_damage(helper, area->dx, area->dy, area->width, area->height);
874 }
875 EXPORT_SYMBOL(drm_fb_helper_sys_copyarea);
876
877 /**
878  * drm_fb_helper_sys_imageblit - wrapper around sys_imageblit
879  * @info: fbdev registered by the helper
880  * @image: info about image to blit
881  *
882  * A wrapper around sys_imageblit implemented by fbdev core
883  */
884 void drm_fb_helper_sys_imageblit(struct fb_info *info,
885                                  const struct fb_image *image)
886 {
887         struct drm_fb_helper *helper = info->par;
888
889         sys_imageblit(info, image);
890
891         if (helper->funcs->fb_dirty)
892                 drm_fb_helper_damage(helper, image->dx, image->dy, image->width, image->height);
893 }
894 EXPORT_SYMBOL(drm_fb_helper_sys_imageblit);
895
896 static ssize_t fb_read_screen_base(struct fb_info *info, char __user *buf, size_t count,
897                                    loff_t pos)
898 {
899         const char __iomem *src = info->screen_base + pos;
900         size_t alloc_size = min_t(size_t, count, PAGE_SIZE);
901         ssize_t ret = 0;
902         int err = 0;
903         char *tmp;
904
905         tmp = kmalloc(alloc_size, GFP_KERNEL);
906         if (!tmp)
907                 return -ENOMEM;
908
909         while (count) {
910                 size_t c = min_t(size_t, count, alloc_size);
911
912                 memcpy_fromio(tmp, src, c);
913                 if (copy_to_user(buf, tmp, c)) {
914                         err = -EFAULT;
915                         break;
916                 }
917
918                 src += c;
919                 buf += c;
920                 ret += c;
921                 count -= c;
922         }
923
924         kfree(tmp);
925
926         return ret ? ret : err;
927 }
928
929 /**
930  * drm_fb_helper_cfb_read - Implements struct &fb_ops.fb_read for I/O memory
931  * @info: fb_info struct pointer
932  * @buf: userspace buffer to read from framebuffer memory
933  * @count: number of bytes to read from framebuffer memory
934  * @ppos: read offset within framebuffer memory
935  *
936  * Returns:
937  * The number of bytes read on success, or an error code otherwise.
938  */
939 ssize_t drm_fb_helper_cfb_read(struct fb_info *info, char __user *buf,
940                                size_t count, loff_t *ppos)
941 {
942         return __drm_fb_helper_read(info, buf, count, ppos, fb_read_screen_base);
943 }
944 EXPORT_SYMBOL(drm_fb_helper_cfb_read);
945
946 static ssize_t fb_write_screen_base(struct fb_info *info, const char __user *buf, size_t count,
947                                     loff_t pos)
948 {
949         char __iomem *dst = info->screen_base + pos;
950         size_t alloc_size = min_t(size_t, count, PAGE_SIZE);
951         ssize_t ret = 0;
952         int err = 0;
953         u8 *tmp;
954
955         tmp = kmalloc(alloc_size, GFP_KERNEL);
956         if (!tmp)
957                 return -ENOMEM;
958
959         while (count) {
960                 size_t c = min_t(size_t, count, alloc_size);
961
962                 if (copy_from_user(tmp, buf, c)) {
963                         err = -EFAULT;
964                         break;
965                 }
966                 memcpy_toio(dst, tmp, c);
967
968                 dst += c;
969                 buf += c;
970                 ret += c;
971                 count -= c;
972         }
973
974         kfree(tmp);
975
976         return ret ? ret : err;
977 }
978
979 /**
980  * drm_fb_helper_cfb_write - Implements struct &fb_ops.fb_write for I/O memory
981  * @info: fb_info struct pointer
982  * @buf: userspace buffer to write to framebuffer memory
983  * @count: number of bytes to write to framebuffer memory
984  * @ppos: write offset within framebuffer memory
985  *
986  * Returns:
987  * The number of bytes written on success, or an error code otherwise.
988  */
989 ssize_t drm_fb_helper_cfb_write(struct fb_info *info, const char __user *buf,
990                                 size_t count, loff_t *ppos)
991 {
992         struct drm_fb_helper *helper = info->par;
993         loff_t pos = *ppos;
994         ssize_t ret;
995         struct drm_rect damage_area;
996
997         ret = __drm_fb_helper_write(info, buf, count, ppos, fb_write_screen_base);
998         if (ret <= 0)
999                 return ret;
1000
1001         if (helper->funcs->fb_dirty) {
1002                 drm_fb_helper_memory_range_to_clip(info, pos, ret, &damage_area);
1003                 drm_fb_helper_damage(helper, damage_area.x1, damage_area.y1,
1004                                      drm_rect_width(&damage_area),
1005                                      drm_rect_height(&damage_area));
1006         }
1007
1008         return ret;
1009 }
1010 EXPORT_SYMBOL(drm_fb_helper_cfb_write);
1011
1012 /**
1013  * drm_fb_helper_cfb_fillrect - wrapper around cfb_fillrect
1014  * @info: fbdev registered by the helper
1015  * @rect: info about rectangle to fill
1016  *
1017  * A wrapper around cfb_fillrect implemented by fbdev core
1018  */
1019 void drm_fb_helper_cfb_fillrect(struct fb_info *info,
1020                                 const struct fb_fillrect *rect)
1021 {
1022         struct drm_fb_helper *helper = info->par;
1023
1024         cfb_fillrect(info, rect);
1025
1026         if (helper->funcs->fb_dirty)
1027                 drm_fb_helper_damage(helper, rect->dx, rect->dy, rect->width, rect->height);
1028 }
1029 EXPORT_SYMBOL(drm_fb_helper_cfb_fillrect);
1030
1031 /**
1032  * drm_fb_helper_cfb_copyarea - wrapper around cfb_copyarea
1033  * @info: fbdev registered by the helper
1034  * @area: info about area to copy
1035  *
1036  * A wrapper around cfb_copyarea implemented by fbdev core
1037  */
1038 void drm_fb_helper_cfb_copyarea(struct fb_info *info,
1039                                 const struct fb_copyarea *area)
1040 {
1041         struct drm_fb_helper *helper = info->par;
1042
1043         cfb_copyarea(info, area);
1044
1045         if (helper->funcs->fb_dirty)
1046                 drm_fb_helper_damage(helper, area->dx, area->dy, area->width, area->height);
1047 }
1048 EXPORT_SYMBOL(drm_fb_helper_cfb_copyarea);
1049
1050 /**
1051  * drm_fb_helper_cfb_imageblit - wrapper around cfb_imageblit
1052  * @info: fbdev registered by the helper
1053  * @image: info about image to blit
1054  *
1055  * A wrapper around cfb_imageblit implemented by fbdev core
1056  */
1057 void drm_fb_helper_cfb_imageblit(struct fb_info *info,
1058                                  const struct fb_image *image)
1059 {
1060         struct drm_fb_helper *helper = info->par;
1061
1062         cfb_imageblit(info, image);
1063
1064         if (helper->funcs->fb_dirty)
1065                 drm_fb_helper_damage(helper, image->dx, image->dy, image->width, image->height);
1066 }
1067 EXPORT_SYMBOL(drm_fb_helper_cfb_imageblit);
1068
1069 /**
1070  * drm_fb_helper_set_suspend - wrapper around fb_set_suspend
1071  * @fb_helper: driver-allocated fbdev helper, can be NULL
1072  * @suspend: whether to suspend or resume
1073  *
1074  * A wrapper around fb_set_suspend implemented by fbdev core.
1075  * Use drm_fb_helper_set_suspend_unlocked() if you don't need to take
1076  * the lock yourself
1077  */
1078 void drm_fb_helper_set_suspend(struct drm_fb_helper *fb_helper, bool suspend)
1079 {
1080         if (fb_helper && fb_helper->info)
1081                 fb_set_suspend(fb_helper->info, suspend);
1082 }
1083 EXPORT_SYMBOL(drm_fb_helper_set_suspend);
1084
1085 /**
1086  * drm_fb_helper_set_suspend_unlocked - wrapper around fb_set_suspend that also
1087  *                                      takes the console lock
1088  * @fb_helper: driver-allocated fbdev helper, can be NULL
1089  * @suspend: whether to suspend or resume
1090  *
1091  * A wrapper around fb_set_suspend() that takes the console lock. If the lock
1092  * isn't available on resume, a worker is tasked with waiting for the lock
1093  * to become available. The console lock can be pretty contented on resume
1094  * due to all the printk activity.
1095  *
1096  * This function can be called multiple times with the same state since
1097  * &fb_info.state is checked to see if fbdev is running or not before locking.
1098  *
1099  * Use drm_fb_helper_set_suspend() if you need to take the lock yourself.
1100  */
1101 void drm_fb_helper_set_suspend_unlocked(struct drm_fb_helper *fb_helper,
1102                                         bool suspend)
1103 {
1104         if (!fb_helper || !fb_helper->info)
1105                 return;
1106
1107         /* make sure there's no pending/ongoing resume */
1108         flush_work(&fb_helper->resume_work);
1109
1110         if (suspend) {
1111                 if (fb_helper->info->state != FBINFO_STATE_RUNNING)
1112                         return;
1113
1114                 console_lock();
1115
1116         } else {
1117                 if (fb_helper->info->state == FBINFO_STATE_RUNNING)
1118                         return;
1119
1120                 if (!console_trylock()) {
1121                         schedule_work(&fb_helper->resume_work);
1122                         return;
1123                 }
1124         }
1125
1126         fb_set_suspend(fb_helper->info, suspend);
1127         console_unlock();
1128 }
1129 EXPORT_SYMBOL(drm_fb_helper_set_suspend_unlocked);
1130
1131 static int setcmap_pseudo_palette(struct fb_cmap *cmap, struct fb_info *info)
1132 {
1133         u32 *palette = (u32 *)info->pseudo_palette;
1134         int i;
1135
1136         if (cmap->start + cmap->len > 16)
1137                 return -EINVAL;
1138
1139         for (i = 0; i < cmap->len; ++i) {
1140                 u16 red = cmap->red[i];
1141                 u16 green = cmap->green[i];
1142                 u16 blue = cmap->blue[i];
1143                 u32 value;
1144
1145                 red >>= 16 - info->var.red.length;
1146                 green >>= 16 - info->var.green.length;
1147                 blue >>= 16 - info->var.blue.length;
1148                 value = (red << info->var.red.offset) |
1149                         (green << info->var.green.offset) |
1150                         (blue << info->var.blue.offset);
1151                 if (info->var.transp.length > 0) {
1152                         u32 mask = (1 << info->var.transp.length) - 1;
1153
1154                         mask <<= info->var.transp.offset;
1155                         value |= mask;
1156                 }
1157                 palette[cmap->start + i] = value;
1158         }
1159
1160         return 0;
1161 }
1162
1163 static int setcmap_legacy(struct fb_cmap *cmap, struct fb_info *info)
1164 {
1165         struct drm_fb_helper *fb_helper = info->par;
1166         struct drm_mode_set *modeset;
1167         struct drm_crtc *crtc;
1168         u16 *r, *g, *b;
1169         int ret = 0;
1170
1171         drm_modeset_lock_all(fb_helper->dev);
1172         drm_client_for_each_modeset(modeset, &fb_helper->client) {
1173                 crtc = modeset->crtc;
1174                 if (!crtc->funcs->gamma_set || !crtc->gamma_size) {
1175                         ret = -EINVAL;
1176                         goto out;
1177                 }
1178
1179                 if (cmap->start + cmap->len > crtc->gamma_size) {
1180                         ret = -EINVAL;
1181                         goto out;
1182                 }
1183
1184                 r = crtc->gamma_store;
1185                 g = r + crtc->gamma_size;
1186                 b = g + crtc->gamma_size;
1187
1188                 memcpy(r + cmap->start, cmap->red, cmap->len * sizeof(*r));
1189                 memcpy(g + cmap->start, cmap->green, cmap->len * sizeof(*g));
1190                 memcpy(b + cmap->start, cmap->blue, cmap->len * sizeof(*b));
1191
1192                 ret = crtc->funcs->gamma_set(crtc, r, g, b,
1193                                              crtc->gamma_size, NULL);
1194                 if (ret)
1195                         goto out;
1196         }
1197 out:
1198         drm_modeset_unlock_all(fb_helper->dev);
1199
1200         return ret;
1201 }
1202
1203 static struct drm_property_blob *setcmap_new_gamma_lut(struct drm_crtc *crtc,
1204                                                        struct fb_cmap *cmap)
1205 {
1206         struct drm_device *dev = crtc->dev;
1207         struct drm_property_blob *gamma_lut;
1208         struct drm_color_lut *lut;
1209         int size = crtc->gamma_size;
1210         int i;
1211
1212         if (!size || cmap->start + cmap->len > size)
1213                 return ERR_PTR(-EINVAL);
1214
1215         gamma_lut = drm_property_create_blob(dev, sizeof(*lut) * size, NULL);
1216         if (IS_ERR(gamma_lut))
1217                 return gamma_lut;
1218
1219         lut = gamma_lut->data;
1220         if (cmap->start || cmap->len != size) {
1221                 u16 *r = crtc->gamma_store;
1222                 u16 *g = r + crtc->gamma_size;
1223                 u16 *b = g + crtc->gamma_size;
1224
1225                 for (i = 0; i < cmap->start; i++) {
1226                         lut[i].red = r[i];
1227                         lut[i].green = g[i];
1228                         lut[i].blue = b[i];
1229                 }
1230                 for (i = cmap->start + cmap->len; i < size; i++) {
1231                         lut[i].red = r[i];
1232                         lut[i].green = g[i];
1233                         lut[i].blue = b[i];
1234                 }
1235         }
1236
1237         for (i = 0; i < cmap->len; i++) {
1238                 lut[cmap->start + i].red = cmap->red[i];
1239                 lut[cmap->start + i].green = cmap->green[i];
1240                 lut[cmap->start + i].blue = cmap->blue[i];
1241         }
1242
1243         return gamma_lut;
1244 }
1245
1246 static int setcmap_atomic(struct fb_cmap *cmap, struct fb_info *info)
1247 {
1248         struct drm_fb_helper *fb_helper = info->par;
1249         struct drm_device *dev = fb_helper->dev;
1250         struct drm_property_blob *gamma_lut = NULL;
1251         struct drm_modeset_acquire_ctx ctx;
1252         struct drm_crtc_state *crtc_state;
1253         struct drm_atomic_state *state;
1254         struct drm_mode_set *modeset;
1255         struct drm_crtc *crtc;
1256         u16 *r, *g, *b;
1257         bool replaced;
1258         int ret = 0;
1259
1260         drm_modeset_acquire_init(&ctx, 0);
1261
1262         state = drm_atomic_state_alloc(dev);
1263         if (!state) {
1264                 ret = -ENOMEM;
1265                 goto out_ctx;
1266         }
1267
1268         state->acquire_ctx = &ctx;
1269 retry:
1270         drm_client_for_each_modeset(modeset, &fb_helper->client) {
1271                 crtc = modeset->crtc;
1272
1273                 if (!gamma_lut)
1274                         gamma_lut = setcmap_new_gamma_lut(crtc, cmap);
1275                 if (IS_ERR(gamma_lut)) {
1276                         ret = PTR_ERR(gamma_lut);
1277                         gamma_lut = NULL;
1278                         goto out_state;
1279                 }
1280
1281                 crtc_state = drm_atomic_get_crtc_state(state, crtc);
1282                 if (IS_ERR(crtc_state)) {
1283                         ret = PTR_ERR(crtc_state);
1284                         goto out_state;
1285                 }
1286
1287                 /*
1288                  * FIXME: This always uses gamma_lut. Some HW have only
1289                  * degamma_lut, in which case we should reset gamma_lut and set
1290                  * degamma_lut. See drm_crtc_legacy_gamma_set().
1291                  */
1292                 replaced  = drm_property_replace_blob(&crtc_state->degamma_lut,
1293                                                       NULL);
1294                 replaced |= drm_property_replace_blob(&crtc_state->ctm, NULL);
1295                 replaced |= drm_property_replace_blob(&crtc_state->gamma_lut,
1296                                                       gamma_lut);
1297                 crtc_state->color_mgmt_changed |= replaced;
1298         }
1299
1300         ret = drm_atomic_commit(state);
1301         if (ret)
1302                 goto out_state;
1303
1304         drm_client_for_each_modeset(modeset, &fb_helper->client) {
1305                 crtc = modeset->crtc;
1306
1307                 r = crtc->gamma_store;
1308                 g = r + crtc->gamma_size;
1309                 b = g + crtc->gamma_size;
1310
1311                 memcpy(r + cmap->start, cmap->red, cmap->len * sizeof(*r));
1312                 memcpy(g + cmap->start, cmap->green, cmap->len * sizeof(*g));
1313                 memcpy(b + cmap->start, cmap->blue, cmap->len * sizeof(*b));
1314         }
1315
1316 out_state:
1317         if (ret == -EDEADLK)
1318                 goto backoff;
1319
1320         drm_property_blob_put(gamma_lut);
1321         drm_atomic_state_put(state);
1322 out_ctx:
1323         drm_modeset_drop_locks(&ctx);
1324         drm_modeset_acquire_fini(&ctx);
1325
1326         return ret;
1327
1328 backoff:
1329         drm_atomic_state_clear(state);
1330         drm_modeset_backoff(&ctx);
1331         goto retry;
1332 }
1333
1334 /**
1335  * drm_fb_helper_setcmap - implementation for &fb_ops.fb_setcmap
1336  * @cmap: cmap to set
1337  * @info: fbdev registered by the helper
1338  */
1339 int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
1340 {
1341         struct drm_fb_helper *fb_helper = info->par;
1342         struct drm_device *dev = fb_helper->dev;
1343         int ret;
1344
1345         if (oops_in_progress)
1346                 return -EBUSY;
1347
1348         mutex_lock(&fb_helper->lock);
1349
1350         if (!drm_master_internal_acquire(dev)) {
1351                 ret = -EBUSY;
1352                 goto unlock;
1353         }
1354
1355         mutex_lock(&fb_helper->client.modeset_mutex);
1356         if (info->fix.visual == FB_VISUAL_TRUECOLOR)
1357                 ret = setcmap_pseudo_palette(cmap, info);
1358         else if (drm_drv_uses_atomic_modeset(fb_helper->dev))
1359                 ret = setcmap_atomic(cmap, info);
1360         else
1361                 ret = setcmap_legacy(cmap, info);
1362         mutex_unlock(&fb_helper->client.modeset_mutex);
1363
1364         drm_master_internal_release(dev);
1365 unlock:
1366         mutex_unlock(&fb_helper->lock);
1367
1368         return ret;
1369 }
1370 EXPORT_SYMBOL(drm_fb_helper_setcmap);
1371
1372 /**
1373  * drm_fb_helper_ioctl - legacy ioctl implementation
1374  * @info: fbdev registered by the helper
1375  * @cmd: ioctl command
1376  * @arg: ioctl argument
1377  *
1378  * A helper to implement the standard fbdev ioctl. Only
1379  * FBIO_WAITFORVSYNC is implemented for now.
1380  */
1381 int drm_fb_helper_ioctl(struct fb_info *info, unsigned int cmd,
1382                         unsigned long arg)
1383 {
1384         struct drm_fb_helper *fb_helper = info->par;
1385         struct drm_device *dev = fb_helper->dev;
1386         struct drm_crtc *crtc;
1387         int ret = 0;
1388
1389         mutex_lock(&fb_helper->lock);
1390         if (!drm_master_internal_acquire(dev)) {
1391                 ret = -EBUSY;
1392                 goto unlock;
1393         }
1394
1395         switch (cmd) {
1396         case FBIO_WAITFORVSYNC:
1397                 /*
1398                  * Only consider the first CRTC.
1399                  *
1400                  * This ioctl is supposed to take the CRTC number as
1401                  * an argument, but in fbdev times, what that number
1402                  * was supposed to be was quite unclear, different
1403                  * drivers were passing that argument differently
1404                  * (some by reference, some by value), and most of the
1405                  * userspace applications were just hardcoding 0 as an
1406                  * argument.
1407                  *
1408                  * The first CRTC should be the integrated panel on
1409                  * most drivers, so this is the best choice we can
1410                  * make. If we're not smart enough here, one should
1411                  * just consider switch the userspace to KMS.
1412                  */
1413                 crtc = fb_helper->client.modesets[0].crtc;
1414
1415                 /*
1416                  * Only wait for a vblank event if the CRTC is
1417                  * enabled, otherwise just don't do anythintg,
1418                  * not even report an error.
1419                  */
1420                 ret = drm_crtc_vblank_get(crtc);
1421                 if (!ret) {
1422                         drm_crtc_wait_one_vblank(crtc);
1423                         drm_crtc_vblank_put(crtc);
1424                 }
1425
1426                 ret = 0;
1427                 break;
1428         default:
1429                 ret = -ENOTTY;
1430         }
1431
1432         drm_master_internal_release(dev);
1433 unlock:
1434         mutex_unlock(&fb_helper->lock);
1435         return ret;
1436 }
1437 EXPORT_SYMBOL(drm_fb_helper_ioctl);
1438
1439 static bool drm_fb_pixel_format_equal(const struct fb_var_screeninfo *var_1,
1440                                       const struct fb_var_screeninfo *var_2)
1441 {
1442         return var_1->bits_per_pixel == var_2->bits_per_pixel &&
1443                var_1->grayscale == var_2->grayscale &&
1444                var_1->red.offset == var_2->red.offset &&
1445                var_1->red.length == var_2->red.length &&
1446                var_1->red.msb_right == var_2->red.msb_right &&
1447                var_1->green.offset == var_2->green.offset &&
1448                var_1->green.length == var_2->green.length &&
1449                var_1->green.msb_right == var_2->green.msb_right &&
1450                var_1->blue.offset == var_2->blue.offset &&
1451                var_1->blue.length == var_2->blue.length &&
1452                var_1->blue.msb_right == var_2->blue.msb_right &&
1453                var_1->transp.offset == var_2->transp.offset &&
1454                var_1->transp.length == var_2->transp.length &&
1455                var_1->transp.msb_right == var_2->transp.msb_right;
1456 }
1457
1458 static void drm_fb_helper_fill_pixel_fmt(struct fb_var_screeninfo *var,
1459                                          const struct drm_format_info *format)
1460 {
1461         u8 depth = format->depth;
1462
1463         if (format->is_color_indexed) {
1464                 var->red.offset = 0;
1465                 var->green.offset = 0;
1466                 var->blue.offset = 0;
1467                 var->red.length = depth;
1468                 var->green.length = depth;
1469                 var->blue.length = depth;
1470                 var->transp.offset = 0;
1471                 var->transp.length = 0;
1472                 return;
1473         }
1474
1475         switch (depth) {
1476         case 15:
1477                 var->red.offset = 10;
1478                 var->green.offset = 5;
1479                 var->blue.offset = 0;
1480                 var->red.length = 5;
1481                 var->green.length = 5;
1482                 var->blue.length = 5;
1483                 var->transp.offset = 15;
1484                 var->transp.length = 1;
1485                 break;
1486         case 16:
1487                 var->red.offset = 11;
1488                 var->green.offset = 5;
1489                 var->blue.offset = 0;
1490                 var->red.length = 5;
1491                 var->green.length = 6;
1492                 var->blue.length = 5;
1493                 var->transp.offset = 0;
1494                 break;
1495         case 24:
1496                 var->red.offset = 16;
1497                 var->green.offset = 8;
1498                 var->blue.offset = 0;
1499                 var->red.length = 8;
1500                 var->green.length = 8;
1501                 var->blue.length = 8;
1502                 var->transp.offset = 0;
1503                 var->transp.length = 0;
1504                 break;
1505         case 32:
1506                 var->red.offset = 16;
1507                 var->green.offset = 8;
1508                 var->blue.offset = 0;
1509                 var->red.length = 8;
1510                 var->green.length = 8;
1511                 var->blue.length = 8;
1512                 var->transp.offset = 24;
1513                 var->transp.length = 8;
1514                 break;
1515         default:
1516                 break;
1517         }
1518 }
1519
1520 /**
1521  * drm_fb_helper_check_var - implementation for &fb_ops.fb_check_var
1522  * @var: screeninfo to check
1523  * @info: fbdev registered by the helper
1524  */
1525 int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
1526                             struct fb_info *info)
1527 {
1528         struct drm_fb_helper *fb_helper = info->par;
1529         struct drm_framebuffer *fb = fb_helper->fb;
1530         const struct drm_format_info *format = fb->format;
1531         struct drm_device *dev = fb_helper->dev;
1532         unsigned int bpp;
1533
1534         if (in_dbg_master())
1535                 return -EINVAL;
1536
1537         if (var->pixclock != 0) {
1538                 drm_dbg_kms(dev, "fbdev emulation doesn't support changing the pixel clock, value of pixclock is ignored\n");
1539                 var->pixclock = 0;
1540         }
1541
1542         switch (format->format) {
1543         case DRM_FORMAT_C1:
1544         case DRM_FORMAT_C2:
1545         case DRM_FORMAT_C4:
1546                 /* supported format with sub-byte pixels */
1547                 break;
1548
1549         default:
1550                 if ((drm_format_info_block_width(format, 0) > 1) ||
1551                     (drm_format_info_block_height(format, 0) > 1))
1552                         return -EINVAL;
1553                 break;
1554         }
1555
1556         /*
1557          * Changes struct fb_var_screeninfo are currently not pushed back
1558          * to KMS, hence fail if different settings are requested.
1559          */
1560         bpp = drm_format_info_bpp(format, 0);
1561         if (var->bits_per_pixel > bpp ||
1562             var->xres > fb->width || var->yres > fb->height ||
1563             var->xres_virtual > fb->width || var->yres_virtual > fb->height) {
1564                 drm_dbg_kms(dev, "fb requested width/height/bpp can't fit in current fb "
1565                           "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
1566                           var->xres, var->yres, var->bits_per_pixel,
1567                           var->xres_virtual, var->yres_virtual,
1568                           fb->width, fb->height, bpp);
1569                 return -EINVAL;
1570         }
1571
1572         /*
1573          * Workaround for SDL 1.2, which is known to be setting all pixel format
1574          * fields values to zero in some cases. We treat this situation as a
1575          * kind of "use some reasonable autodetected values".
1576          */
1577         if (!var->red.offset     && !var->green.offset    &&
1578             !var->blue.offset    && !var->transp.offset   &&
1579             !var->red.length     && !var->green.length    &&
1580             !var->blue.length    && !var->transp.length   &&
1581             !var->red.msb_right  && !var->green.msb_right &&
1582             !var->blue.msb_right && !var->transp.msb_right) {
1583                 drm_fb_helper_fill_pixel_fmt(var, format);
1584         }
1585
1586         /*
1587          * Likewise, bits_per_pixel should be rounded up to a supported value.
1588          */
1589         var->bits_per_pixel = bpp;
1590
1591         /*
1592          * drm fbdev emulation doesn't support changing the pixel format at all,
1593          * so reject all pixel format changing requests.
1594          */
1595         if (!drm_fb_pixel_format_equal(var, &info->var)) {
1596                 drm_dbg_kms(dev, "fbdev emulation doesn't support changing the pixel format\n");
1597                 return -EINVAL;
1598         }
1599
1600         return 0;
1601 }
1602 EXPORT_SYMBOL(drm_fb_helper_check_var);
1603
1604 /**
1605  * drm_fb_helper_set_par - implementation for &fb_ops.fb_set_par
1606  * @info: fbdev registered by the helper
1607  *
1608  * This will let fbcon do the mode init and is called at initialization time by
1609  * the fbdev core when registering the driver, and later on through the hotplug
1610  * callback.
1611  */
1612 int drm_fb_helper_set_par(struct fb_info *info)
1613 {
1614         struct drm_fb_helper *fb_helper = info->par;
1615         struct fb_var_screeninfo *var = &info->var;
1616         bool force;
1617
1618         if (oops_in_progress)
1619                 return -EBUSY;
1620
1621         if (var->pixclock != 0) {
1622                 drm_err(fb_helper->dev, "PIXEL CLOCK SET\n");
1623                 return -EINVAL;
1624         }
1625
1626         /*
1627          * Normally we want to make sure that a kms master takes precedence over
1628          * fbdev, to avoid fbdev flickering and occasionally stealing the
1629          * display status. But Xorg first sets the vt back to text mode using
1630          * the KDSET IOCTL with KD_TEXT, and only after that drops the master
1631          * status when exiting.
1632          *
1633          * In the past this was caught by drm_fb_helper_lastclose(), but on
1634          * modern systems where logind always keeps a drm fd open to orchestrate
1635          * the vt switching, this doesn't work.
1636          *
1637          * To not break the userspace ABI we have this special case here, which
1638          * is only used for the above case. Everything else uses the normal
1639          * commit function, which ensures that we never steal the display from
1640          * an active drm master.
1641          */
1642         force = var->activate & FB_ACTIVATE_KD_TEXT;
1643
1644         __drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper, force);
1645
1646         return 0;
1647 }
1648 EXPORT_SYMBOL(drm_fb_helper_set_par);
1649
1650 static void pan_set(struct drm_fb_helper *fb_helper, int x, int y)
1651 {
1652         struct drm_mode_set *mode_set;
1653
1654         mutex_lock(&fb_helper->client.modeset_mutex);
1655         drm_client_for_each_modeset(mode_set, &fb_helper->client) {
1656                 mode_set->x = x;
1657                 mode_set->y = y;
1658         }
1659         mutex_unlock(&fb_helper->client.modeset_mutex);
1660 }
1661
1662 static int pan_display_atomic(struct fb_var_screeninfo *var,
1663                               struct fb_info *info)
1664 {
1665         struct drm_fb_helper *fb_helper = info->par;
1666         int ret;
1667
1668         pan_set(fb_helper, var->xoffset, var->yoffset);
1669
1670         ret = drm_client_modeset_commit_locked(&fb_helper->client);
1671         if (!ret) {
1672                 info->var.xoffset = var->xoffset;
1673                 info->var.yoffset = var->yoffset;
1674         } else
1675                 pan_set(fb_helper, info->var.xoffset, info->var.yoffset);
1676
1677         return ret;
1678 }
1679
1680 static int pan_display_legacy(struct fb_var_screeninfo *var,
1681                               struct fb_info *info)
1682 {
1683         struct drm_fb_helper *fb_helper = info->par;
1684         struct drm_client_dev *client = &fb_helper->client;
1685         struct drm_mode_set *modeset;
1686         int ret = 0;
1687
1688         mutex_lock(&client->modeset_mutex);
1689         drm_modeset_lock_all(fb_helper->dev);
1690         drm_client_for_each_modeset(modeset, client) {
1691                 modeset->x = var->xoffset;
1692                 modeset->y = var->yoffset;
1693
1694                 if (modeset->num_connectors) {
1695                         ret = drm_mode_set_config_internal(modeset);
1696                         if (!ret) {
1697                                 info->var.xoffset = var->xoffset;
1698                                 info->var.yoffset = var->yoffset;
1699                         }
1700                 }
1701         }
1702         drm_modeset_unlock_all(fb_helper->dev);
1703         mutex_unlock(&client->modeset_mutex);
1704
1705         return ret;
1706 }
1707
1708 /**
1709  * drm_fb_helper_pan_display - implementation for &fb_ops.fb_pan_display
1710  * @var: updated screen information
1711  * @info: fbdev registered by the helper
1712  */
1713 int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
1714                               struct fb_info *info)
1715 {
1716         struct drm_fb_helper *fb_helper = info->par;
1717         struct drm_device *dev = fb_helper->dev;
1718         int ret;
1719
1720         if (oops_in_progress)
1721                 return -EBUSY;
1722
1723         mutex_lock(&fb_helper->lock);
1724         if (!drm_master_internal_acquire(dev)) {
1725                 ret = -EBUSY;
1726                 goto unlock;
1727         }
1728
1729         if (drm_drv_uses_atomic_modeset(dev))
1730                 ret = pan_display_atomic(var, info);
1731         else
1732                 ret = pan_display_legacy(var, info);
1733
1734         drm_master_internal_release(dev);
1735 unlock:
1736         mutex_unlock(&fb_helper->lock);
1737
1738         return ret;
1739 }
1740 EXPORT_SYMBOL(drm_fb_helper_pan_display);
1741
1742 /*
1743  * Allocates the backing storage and sets up the fbdev info structure through
1744  * the ->fb_probe callback.
1745  */
1746 static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
1747                                          int preferred_bpp)
1748 {
1749         struct drm_client_dev *client = &fb_helper->client;
1750         struct drm_device *dev = fb_helper->dev;
1751         struct drm_mode_config *config = &dev->mode_config;
1752         int ret = 0;
1753         int crtc_count = 0;
1754         struct drm_connector_list_iter conn_iter;
1755         struct drm_fb_helper_surface_size sizes;
1756         struct drm_connector *connector;
1757         struct drm_mode_set *mode_set;
1758         int best_depth = 0;
1759
1760         memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
1761         sizes.surface_depth = 24;
1762         sizes.surface_bpp = 32;
1763         sizes.fb_width = (u32)-1;
1764         sizes.fb_height = (u32)-1;
1765
1766         /*
1767          * If driver picks 8 or 16 by default use that for both depth/bpp
1768          * to begin with
1769          */
1770         if (preferred_bpp != sizes.surface_bpp)
1771                 sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
1772
1773         drm_connector_list_iter_begin(fb_helper->dev, &conn_iter);
1774         drm_client_for_each_connector_iter(connector, &conn_iter) {
1775                 struct drm_cmdline_mode *cmdline_mode;
1776
1777                 cmdline_mode = &connector->cmdline_mode;
1778
1779                 if (cmdline_mode->bpp_specified) {
1780                         switch (cmdline_mode->bpp) {
1781                         case 8:
1782                                 sizes.surface_depth = sizes.surface_bpp = 8;
1783                                 break;
1784                         case 15:
1785                                 sizes.surface_depth = 15;
1786                                 sizes.surface_bpp = 16;
1787                                 break;
1788                         case 16:
1789                                 sizes.surface_depth = sizes.surface_bpp = 16;
1790                                 break;
1791                         case 24:
1792                                 sizes.surface_depth = sizes.surface_bpp = 24;
1793                                 break;
1794                         case 32:
1795                                 sizes.surface_depth = 24;
1796                                 sizes.surface_bpp = 32;
1797                                 break;
1798                         }
1799                         break;
1800                 }
1801         }
1802         drm_connector_list_iter_end(&conn_iter);
1803
1804         /*
1805          * If we run into a situation where, for example, the primary plane
1806          * supports RGBA5551 (16 bpp, depth 15) but not RGB565 (16 bpp, depth
1807          * 16) we need to scale down the depth of the sizes we request.
1808          */
1809         mutex_lock(&client->modeset_mutex);
1810         drm_client_for_each_modeset(mode_set, client) {
1811                 struct drm_crtc *crtc = mode_set->crtc;
1812                 struct drm_plane *plane = crtc->primary;
1813                 int j;
1814
1815                 drm_dbg_kms(dev, "test CRTC %u primary plane\n", drm_crtc_index(crtc));
1816
1817                 for (j = 0; j < plane->format_count; j++) {
1818                         const struct drm_format_info *fmt;
1819
1820                         fmt = drm_format_info(plane->format_types[j]);
1821
1822                         /*
1823                          * Do not consider YUV or other complicated formats
1824                          * for framebuffers. This means only legacy formats
1825                          * are supported (fmt->depth is a legacy field) but
1826                          * the framebuffer emulation can only deal with such
1827                          * formats, specifically RGB/BGA formats.
1828                          */
1829                         if (fmt->depth == 0)
1830                                 continue;
1831
1832                         /* We found a perfect fit, great */
1833                         if (fmt->depth == sizes.surface_depth) {
1834                                 best_depth = fmt->depth;
1835                                 break;
1836                         }
1837
1838                         /* Skip depths above what we're looking for */
1839                         if (fmt->depth > sizes.surface_depth)
1840                                 continue;
1841
1842                         /* Best depth found so far */
1843                         if (fmt->depth > best_depth)
1844                                 best_depth = fmt->depth;
1845                 }
1846         }
1847         if (sizes.surface_depth != best_depth && best_depth) {
1848                 drm_info(dev, "requested bpp %d, scaled depth down to %d",
1849                          sizes.surface_bpp, best_depth);
1850                 sizes.surface_depth = best_depth;
1851         }
1852
1853         /* first up get a count of crtcs now in use and new min/maxes width/heights */
1854         crtc_count = 0;
1855         drm_client_for_each_modeset(mode_set, client) {
1856                 struct drm_display_mode *desired_mode;
1857                 int x, y, j;
1858                 /* in case of tile group, are we the last tile vert or horiz?
1859                  * If no tile group you are always the last one both vertically
1860                  * and horizontally
1861                  */
1862                 bool lastv = true, lasth = true;
1863
1864                 desired_mode = mode_set->mode;
1865
1866                 if (!desired_mode)
1867                         continue;
1868
1869                 crtc_count++;
1870
1871                 x = mode_set->x;
1872                 y = mode_set->y;
1873
1874                 sizes.surface_width  = max_t(u32, desired_mode->hdisplay + x, sizes.surface_width);
1875                 sizes.surface_height = max_t(u32, desired_mode->vdisplay + y, sizes.surface_height);
1876
1877                 for (j = 0; j < mode_set->num_connectors; j++) {
1878                         struct drm_connector *connector = mode_set->connectors[j];
1879
1880                         if (connector->has_tile &&
1881                             desired_mode->hdisplay == connector->tile_h_size &&
1882                             desired_mode->vdisplay == connector->tile_v_size) {
1883                                 lasth = (connector->tile_h_loc == (connector->num_h_tile - 1));
1884                                 lastv = (connector->tile_v_loc == (connector->num_v_tile - 1));
1885                                 /* cloning to multiple tiles is just crazy-talk, so: */
1886                                 break;
1887                         }
1888                 }
1889
1890                 if (lasth)
1891                         sizes.fb_width  = min_t(u32, desired_mode->hdisplay + x, sizes.fb_width);
1892                 if (lastv)
1893                         sizes.fb_height = min_t(u32, desired_mode->vdisplay + y, sizes.fb_height);
1894         }
1895         mutex_unlock(&client->modeset_mutex);
1896
1897         if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
1898                 drm_info(dev, "Cannot find any crtc or sizes\n");
1899
1900                 /* First time: disable all crtc's.. */
1901                 if (!fb_helper->deferred_setup)
1902                         drm_client_modeset_commit(client);
1903                 return -EAGAIN;
1904         }
1905
1906         /* Handle our overallocation */
1907         sizes.surface_height *= drm_fbdev_overalloc;
1908         sizes.surface_height /= 100;
1909         if (sizes.surface_height > config->max_height) {
1910                 drm_dbg_kms(dev, "Fbdev over-allocation too large; clamping height to %d\n",
1911                             config->max_height);
1912                 sizes.surface_height = config->max_height;
1913         }
1914
1915 #if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM)
1916         fb_helper->hint_leak_smem_start = drm_leak_fbdev_smem;
1917 #endif
1918
1919         /* push down into drivers */
1920         ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
1921         if (ret < 0)
1922                 return ret;
1923
1924         strcpy(fb_helper->fb->comm, "[fbcon]");
1925         return 0;
1926 }
1927
1928 static void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
1929                                    bool is_color_indexed)
1930 {
1931         info->fix.type = FB_TYPE_PACKED_PIXELS;
1932         info->fix.visual = is_color_indexed ? FB_VISUAL_PSEUDOCOLOR
1933                                             : FB_VISUAL_TRUECOLOR;
1934         info->fix.mmio_start = 0;
1935         info->fix.mmio_len = 0;
1936         info->fix.type_aux = 0;
1937         info->fix.xpanstep = 1; /* doing it in hw */
1938         info->fix.ypanstep = 1; /* doing it in hw */
1939         info->fix.ywrapstep = 0;
1940         info->fix.accel = FB_ACCEL_NONE;
1941
1942         info->fix.line_length = pitch;
1943 }
1944
1945 static void drm_fb_helper_fill_var(struct fb_info *info,
1946                                    struct drm_fb_helper *fb_helper,
1947                                    uint32_t fb_width, uint32_t fb_height)
1948 {
1949         struct drm_framebuffer *fb = fb_helper->fb;
1950         const struct drm_format_info *format = fb->format;
1951
1952         switch (format->format) {
1953         case DRM_FORMAT_C1:
1954         case DRM_FORMAT_C2:
1955         case DRM_FORMAT_C4:
1956                 /* supported format with sub-byte pixels */
1957                 break;
1958
1959         default:
1960                 WARN_ON((drm_format_info_block_width(format, 0) > 1) ||
1961                         (drm_format_info_block_height(format, 0) > 1));
1962                 break;
1963         }
1964
1965         info->pseudo_palette = fb_helper->pseudo_palette;
1966         info->var.xres_virtual = fb->width;
1967         info->var.yres_virtual = fb->height;
1968         info->var.bits_per_pixel = drm_format_info_bpp(format, 0);
1969         info->var.accel_flags = FB_ACCELF_TEXT;
1970         info->var.xoffset = 0;
1971         info->var.yoffset = 0;
1972         info->var.activate = FB_ACTIVATE_NOW;
1973
1974         drm_fb_helper_fill_pixel_fmt(&info->var, format);
1975
1976         info->var.xres = fb_width;
1977         info->var.yres = fb_height;
1978 }
1979
1980 /**
1981  * drm_fb_helper_fill_info - initializes fbdev information
1982  * @info: fbdev instance to set up
1983  * @fb_helper: fb helper instance to use as template
1984  * @sizes: describes fbdev size and scanout surface size
1985  *
1986  * Sets up the variable and fixed fbdev metainformation from the given fb helper
1987  * instance and the drm framebuffer allocated in &drm_fb_helper.fb.
1988  *
1989  * Drivers should call this (or their equivalent setup code) from their
1990  * &drm_fb_helper_funcs.fb_probe callback after having allocated the fbdev
1991  * backing storage framebuffer.
1992  */
1993 void drm_fb_helper_fill_info(struct fb_info *info,
1994                              struct drm_fb_helper *fb_helper,
1995                              struct drm_fb_helper_surface_size *sizes)
1996 {
1997         struct drm_framebuffer *fb = fb_helper->fb;
1998
1999         drm_fb_helper_fill_fix(info, fb->pitches[0],
2000                                fb->format->is_color_indexed);
2001         drm_fb_helper_fill_var(info, fb_helper,
2002                                sizes->fb_width, sizes->fb_height);
2003
2004         info->par = fb_helper;
2005         /*
2006          * The DRM drivers fbdev emulation device name can be confusing if the
2007          * driver name also has a "drm" suffix on it. Leading to names such as
2008          * "simpledrmdrmfb" in /proc/fb. Unfortunately, it's an uAPI and can't
2009          * be changed due user-space tools (e.g: pm-utils) matching against it.
2010          */
2011         snprintf(info->fix.id, sizeof(info->fix.id), "%sdrmfb",
2012                  fb_helper->dev->driver->name);
2013
2014 }
2015 EXPORT_SYMBOL(drm_fb_helper_fill_info);
2016
2017 /*
2018  * This is a continuation of drm_setup_crtcs() that sets up anything related
2019  * to the framebuffer. During initialization, drm_setup_crtcs() is called before
2020  * the framebuffer has been allocated (fb_helper->fb and fb_helper->info).
2021  * So, any setup that touches those fields needs to be done here instead of in
2022  * drm_setup_crtcs().
2023  */
2024 static void drm_setup_crtcs_fb(struct drm_fb_helper *fb_helper)
2025 {
2026         struct drm_client_dev *client = &fb_helper->client;
2027         struct drm_connector_list_iter conn_iter;
2028         struct fb_info *info = fb_helper->info;
2029         unsigned int rotation, sw_rotations = 0;
2030         struct drm_connector *connector;
2031         struct drm_mode_set *modeset;
2032
2033         mutex_lock(&client->modeset_mutex);
2034         drm_client_for_each_modeset(modeset, client) {
2035                 if (!modeset->num_connectors)
2036                         continue;
2037
2038                 modeset->fb = fb_helper->fb;
2039
2040                 if (drm_client_rotation(modeset, &rotation))
2041                         /* Rotating in hardware, fbcon should not rotate */
2042                         sw_rotations |= DRM_MODE_ROTATE_0;
2043                 else
2044                         sw_rotations |= rotation;
2045         }
2046         mutex_unlock(&client->modeset_mutex);
2047
2048         drm_connector_list_iter_begin(fb_helper->dev, &conn_iter);
2049         drm_client_for_each_connector_iter(connector, &conn_iter) {
2050
2051                 /* use first connected connector for the physical dimensions */
2052                 if (connector->status == connector_status_connected) {
2053                         info->var.width = connector->display_info.width_mm;
2054                         info->var.height = connector->display_info.height_mm;
2055                         break;
2056                 }
2057         }
2058         drm_connector_list_iter_end(&conn_iter);
2059
2060         switch (sw_rotations) {
2061         case DRM_MODE_ROTATE_0:
2062                 info->fbcon_rotate_hint = FB_ROTATE_UR;
2063                 break;
2064         case DRM_MODE_ROTATE_90:
2065                 info->fbcon_rotate_hint = FB_ROTATE_CCW;
2066                 break;
2067         case DRM_MODE_ROTATE_180:
2068                 info->fbcon_rotate_hint = FB_ROTATE_UD;
2069                 break;
2070         case DRM_MODE_ROTATE_270:
2071                 info->fbcon_rotate_hint = FB_ROTATE_CW;
2072                 break;
2073         default:
2074                 /*
2075                  * Multiple bits are set / multiple rotations requested
2076                  * fbcon cannot handle separate rotation settings per
2077                  * output, so fallback to unrotated.
2078                  */
2079                 info->fbcon_rotate_hint = FB_ROTATE_UR;
2080         }
2081 }
2082
2083 /* Note: Drops fb_helper->lock before returning. */
2084 static int
2085 __drm_fb_helper_initial_config_and_unlock(struct drm_fb_helper *fb_helper,
2086                                           int bpp_sel)
2087 {
2088         struct drm_device *dev = fb_helper->dev;
2089         struct fb_info *info;
2090         unsigned int width, height;
2091         int ret;
2092
2093         width = dev->mode_config.max_width;
2094         height = dev->mode_config.max_height;
2095
2096         drm_client_modeset_probe(&fb_helper->client, width, height);
2097         ret = drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
2098         if (ret < 0) {
2099                 if (ret == -EAGAIN) {
2100                         fb_helper->preferred_bpp = bpp_sel;
2101                         fb_helper->deferred_setup = true;
2102                         ret = 0;
2103                 }
2104                 mutex_unlock(&fb_helper->lock);
2105
2106                 return ret;
2107         }
2108         drm_setup_crtcs_fb(fb_helper);
2109
2110         fb_helper->deferred_setup = false;
2111
2112         info = fb_helper->info;
2113         info->var.pixclock = 0;
2114         /* Shamelessly allow physical address leaking to userspace */
2115 #if IS_ENABLED(CONFIG_DRM_FBDEV_LEAK_PHYS_SMEM)
2116         if (!fb_helper->hint_leak_smem_start)
2117 #endif
2118                 /* don't leak any physical addresses to userspace */
2119                 info->flags |= FBINFO_HIDE_SMEM_START;
2120
2121         /* Need to drop locks to avoid recursive deadlock in
2122          * register_framebuffer. This is ok because the only thing left to do is
2123          * register the fbdev emulation instance in kernel_fb_helper_list. */
2124         mutex_unlock(&fb_helper->lock);
2125
2126         ret = register_framebuffer(info);
2127         if (ret < 0)
2128                 return ret;
2129
2130         drm_info(dev, "fb%d: %s frame buffer device\n",
2131                  info->node, info->fix.id);
2132
2133         mutex_lock(&kernel_fb_helper_lock);
2134         if (list_empty(&kernel_fb_helper_list))
2135                 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
2136
2137         list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
2138         mutex_unlock(&kernel_fb_helper_lock);
2139
2140         return 0;
2141 }
2142
2143 /**
2144  * drm_fb_helper_initial_config - setup a sane initial connector configuration
2145  * @fb_helper: fb_helper device struct
2146  * @bpp_sel: bpp value to use for the framebuffer configuration
2147  *
2148  * Scans the CRTCs and connectors and tries to put together an initial setup.
2149  * At the moment, this is a cloned configuration across all heads with
2150  * a new framebuffer object as the backing store.
2151  *
2152  * Note that this also registers the fbdev and so allows userspace to call into
2153  * the driver through the fbdev interfaces.
2154  *
2155  * This function will call down into the &drm_fb_helper_funcs.fb_probe callback
2156  * to let the driver allocate and initialize the fbdev info structure and the
2157  * drm framebuffer used to back the fbdev. drm_fb_helper_fill_info() is provided
2158  * as a helper to setup simple default values for the fbdev info structure.
2159  *
2160  * HANG DEBUGGING:
2161  *
2162  * When you have fbcon support built-in or already loaded, this function will do
2163  * a full modeset to setup the fbdev console. Due to locking misdesign in the
2164  * VT/fbdev subsystem that entire modeset sequence has to be done while holding
2165  * console_lock. Until console_unlock is called no dmesg lines will be sent out
2166  * to consoles, not even serial console. This means when your driver crashes,
2167  * you will see absolutely nothing else but a system stuck in this function,
2168  * with no further output. Any kind of printk() you place within your own driver
2169  * or in the drm core modeset code will also never show up.
2170  *
2171  * Standard debug practice is to run the fbcon setup without taking the
2172  * console_lock as a hack, to be able to see backtraces and crashes on the
2173  * serial line. This can be done by setting the fb.lockless_register_fb=1 kernel
2174  * cmdline option.
2175  *
2176  * The other option is to just disable fbdev emulation since very likely the
2177  * first modeset from userspace will crash in the same way, and is even easier
2178  * to debug. This can be done by setting the drm_kms_helper.fbdev_emulation=0
2179  * kernel cmdline option.
2180  *
2181  * RETURNS:
2182  * Zero if everything went ok, nonzero otherwise.
2183  */
2184 int drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
2185 {
2186         int ret;
2187
2188         if (!drm_fbdev_emulation)
2189                 return 0;
2190
2191         mutex_lock(&fb_helper->lock);
2192         ret = __drm_fb_helper_initial_config_and_unlock(fb_helper, bpp_sel);
2193
2194         return ret;
2195 }
2196 EXPORT_SYMBOL(drm_fb_helper_initial_config);
2197
2198 /**
2199  * drm_fb_helper_hotplug_event - respond to a hotplug notification by
2200  *                               probing all the outputs attached to the fb
2201  * @fb_helper: driver-allocated fbdev helper, can be NULL
2202  *
2203  * Scan the connectors attached to the fb_helper and try to put together a
2204  * setup after notification of a change in output configuration.
2205  *
2206  * Called at runtime, takes the mode config locks to be able to check/change the
2207  * modeset configuration. Must be run from process context (which usually means
2208  * either the output polling work or a work item launched from the driver's
2209  * hotplug interrupt).
2210  *
2211  * Note that drivers may call this even before calling
2212  * drm_fb_helper_initial_config but only after drm_fb_helper_init. This allows
2213  * for a race-free fbcon setup and will make sure that the fbdev emulation will
2214  * not miss any hotplug events.
2215  *
2216  * RETURNS:
2217  * 0 on success and a non-zero error code otherwise.
2218  */
2219 int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
2220 {
2221         int err = 0;
2222
2223         if (!drm_fbdev_emulation || !fb_helper)
2224                 return 0;
2225
2226         mutex_lock(&fb_helper->lock);
2227         if (fb_helper->deferred_setup) {
2228                 err = __drm_fb_helper_initial_config_and_unlock(fb_helper,
2229                                 fb_helper->preferred_bpp);
2230                 return err;
2231         }
2232
2233         if (!fb_helper->fb || !drm_master_internal_acquire(fb_helper->dev)) {
2234                 fb_helper->delayed_hotplug = true;
2235                 mutex_unlock(&fb_helper->lock);
2236                 return err;
2237         }
2238
2239         drm_master_internal_release(fb_helper->dev);
2240
2241         drm_dbg_kms(fb_helper->dev, "\n");
2242
2243         drm_client_modeset_probe(&fb_helper->client, fb_helper->fb->width, fb_helper->fb->height);
2244         drm_setup_crtcs_fb(fb_helper);
2245         mutex_unlock(&fb_helper->lock);
2246
2247         drm_fb_helper_set_par(fb_helper->info);
2248
2249         return 0;
2250 }
2251 EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
2252
2253 /**
2254  * drm_fb_helper_lastclose - DRM driver lastclose helper for fbdev emulation
2255  * @dev: DRM device
2256  *
2257  * This function can be used as the &drm_driver->lastclose callback for drivers
2258  * that only need to call drm_fb_helper_restore_fbdev_mode_unlocked().
2259  */
2260 void drm_fb_helper_lastclose(struct drm_device *dev)
2261 {
2262         drm_fb_helper_restore_fbdev_mode_unlocked(dev->fb_helper);
2263 }
2264 EXPORT_SYMBOL(drm_fb_helper_lastclose);
2265
2266 /**
2267  * drm_fb_helper_output_poll_changed - DRM mode config \.output_poll_changed
2268  *                                     helper for fbdev emulation
2269  * @dev: DRM device
2270  *
2271  * This function can be used as the
2272  * &drm_mode_config_funcs.output_poll_changed callback for drivers that only
2273  * need to call drm_fbdev.hotplug_event().
2274  */
2275 void drm_fb_helper_output_poll_changed(struct drm_device *dev)
2276 {
2277         drm_fb_helper_hotplug_event(dev->fb_helper);
2278 }
2279 EXPORT_SYMBOL(drm_fb_helper_output_poll_changed);