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