2 * Copyright (c) 2006-2009 Red Hat Inc.
3 * Copyright (c) 2006-2008 Intel Corporation
4 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
6 * DRM framebuffer helper functions
8 * Permission to use, copy, modify, distribute, and sell this software and its
9 * documentation for any purpose is hereby granted without fee, provided that
10 * the above copyright notice appear in all copies and that both that copyright
11 * notice and this permission notice appear in supporting documentation, and
12 * that the name of the copyright holders not be used in advertising or
13 * publicity pertaining to distribution of the software without specific,
14 * written prior permission. The copyright holders make no representations
15 * about the suitability of this software for any purpose. It is provided "as
16 * is" without express or implied warranty.
18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
27 * Dave Airlie <airlied@linux.ie>
28 * Jesse Barnes <jesse.barnes@intel.com>
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/console.h>
33 #include <linux/kernel.h>
34 #include <linux/sysrq.h>
35 #include <linux/slab.h>
36 #include <linux/module.h>
38 #include <drm/drm_crtc.h>
39 #include <drm/drm_fb_helper.h>
40 #include <drm/drm_crtc_helper.h>
41 #include <drm/drm_atomic.h>
42 #include <drm/drm_atomic_helper.h>
44 #include "drm_crtc_helper_internal.h"
46 static bool drm_fbdev_emulation
= true;
47 module_param_named(fbdev_emulation
, drm_fbdev_emulation
, bool, 0600);
48 MODULE_PARM_DESC(fbdev_emulation
,
49 "Enable legacy fbdev emulation [default=true]");
51 static LIST_HEAD(kernel_fb_helper_list
);
56 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
57 * mode setting driver. They can be used mostly independently from the crtc
58 * helper functions used by many drivers to implement the kernel mode setting
61 * Initialization is done as a four-step process with drm_fb_helper_prepare(),
62 * drm_fb_helper_init(), drm_fb_helper_single_add_all_connectors() and
63 * drm_fb_helper_initial_config(). Drivers with fancier requirements than the
64 * default behaviour can override the third step with their own code.
65 * Teardown is done with drm_fb_helper_fini().
67 * At runtime drivers should restore the fbdev console by calling
68 * drm_fb_helper_restore_fbdev_mode_unlocked() from their ->lastclose callback.
69 * They should also notify the fb helper code from updates to the output
70 * configuration by calling drm_fb_helper_hotplug_event(). For easier
71 * integration with the output polling code in drm_crtc_helper.c the modeset
72 * code provides a ->output_poll_changed callback.
74 * All other functions exported by the fb helper library can be used to
75 * implement the fbdev driver interface by the driver.
77 * It is possible, though perhaps somewhat tricky, to implement race-free
78 * hotplug detection using the fbdev helpers. The drm_fb_helper_prepare()
79 * helper must be called first to initialize the minimum required to make
80 * hotplug detection work. Drivers also need to make sure to properly set up
81 * the dev->mode_config.funcs member. After calling drm_kms_helper_poll_init()
82 * it is safe to enable interrupts and start processing hotplug events. At the
83 * same time, drivers should initialize all modeset objects such as CRTCs,
84 * encoders and connectors. To finish up the fbdev helper initialization, the
85 * drm_fb_helper_init() function is called. To probe for all attached displays
86 * and set up an initial configuration using the detected hardware, drivers
87 * should call drm_fb_helper_single_add_all_connectors() followed by
88 * drm_fb_helper_initial_config().
90 * If &drm_framebuffer_funcs ->dirty is set, the
91 * drm_fb_helper_{cfb,sys}_{write,fillrect,copyarea,imageblit} functions will
92 * accumulate changes and schedule &drm_fb_helper ->dirty_work to run right
93 * away. This worker then calls the dirty() function ensuring that it will
94 * always run in process context since the fb_*() function could be running in
95 * atomic context. If drm_fb_helper_deferred_io() is used as the deferred_io
96 * callback it will also schedule dirty_work with the damage collected from the
101 * drm_fb_helper_single_add_all_connectors() - add all connectors to fbdev
103 * @fb_helper: fbdev initialized with drm_fb_helper_init
105 * This functions adds all the available connectors for use with the given
106 * fb_helper. This is a separate step to allow drivers to freely assign
107 * connectors to the fbdev, e.g. if some are reserved for special purposes or
108 * not adequate to be used for the fbcon.
110 * This function is protected against concurrent connector hotadds/removals
111 * using drm_fb_helper_add_one_connector() and
112 * drm_fb_helper_remove_one_connector().
114 int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper
*fb_helper
)
116 struct drm_device
*dev
= fb_helper
->dev
;
117 struct drm_connector
*connector
;
120 if (!drm_fbdev_emulation
)
123 mutex_lock(&dev
->mode_config
.mutex
);
124 drm_for_each_connector(connector
, dev
) {
125 ret
= drm_fb_helper_add_one_connector(fb_helper
, connector
);
130 mutex_unlock(&dev
->mode_config
.mutex
);
133 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
134 struct drm_fb_helper_connector
*fb_helper_connector
=
135 fb_helper
->connector_info
[i
];
137 drm_connector_unreference(fb_helper_connector
->connector
);
139 kfree(fb_helper_connector
);
140 fb_helper
->connector_info
[i
] = NULL
;
142 fb_helper
->connector_count
= 0;
143 mutex_unlock(&dev
->mode_config
.mutex
);
147 EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors
);
149 int drm_fb_helper_add_one_connector(struct drm_fb_helper
*fb_helper
, struct drm_connector
*connector
)
151 struct drm_fb_helper_connector
**temp
;
152 struct drm_fb_helper_connector
*fb_helper_connector
;
154 if (!drm_fbdev_emulation
)
157 WARN_ON(!mutex_is_locked(&fb_helper
->dev
->mode_config
.mutex
));
158 if (fb_helper
->connector_count
+ 1 > fb_helper
->connector_info_alloc_count
) {
159 temp
= krealloc(fb_helper
->connector_info
, sizeof(struct drm_fb_helper_connector
*) * (fb_helper
->connector_count
+ 1), GFP_KERNEL
);
163 fb_helper
->connector_info_alloc_count
= fb_helper
->connector_count
+ 1;
164 fb_helper
->connector_info
= temp
;
168 fb_helper_connector
= kzalloc(sizeof(struct drm_fb_helper_connector
), GFP_KERNEL
);
169 if (!fb_helper_connector
)
172 drm_connector_reference(connector
);
173 fb_helper_connector
->connector
= connector
;
174 fb_helper
->connector_info
[fb_helper
->connector_count
++] = fb_helper_connector
;
177 EXPORT_SYMBOL(drm_fb_helper_add_one_connector
);
179 int drm_fb_helper_remove_one_connector(struct drm_fb_helper
*fb_helper
,
180 struct drm_connector
*connector
)
182 struct drm_fb_helper_connector
*fb_helper_connector
;
185 if (!drm_fbdev_emulation
)
188 WARN_ON(!mutex_is_locked(&fb_helper
->dev
->mode_config
.mutex
));
190 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
191 if (fb_helper
->connector_info
[i
]->connector
== connector
)
195 if (i
== fb_helper
->connector_count
)
197 fb_helper_connector
= fb_helper
->connector_info
[i
];
198 drm_connector_unreference(fb_helper_connector
->connector
);
200 for (j
= i
+ 1; j
< fb_helper
->connector_count
; j
++) {
201 fb_helper
->connector_info
[j
- 1] = fb_helper
->connector_info
[j
];
203 fb_helper
->connector_count
--;
204 kfree(fb_helper_connector
);
208 EXPORT_SYMBOL(drm_fb_helper_remove_one_connector
);
210 static void drm_fb_helper_save_lut_atomic(struct drm_crtc
*crtc
, struct drm_fb_helper
*helper
)
212 uint16_t *r_base
, *g_base
, *b_base
;
215 if (helper
->funcs
->gamma_get
== NULL
)
218 r_base
= crtc
->gamma_store
;
219 g_base
= r_base
+ crtc
->gamma_size
;
220 b_base
= g_base
+ crtc
->gamma_size
;
222 for (i
= 0; i
< crtc
->gamma_size
; i
++)
223 helper
->funcs
->gamma_get(crtc
, &r_base
[i
], &g_base
[i
], &b_base
[i
], i
);
226 static void drm_fb_helper_restore_lut_atomic(struct drm_crtc
*crtc
)
228 uint16_t *r_base
, *g_base
, *b_base
;
230 if (crtc
->funcs
->gamma_set
== NULL
)
233 r_base
= crtc
->gamma_store
;
234 g_base
= r_base
+ crtc
->gamma_size
;
235 b_base
= g_base
+ crtc
->gamma_size
;
237 crtc
->funcs
->gamma_set(crtc
, r_base
, g_base
, b_base
, crtc
->gamma_size
);
241 * drm_fb_helper_debug_enter - implementation for ->fb_debug_enter
242 * @info: fbdev registered by the helper
244 int drm_fb_helper_debug_enter(struct fb_info
*info
)
246 struct drm_fb_helper
*helper
= info
->par
;
247 const struct drm_crtc_helper_funcs
*funcs
;
250 list_for_each_entry(helper
, &kernel_fb_helper_list
, kernel_fb_list
) {
251 for (i
= 0; i
< helper
->crtc_count
; i
++) {
252 struct drm_mode_set
*mode_set
=
253 &helper
->crtc_info
[i
].mode_set
;
255 if (!mode_set
->crtc
->enabled
)
258 funcs
= mode_set
->crtc
->helper_private
;
259 drm_fb_helper_save_lut_atomic(mode_set
->crtc
, helper
);
260 funcs
->mode_set_base_atomic(mode_set
->crtc
,
264 ENTER_ATOMIC_MODE_SET
);
270 EXPORT_SYMBOL(drm_fb_helper_debug_enter
);
272 /* Find the real fb for a given fb helper CRTC */
273 static struct drm_framebuffer
*drm_mode_config_fb(struct drm_crtc
*crtc
)
275 struct drm_device
*dev
= crtc
->dev
;
278 drm_for_each_crtc(c
, dev
) {
279 if (crtc
->base
.id
== c
->base
.id
)
280 return c
->primary
->fb
;
287 * drm_fb_helper_debug_leave - implementation for ->fb_debug_leave
288 * @info: fbdev registered by the helper
290 int drm_fb_helper_debug_leave(struct fb_info
*info
)
292 struct drm_fb_helper
*helper
= info
->par
;
293 struct drm_crtc
*crtc
;
294 const struct drm_crtc_helper_funcs
*funcs
;
295 struct drm_framebuffer
*fb
;
298 for (i
= 0; i
< helper
->crtc_count
; i
++) {
299 struct drm_mode_set
*mode_set
= &helper
->crtc_info
[i
].mode_set
;
300 crtc
= mode_set
->crtc
;
301 funcs
= crtc
->helper_private
;
302 fb
= drm_mode_config_fb(crtc
);
308 DRM_ERROR("no fb to restore??\n");
312 drm_fb_helper_restore_lut_atomic(mode_set
->crtc
);
313 funcs
->mode_set_base_atomic(mode_set
->crtc
, fb
, crtc
->x
,
314 crtc
->y
, LEAVE_ATOMIC_MODE_SET
);
319 EXPORT_SYMBOL(drm_fb_helper_debug_leave
);
321 static int restore_fbdev_mode_atomic(struct drm_fb_helper
*fb_helper
)
323 struct drm_device
*dev
= fb_helper
->dev
;
324 struct drm_plane
*plane
;
325 struct drm_atomic_state
*state
;
329 state
= drm_atomic_state_alloc(dev
);
333 state
->acquire_ctx
= dev
->mode_config
.acquire_ctx
;
336 drm_for_each_plane(plane
, dev
) {
337 struct drm_plane_state
*plane_state
;
339 plane_state
= drm_atomic_get_plane_state(state
, plane
);
340 if (IS_ERR(plane_state
)) {
341 ret
= PTR_ERR(plane_state
);
345 plane_state
->rotation
= DRM_ROTATE_0
;
347 plane
->old_fb
= plane
->fb
;
348 plane_mask
|= 1 << drm_plane_index(plane
);
350 /* disable non-primary: */
351 if (plane
->type
== DRM_PLANE_TYPE_PRIMARY
)
354 ret
= __drm_atomic_helper_disable_plane(plane
, plane_state
);
359 for(i
= 0; i
< fb_helper
->crtc_count
; i
++) {
360 struct drm_mode_set
*mode_set
= &fb_helper
->crtc_info
[i
].mode_set
;
362 ret
= __drm_atomic_helper_set_config(mode_set
, state
);
367 ret
= drm_atomic_commit(state
);
370 drm_atomic_clean_old_fb(dev
, plane_mask
, ret
);
376 drm_atomic_state_free(state
);
381 drm_atomic_state_clear(state
);
382 drm_atomic_legacy_backoff(state
);
387 static int restore_fbdev_mode(struct drm_fb_helper
*fb_helper
)
389 struct drm_device
*dev
= fb_helper
->dev
;
390 struct drm_plane
*plane
;
393 drm_warn_on_modeset_not_all_locked(dev
);
395 if (dev
->mode_config
.funcs
->atomic_commit
)
396 return restore_fbdev_mode_atomic(fb_helper
);
398 drm_for_each_plane(plane
, dev
) {
399 if (plane
->type
!= DRM_PLANE_TYPE_PRIMARY
)
400 drm_plane_force_disable(plane
);
402 if (dev
->mode_config
.rotation_property
) {
403 drm_mode_plane_set_obj_prop(plane
,
404 dev
->mode_config
.rotation_property
,
409 for (i
= 0; i
< fb_helper
->crtc_count
; i
++) {
410 struct drm_mode_set
*mode_set
= &fb_helper
->crtc_info
[i
].mode_set
;
411 struct drm_crtc
*crtc
= mode_set
->crtc
;
414 if (crtc
->funcs
->cursor_set2
) {
415 ret
= crtc
->funcs
->cursor_set2(crtc
, NULL
, 0, 0, 0, 0, 0);
418 } else if (crtc
->funcs
->cursor_set
) {
419 ret
= crtc
->funcs
->cursor_set(crtc
, NULL
, 0, 0, 0);
424 ret
= drm_mode_set_config_internal(mode_set
);
433 * drm_fb_helper_restore_fbdev_mode_unlocked - restore fbdev configuration
434 * @fb_helper: fbcon to restore
436 * This should be called from driver's drm ->lastclose callback
437 * when implementing an fbcon on top of kms using this helper. This ensures that
438 * the user isn't greeted with a black screen when e.g. X dies.
441 * Zero if everything went ok, negative error code otherwise.
443 int drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper
*fb_helper
)
445 struct drm_device
*dev
= fb_helper
->dev
;
449 if (!drm_fbdev_emulation
)
452 drm_modeset_lock_all(dev
);
453 ret
= restore_fbdev_mode(fb_helper
);
455 do_delayed
= fb_helper
->delayed_hotplug
;
457 fb_helper
->delayed_hotplug
= false;
458 drm_modeset_unlock_all(dev
);
461 drm_fb_helper_hotplug_event(fb_helper
);
464 EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode_unlocked
);
466 static bool drm_fb_helper_is_bound(struct drm_fb_helper
*fb_helper
)
468 struct drm_device
*dev
= fb_helper
->dev
;
469 struct drm_crtc
*crtc
;
470 int bound
= 0, crtcs_bound
= 0;
472 /* Sometimes user space wants everything disabled, so don't steal the
473 * display if there's a master. */
474 if (READ_ONCE(dev
->master
))
477 drm_for_each_crtc(crtc
, dev
) {
478 if (crtc
->primary
->fb
)
480 if (crtc
->primary
->fb
== fb_helper
->fb
)
484 if (bound
< crtcs_bound
)
490 #ifdef CONFIG_MAGIC_SYSRQ
492 * restore fbcon display for all kms driver's using this helper, used for sysrq
493 * and panic handling.
495 static bool drm_fb_helper_force_kernel_mode(void)
497 bool ret
, error
= false;
498 struct drm_fb_helper
*helper
;
500 if (list_empty(&kernel_fb_helper_list
))
503 list_for_each_entry(helper
, &kernel_fb_helper_list
, kernel_fb_list
) {
504 struct drm_device
*dev
= helper
->dev
;
506 if (dev
->switch_power_state
== DRM_SWITCH_POWER_OFF
)
509 drm_modeset_lock_all(dev
);
510 ret
= restore_fbdev_mode(helper
);
513 drm_modeset_unlock_all(dev
);
518 static void drm_fb_helper_restore_work_fn(struct work_struct
*ignored
)
521 ret
= drm_fb_helper_force_kernel_mode();
523 DRM_ERROR("Failed to restore crtc configuration\n");
525 static DECLARE_WORK(drm_fb_helper_restore_work
, drm_fb_helper_restore_work_fn
);
527 static void drm_fb_helper_sysrq(int dummy1
)
529 schedule_work(&drm_fb_helper_restore_work
);
532 static struct sysrq_key_op sysrq_drm_fb_helper_restore_op
= {
533 .handler
= drm_fb_helper_sysrq
,
534 .help_msg
= "force-fb(V)",
535 .action_msg
= "Restore framebuffer console",
538 static struct sysrq_key_op sysrq_drm_fb_helper_restore_op
= { };
541 static void drm_fb_helper_dpms(struct fb_info
*info
, int dpms_mode
)
543 struct drm_fb_helper
*fb_helper
= info
->par
;
544 struct drm_device
*dev
= fb_helper
->dev
;
545 struct drm_crtc
*crtc
;
546 struct drm_connector
*connector
;
550 * For each CRTC in this fb, turn the connectors on/off.
552 drm_modeset_lock_all(dev
);
553 if (!drm_fb_helper_is_bound(fb_helper
)) {
554 drm_modeset_unlock_all(dev
);
558 for (i
= 0; i
< fb_helper
->crtc_count
; i
++) {
559 crtc
= fb_helper
->crtc_info
[i
].mode_set
.crtc
;
564 /* Walk the connectors & encoders on this fb turning them on/off */
565 for (j
= 0; j
< fb_helper
->connector_count
; j
++) {
566 connector
= fb_helper
->connector_info
[j
]->connector
;
567 connector
->funcs
->dpms(connector
, dpms_mode
);
568 drm_object_property_set_value(&connector
->base
,
569 dev
->mode_config
.dpms_property
, dpms_mode
);
572 drm_modeset_unlock_all(dev
);
576 * drm_fb_helper_blank - implementation for ->fb_blank
577 * @blank: desired blanking state
578 * @info: fbdev registered by the helper
580 int drm_fb_helper_blank(int blank
, struct fb_info
*info
)
582 if (oops_in_progress
)
586 /* Display: On; HSync: On, VSync: On */
587 case FB_BLANK_UNBLANK
:
588 drm_fb_helper_dpms(info
, DRM_MODE_DPMS_ON
);
590 /* Display: Off; HSync: On, VSync: On */
591 case FB_BLANK_NORMAL
:
592 drm_fb_helper_dpms(info
, DRM_MODE_DPMS_STANDBY
);
594 /* Display: Off; HSync: Off, VSync: On */
595 case FB_BLANK_HSYNC_SUSPEND
:
596 drm_fb_helper_dpms(info
, DRM_MODE_DPMS_STANDBY
);
598 /* Display: Off; HSync: On, VSync: Off */
599 case FB_BLANK_VSYNC_SUSPEND
:
600 drm_fb_helper_dpms(info
, DRM_MODE_DPMS_SUSPEND
);
602 /* Display: Off; HSync: Off, VSync: Off */
603 case FB_BLANK_POWERDOWN
:
604 drm_fb_helper_dpms(info
, DRM_MODE_DPMS_OFF
);
609 EXPORT_SYMBOL(drm_fb_helper_blank
);
611 static void drm_fb_helper_modeset_release(struct drm_fb_helper
*helper
,
612 struct drm_mode_set
*modeset
)
616 for (i
= 0; i
< modeset
->num_connectors
; i
++) {
617 drm_connector_unreference(modeset
->connectors
[i
]);
618 modeset
->connectors
[i
] = NULL
;
620 modeset
->num_connectors
= 0;
622 drm_mode_destroy(helper
->dev
, modeset
->mode
);
623 modeset
->mode
= NULL
;
625 /* FIXME should hold a ref? */
629 static void drm_fb_helper_crtc_free(struct drm_fb_helper
*helper
)
633 for (i
= 0; i
< helper
->connector_count
; i
++) {
634 drm_connector_unreference(helper
->connector_info
[i
]->connector
);
635 kfree(helper
->connector_info
[i
]);
637 kfree(helper
->connector_info
);
639 for (i
= 0; i
< helper
->crtc_count
; i
++) {
640 struct drm_mode_set
*modeset
= &helper
->crtc_info
[i
].mode_set
;
642 drm_fb_helper_modeset_release(helper
, modeset
);
643 kfree(modeset
->connectors
);
645 kfree(helper
->crtc_info
);
648 static void drm_fb_helper_resume_worker(struct work_struct
*work
)
650 struct drm_fb_helper
*helper
= container_of(work
, struct drm_fb_helper
,
654 fb_set_suspend(helper
->fbdev
, 0);
658 static void drm_fb_helper_dirty_work(struct work_struct
*work
)
660 struct drm_fb_helper
*helper
= container_of(work
, struct drm_fb_helper
,
662 struct drm_clip_rect
*clip
= &helper
->dirty_clip
;
663 struct drm_clip_rect clip_copy
;
666 spin_lock_irqsave(&helper
->dirty_lock
, flags
);
668 clip
->x1
= clip
->y1
= ~0;
669 clip
->x2
= clip
->y2
= 0;
670 spin_unlock_irqrestore(&helper
->dirty_lock
, flags
);
672 /* call dirty callback only when it has been really touched */
673 if (clip_copy
.x1
< clip_copy
.x2
&& clip_copy
.y1
< clip_copy
.y2
)
674 helper
->fb
->funcs
->dirty(helper
->fb
, NULL
, 0, 0, &clip_copy
, 1);
678 * drm_fb_helper_prepare - setup a drm_fb_helper structure
680 * @helper: driver-allocated fbdev helper structure to set up
681 * @funcs: pointer to structure of functions associate with this helper
683 * Sets up the bare minimum to make the framebuffer helper usable. This is
684 * useful to implement race-free initialization of the polling helpers.
686 void drm_fb_helper_prepare(struct drm_device
*dev
, struct drm_fb_helper
*helper
,
687 const struct drm_fb_helper_funcs
*funcs
)
689 INIT_LIST_HEAD(&helper
->kernel_fb_list
);
690 spin_lock_init(&helper
->dirty_lock
);
691 INIT_WORK(&helper
->resume_work
, drm_fb_helper_resume_worker
);
692 INIT_WORK(&helper
->dirty_work
, drm_fb_helper_dirty_work
);
693 helper
->dirty_clip
.x1
= helper
->dirty_clip
.y1
= ~0;
694 helper
->funcs
= funcs
;
697 EXPORT_SYMBOL(drm_fb_helper_prepare
);
700 * drm_fb_helper_init - initialize a drm_fb_helper structure
702 * @fb_helper: driver-allocated fbdev helper structure to initialize
703 * @crtc_count: maximum number of crtcs to support in this fbdev emulation
704 * @max_conn_count: max connector count
706 * This allocates the structures for the fbdev helper with the given limits.
707 * Note that this won't yet touch the hardware (through the driver interfaces)
708 * nor register the fbdev. This is only done in drm_fb_helper_initial_config()
709 * to allow driver writes more control over the exact init sequence.
711 * Drivers must call drm_fb_helper_prepare() before calling this function.
714 * Zero if everything went ok, nonzero otherwise.
716 int drm_fb_helper_init(struct drm_device
*dev
,
717 struct drm_fb_helper
*fb_helper
,
718 int crtc_count
, int max_conn_count
)
720 struct drm_crtc
*crtc
;
723 if (!drm_fbdev_emulation
)
729 fb_helper
->crtc_info
= kcalloc(crtc_count
, sizeof(struct drm_fb_helper_crtc
), GFP_KERNEL
);
730 if (!fb_helper
->crtc_info
)
733 fb_helper
->crtc_count
= crtc_count
;
734 fb_helper
->connector_info
= kcalloc(dev
->mode_config
.num_connector
, sizeof(struct drm_fb_helper_connector
*), GFP_KERNEL
);
735 if (!fb_helper
->connector_info
) {
736 kfree(fb_helper
->crtc_info
);
739 fb_helper
->connector_info_alloc_count
= dev
->mode_config
.num_connector
;
740 fb_helper
->connector_count
= 0;
742 for (i
= 0; i
< crtc_count
; i
++) {
743 fb_helper
->crtc_info
[i
].mode_set
.connectors
=
744 kcalloc(max_conn_count
,
745 sizeof(struct drm_connector
*),
748 if (!fb_helper
->crtc_info
[i
].mode_set
.connectors
)
750 fb_helper
->crtc_info
[i
].mode_set
.num_connectors
= 0;
754 drm_for_each_crtc(crtc
, dev
) {
755 fb_helper
->crtc_info
[i
].mode_set
.crtc
= crtc
;
761 drm_fb_helper_crtc_free(fb_helper
);
764 EXPORT_SYMBOL(drm_fb_helper_init
);
767 * drm_fb_helper_alloc_fbi - allocate fb_info and some of its members
768 * @fb_helper: driver-allocated fbdev helper
770 * A helper to alloc fb_info and the members cmap and apertures. Called
771 * by the driver within the fb_probe fb_helper callback function.
774 * fb_info pointer if things went okay, pointer containing error code
777 struct fb_info
*drm_fb_helper_alloc_fbi(struct drm_fb_helper
*fb_helper
)
779 struct device
*dev
= fb_helper
->dev
->dev
;
780 struct fb_info
*info
;
783 info
= framebuffer_alloc(0, dev
);
785 return ERR_PTR(-ENOMEM
);
787 ret
= fb_alloc_cmap(&info
->cmap
, 256, 0);
791 info
->apertures
= alloc_apertures(1);
792 if (!info
->apertures
) {
797 fb_helper
->fbdev
= info
;
802 fb_dealloc_cmap(&info
->cmap
);
804 framebuffer_release(info
);
807 EXPORT_SYMBOL(drm_fb_helper_alloc_fbi
);
810 * drm_fb_helper_unregister_fbi - unregister fb_info framebuffer device
811 * @fb_helper: driver-allocated fbdev helper
813 * A wrapper around unregister_framebuffer, to release the fb_info
816 void drm_fb_helper_unregister_fbi(struct drm_fb_helper
*fb_helper
)
818 if (fb_helper
&& fb_helper
->fbdev
)
819 unregister_framebuffer(fb_helper
->fbdev
);
821 EXPORT_SYMBOL(drm_fb_helper_unregister_fbi
);
824 * drm_fb_helper_release_fbi - dealloc fb_info and its members
825 * @fb_helper: driver-allocated fbdev helper
827 * A helper to free memory taken by fb_info and the members cmap and
830 void drm_fb_helper_release_fbi(struct drm_fb_helper
*fb_helper
)
833 struct fb_info
*info
= fb_helper
->fbdev
;
837 fb_dealloc_cmap(&info
->cmap
);
838 framebuffer_release(info
);
841 fb_helper
->fbdev
= NULL
;
844 EXPORT_SYMBOL(drm_fb_helper_release_fbi
);
846 void drm_fb_helper_fini(struct drm_fb_helper
*fb_helper
)
848 if (!drm_fbdev_emulation
)
851 cancel_work_sync(&fb_helper
->resume_work
);
852 cancel_work_sync(&fb_helper
->dirty_work
);
854 if (!list_empty(&fb_helper
->kernel_fb_list
)) {
855 list_del(&fb_helper
->kernel_fb_list
);
856 if (list_empty(&kernel_fb_helper_list
)) {
857 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op
);
861 drm_fb_helper_crtc_free(fb_helper
);
864 EXPORT_SYMBOL(drm_fb_helper_fini
);
867 * drm_fb_helper_unlink_fbi - wrapper around unlink_framebuffer
868 * @fb_helper: driver-allocated fbdev helper
870 * A wrapper around unlink_framebuffer implemented by fbdev core
872 void drm_fb_helper_unlink_fbi(struct drm_fb_helper
*fb_helper
)
874 if (fb_helper
&& fb_helper
->fbdev
)
875 unlink_framebuffer(fb_helper
->fbdev
);
877 EXPORT_SYMBOL(drm_fb_helper_unlink_fbi
);
879 static void drm_fb_helper_dirty(struct fb_info
*info
, u32 x
, u32 y
,
880 u32 width
, u32 height
)
882 struct drm_fb_helper
*helper
= info
->par
;
883 struct drm_clip_rect
*clip
= &helper
->dirty_clip
;
886 if (!helper
->fb
->funcs
->dirty
)
889 spin_lock_irqsave(&helper
->dirty_lock
, flags
);
890 clip
->x1
= min_t(u32
, clip
->x1
, x
);
891 clip
->y1
= min_t(u32
, clip
->y1
, y
);
892 clip
->x2
= max_t(u32
, clip
->x2
, x
+ width
);
893 clip
->y2
= max_t(u32
, clip
->y2
, y
+ height
);
894 spin_unlock_irqrestore(&helper
->dirty_lock
, flags
);
896 schedule_work(&helper
->dirty_work
);
900 * drm_fb_helper_deferred_io() - fbdev deferred_io callback function
901 * @info: fb_info struct pointer
902 * @pagelist: list of dirty mmap framebuffer pages
904 * This function is used as the &fb_deferred_io ->deferred_io
905 * callback function for flushing the fbdev mmap writes.
907 void drm_fb_helper_deferred_io(struct fb_info
*info
,
908 struct list_head
*pagelist
)
910 unsigned long start
, end
, min
, max
;
916 list_for_each_entry(page
, pagelist
, lru
) {
917 start
= page
->index
<< PAGE_SHIFT
;
918 end
= start
+ PAGE_SIZE
- 1;
919 min
= min(min
, start
);
924 y1
= min
/ info
->fix
.line_length
;
925 y2
= min_t(u32
, DIV_ROUND_UP(max
, info
->fix
.line_length
),
927 drm_fb_helper_dirty(info
, 0, y1
, info
->var
.xres
, y2
- y1
);
930 EXPORT_SYMBOL(drm_fb_helper_deferred_io
);
933 * drm_fb_helper_sys_read - wrapper around fb_sys_read
934 * @info: fb_info struct pointer
935 * @buf: userspace buffer to read from framebuffer memory
936 * @count: number of bytes to read from framebuffer memory
937 * @ppos: read offset within framebuffer memory
939 * A wrapper around fb_sys_read implemented by fbdev core
941 ssize_t
drm_fb_helper_sys_read(struct fb_info
*info
, char __user
*buf
,
942 size_t count
, loff_t
*ppos
)
944 return fb_sys_read(info
, buf
, count
, ppos
);
946 EXPORT_SYMBOL(drm_fb_helper_sys_read
);
949 * drm_fb_helper_sys_write - wrapper around fb_sys_write
950 * @info: fb_info struct pointer
951 * @buf: userspace buffer to write to framebuffer memory
952 * @count: number of bytes to write to framebuffer memory
953 * @ppos: write offset within framebuffer memory
955 * A wrapper around fb_sys_write implemented by fbdev core
957 ssize_t
drm_fb_helper_sys_write(struct fb_info
*info
, const char __user
*buf
,
958 size_t count
, loff_t
*ppos
)
962 ret
= fb_sys_write(info
, buf
, count
, ppos
);
964 drm_fb_helper_dirty(info
, 0, 0, info
->var
.xres
,
969 EXPORT_SYMBOL(drm_fb_helper_sys_write
);
972 * drm_fb_helper_sys_fillrect - wrapper around sys_fillrect
973 * @info: fbdev registered by the helper
974 * @rect: info about rectangle to fill
976 * A wrapper around sys_fillrect implemented by fbdev core
978 void drm_fb_helper_sys_fillrect(struct fb_info
*info
,
979 const struct fb_fillrect
*rect
)
981 sys_fillrect(info
, rect
);
982 drm_fb_helper_dirty(info
, rect
->dx
, rect
->dy
,
983 rect
->width
, rect
->height
);
985 EXPORT_SYMBOL(drm_fb_helper_sys_fillrect
);
988 * drm_fb_helper_sys_copyarea - wrapper around sys_copyarea
989 * @info: fbdev registered by the helper
990 * @area: info about area to copy
992 * A wrapper around sys_copyarea implemented by fbdev core
994 void drm_fb_helper_sys_copyarea(struct fb_info
*info
,
995 const struct fb_copyarea
*area
)
997 sys_copyarea(info
, area
);
998 drm_fb_helper_dirty(info
, area
->dx
, area
->dy
,
999 area
->width
, area
->height
);
1001 EXPORT_SYMBOL(drm_fb_helper_sys_copyarea
);
1004 * drm_fb_helper_sys_imageblit - wrapper around sys_imageblit
1005 * @info: fbdev registered by the helper
1006 * @image: info about image to blit
1008 * A wrapper around sys_imageblit implemented by fbdev core
1010 void drm_fb_helper_sys_imageblit(struct fb_info
*info
,
1011 const struct fb_image
*image
)
1013 sys_imageblit(info
, image
);
1014 drm_fb_helper_dirty(info
, image
->dx
, image
->dy
,
1015 image
->width
, image
->height
);
1017 EXPORT_SYMBOL(drm_fb_helper_sys_imageblit
);
1020 * drm_fb_helper_cfb_fillrect - wrapper around cfb_fillrect
1021 * @info: fbdev registered by the helper
1022 * @rect: info about rectangle to fill
1024 * A wrapper around cfb_imageblit implemented by fbdev core
1026 void drm_fb_helper_cfb_fillrect(struct fb_info
*info
,
1027 const struct fb_fillrect
*rect
)
1029 cfb_fillrect(info
, rect
);
1030 drm_fb_helper_dirty(info
, rect
->dx
, rect
->dy
,
1031 rect
->width
, rect
->height
);
1033 EXPORT_SYMBOL(drm_fb_helper_cfb_fillrect
);
1036 * drm_fb_helper_cfb_copyarea - wrapper around cfb_copyarea
1037 * @info: fbdev registered by the helper
1038 * @area: info about area to copy
1040 * A wrapper around cfb_copyarea implemented by fbdev core
1042 void drm_fb_helper_cfb_copyarea(struct fb_info
*info
,
1043 const struct fb_copyarea
*area
)
1045 cfb_copyarea(info
, area
);
1046 drm_fb_helper_dirty(info
, area
->dx
, area
->dy
,
1047 area
->width
, area
->height
);
1049 EXPORT_SYMBOL(drm_fb_helper_cfb_copyarea
);
1052 * drm_fb_helper_cfb_imageblit - wrapper around cfb_imageblit
1053 * @info: fbdev registered by the helper
1054 * @image: info about image to blit
1056 * A wrapper around cfb_imageblit implemented by fbdev core
1058 void drm_fb_helper_cfb_imageblit(struct fb_info
*info
,
1059 const struct fb_image
*image
)
1061 cfb_imageblit(info
, image
);
1062 drm_fb_helper_dirty(info
, image
->dx
, image
->dy
,
1063 image
->width
, image
->height
);
1065 EXPORT_SYMBOL(drm_fb_helper_cfb_imageblit
);
1068 * drm_fb_helper_set_suspend - wrapper around fb_set_suspend
1069 * @fb_helper: driver-allocated fbdev helper
1070 * @suspend: whether to suspend or resume
1072 * A wrapper around fb_set_suspend implemented by fbdev core.
1073 * Use drm_fb_helper_set_suspend_unlocked() if you don't need to take
1076 void drm_fb_helper_set_suspend(struct drm_fb_helper
*fb_helper
, bool suspend
)
1078 if (fb_helper
&& fb_helper
->fbdev
)
1079 fb_set_suspend(fb_helper
->fbdev
, suspend
);
1081 EXPORT_SYMBOL(drm_fb_helper_set_suspend
);
1084 * drm_fb_helper_set_suspend_unlocked - wrapper around fb_set_suspend that also
1085 * takes the console lock
1086 * @fb_helper: driver-allocated fbdev helper
1087 * @suspend: whether to suspend or resume
1089 * A wrapper around fb_set_suspend() that takes the console lock. If the lock
1090 * isn't available on resume, a worker is tasked with waiting for the lock
1091 * to become available. The console lock can be pretty contented on resume
1092 * due to all the printk activity.
1094 * This function can be called multiple times with the same state since
1095 * &fb_info->state is checked to see if fbdev is running or not before locking.
1097 * Use drm_fb_helper_set_suspend() if you need to take the lock yourself.
1099 void drm_fb_helper_set_suspend_unlocked(struct drm_fb_helper
*fb_helper
,
1102 if (!fb_helper
|| !fb_helper
->fbdev
)
1105 /* make sure there's no pending/ongoing resume */
1106 flush_work(&fb_helper
->resume_work
);
1109 if (fb_helper
->fbdev
->state
!= FBINFO_STATE_RUNNING
)
1115 if (fb_helper
->fbdev
->state
== FBINFO_STATE_RUNNING
)
1118 if (!console_trylock()) {
1119 schedule_work(&fb_helper
->resume_work
);
1124 fb_set_suspend(fb_helper
->fbdev
, suspend
);
1127 EXPORT_SYMBOL(drm_fb_helper_set_suspend_unlocked
);
1129 static int setcolreg(struct drm_crtc
*crtc
, u16 red
, u16 green
,
1130 u16 blue
, u16 regno
, struct fb_info
*info
)
1132 struct drm_fb_helper
*fb_helper
= info
->par
;
1133 struct drm_framebuffer
*fb
= fb_helper
->fb
;
1135 if (info
->fix
.visual
== FB_VISUAL_TRUECOLOR
) {
1138 /* place color in psuedopalette */
1141 palette
= (u32
*)info
->pseudo_palette
;
1142 red
>>= (16 - info
->var
.red
.length
);
1143 green
>>= (16 - info
->var
.green
.length
);
1144 blue
>>= (16 - info
->var
.blue
.length
);
1145 value
= (red
<< info
->var
.red
.offset
) |
1146 (green
<< info
->var
.green
.offset
) |
1147 (blue
<< info
->var
.blue
.offset
);
1148 if (info
->var
.transp
.length
> 0) {
1149 u32 mask
= (1 << info
->var
.transp
.length
) - 1;
1150 mask
<<= info
->var
.transp
.offset
;
1153 palette
[regno
] = value
;
1158 * The driver really shouldn't advertise pseudo/directcolor
1159 * visuals if it can't deal with the palette.
1161 if (WARN_ON(!fb_helper
->funcs
->gamma_set
||
1162 !fb_helper
->funcs
->gamma_get
))
1165 WARN_ON(fb
->bits_per_pixel
!= 8);
1167 fb_helper
->funcs
->gamma_set(crtc
, red
, green
, blue
, regno
);
1173 * drm_fb_helper_setcmap - implementation for ->fb_setcmap
1174 * @cmap: cmap to set
1175 * @info: fbdev registered by the helper
1177 int drm_fb_helper_setcmap(struct fb_cmap
*cmap
, struct fb_info
*info
)
1179 struct drm_fb_helper
*fb_helper
= info
->par
;
1180 struct drm_device
*dev
= fb_helper
->dev
;
1181 const struct drm_crtc_helper_funcs
*crtc_funcs
;
1182 u16
*red
, *green
, *blue
, *transp
;
1183 struct drm_crtc
*crtc
;
1187 if (oops_in_progress
)
1190 drm_modeset_lock_all(dev
);
1191 if (!drm_fb_helper_is_bound(fb_helper
)) {
1192 drm_modeset_unlock_all(dev
);
1196 for (i
= 0; i
< fb_helper
->crtc_count
; i
++) {
1197 crtc
= fb_helper
->crtc_info
[i
].mode_set
.crtc
;
1198 crtc_funcs
= crtc
->helper_private
;
1201 green
= cmap
->green
;
1203 transp
= cmap
->transp
;
1204 start
= cmap
->start
;
1206 for (j
= 0; j
< cmap
->len
; j
++) {
1207 u16 hred
, hgreen
, hblue
, htransp
= 0xffff;
1214 htransp
= *transp
++;
1216 rc
= setcolreg(crtc
, hred
, hgreen
, hblue
, start
++, info
);
1220 if (crtc_funcs
->load_lut
)
1221 crtc_funcs
->load_lut(crtc
);
1224 drm_modeset_unlock_all(dev
);
1227 EXPORT_SYMBOL(drm_fb_helper_setcmap
);
1230 * drm_fb_helper_check_var - implementation for ->fb_check_var
1231 * @var: screeninfo to check
1232 * @info: fbdev registered by the helper
1234 int drm_fb_helper_check_var(struct fb_var_screeninfo
*var
,
1235 struct fb_info
*info
)
1237 struct drm_fb_helper
*fb_helper
= info
->par
;
1238 struct drm_framebuffer
*fb
= fb_helper
->fb
;
1241 if (var
->pixclock
!= 0 || in_dbg_master())
1244 /* Need to resize the fb object !!! */
1245 if (var
->bits_per_pixel
> fb
->bits_per_pixel
||
1246 var
->xres
> fb
->width
|| var
->yres
> fb
->height
||
1247 var
->xres_virtual
> fb
->width
|| var
->yres_virtual
> fb
->height
) {
1248 DRM_DEBUG("fb userspace requested width/height/bpp is greater than current fb "
1249 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
1250 var
->xres
, var
->yres
, var
->bits_per_pixel
,
1251 var
->xres_virtual
, var
->yres_virtual
,
1252 fb
->width
, fb
->height
, fb
->bits_per_pixel
);
1256 switch (var
->bits_per_pixel
) {
1258 depth
= (var
->green
.length
== 6) ? 16 : 15;
1261 depth
= (var
->transp
.length
> 0) ? 32 : 24;
1264 depth
= var
->bits_per_pixel
;
1270 var
->red
.offset
= 0;
1271 var
->green
.offset
= 0;
1272 var
->blue
.offset
= 0;
1273 var
->red
.length
= 8;
1274 var
->green
.length
= 8;
1275 var
->blue
.length
= 8;
1276 var
->transp
.length
= 0;
1277 var
->transp
.offset
= 0;
1280 var
->red
.offset
= 10;
1281 var
->green
.offset
= 5;
1282 var
->blue
.offset
= 0;
1283 var
->red
.length
= 5;
1284 var
->green
.length
= 5;
1285 var
->blue
.length
= 5;
1286 var
->transp
.length
= 1;
1287 var
->transp
.offset
= 15;
1290 var
->red
.offset
= 11;
1291 var
->green
.offset
= 5;
1292 var
->blue
.offset
= 0;
1293 var
->red
.length
= 5;
1294 var
->green
.length
= 6;
1295 var
->blue
.length
= 5;
1296 var
->transp
.length
= 0;
1297 var
->transp
.offset
= 0;
1300 var
->red
.offset
= 16;
1301 var
->green
.offset
= 8;
1302 var
->blue
.offset
= 0;
1303 var
->red
.length
= 8;
1304 var
->green
.length
= 8;
1305 var
->blue
.length
= 8;
1306 var
->transp
.length
= 0;
1307 var
->transp
.offset
= 0;
1310 var
->red
.offset
= 16;
1311 var
->green
.offset
= 8;
1312 var
->blue
.offset
= 0;
1313 var
->red
.length
= 8;
1314 var
->green
.length
= 8;
1315 var
->blue
.length
= 8;
1316 var
->transp
.length
= 8;
1317 var
->transp
.offset
= 24;
1324 EXPORT_SYMBOL(drm_fb_helper_check_var
);
1327 * drm_fb_helper_set_par - implementation for ->fb_set_par
1328 * @info: fbdev registered by the helper
1330 * This will let fbcon do the mode init and is called at initialization time by
1331 * the fbdev core when registering the driver, and later on through the hotplug
1334 int drm_fb_helper_set_par(struct fb_info
*info
)
1336 struct drm_fb_helper
*fb_helper
= info
->par
;
1337 struct fb_var_screeninfo
*var
= &info
->var
;
1339 if (oops_in_progress
)
1342 if (var
->pixclock
!= 0) {
1343 DRM_ERROR("PIXEL CLOCK SET\n");
1347 drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper
);
1351 EXPORT_SYMBOL(drm_fb_helper_set_par
);
1353 static int pan_display_atomic(struct fb_var_screeninfo
*var
,
1354 struct fb_info
*info
)
1356 struct drm_fb_helper
*fb_helper
= info
->par
;
1357 struct drm_device
*dev
= fb_helper
->dev
;
1358 struct drm_atomic_state
*state
;
1359 struct drm_plane
*plane
;
1361 unsigned plane_mask
;
1363 state
= drm_atomic_state_alloc(dev
);
1367 state
->acquire_ctx
= dev
->mode_config
.acquire_ctx
;
1370 for(i
= 0; i
< fb_helper
->crtc_count
; i
++) {
1371 struct drm_mode_set
*mode_set
;
1373 mode_set
= &fb_helper
->crtc_info
[i
].mode_set
;
1375 mode_set
->x
= var
->xoffset
;
1376 mode_set
->y
= var
->yoffset
;
1378 ret
= __drm_atomic_helper_set_config(mode_set
, state
);
1382 plane
= mode_set
->crtc
->primary
;
1383 plane_mask
|= (1 << drm_plane_index(plane
));
1384 plane
->old_fb
= plane
->fb
;
1387 ret
= drm_atomic_commit(state
);
1391 info
->var
.xoffset
= var
->xoffset
;
1392 info
->var
.yoffset
= var
->yoffset
;
1396 drm_atomic_clean_old_fb(dev
, plane_mask
, ret
);
1398 if (ret
== -EDEADLK
)
1402 drm_atomic_state_free(state
);
1407 drm_atomic_state_clear(state
);
1408 drm_atomic_legacy_backoff(state
);
1414 * drm_fb_helper_pan_display - implementation for ->fb_pan_display
1415 * @var: updated screen information
1416 * @info: fbdev registered by the helper
1418 int drm_fb_helper_pan_display(struct fb_var_screeninfo
*var
,
1419 struct fb_info
*info
)
1421 struct drm_fb_helper
*fb_helper
= info
->par
;
1422 struct drm_device
*dev
= fb_helper
->dev
;
1423 struct drm_mode_set
*modeset
;
1427 if (oops_in_progress
)
1430 drm_modeset_lock_all(dev
);
1431 if (!drm_fb_helper_is_bound(fb_helper
)) {
1432 drm_modeset_unlock_all(dev
);
1436 if (dev
->mode_config
.funcs
->atomic_commit
) {
1437 ret
= pan_display_atomic(var
, info
);
1441 for (i
= 0; i
< fb_helper
->crtc_count
; i
++) {
1442 modeset
= &fb_helper
->crtc_info
[i
].mode_set
;
1444 modeset
->x
= var
->xoffset
;
1445 modeset
->y
= var
->yoffset
;
1447 if (modeset
->num_connectors
) {
1448 ret
= drm_mode_set_config_internal(modeset
);
1450 info
->var
.xoffset
= var
->xoffset
;
1451 info
->var
.yoffset
= var
->yoffset
;
1456 drm_modeset_unlock_all(dev
);
1459 EXPORT_SYMBOL(drm_fb_helper_pan_display
);
1462 * Allocates the backing storage and sets up the fbdev info structure through
1463 * the ->fb_probe callback and then registers the fbdev and sets up the panic
1466 static int drm_fb_helper_single_fb_probe(struct drm_fb_helper
*fb_helper
,
1472 struct fb_info
*info
;
1473 struct drm_fb_helper_surface_size sizes
;
1476 memset(&sizes
, 0, sizeof(struct drm_fb_helper_surface_size
));
1477 sizes
.surface_depth
= 24;
1478 sizes
.surface_bpp
= 32;
1479 sizes
.fb_width
= (unsigned)-1;
1480 sizes
.fb_height
= (unsigned)-1;
1482 /* if driver picks 8 or 16 by default use that
1483 for both depth/bpp */
1484 if (preferred_bpp
!= sizes
.surface_bpp
)
1485 sizes
.surface_depth
= sizes
.surface_bpp
= preferred_bpp
;
1487 /* first up get a count of crtcs now in use and new min/maxes width/heights */
1488 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1489 struct drm_fb_helper_connector
*fb_helper_conn
= fb_helper
->connector_info
[i
];
1490 struct drm_cmdline_mode
*cmdline_mode
;
1492 cmdline_mode
= &fb_helper_conn
->connector
->cmdline_mode
;
1494 if (cmdline_mode
->bpp_specified
) {
1495 switch (cmdline_mode
->bpp
) {
1497 sizes
.surface_depth
= sizes
.surface_bpp
= 8;
1500 sizes
.surface_depth
= 15;
1501 sizes
.surface_bpp
= 16;
1504 sizes
.surface_depth
= sizes
.surface_bpp
= 16;
1507 sizes
.surface_depth
= sizes
.surface_bpp
= 24;
1510 sizes
.surface_depth
= 24;
1511 sizes
.surface_bpp
= 32;
1519 for (i
= 0; i
< fb_helper
->crtc_count
; i
++) {
1520 struct drm_display_mode
*desired_mode
;
1521 struct drm_mode_set
*mode_set
;
1523 /* in case of tile group, are we the last tile vert or horiz?
1524 * If no tile group you are always the last one both vertically
1527 bool lastv
= true, lasth
= true;
1529 desired_mode
= fb_helper
->crtc_info
[i
].desired_mode
;
1530 mode_set
= &fb_helper
->crtc_info
[i
].mode_set
;
1537 x
= fb_helper
->crtc_info
[i
].x
;
1538 y
= fb_helper
->crtc_info
[i
].y
;
1540 if (gamma_size
== 0)
1541 gamma_size
= fb_helper
->crtc_info
[i
].mode_set
.crtc
->gamma_size
;
1543 sizes
.surface_width
= max_t(u32
, desired_mode
->hdisplay
+ x
, sizes
.surface_width
);
1544 sizes
.surface_height
= max_t(u32
, desired_mode
->vdisplay
+ y
, sizes
.surface_height
);
1546 for (j
= 0; j
< mode_set
->num_connectors
; j
++) {
1547 struct drm_connector
*connector
= mode_set
->connectors
[j
];
1548 if (connector
->has_tile
) {
1549 lasth
= (connector
->tile_h_loc
== (connector
->num_h_tile
- 1));
1550 lastv
= (connector
->tile_v_loc
== (connector
->num_v_tile
- 1));
1551 /* cloning to multiple tiles is just crazy-talk, so: */
1557 sizes
.fb_width
= min_t(u32
, desired_mode
->hdisplay
+ x
, sizes
.fb_width
);
1559 sizes
.fb_height
= min_t(u32
, desired_mode
->vdisplay
+ y
, sizes
.fb_height
);
1562 if (crtc_count
== 0 || sizes
.fb_width
== -1 || sizes
.fb_height
== -1) {
1563 /* hmm everyone went away - assume VGA cable just fell out
1564 and will come back later. */
1565 DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n");
1566 sizes
.fb_width
= sizes
.surface_width
= 1024;
1567 sizes
.fb_height
= sizes
.surface_height
= 768;
1570 /* push down into drivers */
1571 ret
= (*fb_helper
->funcs
->fb_probe
)(fb_helper
, &sizes
);
1575 info
= fb_helper
->fbdev
;
1578 * Set the fb pointer - usually drm_setup_crtcs does this for hotplug
1579 * events, but at init time drm_setup_crtcs needs to be called before
1580 * the fb is allocated (since we need to figure out the desired size of
1581 * the fb before we can allocate it ...). Hence we need to fix things up
1584 for (i
= 0; i
< fb_helper
->crtc_count
; i
++)
1585 if (fb_helper
->crtc_info
[i
].mode_set
.num_connectors
)
1586 fb_helper
->crtc_info
[i
].mode_set
.fb
= fb_helper
->fb
;
1589 info
->var
.pixclock
= 0;
1590 if (register_framebuffer(info
) < 0)
1593 dev_info(fb_helper
->dev
->dev
, "fb%d: %s frame buffer device\n",
1594 info
->node
, info
->fix
.id
);
1596 if (list_empty(&kernel_fb_helper_list
)) {
1597 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op
);
1600 list_add(&fb_helper
->kernel_fb_list
, &kernel_fb_helper_list
);
1606 * drm_fb_helper_fill_fix - initializes fixed fbdev information
1607 * @info: fbdev registered by the helper
1608 * @pitch: desired pitch
1609 * @depth: desired depth
1611 * Helper to fill in the fixed fbdev information useful for a non-accelerated
1612 * fbdev emulations. Drivers which support acceleration methods which impose
1613 * additional constraints need to set up their own limits.
1615 * Drivers should call this (or their equivalent setup code) from their
1616 * ->fb_probe callback.
1618 void drm_fb_helper_fill_fix(struct fb_info
*info
, uint32_t pitch
,
1621 info
->fix
.type
= FB_TYPE_PACKED_PIXELS
;
1622 info
->fix
.visual
= depth
== 8 ? FB_VISUAL_PSEUDOCOLOR
:
1623 FB_VISUAL_TRUECOLOR
;
1624 info
->fix
.mmio_start
= 0;
1625 info
->fix
.mmio_len
= 0;
1626 info
->fix
.type_aux
= 0;
1627 info
->fix
.xpanstep
= 1; /* doing it in hw */
1628 info
->fix
.ypanstep
= 1; /* doing it in hw */
1629 info
->fix
.ywrapstep
= 0;
1630 info
->fix
.accel
= FB_ACCEL_NONE
;
1632 info
->fix
.line_length
= pitch
;
1635 EXPORT_SYMBOL(drm_fb_helper_fill_fix
);
1638 * drm_fb_helper_fill_var - initalizes variable fbdev information
1639 * @info: fbdev instance to set up
1640 * @fb_helper: fb helper instance to use as template
1641 * @fb_width: desired fb width
1642 * @fb_height: desired fb height
1644 * Sets up the variable fbdev metainformation from the given fb helper instance
1645 * and the drm framebuffer allocated in fb_helper->fb.
1647 * Drivers should call this (or their equivalent setup code) from their
1648 * ->fb_probe callback after having allocated the fbdev backing
1649 * storage framebuffer.
1651 void drm_fb_helper_fill_var(struct fb_info
*info
, struct drm_fb_helper
*fb_helper
,
1652 uint32_t fb_width
, uint32_t fb_height
)
1654 struct drm_framebuffer
*fb
= fb_helper
->fb
;
1655 info
->pseudo_palette
= fb_helper
->pseudo_palette
;
1656 info
->var
.xres_virtual
= fb
->width
;
1657 info
->var
.yres_virtual
= fb
->height
;
1658 info
->var
.bits_per_pixel
= fb
->bits_per_pixel
;
1659 info
->var
.accel_flags
= FB_ACCELF_TEXT
;
1660 info
->var
.xoffset
= 0;
1661 info
->var
.yoffset
= 0;
1662 info
->var
.activate
= FB_ACTIVATE_NOW
;
1663 info
->var
.height
= -1;
1664 info
->var
.width
= -1;
1666 switch (fb
->depth
) {
1668 info
->var
.red
.offset
= 0;
1669 info
->var
.green
.offset
= 0;
1670 info
->var
.blue
.offset
= 0;
1671 info
->var
.red
.length
= 8; /* 8bit DAC */
1672 info
->var
.green
.length
= 8;
1673 info
->var
.blue
.length
= 8;
1674 info
->var
.transp
.offset
= 0;
1675 info
->var
.transp
.length
= 0;
1678 info
->var
.red
.offset
= 10;
1679 info
->var
.green
.offset
= 5;
1680 info
->var
.blue
.offset
= 0;
1681 info
->var
.red
.length
= 5;
1682 info
->var
.green
.length
= 5;
1683 info
->var
.blue
.length
= 5;
1684 info
->var
.transp
.offset
= 15;
1685 info
->var
.transp
.length
= 1;
1688 info
->var
.red
.offset
= 11;
1689 info
->var
.green
.offset
= 5;
1690 info
->var
.blue
.offset
= 0;
1691 info
->var
.red
.length
= 5;
1692 info
->var
.green
.length
= 6;
1693 info
->var
.blue
.length
= 5;
1694 info
->var
.transp
.offset
= 0;
1697 info
->var
.red
.offset
= 16;
1698 info
->var
.green
.offset
= 8;
1699 info
->var
.blue
.offset
= 0;
1700 info
->var
.red
.length
= 8;
1701 info
->var
.green
.length
= 8;
1702 info
->var
.blue
.length
= 8;
1703 info
->var
.transp
.offset
= 0;
1704 info
->var
.transp
.length
= 0;
1707 info
->var
.red
.offset
= 16;
1708 info
->var
.green
.offset
= 8;
1709 info
->var
.blue
.offset
= 0;
1710 info
->var
.red
.length
= 8;
1711 info
->var
.green
.length
= 8;
1712 info
->var
.blue
.length
= 8;
1713 info
->var
.transp
.offset
= 24;
1714 info
->var
.transp
.length
= 8;
1720 info
->var
.xres
= fb_width
;
1721 info
->var
.yres
= fb_height
;
1723 EXPORT_SYMBOL(drm_fb_helper_fill_var
);
1725 static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper
*fb_helper
,
1729 struct drm_connector
*connector
;
1733 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1734 connector
= fb_helper
->connector_info
[i
]->connector
;
1735 count
+= connector
->funcs
->fill_modes(connector
, maxX
, maxY
);
1741 struct drm_display_mode
*drm_has_preferred_mode(struct drm_fb_helper_connector
*fb_connector
, int width
, int height
)
1743 struct drm_display_mode
*mode
;
1745 list_for_each_entry(mode
, &fb_connector
->connector
->modes
, head
) {
1746 if (mode
->hdisplay
> width
||
1747 mode
->vdisplay
> height
)
1749 if (mode
->type
& DRM_MODE_TYPE_PREFERRED
)
1754 EXPORT_SYMBOL(drm_has_preferred_mode
);
1756 static bool drm_has_cmdline_mode(struct drm_fb_helper_connector
*fb_connector
)
1758 return fb_connector
->connector
->cmdline_mode
.specified
;
1761 struct drm_display_mode
*drm_pick_cmdline_mode(struct drm_fb_helper_connector
*fb_helper_conn
,
1762 int width
, int height
)
1764 struct drm_cmdline_mode
*cmdline_mode
;
1765 struct drm_display_mode
*mode
;
1766 bool prefer_non_interlace
;
1768 cmdline_mode
= &fb_helper_conn
->connector
->cmdline_mode
;
1769 if (cmdline_mode
->specified
== false)
1772 /* attempt to find a matching mode in the list of modes
1773 * we have gotten so far, if not add a CVT mode that conforms
1775 if (cmdline_mode
->rb
|| cmdline_mode
->margins
)
1778 prefer_non_interlace
= !cmdline_mode
->interlace
;
1780 list_for_each_entry(mode
, &fb_helper_conn
->connector
->modes
, head
) {
1781 /* check width/height */
1782 if (mode
->hdisplay
!= cmdline_mode
->xres
||
1783 mode
->vdisplay
!= cmdline_mode
->yres
)
1786 if (cmdline_mode
->refresh_specified
) {
1787 if (mode
->vrefresh
!= cmdline_mode
->refresh
)
1791 if (cmdline_mode
->interlace
) {
1792 if (!(mode
->flags
& DRM_MODE_FLAG_INTERLACE
))
1794 } else if (prefer_non_interlace
) {
1795 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
1801 if (prefer_non_interlace
) {
1802 prefer_non_interlace
= false;
1807 mode
= drm_mode_create_from_cmdline_mode(fb_helper_conn
->connector
->dev
,
1809 list_add(&mode
->head
, &fb_helper_conn
->connector
->modes
);
1812 EXPORT_SYMBOL(drm_pick_cmdline_mode
);
1814 static bool drm_connector_enabled(struct drm_connector
*connector
, bool strict
)
1819 enable
= connector
->status
== connector_status_connected
;
1821 enable
= connector
->status
!= connector_status_disconnected
;
1826 static void drm_enable_connectors(struct drm_fb_helper
*fb_helper
,
1829 bool any_enabled
= false;
1830 struct drm_connector
*connector
;
1833 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1834 connector
= fb_helper
->connector_info
[i
]->connector
;
1835 enabled
[i
] = drm_connector_enabled(connector
, true);
1836 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector
->base
.id
,
1837 enabled
[i
] ? "yes" : "no");
1838 any_enabled
|= enabled
[i
];
1844 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1845 connector
= fb_helper
->connector_info
[i
]->connector
;
1846 enabled
[i
] = drm_connector_enabled(connector
, false);
1850 static bool drm_target_cloned(struct drm_fb_helper
*fb_helper
,
1851 struct drm_display_mode
**modes
,
1852 struct drm_fb_offset
*offsets
,
1853 bool *enabled
, int width
, int height
)
1856 bool can_clone
= false;
1857 struct drm_fb_helper_connector
*fb_helper_conn
;
1858 struct drm_display_mode
*dmt_mode
, *mode
;
1860 /* only contemplate cloning in the single crtc case */
1861 if (fb_helper
->crtc_count
> 1)
1865 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1870 /* only contemplate cloning if more than one connector is enabled */
1874 /* check the command line or if nothing common pick 1024x768 */
1876 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1879 fb_helper_conn
= fb_helper
->connector_info
[i
];
1880 modes
[i
] = drm_pick_cmdline_mode(fb_helper_conn
, width
, height
);
1885 for (j
= 0; j
< i
; j
++) {
1888 if (!drm_mode_equal(modes
[j
], modes
[i
]))
1894 DRM_DEBUG_KMS("can clone using command line\n");
1898 /* try and find a 1024x768 mode on each connector */
1900 dmt_mode
= drm_mode_find_dmt(fb_helper
->dev
, 1024, 768, 60, false);
1902 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1907 fb_helper_conn
= fb_helper
->connector_info
[i
];
1908 list_for_each_entry(mode
, &fb_helper_conn
->connector
->modes
, head
) {
1909 if (drm_mode_equal(mode
, dmt_mode
))
1917 DRM_DEBUG_KMS("can clone using 1024x768\n");
1920 DRM_INFO("kms: can't enable cloning when we probably wanted to.\n");
1924 static int drm_get_tile_offsets(struct drm_fb_helper
*fb_helper
,
1925 struct drm_display_mode
**modes
,
1926 struct drm_fb_offset
*offsets
,
1928 int h_idx
, int v_idx
)
1930 struct drm_fb_helper_connector
*fb_helper_conn
;
1932 int hoffset
= 0, voffset
= 0;
1934 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1935 fb_helper_conn
= fb_helper
->connector_info
[i
];
1936 if (!fb_helper_conn
->connector
->has_tile
)
1939 if (!modes
[i
] && (h_idx
|| v_idx
)) {
1940 DRM_DEBUG_KMS("no modes for connector tiled %d %d\n", i
,
1941 fb_helper_conn
->connector
->base
.id
);
1944 if (fb_helper_conn
->connector
->tile_h_loc
< h_idx
)
1945 hoffset
+= modes
[i
]->hdisplay
;
1947 if (fb_helper_conn
->connector
->tile_v_loc
< v_idx
)
1948 voffset
+= modes
[i
]->vdisplay
;
1950 offsets
[idx
].x
= hoffset
;
1951 offsets
[idx
].y
= voffset
;
1952 DRM_DEBUG_KMS("returned %d %d for %d %d\n", hoffset
, voffset
, h_idx
, v_idx
);
1956 static bool drm_target_preferred(struct drm_fb_helper
*fb_helper
,
1957 struct drm_display_mode
**modes
,
1958 struct drm_fb_offset
*offsets
,
1959 bool *enabled
, int width
, int height
)
1961 struct drm_fb_helper_connector
*fb_helper_conn
;
1963 uint64_t conn_configured
= 0, mask
;
1965 mask
= (1 << fb_helper
->connector_count
) - 1;
1967 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
1968 fb_helper_conn
= fb_helper
->connector_info
[i
];
1970 if (conn_configured
& (1 << i
))
1973 if (enabled
[i
] == false) {
1974 conn_configured
|= (1 << i
);
1978 /* first pass over all the untiled connectors */
1979 if (tile_pass
== 0 && fb_helper_conn
->connector
->has_tile
)
1982 if (tile_pass
== 1) {
1983 if (fb_helper_conn
->connector
->tile_h_loc
!= 0 ||
1984 fb_helper_conn
->connector
->tile_v_loc
!= 0)
1988 if (fb_helper_conn
->connector
->tile_h_loc
!= tile_pass
-1 &&
1989 fb_helper_conn
->connector
->tile_v_loc
!= tile_pass
- 1)
1990 /* if this tile_pass doesn't cover any of the tiles - keep going */
1993 /* find the tile offsets for this pass - need
1994 to find all tiles left and above */
1995 drm_get_tile_offsets(fb_helper
, modes
, offsets
,
1996 i
, fb_helper_conn
->connector
->tile_h_loc
, fb_helper_conn
->connector
->tile_v_loc
);
1998 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
1999 fb_helper_conn
->connector
->base
.id
);
2001 /* got for command line mode first */
2002 modes
[i
] = drm_pick_cmdline_mode(fb_helper_conn
, width
, height
);
2004 DRM_DEBUG_KMS("looking for preferred mode on connector %d %d\n",
2005 fb_helper_conn
->connector
->base
.id
, fb_helper_conn
->connector
->tile_group
? fb_helper_conn
->connector
->tile_group
->id
: 0);
2006 modes
[i
] = drm_has_preferred_mode(fb_helper_conn
, width
, height
);
2008 /* No preferred modes, pick one off the list */
2009 if (!modes
[i
] && !list_empty(&fb_helper_conn
->connector
->modes
)) {
2010 list_for_each_entry(modes
[i
], &fb_helper_conn
->connector
->modes
, head
)
2013 DRM_DEBUG_KMS("found mode %s\n", modes
[i
] ? modes
[i
]->name
:
2015 conn_configured
|= (1 << i
);
2018 if ((conn_configured
& mask
) != mask
) {
2025 static int drm_pick_crtcs(struct drm_fb_helper
*fb_helper
,
2026 struct drm_fb_helper_crtc
**best_crtcs
,
2027 struct drm_display_mode
**modes
,
2028 int n
, int width
, int height
)
2031 struct drm_connector
*connector
;
2032 const struct drm_connector_helper_funcs
*connector_funcs
;
2033 struct drm_encoder
*encoder
;
2034 int my_score
, best_score
, score
;
2035 struct drm_fb_helper_crtc
**crtcs
, *crtc
;
2036 struct drm_fb_helper_connector
*fb_helper_conn
;
2038 if (n
== fb_helper
->connector_count
)
2041 fb_helper_conn
= fb_helper
->connector_info
[n
];
2042 connector
= fb_helper_conn
->connector
;
2044 best_crtcs
[n
] = NULL
;
2045 best_score
= drm_pick_crtcs(fb_helper
, best_crtcs
, modes
, n
+1, width
, height
);
2046 if (modes
[n
] == NULL
)
2049 crtcs
= kzalloc(fb_helper
->connector_count
*
2050 sizeof(struct drm_fb_helper_crtc
*), GFP_KERNEL
);
2055 if (connector
->status
== connector_status_connected
)
2057 if (drm_has_cmdline_mode(fb_helper_conn
))
2059 if (drm_has_preferred_mode(fb_helper_conn
, width
, height
))
2062 connector_funcs
= connector
->helper_private
;
2065 * If the DRM device implements atomic hooks and ->best_encoder() is
2066 * NULL we fallback to the default drm_atomic_helper_best_encoder()
2069 if (fb_helper
->dev
->mode_config
.funcs
->atomic_commit
&&
2070 !connector_funcs
->best_encoder
)
2071 encoder
= drm_atomic_helper_best_encoder(connector
);
2073 encoder
= connector_funcs
->best_encoder(connector
);
2078 /* select a crtc for this connector and then attempt to configure
2079 remaining connectors */
2080 for (c
= 0; c
< fb_helper
->crtc_count
; c
++) {
2081 crtc
= &fb_helper
->crtc_info
[c
];
2083 if ((encoder
->possible_crtcs
& (1 << c
)) == 0)
2086 for (o
= 0; o
< n
; o
++)
2087 if (best_crtcs
[o
] == crtc
)
2091 /* ignore cloning unless only a single crtc */
2092 if (fb_helper
->crtc_count
> 1)
2095 if (!drm_mode_equal(modes
[o
], modes
[n
]))
2100 memcpy(crtcs
, best_crtcs
, n
* sizeof(struct drm_fb_helper_crtc
*));
2101 score
= my_score
+ drm_pick_crtcs(fb_helper
, crtcs
, modes
, n
+ 1,
2103 if (score
> best_score
) {
2105 memcpy(best_crtcs
, crtcs
,
2106 fb_helper
->connector_count
*
2107 sizeof(struct drm_fb_helper_crtc
*));
2115 static void drm_setup_crtcs(struct drm_fb_helper
*fb_helper
)
2117 struct drm_device
*dev
= fb_helper
->dev
;
2118 struct drm_fb_helper_crtc
**crtcs
;
2119 struct drm_display_mode
**modes
;
2120 struct drm_fb_offset
*offsets
;
2125 DRM_DEBUG_KMS("\n");
2127 width
= dev
->mode_config
.max_width
;
2128 height
= dev
->mode_config
.max_height
;
2130 crtcs
= kcalloc(fb_helper
->connector_count
,
2131 sizeof(struct drm_fb_helper_crtc
*), GFP_KERNEL
);
2132 modes
= kcalloc(fb_helper
->connector_count
,
2133 sizeof(struct drm_display_mode
*), GFP_KERNEL
);
2134 offsets
= kcalloc(fb_helper
->connector_count
,
2135 sizeof(struct drm_fb_offset
), GFP_KERNEL
);
2136 enabled
= kcalloc(fb_helper
->connector_count
,
2137 sizeof(bool), GFP_KERNEL
);
2138 if (!crtcs
|| !modes
|| !enabled
|| !offsets
) {
2139 DRM_ERROR("Memory allocation failed\n");
2144 drm_enable_connectors(fb_helper
, enabled
);
2146 if (!(fb_helper
->funcs
->initial_config
&&
2147 fb_helper
->funcs
->initial_config(fb_helper
, crtcs
, modes
,
2149 enabled
, width
, height
))) {
2150 memset(modes
, 0, fb_helper
->connector_count
*sizeof(modes
[0]));
2151 memset(crtcs
, 0, fb_helper
->connector_count
*sizeof(crtcs
[0]));
2152 memset(offsets
, 0, fb_helper
->connector_count
*sizeof(offsets
[0]));
2154 if (!drm_target_cloned(fb_helper
, modes
, offsets
,
2155 enabled
, width
, height
) &&
2156 !drm_target_preferred(fb_helper
, modes
, offsets
,
2157 enabled
, width
, height
))
2158 DRM_ERROR("Unable to find initial modes\n");
2160 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n",
2163 drm_pick_crtcs(fb_helper
, crtcs
, modes
, 0, width
, height
);
2166 /* need to set the modesets up here for use later */
2167 /* fill out the connector<->crtc mappings into the modesets */
2168 for (i
= 0; i
< fb_helper
->crtc_count
; i
++)
2169 drm_fb_helper_modeset_release(fb_helper
,
2170 &fb_helper
->crtc_info
[i
].mode_set
);
2172 for (i
= 0; i
< fb_helper
->connector_count
; i
++) {
2173 struct drm_display_mode
*mode
= modes
[i
];
2174 struct drm_fb_helper_crtc
*fb_crtc
= crtcs
[i
];
2175 struct drm_fb_offset
*offset
= &offsets
[i
];
2176 struct drm_mode_set
*modeset
= &fb_crtc
->mode_set
;
2178 if (mode
&& fb_crtc
) {
2179 struct drm_connector
*connector
=
2180 fb_helper
->connector_info
[i
]->connector
;
2182 DRM_DEBUG_KMS("desired mode %s set on crtc %d (%d,%d)\n",
2183 mode
->name
, fb_crtc
->mode_set
.crtc
->base
.id
, offset
->x
, offset
->y
);
2185 fb_crtc
->desired_mode
= mode
;
2186 fb_crtc
->x
= offset
->x
;
2187 fb_crtc
->y
= offset
->y
;
2188 modeset
->mode
= drm_mode_duplicate(dev
,
2189 fb_crtc
->desired_mode
);
2190 drm_connector_reference(connector
);
2191 modeset
->connectors
[modeset
->num_connectors
++] = connector
;
2192 modeset
->fb
= fb_helper
->fb
;
2193 modeset
->x
= offset
->x
;
2194 modeset
->y
= offset
->y
;
2205 * drm_fb_helper_initial_config - setup a sane initial connector configuration
2206 * @fb_helper: fb_helper device struct
2207 * @bpp_sel: bpp value to use for the framebuffer configuration
2209 * Scans the CRTCs and connectors and tries to put together an initial setup.
2210 * At the moment, this is a cloned configuration across all heads with
2211 * a new framebuffer object as the backing store.
2213 * Note that this also registers the fbdev and so allows userspace to call into
2214 * the driver through the fbdev interfaces.
2216 * This function will call down into the ->fb_probe callback to let
2217 * the driver allocate and initialize the fbdev info structure and the drm
2218 * framebuffer used to back the fbdev. drm_fb_helper_fill_var() and
2219 * drm_fb_helper_fill_fix() are provided as helpers to setup simple default
2220 * values for the fbdev info structure.
2224 * When you have fbcon support built-in or already loaded, this function will do
2225 * a full modeset to setup the fbdev console. Due to locking misdesign in the
2226 * VT/fbdev subsystem that entire modeset sequence has to be done while holding
2227 * console_lock. Until console_unlock is called no dmesg lines will be sent out
2228 * to consoles, not even serial console. This means when your driver crashes,
2229 * you will see absolutely nothing else but a system stuck in this function,
2230 * with no further output. Any kind of printk() you place within your own driver
2231 * or in the drm core modeset code will also never show up.
2233 * Standard debug practice is to run the fbcon setup without taking the
2234 * console_lock as a hack, to be able to see backtraces and crashes on the
2235 * serial line. This can be done by setting the fb.lockless_register_fb=1 kernel
2238 * The other option is to just disable fbdev emulation since very likely the
2239 * first modeset from userspace will crash in the same way, and is even easier
2240 * to debug. This can be done by setting the drm_kms_helper.fbdev_emulation=0
2241 * kernel cmdline option.
2244 * Zero if everything went ok, nonzero otherwise.
2246 int drm_fb_helper_initial_config(struct drm_fb_helper
*fb_helper
, int bpp_sel
)
2248 struct drm_device
*dev
= fb_helper
->dev
;
2251 if (!drm_fbdev_emulation
)
2254 mutex_lock(&dev
->mode_config
.mutex
);
2255 count
= drm_fb_helper_probe_connector_modes(fb_helper
,
2256 dev
->mode_config
.max_width
,
2257 dev
->mode_config
.max_height
);
2258 mutex_unlock(&dev
->mode_config
.mutex
);
2260 * we shouldn't end up with no modes here.
2263 dev_info(fb_helper
->dev
->dev
, "No connectors reported connected with modes\n");
2265 drm_setup_crtcs(fb_helper
);
2267 return drm_fb_helper_single_fb_probe(fb_helper
, bpp_sel
);
2269 EXPORT_SYMBOL(drm_fb_helper_initial_config
);
2272 * drm_fb_helper_hotplug_event - respond to a hotplug notification by
2273 * probing all the outputs attached to the fb
2274 * @fb_helper: the drm_fb_helper
2276 * Scan the connectors attached to the fb_helper and try to put together a
2277 * setup after notification of a change in output configuration.
2279 * Called at runtime, takes the mode config locks to be able to check/change the
2280 * modeset configuration. Must be run from process context (which usually means
2281 * either the output polling work or a work item launched from the driver's
2282 * hotplug interrupt).
2284 * Note that drivers may call this even before calling
2285 * drm_fb_helper_initial_config but only after drm_fb_helper_init. This allows
2286 * for a race-free fbcon setup and will make sure that the fbdev emulation will
2287 * not miss any hotplug events.
2290 * 0 on success and a non-zero error code otherwise.
2292 int drm_fb_helper_hotplug_event(struct drm_fb_helper
*fb_helper
)
2294 struct drm_device
*dev
= fb_helper
->dev
;
2295 u32 max_width
, max_height
;
2297 if (!drm_fbdev_emulation
)
2300 mutex_lock(&fb_helper
->dev
->mode_config
.mutex
);
2301 if (!fb_helper
->fb
|| !drm_fb_helper_is_bound(fb_helper
)) {
2302 fb_helper
->delayed_hotplug
= true;
2303 mutex_unlock(&fb_helper
->dev
->mode_config
.mutex
);
2306 DRM_DEBUG_KMS("\n");
2308 max_width
= fb_helper
->fb
->width
;
2309 max_height
= fb_helper
->fb
->height
;
2311 drm_fb_helper_probe_connector_modes(fb_helper
, max_width
, max_height
);
2312 mutex_unlock(&fb_helper
->dev
->mode_config
.mutex
);
2314 drm_modeset_lock_all(dev
);
2315 drm_setup_crtcs(fb_helper
);
2316 drm_modeset_unlock_all(dev
);
2317 drm_fb_helper_set_par(fb_helper
->fbdev
);
2321 EXPORT_SYMBOL(drm_fb_helper_hotplug_event
);
2323 /* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
2324 * but the module doesn't depend on any fb console symbols. At least
2325 * attempt to load fbcon to avoid leaving the system without a usable console.
2327 int __init
drm_fb_helper_modinit(void)
2329 #if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
2330 const char *name
= "fbcon";
2331 struct module
*fbcon
;
2333 mutex_lock(&module_mutex
);
2334 fbcon
= find_module(name
);
2335 mutex_unlock(&module_mutex
);
2338 request_module_nowait(name
);
2342 EXPORT_SYMBOL(drm_fb_helper_modinit
);