blob: e934b541feea05aec5653824453b30b797b798be [file] [log] [blame]
Dave Airlie785b93e2009-08-28 15:46:53 +10001/*
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 */
Sachin Kamatd56b1b92012-11-15 03:43:29 +000030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
Noralf Trønnescfe63422016-08-23 13:54:06 +020032#include <linux/console.h>
Andy Shevchenko3b40a442010-02-02 14:40:32 -080033#include <linux/kernel.h>
Dave Airlie785b93e2009-08-28 15:46:53 +100034#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040036#include <linux/module.h>
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/drmP.h>
38#include <drm/drm_crtc.h>
39#include <drm/drm_fb_helper.h>
40#include <drm/drm_crtc_helper.h>
Rob Clarkbbb1e522015-08-25 15:35:58 -040041#include <drm/drm_atomic.h>
42#include <drm/drm_atomic_helper.h>
Dave Airlie785b93e2009-08-28 15:46:53 +100043
Ville Syrjälä699fbee2016-09-19 16:33:44 +030044#include "drm_crtc_helper_internal.h"
45
Daniel Vetterf64c5572015-08-25 15:45:13 +020046static bool drm_fbdev_emulation = true;
47module_param_named(fbdev_emulation, drm_fbdev_emulation, bool, 0600);
48MODULE_PARM_DESC(fbdev_emulation,
49 "Enable legacy fbdev emulation [default=true]");
50
Dave Airlie785b93e2009-08-28 15:46:53 +100051static LIST_HEAD(kernel_fb_helper_list);
Chris Wilsona53ca632016-11-29 12:02:17 +000052static DEFINE_MUTEX(kernel_fb_helper_lock);
Dave Airlie785b93e2009-08-28 15:46:53 +100053
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010054/**
55 * DOC: fbdev helpers
56 *
57 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
Thierry Reding83c617c2014-04-29 11:44:35 +020058 * mode setting driver. They can be used mostly independently from the crtc
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010059 * helper functions used by many drivers to implement the kernel mode setting
60 * interfaces.
Daniel Vetter207fd322013-01-20 22:13:14 +010061 *
Thierry Reding10a23102014-06-27 17:19:24 +020062 * Initialization is done as a four-step process with drm_fb_helper_prepare(),
63 * drm_fb_helper_init(), drm_fb_helper_single_add_all_connectors() and
64 * drm_fb_helper_initial_config(). Drivers with fancier requirements than the
65 * default behaviour can override the third step with their own code.
66 * Teardown is done with drm_fb_helper_fini().
Daniel Vetter207fd322013-01-20 22:13:14 +010067 *
68 * At runtime drivers should restore the fbdev console by calling
Geert Uytterhoeven3d9e35a2015-08-04 15:22:10 +020069 * drm_fb_helper_restore_fbdev_mode_unlocked() from their ->lastclose callback.
70 * They should also notify the fb helper code from updates to the output
Daniel Vetter207fd322013-01-20 22:13:14 +010071 * configuration by calling drm_fb_helper_hotplug_event(). For easier
72 * integration with the output polling code in drm_crtc_helper.c the modeset
Thierry Reding83c617c2014-04-29 11:44:35 +020073 * code provides a ->output_poll_changed callback.
Daniel Vetter207fd322013-01-20 22:13:14 +010074 *
75 * All other functions exported by the fb helper library can be used to
76 * implement the fbdev driver interface by the driver.
Thierry Reding10a23102014-06-27 17:19:24 +020077 *
78 * It is possible, though perhaps somewhat tricky, to implement race-free
79 * hotplug detection using the fbdev helpers. The drm_fb_helper_prepare()
80 * helper must be called first to initialize the minimum required to make
81 * hotplug detection work. Drivers also need to make sure to properly set up
82 * the dev->mode_config.funcs member. After calling drm_kms_helper_poll_init()
83 * it is safe to enable interrupts and start processing hotplug events. At the
84 * same time, drivers should initialize all modeset objects such as CRTCs,
85 * encoders and connectors. To finish up the fbdev helper initialization, the
86 * drm_fb_helper_init() function is called. To probe for all attached displays
87 * and set up an initial configuration using the detected hardware, drivers
88 * should call drm_fb_helper_single_add_all_connectors() followed by
89 * drm_fb_helper_initial_config().
Noralf Trønneseaa434d2016-04-28 17:18:33 +020090 *
Noralf Trønnes2dad5512016-05-11 18:09:17 +020091 * If &drm_framebuffer_funcs ->dirty is set, the
92 * drm_fb_helper_{cfb,sys}_{write,fillrect,copyarea,imageblit} functions will
93 * accumulate changes and schedule &drm_fb_helper ->dirty_work to run right
94 * away. This worker then calls the dirty() function ensuring that it will
95 * always run in process context since the fb_*() function could be running in
96 * atomic context. If drm_fb_helper_deferred_io() is used as the deferred_io
97 * callback it will also schedule dirty_work with the damage collected from the
98 * mmap page writes.
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010099 */
100
Chris Wilson966a6a12016-11-29 12:02:15 +0000101#define drm_fb_helper_for_each_connector(fbh, i__) \
102 for (({ lockdep_assert_held(&(fbh)->dev->mode_config.mutex); }), \
103 i__ = 0; i__ < (fbh)->connector_count; i__++)
104
Daniel Vetter207fd322013-01-20 22:13:14 +0100105/**
106 * drm_fb_helper_single_add_all_connectors() - add all connectors to fbdev
107 * emulation helper
108 * @fb_helper: fbdev initialized with drm_fb_helper_init
109 *
110 * This functions adds all the available connectors for use with the given
111 * fb_helper. This is a separate step to allow drivers to freely assign
112 * connectors to the fbdev, e.g. if some are reserved for special purposes or
113 * not adequate to be used for the fbcon.
114 *
Daniel Vetter169faec2015-07-09 23:44:27 +0200115 * This function is protected against concurrent connector hotadds/removals
116 * using drm_fb_helper_add_one_connector() and
117 * drm_fb_helper_remove_one_connector().
Daniel Vetter207fd322013-01-20 22:13:14 +0100118 */
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000119int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper *fb_helper)
Dave Airlied50ba252009-09-23 14:44:08 +1000120{
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000121 struct drm_device *dev = fb_helper->dev;
122 struct drm_connector *connector;
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100123 int i, ret;
Dave Airlied50ba252009-09-23 14:44:08 +1000124
Daniel Vetterf64c5572015-08-25 15:45:13 +0200125 if (!drm_fbdev_emulation)
126 return 0;
127
Daniel Vetter169faec2015-07-09 23:44:27 +0200128 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter6295d602015-07-09 23:44:25 +0200129 drm_for_each_connector(connector, dev) {
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100130 ret = drm_fb_helper_add_one_connector(fb_helper, connector);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000131
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100132 if (ret)
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000133 goto fail;
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000134 }
Daniel Vetter169faec2015-07-09 23:44:27 +0200135 mutex_unlock(&dev->mode_config.mutex);
Dave Airlied50ba252009-09-23 14:44:08 +1000136 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000137fail:
Chris Wilson966a6a12016-11-29 12:02:15 +0000138 drm_fb_helper_for_each_connector(fb_helper, i) {
Ville Syrjälä7dfcb362016-10-26 12:05:52 +0300139 struct drm_fb_helper_connector *fb_helper_connector =
140 fb_helper->connector_info[i];
141
142 drm_connector_unreference(fb_helper_connector->connector);
143
144 kfree(fb_helper_connector);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000145 fb_helper->connector_info[i] = NULL;
146 }
147 fb_helper->connector_count = 0;
Daniel Vetter169faec2015-07-09 23:44:27 +0200148 mutex_unlock(&dev->mode_config.mutex);
149
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100150 return ret;
Dave Airlied50ba252009-09-23 14:44:08 +1000151}
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000152EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors);
Dave Airlied50ba252009-09-23 14:44:08 +1000153
Dave Airlie65c2a892014-06-05 14:01:30 +1000154int drm_fb_helper_add_one_connector(struct drm_fb_helper *fb_helper, struct drm_connector *connector)
155{
156 struct drm_fb_helper_connector **temp;
157 struct drm_fb_helper_connector *fb_helper_connector;
158
Daniel Vetterf64c5572015-08-25 15:45:13 +0200159 if (!drm_fbdev_emulation)
160 return 0;
161
Dave Airlie65c2a892014-06-05 14:01:30 +1000162 WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex));
163 if (fb_helper->connector_count + 1 > fb_helper->connector_info_alloc_count) {
Damien Lespiau14f476f2014-08-08 19:15:20 +0100164 temp = krealloc(fb_helper->connector_info, sizeof(struct drm_fb_helper_connector *) * (fb_helper->connector_count + 1), GFP_KERNEL);
Dave Airlie65c2a892014-06-05 14:01:30 +1000165 if (!temp)
166 return -ENOMEM;
167
168 fb_helper->connector_info_alloc_count = fb_helper->connector_count + 1;
169 fb_helper->connector_info = temp;
170 }
171
172
173 fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL);
174 if (!fb_helper_connector)
175 return -ENOMEM;
176
Dave Airlie6e86d582016-04-27 11:24:51 +1000177 drm_connector_reference(connector);
Dave Airlie65c2a892014-06-05 14:01:30 +1000178 fb_helper_connector->connector = connector;
179 fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector;
180 return 0;
181}
182EXPORT_SYMBOL(drm_fb_helper_add_one_connector);
183
184int drm_fb_helper_remove_one_connector(struct drm_fb_helper *fb_helper,
185 struct drm_connector *connector)
186{
187 struct drm_fb_helper_connector *fb_helper_connector;
188 int i, j;
189
Daniel Vetterf64c5572015-08-25 15:45:13 +0200190 if (!drm_fbdev_emulation)
191 return 0;
192
Dave Airlie65c2a892014-06-05 14:01:30 +1000193 WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex));
194
195 for (i = 0; i < fb_helper->connector_count; i++) {
196 if (fb_helper->connector_info[i]->connector == connector)
197 break;
198 }
199
200 if (i == fb_helper->connector_count)
201 return -EINVAL;
202 fb_helper_connector = fb_helper->connector_info[i];
Dave Airlie6e86d582016-04-27 11:24:51 +1000203 drm_connector_unreference(fb_helper_connector->connector);
Dave Airlie65c2a892014-06-05 14:01:30 +1000204
205 for (j = i + 1; j < fb_helper->connector_count; j++) {
206 fb_helper->connector_info[j - 1] = fb_helper->connector_info[j];
207 }
208 fb_helper->connector_count--;
209 kfree(fb_helper_connector);
Rob Clark2148f182015-01-26 10:11:08 -0500210
Dave Airlie65c2a892014-06-05 14:01:30 +1000211 return 0;
212}
213EXPORT_SYMBOL(drm_fb_helper_remove_one_connector);
214
Jason Wessel99231022010-10-13 14:09:43 -0500215static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper)
216{
217 uint16_t *r_base, *g_base, *b_base;
218 int i;
219
Ville Syrjälä04c0c562013-05-27 20:19:57 +0300220 if (helper->funcs->gamma_get == NULL)
221 return;
222
Jason Wessel99231022010-10-13 14:09:43 -0500223 r_base = crtc->gamma_store;
224 g_base = r_base + crtc->gamma_size;
225 b_base = g_base + crtc->gamma_size;
226
227 for (i = 0; i < crtc->gamma_size; i++)
228 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
229}
230
231static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc)
232{
233 uint16_t *r_base, *g_base, *b_base;
234
Laurent Pinchartebe0f242012-05-17 13:27:24 +0200235 if (crtc->funcs->gamma_set == NULL)
236 return;
237
Jason Wessel99231022010-10-13 14:09:43 -0500238 r_base = crtc->gamma_store;
239 g_base = r_base + crtc->gamma_size;
240 b_base = g_base + crtc->gamma_size;
241
Maarten Lankhorst7ea77282016-06-07 12:49:30 +0200242 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, crtc->gamma_size);
Jason Wessel99231022010-10-13 14:09:43 -0500243}
244
Daniel Vetter207fd322013-01-20 22:13:14 +0100245/**
246 * drm_fb_helper_debug_enter - implementation for ->fb_debug_enter
247 * @info: fbdev registered by the helper
248 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500249int drm_fb_helper_debug_enter(struct fb_info *info)
250{
251 struct drm_fb_helper *helper = info->par;
Jani Nikulabe26a662015-03-11 11:51:06 +0200252 const struct drm_crtc_helper_funcs *funcs;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500253 int i;
254
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500255 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
256 for (i = 0; i < helper->crtc_count; i++) {
257 struct drm_mode_set *mode_set =
258 &helper->crtc_info[i].mode_set;
259
260 if (!mode_set->crtc->enabled)
261 continue;
262
263 funcs = mode_set->crtc->helper_private;
Stefan Christ1b99b722016-11-14 00:03:11 +0100264 if (funcs->mode_set_base_atomic == NULL)
265 continue;
266
Jason Wessel99231022010-10-13 14:09:43 -0500267 drm_fb_helper_save_lut_atomic(mode_set->crtc, helper);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500268 funcs->mode_set_base_atomic(mode_set->crtc,
269 mode_set->fb,
270 mode_set->x,
Jason Wessel413d45d2010-09-26 06:47:25 -0500271 mode_set->y,
Jason Wessel21c74a82010-10-13 14:09:44 -0500272 ENTER_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500273 }
274 }
275
276 return 0;
277}
278EXPORT_SYMBOL(drm_fb_helper_debug_enter);
279
280/* Find the real fb for a given fb helper CRTC */
281static struct drm_framebuffer *drm_mode_config_fb(struct drm_crtc *crtc)
282{
283 struct drm_device *dev = crtc->dev;
284 struct drm_crtc *c;
285
Daniel Vetter6295d602015-07-09 23:44:25 +0200286 drm_for_each_crtc(c, dev) {
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500287 if (crtc->base.id == c->base.id)
Matt Roperf4510a22014-04-01 15:22:40 -0700288 return c->primary->fb;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500289 }
290
291 return NULL;
292}
293
Daniel Vetter207fd322013-01-20 22:13:14 +0100294/**
295 * drm_fb_helper_debug_leave - implementation for ->fb_debug_leave
296 * @info: fbdev registered by the helper
297 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500298int drm_fb_helper_debug_leave(struct fb_info *info)
299{
300 struct drm_fb_helper *helper = info->par;
301 struct drm_crtc *crtc;
Jani Nikulabe26a662015-03-11 11:51:06 +0200302 const struct drm_crtc_helper_funcs *funcs;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500303 struct drm_framebuffer *fb;
304 int i;
305
306 for (i = 0; i < helper->crtc_count; i++) {
307 struct drm_mode_set *mode_set = &helper->crtc_info[i].mode_set;
308 crtc = mode_set->crtc;
309 funcs = crtc->helper_private;
310 fb = drm_mode_config_fb(crtc);
311
312 if (!crtc->enabled)
313 continue;
314
315 if (!fb) {
316 DRM_ERROR("no fb to restore??\n");
317 continue;
318 }
319
Stefan Christ1b99b722016-11-14 00:03:11 +0100320 if (funcs->mode_set_base_atomic == NULL)
321 continue;
322
Jason Wessel99231022010-10-13 14:09:43 -0500323 drm_fb_helper_restore_lut_atomic(mode_set->crtc);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500324 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
Jason Wessel21c74a82010-10-13 14:09:44 -0500325 crtc->y, LEAVE_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500326 }
327
328 return 0;
329}
330EXPORT_SYMBOL(drm_fb_helper_debug_leave);
331
Rob Clarkbbb1e522015-08-25 15:35:58 -0400332static int restore_fbdev_mode_atomic(struct drm_fb_helper *fb_helper)
333{
334 struct drm_device *dev = fb_helper->dev;
335 struct drm_plane *plane;
336 struct drm_atomic_state *state;
337 int i, ret;
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100338 unsigned plane_mask;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400339
340 state = drm_atomic_state_alloc(dev);
341 if (!state)
342 return -ENOMEM;
343
344 state->acquire_ctx = dev->mode_config.acquire_ctx;
345retry:
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100346 plane_mask = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400347 drm_for_each_plane(plane, dev) {
348 struct drm_plane_state *plane_state;
349
350 plane_state = drm_atomic_get_plane_state(state, plane);
351 if (IS_ERR(plane_state)) {
352 ret = PTR_ERR(plane_state);
353 goto fail;
354 }
355
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +0300356 plane_state->rotation = DRM_ROTATE_0;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400357
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100358 plane->old_fb = plane->fb;
359 plane_mask |= 1 << drm_plane_index(plane);
360
Rob Clarkbbb1e522015-08-25 15:35:58 -0400361 /* disable non-primary: */
362 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
363 continue;
364
365 ret = __drm_atomic_helper_disable_plane(plane, plane_state);
366 if (ret != 0)
367 goto fail;
368 }
369
370 for(i = 0; i < fb_helper->crtc_count; i++) {
371 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
372
373 ret = __drm_atomic_helper_set_config(mode_set, state);
374 if (ret != 0)
375 goto fail;
376 }
377
378 ret = drm_atomic_commit(state);
Rob Clarkbbb1e522015-08-25 15:35:58 -0400379
380fail:
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100381 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Matt Roper94284032015-09-21 17:21:48 -0700382
Rob Clarkbbb1e522015-08-25 15:35:58 -0400383 if (ret == -EDEADLK)
384 goto backoff;
385
Chris Wilson08536952016-10-14 13:18:18 +0100386 drm_atomic_state_put(state);
Rob Clarkbbb1e522015-08-25 15:35:58 -0400387 return ret;
388
389backoff:
390 drm_atomic_state_clear(state);
391 drm_atomic_legacy_backoff(state);
392
393 goto retry;
394}
395
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200396static int restore_fbdev_mode(struct drm_fb_helper *fb_helper)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100397{
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300398 struct drm_device *dev = fb_helper->dev;
399 struct drm_plane *plane;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300400 int i;
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100401
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300402 drm_warn_on_modeset_not_all_locked(dev);
403
Daniel Vetterd3a46182016-06-08 14:19:15 +0200404 if (dev->mode_config.funcs->atomic_commit)
Rob Clarkbbb1e522015-08-25 15:35:58 -0400405 return restore_fbdev_mode_atomic(fb_helper);
406
Daniel Vetter6295d602015-07-09 23:44:25 +0200407 drm_for_each_plane(plane, dev) {
Matt Ropere27dde32014-04-01 15:22:30 -0700408 if (plane->type != DRM_PLANE_TYPE_PRIMARY)
409 drm_plane_force_disable(plane);
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100410
Ville Syrjälä6686df82016-10-21 22:22:45 +0300411 if (plane->rotation_property)
Ville Syrjäläd138dd32016-09-26 19:30:48 +0300412 drm_mode_plane_set_obj_prop(plane,
413 plane->rotation_property,
414 DRM_ROTATE_0);
Sonika Jindal9783de22014-08-05 11:26:57 +0530415 }
416
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100417 for (i = 0; i < fb_helper->crtc_count; i++) {
418 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300419 struct drm_crtc *crtc = mode_set->crtc;
420 int ret;
421
Alex Deucher03f9abb2015-09-30 14:47:37 -0400422 if (crtc->funcs->cursor_set2) {
423 ret = crtc->funcs->cursor_set2(crtc, NULL, 0, 0, 0, 0, 0);
424 if (ret)
Dave Airlie48f87dd2015-10-16 10:10:32 +1000425 return ret;
Alex Deucher03f9abb2015-09-30 14:47:37 -0400426 } else if (crtc->funcs->cursor_set) {
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300427 ret = crtc->funcs->cursor_set(crtc, NULL, 0, 0, 0);
428 if (ret)
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200429 return ret;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300430 }
431
Daniel Vetter2d13b672012-12-11 13:47:23 +0100432 ret = drm_mode_set_config_internal(mode_set);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100433 if (ret)
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200434 return ret;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100435 }
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200436
437 return 0;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100438}
Rob Clark5ea1f752014-05-30 12:29:48 -0400439
440/**
441 * drm_fb_helper_restore_fbdev_mode_unlocked - restore fbdev configuration
442 * @fb_helper: fbcon to restore
443 *
444 * This should be called from driver's drm ->lastclose callback
445 * when implementing an fbcon on top of kms using this helper. This ensures that
446 * the user isn't greeted with a black screen when e.g. X dies.
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200447 *
448 * RETURNS:
449 * Zero if everything went ok, negative error code otherwise.
Rob Clark5ea1f752014-05-30 12:29:48 -0400450 */
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200451int drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper)
Rob Clark5ea1f752014-05-30 12:29:48 -0400452{
453 struct drm_device *dev = fb_helper->dev;
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200454 bool do_delayed;
455 int ret;
Dave Airliee2809c72014-11-26 13:15:24 +1000456
Daniel Vetterf64c5572015-08-25 15:45:13 +0200457 if (!drm_fbdev_emulation)
458 return -ENODEV;
459
Rob Clark5ea1f752014-05-30 12:29:48 -0400460 drm_modeset_lock_all(dev);
461 ret = restore_fbdev_mode(fb_helper);
Dave Airliee2809c72014-11-26 13:15:24 +1000462
463 do_delayed = fb_helper->delayed_hotplug;
464 if (do_delayed)
465 fb_helper->delayed_hotplug = false;
Rob Clark5ea1f752014-05-30 12:29:48 -0400466 drm_modeset_unlock_all(dev);
Dave Airliee2809c72014-11-26 13:15:24 +1000467
468 if (do_delayed)
469 drm_fb_helper_hotplug_event(fb_helper);
Rob Clark5ea1f752014-05-30 12:29:48 -0400470 return ret;
471}
472EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode_unlocked);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100473
Geert Uytterhoeven2c4124f2015-08-04 15:22:11 +0200474static bool drm_fb_helper_is_bound(struct drm_fb_helper *fb_helper)
475{
476 struct drm_device *dev = fb_helper->dev;
477 struct drm_crtc *crtc;
478 int bound = 0, crtcs_bound = 0;
479
480 /* Sometimes user space wants everything disabled, so don't steal the
481 * display if there's a master. */
Johannes Bergf17b3ea2016-08-11 11:50:21 +0200482 if (READ_ONCE(dev->master))
Geert Uytterhoeven2c4124f2015-08-04 15:22:11 +0200483 return false;
484
485 drm_for_each_crtc(crtc, dev) {
486 if (crtc->primary->fb)
487 crtcs_bound++;
488 if (crtc->primary->fb == fb_helper->fb)
489 bound++;
490 }
491
492 if (bound < crtcs_bound)
493 return false;
494
495 return true;
496}
497
498#ifdef CONFIG_MAGIC_SYSRQ
Daniel Vetterd21bf462013-01-20 18:09:52 +0100499/*
500 * restore fbcon display for all kms driver's using this helper, used for sysrq
501 * and panic handling.
502 */
Sachin Kamat78b9c352012-08-01 17:15:32 +0530503static bool drm_fb_helper_force_kernel_mode(void)
Dave Airlie785b93e2009-08-28 15:46:53 +1000504{
Dave Airlie785b93e2009-08-28 15:46:53 +1000505 bool ret, error = false;
506 struct drm_fb_helper *helper;
507
508 if (list_empty(&kernel_fb_helper_list))
509 return false;
510
511 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
Thierry Redingb77f0762014-04-29 11:44:32 +0200512 struct drm_device *dev = helper->dev;
513
514 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100515 continue;
516
Daniel Vetterdd908c82015-07-28 13:18:41 +0200517 drm_modeset_lock_all(dev);
Geert Uytterhoeven3d9e35a2015-08-04 15:22:10 +0200518 ret = restore_fbdev_mode(helper);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100519 if (ret)
520 error = true;
Daniel Vettercb597bb2014-07-27 19:09:33 +0200521 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000522 }
523 return error;
524}
525
Dave Airlie785b93e2009-08-28 15:46:53 +1000526static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
527{
Daniel Vetterd21bf462013-01-20 18:09:52 +0100528 bool ret;
529 ret = drm_fb_helper_force_kernel_mode();
530 if (ret == true)
531 DRM_ERROR("Failed to restore crtc configuration\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000532}
533static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
534
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700535static void drm_fb_helper_sysrq(int dummy1)
Dave Airlie785b93e2009-08-28 15:46:53 +1000536{
537 schedule_work(&drm_fb_helper_restore_work);
538}
539
540static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = {
541 .handler = drm_fb_helper_sysrq,
542 .help_msg = "force-fb(V)",
543 .action_msg = "Restore framebuffer console",
544};
Randy Dunlapb8c40d62010-03-25 18:29:05 +0000545#else
546static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
Mikael Petterssonbea1d352009-09-28 18:26:25 +0200547#endif
Dave Airlie785b93e2009-08-28 15:46:53 +1000548
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100549static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
Dave Airlie785b93e2009-08-28 15:46:53 +1000550{
551 struct drm_fb_helper *fb_helper = info->par;
552 struct drm_device *dev = fb_helper->dev;
553 struct drm_crtc *crtc;
Jesse Barnes023eb572010-07-02 10:48:08 -0700554 struct drm_connector *connector;
Jesse Barnes023eb572010-07-02 10:48:08 -0700555 int i, j;
Dave Airlie785b93e2009-08-28 15:46:53 +1000556
557 /*
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100558 * For each CRTC in this fb, turn the connectors on/off.
Dave Airlie785b93e2009-08-28 15:46:53 +1000559 */
Daniel Vetter84849902012-12-02 00:28:11 +0100560 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +0100561 if (!drm_fb_helper_is_bound(fb_helper)) {
562 drm_modeset_unlock_all(dev);
563 return;
564 }
565
Jesse Barnese87b2c42009-09-17 18:14:41 -0700566 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie8be48d92010-03-30 05:34:14 +0000567 crtc = fb_helper->crtc_info[i].mode_set.crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000568
Dave Airlie8be48d92010-03-30 05:34:14 +0000569 if (!crtc->enabled)
570 continue;
Dave Airlie785b93e2009-08-28 15:46:53 +1000571
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100572 /* Walk the connectors & encoders on this fb turning them on/off */
Chris Wilson966a6a12016-11-29 12:02:15 +0000573 drm_fb_helper_for_each_connector(fb_helper, j) {
Jesse Barnes023eb572010-07-02 10:48:08 -0700574 connector = fb_helper->connector_info[j]->connector;
Daniel Vettere04190e2012-09-07 10:14:52 +0200575 connector->funcs->dpms(connector, dpms_mode);
Rob Clark58495562012-10-11 20:50:56 -0500576 drm_object_property_set_value(&connector->base,
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100577 dev->mode_config.dpms_property, dpms_mode);
Jesse Barnes023eb572010-07-02 10:48:08 -0700578 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000579 }
Daniel Vetter84849902012-12-02 00:28:11 +0100580 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000581}
582
Daniel Vetter207fd322013-01-20 22:13:14 +0100583/**
584 * drm_fb_helper_blank - implementation for ->fb_blank
585 * @blank: desired blanking state
586 * @info: fbdev registered by the helper
587 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000588int drm_fb_helper_blank(int blank, struct fb_info *info)
589{
Daniel Vetterc50bfd02015-07-28 13:18:40 +0200590 if (oops_in_progress)
591 return -EBUSY;
592
Dave Airlie785b93e2009-08-28 15:46:53 +1000593 switch (blank) {
James Simmons731b5a12009-10-29 20:39:07 +0000594 /* Display: On; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000595 case FB_BLANK_UNBLANK:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100596 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
Dave Airlie785b93e2009-08-28 15:46:53 +1000597 break;
James Simmons731b5a12009-10-29 20:39:07 +0000598 /* Display: Off; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000599 case FB_BLANK_NORMAL:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100600 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000601 break;
James Simmons731b5a12009-10-29 20:39:07 +0000602 /* Display: Off; HSync: Off, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000603 case FB_BLANK_HSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100604 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000605 break;
James Simmons731b5a12009-10-29 20:39:07 +0000606 /* Display: Off; HSync: On, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000607 case FB_BLANK_VSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100608 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
Dave Airlie785b93e2009-08-28 15:46:53 +1000609 break;
James Simmons731b5a12009-10-29 20:39:07 +0000610 /* Display: Off; HSync: Off, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000611 case FB_BLANK_POWERDOWN:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100612 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
Dave Airlie785b93e2009-08-28 15:46:53 +1000613 break;
614 }
615 return 0;
616}
617EXPORT_SYMBOL(drm_fb_helper_blank);
618
Ville Syrjäläa2889602016-10-26 17:41:18 +0300619static void drm_fb_helper_modeset_release(struct drm_fb_helper *helper,
620 struct drm_mode_set *modeset)
621{
622 int i;
623
624 for (i = 0; i < modeset->num_connectors; i++) {
625 drm_connector_unreference(modeset->connectors[i]);
626 modeset->connectors[i] = NULL;
627 }
628 modeset->num_connectors = 0;
629
630 drm_mode_destroy(helper->dev, modeset->mode);
631 modeset->mode = NULL;
632
633 /* FIXME should hold a ref? */
634 modeset->fb = NULL;
635}
636
Dave Airlie785b93e2009-08-28 15:46:53 +1000637static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper)
638{
639 int i;
640
Dave Airlie6e86d582016-04-27 11:24:51 +1000641 for (i = 0; i < helper->connector_count; i++) {
642 drm_connector_unreference(helper->connector_info[i]->connector);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000643 kfree(helper->connector_info[i]);
Dave Airlie6e86d582016-04-27 11:24:51 +1000644 }
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000645 kfree(helper->connector_info);
Ville Syrjäläa2889602016-10-26 17:41:18 +0300646
Sascha Hauera1b77362012-02-01 11:38:22 +0100647 for (i = 0; i < helper->crtc_count; i++) {
Ville Syrjäläa2889602016-10-26 17:41:18 +0300648 struct drm_mode_set *modeset = &helper->crtc_info[i].mode_set;
649
650 drm_fb_helper_modeset_release(helper, modeset);
651 kfree(modeset->connectors);
Sascha Hauera1b77362012-02-01 11:38:22 +0100652 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000653 kfree(helper->crtc_info);
654}
655
Noralf Trønnescfe63422016-08-23 13:54:06 +0200656static void drm_fb_helper_resume_worker(struct work_struct *work)
657{
658 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper,
659 resume_work);
660
661 console_lock();
662 fb_set_suspend(helper->fbdev, 0);
663 console_unlock();
664}
665
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200666static void drm_fb_helper_dirty_work(struct work_struct *work)
667{
668 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper,
669 dirty_work);
670 struct drm_clip_rect *clip = &helper->dirty_clip;
671 struct drm_clip_rect clip_copy;
672 unsigned long flags;
673
674 spin_lock_irqsave(&helper->dirty_lock, flags);
675 clip_copy = *clip;
676 clip->x1 = clip->y1 = ~0;
677 clip->x2 = clip->y2 = 0;
678 spin_unlock_irqrestore(&helper->dirty_lock, flags);
679
Takashi Iwai87d3b652016-10-20 17:05:30 +0200680 /* call dirty callback only when it has been really touched */
681 if (clip_copy.x1 < clip_copy.x2 && clip_copy.y1 < clip_copy.y2)
682 helper->fb->funcs->dirty(helper->fb, NULL, 0, 0, &clip_copy, 1);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200683}
684
Daniel Vetter207fd322013-01-20 22:13:14 +0100685/**
Thierry Reding10a23102014-06-27 17:19:24 +0200686 * drm_fb_helper_prepare - setup a drm_fb_helper structure
687 * @dev: DRM device
688 * @helper: driver-allocated fbdev helper structure to set up
689 * @funcs: pointer to structure of functions associate with this helper
690 *
691 * Sets up the bare minimum to make the framebuffer helper usable. This is
692 * useful to implement race-free initialization of the polling helpers.
693 */
694void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
695 const struct drm_fb_helper_funcs *funcs)
696{
697 INIT_LIST_HEAD(&helper->kernel_fb_list);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200698 spin_lock_init(&helper->dirty_lock);
Noralf Trønnescfe63422016-08-23 13:54:06 +0200699 INIT_WORK(&helper->resume_work, drm_fb_helper_resume_worker);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200700 INIT_WORK(&helper->dirty_work, drm_fb_helper_dirty_work);
701 helper->dirty_clip.x1 = helper->dirty_clip.y1 = ~0;
Thierry Reding10a23102014-06-27 17:19:24 +0200702 helper->funcs = funcs;
703 helper->dev = dev;
704}
705EXPORT_SYMBOL(drm_fb_helper_prepare);
706
707/**
Daniel Vetter207fd322013-01-20 22:13:14 +0100708 * drm_fb_helper_init - initialize a drm_fb_helper structure
709 * @dev: drm device
710 * @fb_helper: driver-allocated fbdev helper structure to initialize
711 * @crtc_count: maximum number of crtcs to support in this fbdev emulation
712 * @max_conn_count: max connector count
713 *
714 * This allocates the structures for the fbdev helper with the given limits.
715 * Note that this won't yet touch the hardware (through the driver interfaces)
716 * nor register the fbdev. This is only done in drm_fb_helper_initial_config()
717 * to allow driver writes more control over the exact init sequence.
718 *
Thierry Reding10a23102014-06-27 17:19:24 +0200719 * Drivers must call drm_fb_helper_prepare() before calling this function.
Daniel Vetter207fd322013-01-20 22:13:14 +0100720 *
721 * RETURNS:
722 * Zero if everything went ok, nonzero otherwise.
723 */
Dave Airlie4abe3522010-03-30 05:34:18 +0000724int drm_fb_helper_init(struct drm_device *dev,
725 struct drm_fb_helper *fb_helper,
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000726 int crtc_count, int max_conn_count)
Dave Airlie785b93e2009-08-28 15:46:53 +1000727{
Dave Airlie785b93e2009-08-28 15:46:53 +1000728 struct drm_crtc *crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000729 int i;
730
Daniel Vetterf64c5572015-08-25 15:45:13 +0200731 if (!drm_fbdev_emulation)
732 return 0;
733
Xiubo Li04cfe972014-03-10 09:33:58 +0800734 if (!max_conn_count)
735 return -EINVAL;
736
Dave Airlie4abe3522010-03-30 05:34:18 +0000737 fb_helper->crtc_info = kcalloc(crtc_count, sizeof(struct drm_fb_helper_crtc), GFP_KERNEL);
738 if (!fb_helper->crtc_info)
Dave Airlie785b93e2009-08-28 15:46:53 +1000739 return -ENOMEM;
740
Dave Airlie4abe3522010-03-30 05:34:18 +0000741 fb_helper->crtc_count = crtc_count;
742 fb_helper->connector_info = kcalloc(dev->mode_config.num_connector, sizeof(struct drm_fb_helper_connector *), GFP_KERNEL);
743 if (!fb_helper->connector_info) {
744 kfree(fb_helper->crtc_info);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000745 return -ENOMEM;
746 }
Dave Airlie65c2a892014-06-05 14:01:30 +1000747 fb_helper->connector_info_alloc_count = dev->mode_config.num_connector;
Dave Airlie4abe3522010-03-30 05:34:18 +0000748 fb_helper->connector_count = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000749
750 for (i = 0; i < crtc_count; i++) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000751 fb_helper->crtc_info[i].mode_set.connectors =
Dave Airlie785b93e2009-08-28 15:46:53 +1000752 kcalloc(max_conn_count,
753 sizeof(struct drm_connector *),
754 GFP_KERNEL);
755
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200756 if (!fb_helper->crtc_info[i].mode_set.connectors)
Dave Airlie785b93e2009-08-28 15:46:53 +1000757 goto out_free;
Dave Airlie4abe3522010-03-30 05:34:18 +0000758 fb_helper->crtc_info[i].mode_set.num_connectors = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000759 }
760
761 i = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200762 drm_for_each_crtc(crtc, dev) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000763 fb_helper->crtc_info[i].mode_set.crtc = crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000764 i++;
765 }
Sascha Hauere9ad3182012-02-01 11:38:25 +0100766
Dave Airlie785b93e2009-08-28 15:46:53 +1000767 return 0;
768out_free:
Dave Airlie4abe3522010-03-30 05:34:18 +0000769 drm_fb_helper_crtc_free(fb_helper);
Dave Airlie785b93e2009-08-28 15:46:53 +1000770 return -ENOMEM;
771}
Dave Airlie4abe3522010-03-30 05:34:18 +0000772EXPORT_SYMBOL(drm_fb_helper_init);
773
Archit Tanejab8017d62015-07-22 14:57:56 +0530774/**
775 * drm_fb_helper_alloc_fbi - allocate fb_info and some of its members
776 * @fb_helper: driver-allocated fbdev helper
777 *
778 * A helper to alloc fb_info and the members cmap and apertures. Called
779 * by the driver within the fb_probe fb_helper callback function.
780 *
781 * RETURNS:
782 * fb_info pointer if things went okay, pointer containing error code
783 * otherwise
784 */
785struct fb_info *drm_fb_helper_alloc_fbi(struct drm_fb_helper *fb_helper)
786{
787 struct device *dev = fb_helper->dev->dev;
788 struct fb_info *info;
789 int ret;
790
791 info = framebuffer_alloc(0, dev);
792 if (!info)
793 return ERR_PTR(-ENOMEM);
794
795 ret = fb_alloc_cmap(&info->cmap, 256, 0);
796 if (ret)
797 goto err_release;
798
799 info->apertures = alloc_apertures(1);
800 if (!info->apertures) {
801 ret = -ENOMEM;
802 goto err_free_cmap;
803 }
804
805 fb_helper->fbdev = info;
806
807 return info;
808
809err_free_cmap:
810 fb_dealloc_cmap(&info->cmap);
811err_release:
812 framebuffer_release(info);
813 return ERR_PTR(ret);
814}
815EXPORT_SYMBOL(drm_fb_helper_alloc_fbi);
816
817/**
818 * drm_fb_helper_unregister_fbi - unregister fb_info framebuffer device
819 * @fb_helper: driver-allocated fbdev helper
820 *
821 * A wrapper around unregister_framebuffer, to release the fb_info
822 * framebuffer device
823 */
824void drm_fb_helper_unregister_fbi(struct drm_fb_helper *fb_helper)
825{
826 if (fb_helper && fb_helper->fbdev)
827 unregister_framebuffer(fb_helper->fbdev);
828}
829EXPORT_SYMBOL(drm_fb_helper_unregister_fbi);
830
831/**
832 * drm_fb_helper_release_fbi - dealloc fb_info and its members
833 * @fb_helper: driver-allocated fbdev helper
834 *
835 * A helper to free memory taken by fb_info and the members cmap and
836 * apertures
837 */
838void drm_fb_helper_release_fbi(struct drm_fb_helper *fb_helper)
839{
840 if (fb_helper) {
841 struct fb_info *info = fb_helper->fbdev;
842
843 if (info) {
844 if (info->cmap.len)
845 fb_dealloc_cmap(&info->cmap);
846 framebuffer_release(info);
847 }
848
849 fb_helper->fbdev = NULL;
850 }
851}
852EXPORT_SYMBOL(drm_fb_helper_release_fbi);
853
Dave Airlie4abe3522010-03-30 05:34:18 +0000854void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
855{
Daniel Vetterf64c5572015-08-25 15:45:13 +0200856 if (!drm_fbdev_emulation)
857 return;
858
Chris Wilsona53ca632016-11-29 12:02:17 +0000859 mutex_lock(&kernel_fb_helper_lock);
Dave Airlie4abe3522010-03-30 05:34:18 +0000860 if (!list_empty(&fb_helper->kernel_fb_list)) {
861 list_del(&fb_helper->kernel_fb_list);
862 if (list_empty(&kernel_fb_helper_list)) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000863 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
864 }
865 }
Chris Wilsona53ca632016-11-29 12:02:17 +0000866 mutex_unlock(&kernel_fb_helper_lock);
Dave Airlie4abe3522010-03-30 05:34:18 +0000867
868 drm_fb_helper_crtc_free(fb_helper);
869
Dave Airlie4abe3522010-03-30 05:34:18 +0000870}
871EXPORT_SYMBOL(drm_fb_helper_fini);
Dave Airlie785b93e2009-08-28 15:46:53 +1000872
Archit Taneja47074ab2015-07-22 14:57:57 +0530873/**
874 * drm_fb_helper_unlink_fbi - wrapper around unlink_framebuffer
875 * @fb_helper: driver-allocated fbdev helper
876 *
877 * A wrapper around unlink_framebuffer implemented by fbdev core
878 */
879void drm_fb_helper_unlink_fbi(struct drm_fb_helper *fb_helper)
880{
881 if (fb_helper && fb_helper->fbdev)
882 unlink_framebuffer(fb_helper->fbdev);
883}
884EXPORT_SYMBOL(drm_fb_helper_unlink_fbi);
885
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200886static void drm_fb_helper_dirty(struct fb_info *info, u32 x, u32 y,
887 u32 width, u32 height)
888{
889 struct drm_fb_helper *helper = info->par;
890 struct drm_clip_rect *clip = &helper->dirty_clip;
891 unsigned long flags;
892
893 if (!helper->fb->funcs->dirty)
894 return;
895
896 spin_lock_irqsave(&helper->dirty_lock, flags);
897 clip->x1 = min_t(u32, clip->x1, x);
898 clip->y1 = min_t(u32, clip->y1, y);
899 clip->x2 = max_t(u32, clip->x2, x + width);
900 clip->y2 = max_t(u32, clip->y2, y + height);
901 spin_unlock_irqrestore(&helper->dirty_lock, flags);
902
903 schedule_work(&helper->dirty_work);
904}
905
906/**
907 * drm_fb_helper_deferred_io() - fbdev deferred_io callback function
908 * @info: fb_info struct pointer
909 * @pagelist: list of dirty mmap framebuffer pages
910 *
911 * This function is used as the &fb_deferred_io ->deferred_io
912 * callback function for flushing the fbdev mmap writes.
913 */
914void drm_fb_helper_deferred_io(struct fb_info *info,
915 struct list_head *pagelist)
916{
917 unsigned long start, end, min, max;
918 struct page *page;
919 u32 y1, y2;
920
921 min = ULONG_MAX;
922 max = 0;
923 list_for_each_entry(page, pagelist, lru) {
924 start = page->index << PAGE_SHIFT;
925 end = start + PAGE_SIZE - 1;
926 min = min(min, start);
927 max = max(max, end);
928 }
929
930 if (min < max) {
931 y1 = min / info->fix.line_length;
932 y2 = min_t(u32, DIV_ROUND_UP(max, info->fix.line_length),
933 info->var.yres);
934 drm_fb_helper_dirty(info, 0, y1, info->var.xres, y2 - y1);
935 }
936}
937EXPORT_SYMBOL(drm_fb_helper_deferred_io);
938
Archit Tanejacbb1a822015-07-31 16:21:41 +0530939/**
940 * drm_fb_helper_sys_read - wrapper around fb_sys_read
941 * @info: fb_info struct pointer
942 * @buf: userspace buffer to read from framebuffer memory
943 * @count: number of bytes to read from framebuffer memory
944 * @ppos: read offset within framebuffer memory
945 *
946 * A wrapper around fb_sys_read implemented by fbdev core
947 */
948ssize_t drm_fb_helper_sys_read(struct fb_info *info, char __user *buf,
949 size_t count, loff_t *ppos)
950{
951 return fb_sys_read(info, buf, count, ppos);
952}
953EXPORT_SYMBOL(drm_fb_helper_sys_read);
954
955/**
956 * drm_fb_helper_sys_write - wrapper around fb_sys_write
957 * @info: fb_info struct pointer
958 * @buf: userspace buffer to write to framebuffer memory
959 * @count: number of bytes to write to framebuffer memory
960 * @ppos: write offset within framebuffer memory
961 *
962 * A wrapper around fb_sys_write implemented by fbdev core
963 */
964ssize_t drm_fb_helper_sys_write(struct fb_info *info, const char __user *buf,
965 size_t count, loff_t *ppos)
966{
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200967 ssize_t ret;
968
969 ret = fb_sys_write(info, buf, count, ppos);
970 if (ret > 0)
971 drm_fb_helper_dirty(info, 0, 0, info->var.xres,
972 info->var.yres);
973
974 return ret;
Archit Tanejacbb1a822015-07-31 16:21:41 +0530975}
976EXPORT_SYMBOL(drm_fb_helper_sys_write);
977
Archit Taneja742547b2015-07-31 16:21:42 +0530978/**
979 * drm_fb_helper_sys_fillrect - wrapper around sys_fillrect
980 * @info: fbdev registered by the helper
981 * @rect: info about rectangle to fill
982 *
983 * A wrapper around sys_fillrect implemented by fbdev core
984 */
985void drm_fb_helper_sys_fillrect(struct fb_info *info,
986 const struct fb_fillrect *rect)
987{
988 sys_fillrect(info, rect);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200989 drm_fb_helper_dirty(info, rect->dx, rect->dy,
990 rect->width, rect->height);
Archit Taneja742547b2015-07-31 16:21:42 +0530991}
992EXPORT_SYMBOL(drm_fb_helper_sys_fillrect);
993
994/**
995 * drm_fb_helper_sys_copyarea - wrapper around sys_copyarea
996 * @info: fbdev registered by the helper
997 * @area: info about area to copy
998 *
999 * A wrapper around sys_copyarea implemented by fbdev core
1000 */
1001void drm_fb_helper_sys_copyarea(struct fb_info *info,
1002 const struct fb_copyarea *area)
1003{
1004 sys_copyarea(info, area);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001005 drm_fb_helper_dirty(info, area->dx, area->dy,
1006 area->width, area->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301007}
1008EXPORT_SYMBOL(drm_fb_helper_sys_copyarea);
1009
1010/**
1011 * drm_fb_helper_sys_imageblit - wrapper around sys_imageblit
1012 * @info: fbdev registered by the helper
1013 * @image: info about image to blit
1014 *
1015 * A wrapper around sys_imageblit implemented by fbdev core
1016 */
1017void drm_fb_helper_sys_imageblit(struct fb_info *info,
1018 const struct fb_image *image)
1019{
1020 sys_imageblit(info, image);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001021 drm_fb_helper_dirty(info, image->dx, image->dy,
1022 image->width, image->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301023}
1024EXPORT_SYMBOL(drm_fb_helper_sys_imageblit);
1025
1026/**
1027 * drm_fb_helper_cfb_fillrect - wrapper around cfb_fillrect
1028 * @info: fbdev registered by the helper
1029 * @rect: info about rectangle to fill
1030 *
1031 * A wrapper around cfb_imageblit implemented by fbdev core
1032 */
1033void drm_fb_helper_cfb_fillrect(struct fb_info *info,
1034 const struct fb_fillrect *rect)
1035{
1036 cfb_fillrect(info, rect);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001037 drm_fb_helper_dirty(info, rect->dx, rect->dy,
1038 rect->width, rect->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301039}
1040EXPORT_SYMBOL(drm_fb_helper_cfb_fillrect);
1041
1042/**
1043 * drm_fb_helper_cfb_copyarea - wrapper around cfb_copyarea
1044 * @info: fbdev registered by the helper
1045 * @area: info about area to copy
1046 *
1047 * A wrapper around cfb_copyarea implemented by fbdev core
1048 */
1049void drm_fb_helper_cfb_copyarea(struct fb_info *info,
1050 const struct fb_copyarea *area)
1051{
1052 cfb_copyarea(info, area);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001053 drm_fb_helper_dirty(info, area->dx, area->dy,
1054 area->width, area->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301055}
1056EXPORT_SYMBOL(drm_fb_helper_cfb_copyarea);
1057
1058/**
1059 * drm_fb_helper_cfb_imageblit - wrapper around cfb_imageblit
1060 * @info: fbdev registered by the helper
1061 * @image: info about image to blit
1062 *
1063 * A wrapper around cfb_imageblit implemented by fbdev core
1064 */
1065void drm_fb_helper_cfb_imageblit(struct fb_info *info,
1066 const struct fb_image *image)
1067{
1068 cfb_imageblit(info, image);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001069 drm_fb_helper_dirty(info, image->dx, image->dy,
1070 image->width, image->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301071}
1072EXPORT_SYMBOL(drm_fb_helper_cfb_imageblit);
1073
Archit Tanejafdefa582015-07-31 16:21:43 +05301074/**
1075 * drm_fb_helper_set_suspend - wrapper around fb_set_suspend
1076 * @fb_helper: driver-allocated fbdev helper
Daniel Vetter28579f32016-08-23 17:27:27 +02001077 * @suspend: whether to suspend or resume
Archit Tanejafdefa582015-07-31 16:21:43 +05301078 *
Noralf Trønnescfe63422016-08-23 13:54:06 +02001079 * A wrapper around fb_set_suspend implemented by fbdev core.
1080 * Use drm_fb_helper_set_suspend_unlocked() if you don't need to take
1081 * the lock yourself
Archit Tanejafdefa582015-07-31 16:21:43 +05301082 */
Daniel Vetter28579f32016-08-23 17:27:27 +02001083void drm_fb_helper_set_suspend(struct drm_fb_helper *fb_helper, bool suspend)
Archit Tanejafdefa582015-07-31 16:21:43 +05301084{
1085 if (fb_helper && fb_helper->fbdev)
Daniel Vetter28579f32016-08-23 17:27:27 +02001086 fb_set_suspend(fb_helper->fbdev, suspend);
Archit Tanejafdefa582015-07-31 16:21:43 +05301087}
1088EXPORT_SYMBOL(drm_fb_helper_set_suspend);
1089
Noralf Trønnescfe63422016-08-23 13:54:06 +02001090/**
1091 * drm_fb_helper_set_suspend_unlocked - wrapper around fb_set_suspend that also
1092 * takes the console lock
1093 * @fb_helper: driver-allocated fbdev helper
Daniel Vetter28579f32016-08-23 17:27:27 +02001094 * @suspend: whether to suspend or resume
Noralf Trønnescfe63422016-08-23 13:54:06 +02001095 *
1096 * A wrapper around fb_set_suspend() that takes the console lock. If the lock
1097 * isn't available on resume, a worker is tasked with waiting for the lock
1098 * to become available. The console lock can be pretty contented on resume
1099 * due to all the printk activity.
1100 *
1101 * This function can be called multiple times with the same state since
1102 * &fb_info->state is checked to see if fbdev is running or not before locking.
1103 *
1104 * Use drm_fb_helper_set_suspend() if you need to take the lock yourself.
1105 */
1106void drm_fb_helper_set_suspend_unlocked(struct drm_fb_helper *fb_helper,
Daniel Vetter28579f32016-08-23 17:27:27 +02001107 bool suspend)
Noralf Trønnescfe63422016-08-23 13:54:06 +02001108{
1109 if (!fb_helper || !fb_helper->fbdev)
1110 return;
1111
1112 /* make sure there's no pending/ongoing resume */
1113 flush_work(&fb_helper->resume_work);
1114
1115 if (suspend) {
1116 if (fb_helper->fbdev->state != FBINFO_STATE_RUNNING)
1117 return;
1118
1119 console_lock();
1120
1121 } else {
1122 if (fb_helper->fbdev->state == FBINFO_STATE_RUNNING)
1123 return;
1124
1125 if (!console_trylock()) {
1126 schedule_work(&fb_helper->resume_work);
1127 return;
1128 }
1129 }
1130
1131 fb_set_suspend(fb_helper->fbdev, suspend);
1132 console_unlock();
1133}
1134EXPORT_SYMBOL(drm_fb_helper_set_suspend_unlocked);
1135
Dave Airliec850cb72009-10-23 18:49:03 +10001136static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green,
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001137 u16 blue, u16 regno, struct fb_info *info)
1138{
1139 struct drm_fb_helper *fb_helper = info->par;
1140 struct drm_framebuffer *fb = fb_helper->fb;
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001141
Dave Airliec850cb72009-10-23 18:49:03 +10001142 if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
1143 u32 *palette;
1144 u32 value;
1145 /* place color in psuedopalette */
1146 if (regno > 16)
1147 return -EINVAL;
1148 palette = (u32 *)info->pseudo_palette;
1149 red >>= (16 - info->var.red.length);
1150 green >>= (16 - info->var.green.length);
1151 blue >>= (16 - info->var.blue.length);
1152 value = (red << info->var.red.offset) |
1153 (green << info->var.green.offset) |
1154 (blue << info->var.blue.offset);
Rob Clark9da12b6a2011-02-16 02:45:51 +00001155 if (info->var.transp.length > 0) {
1156 u32 mask = (1 << info->var.transp.length) - 1;
1157 mask <<= info->var.transp.offset;
1158 value |= mask;
1159 }
Dave Airliec850cb72009-10-23 18:49:03 +10001160 palette[regno] = value;
1161 return 0;
1162 }
1163
Ville Syrjälä04c0c562013-05-27 20:19:57 +03001164 /*
1165 * The driver really shouldn't advertise pseudo/directcolor
1166 * visuals if it can't deal with the palette.
1167 */
1168 if (WARN_ON(!fb_helper->funcs->gamma_set ||
1169 !fb_helper->funcs->gamma_get))
1170 return -EINVAL;
1171
Daniel Vetterfef14802016-03-30 11:51:17 +02001172 WARN_ON(fb->bits_per_pixel != 8);
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001173
Daniel Vetterfef14802016-03-30 11:51:17 +02001174 fb_helper->funcs->gamma_set(crtc, red, green, blue, regno);
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001175
Dave Airliec850cb72009-10-23 18:49:03 +10001176 return 0;
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001177}
1178
Daniel Vetter207fd322013-01-20 22:13:14 +01001179/**
1180 * drm_fb_helper_setcmap - implementation for ->fb_setcmap
1181 * @cmap: cmap to set
1182 * @info: fbdev registered by the helper
1183 */
Dave Airlie068143d2009-10-05 09:58:02 +10001184int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
1185{
1186 struct drm_fb_helper *fb_helper = info->par;
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001187 struct drm_device *dev = fb_helper->dev;
Jani Nikulabe26a662015-03-11 11:51:06 +02001188 const struct drm_crtc_helper_funcs *crtc_funcs;
Dave Airlie068143d2009-10-05 09:58:02 +10001189 u16 *red, *green, *blue, *transp;
1190 struct drm_crtc *crtc;
roel062ac622011-03-07 18:00:34 +01001191 int i, j, rc = 0;
Dave Airlie068143d2009-10-05 09:58:02 +10001192 int start;
1193
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001194 if (oops_in_progress)
Rui Wang9aa609e2014-12-15 11:28:26 -08001195 return -EBUSY;
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001196
1197 drm_modeset_lock_all(dev);
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001198 if (!drm_fb_helper_is_bound(fb_helper)) {
1199 drm_modeset_unlock_all(dev);
1200 return -EBUSY;
1201 }
1202
Dave Airlie8be48d92010-03-30 05:34:14 +00001203 for (i = 0; i < fb_helper->crtc_count; i++) {
1204 crtc = fb_helper->crtc_info[i].mode_set.crtc;
1205 crtc_funcs = crtc->helper_private;
Dave Airlie068143d2009-10-05 09:58:02 +10001206
1207 red = cmap->red;
1208 green = cmap->green;
1209 blue = cmap->blue;
1210 transp = cmap->transp;
1211 start = cmap->start;
1212
roel062ac622011-03-07 18:00:34 +01001213 for (j = 0; j < cmap->len; j++) {
Dave Airlie068143d2009-10-05 09:58:02 +10001214 u16 hred, hgreen, hblue, htransp = 0xffff;
1215
1216 hred = *red++;
1217 hgreen = *green++;
1218 hblue = *blue++;
1219
1220 if (transp)
1221 htransp = *transp++;
1222
Dave Airliec850cb72009-10-23 18:49:03 +10001223 rc = setcolreg(crtc, hred, hgreen, hblue, start++, info);
1224 if (rc)
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001225 goto out;
Dave Airlie068143d2009-10-05 09:58:02 +10001226 }
Ville Syrjälä04c0c562013-05-27 20:19:57 +03001227 if (crtc_funcs->load_lut)
1228 crtc_funcs->load_lut(crtc);
Dave Airlie068143d2009-10-05 09:58:02 +10001229 }
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001230 out:
1231 drm_modeset_unlock_all(dev);
Dave Airlie068143d2009-10-05 09:58:02 +10001232 return rc;
1233}
1234EXPORT_SYMBOL(drm_fb_helper_setcmap);
1235
Daniel Vetter207fd322013-01-20 22:13:14 +01001236/**
1237 * drm_fb_helper_check_var - implementation for ->fb_check_var
1238 * @var: screeninfo to check
1239 * @info: fbdev registered by the helper
1240 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001241int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
1242 struct fb_info *info)
1243{
1244 struct drm_fb_helper *fb_helper = info->par;
1245 struct drm_framebuffer *fb = fb_helper->fb;
1246 int depth;
1247
Jason Wesself90ebd92010-08-05 09:22:32 -05001248 if (var->pixclock != 0 || in_dbg_master())
Dave Airlie785b93e2009-08-28 15:46:53 +10001249 return -EINVAL;
1250
Stefan Agner865afb12016-10-11 16:15:04 -07001251 /*
1252 * Changes struct fb_var_screeninfo are currently not pushed back
1253 * to KMS, hence fail if different settings are requested.
1254 */
1255 if (var->bits_per_pixel != fb->bits_per_pixel ||
1256 var->xres != fb->width || var->yres != fb->height ||
1257 var->xres_virtual != fb->width || var->yres_virtual != fb->height) {
1258 DRM_DEBUG("fb userspace requested width/height/bpp different than current fb "
Chris Wilson62fb3762012-03-26 21:15:53 +01001259 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
1260 var->xres, var->yres, var->bits_per_pixel,
1261 var->xres_virtual, var->yres_virtual,
Dave Airlie509c7d82010-01-08 09:27:08 +10001262 fb->width, fb->height, fb->bits_per_pixel);
Dave Airlie785b93e2009-08-28 15:46:53 +10001263 return -EINVAL;
1264 }
1265
1266 switch (var->bits_per_pixel) {
1267 case 16:
1268 depth = (var->green.length == 6) ? 16 : 15;
1269 break;
1270 case 32:
1271 depth = (var->transp.length > 0) ? 32 : 24;
1272 break;
1273 default:
1274 depth = var->bits_per_pixel;
1275 break;
1276 }
1277
1278 switch (depth) {
1279 case 8:
1280 var->red.offset = 0;
1281 var->green.offset = 0;
1282 var->blue.offset = 0;
1283 var->red.length = 8;
1284 var->green.length = 8;
1285 var->blue.length = 8;
1286 var->transp.length = 0;
1287 var->transp.offset = 0;
1288 break;
1289 case 15:
1290 var->red.offset = 10;
1291 var->green.offset = 5;
1292 var->blue.offset = 0;
1293 var->red.length = 5;
1294 var->green.length = 5;
1295 var->blue.length = 5;
1296 var->transp.length = 1;
1297 var->transp.offset = 15;
1298 break;
1299 case 16:
1300 var->red.offset = 11;
1301 var->green.offset = 5;
1302 var->blue.offset = 0;
1303 var->red.length = 5;
1304 var->green.length = 6;
1305 var->blue.length = 5;
1306 var->transp.length = 0;
1307 var->transp.offset = 0;
1308 break;
1309 case 24:
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 = 0;
1317 var->transp.offset = 0;
1318 break;
1319 case 32:
1320 var->red.offset = 16;
1321 var->green.offset = 8;
1322 var->blue.offset = 0;
1323 var->red.length = 8;
1324 var->green.length = 8;
1325 var->blue.length = 8;
1326 var->transp.length = 8;
1327 var->transp.offset = 24;
1328 break;
1329 default:
1330 return -EINVAL;
1331 }
1332 return 0;
1333}
1334EXPORT_SYMBOL(drm_fb_helper_check_var);
1335
Daniel Vetter207fd322013-01-20 22:13:14 +01001336/**
1337 * drm_fb_helper_set_par - implementation for ->fb_set_par
1338 * @info: fbdev registered by the helper
1339 *
1340 * This will let fbcon do the mode init and is called at initialization time by
1341 * the fbdev core when registering the driver, and later on through the hotplug
1342 * callback.
1343 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001344int drm_fb_helper_set_par(struct fb_info *info)
1345{
1346 struct drm_fb_helper *fb_helper = info->par;
Dave Airlie785b93e2009-08-28 15:46:53 +10001347 struct fb_var_screeninfo *var = &info->var;
Dave Airlie785b93e2009-08-28 15:46:53 +10001348
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001349 if (oops_in_progress)
1350 return -EBUSY;
1351
Clemens Ladisch5349ef32009-11-04 09:42:52 +01001352 if (var->pixclock != 0) {
Pavel Roskin172e91f2010-02-11 14:31:32 +10001353 DRM_ERROR("PIXEL CLOCK SET\n");
Dave Airlie785b93e2009-08-28 15:46:53 +10001354 return -EINVAL;
1355 }
1356
Rob Clark5ea1f752014-05-30 12:29:48 -04001357 drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
Dave Airlie4abe3522010-03-30 05:34:18 +00001358
Dave Airlie785b93e2009-08-28 15:46:53 +10001359 return 0;
1360}
1361EXPORT_SYMBOL(drm_fb_helper_set_par);
1362
Rob Clark1edf0262015-08-25 15:35:59 -04001363static int pan_display_atomic(struct fb_var_screeninfo *var,
Daniel Vettera0fb6ad2015-10-16 19:11:30 +02001364 struct fb_info *info)
Rob Clark1edf0262015-08-25 15:35:59 -04001365{
1366 struct drm_fb_helper *fb_helper = info->par;
1367 struct drm_device *dev = fb_helper->dev;
1368 struct drm_atomic_state *state;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001369 struct drm_plane *plane;
Rob Clark1edf0262015-08-25 15:35:59 -04001370 int i, ret;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001371 unsigned plane_mask;
Rob Clark1edf0262015-08-25 15:35:59 -04001372
1373 state = drm_atomic_state_alloc(dev);
1374 if (!state)
1375 return -ENOMEM;
1376
1377 state->acquire_ctx = dev->mode_config.acquire_ctx;
1378retry:
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001379 plane_mask = 0;
Rob Clark1edf0262015-08-25 15:35:59 -04001380 for(i = 0; i < fb_helper->crtc_count; i++) {
1381 struct drm_mode_set *mode_set;
1382
1383 mode_set = &fb_helper->crtc_info[i].mode_set;
1384
1385 mode_set->x = var->xoffset;
1386 mode_set->y = var->yoffset;
1387
1388 ret = __drm_atomic_helper_set_config(mode_set, state);
1389 if (ret != 0)
1390 goto fail;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001391
1392 plane = mode_set->crtc->primary;
Matt Roper7118fd92015-12-18 17:27:01 -08001393 plane_mask |= (1 << drm_plane_index(plane));
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001394 plane->old_fb = plane->fb;
Rob Clark1edf0262015-08-25 15:35:59 -04001395 }
1396
1397 ret = drm_atomic_commit(state);
1398 if (ret != 0)
1399 goto fail;
1400
1401 info->var.xoffset = var->xoffset;
1402 info->var.yoffset = var->yoffset;
1403
Rob Clark1edf0262015-08-25 15:35:59 -04001404fail:
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001405 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Daniel Vettera0fb6ad2015-10-16 19:11:30 +02001406
Rob Clark1edf0262015-08-25 15:35:59 -04001407 if (ret == -EDEADLK)
1408 goto backoff;
1409
Chris Wilson08536952016-10-14 13:18:18 +01001410 drm_atomic_state_put(state);
Rob Clark1edf0262015-08-25 15:35:59 -04001411 return ret;
1412
1413backoff:
1414 drm_atomic_state_clear(state);
1415 drm_atomic_legacy_backoff(state);
1416
1417 goto retry;
1418}
1419
Daniel Vetter207fd322013-01-20 22:13:14 +01001420/**
1421 * drm_fb_helper_pan_display - implementation for ->fb_pan_display
1422 * @var: updated screen information
1423 * @info: fbdev registered by the helper
1424 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001425int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
1426 struct fb_info *info)
1427{
1428 struct drm_fb_helper *fb_helper = info->par;
1429 struct drm_device *dev = fb_helper->dev;
1430 struct drm_mode_set *modeset;
Dave Airlie785b93e2009-08-28 15:46:53 +10001431 int ret = 0;
1432 int i;
1433
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001434 if (oops_in_progress)
Rui Wang9aa609e2014-12-15 11:28:26 -08001435 return -EBUSY;
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001436
1437 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +01001438 if (!drm_fb_helper_is_bound(fb_helper)) {
1439 drm_modeset_unlock_all(dev);
1440 return -EBUSY;
1441 }
1442
Daniel Vetterd3a46182016-06-08 14:19:15 +02001443 if (dev->mode_config.funcs->atomic_commit) {
Rob Clark1edf0262015-08-25 15:35:59 -04001444 ret = pan_display_atomic(var, info);
1445 goto unlock;
1446 }
1447
Dave Airlie8be48d92010-03-30 05:34:14 +00001448 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001449 modeset = &fb_helper->crtc_info[i].mode_set;
1450
1451 modeset->x = var->xoffset;
1452 modeset->y = var->yoffset;
1453
1454 if (modeset->num_connectors) {
Daniel Vetter2d13b672012-12-11 13:47:23 +01001455 ret = drm_mode_set_config_internal(modeset);
Dave Airlie785b93e2009-08-28 15:46:53 +10001456 if (!ret) {
1457 info->var.xoffset = var->xoffset;
1458 info->var.yoffset = var->yoffset;
1459 }
1460 }
1461 }
Rob Clark1edf0262015-08-25 15:35:59 -04001462unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001463 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +10001464 return ret;
1465}
1466EXPORT_SYMBOL(drm_fb_helper_pan_display);
1467
Daniel Vetter8acf6582013-01-21 23:38:37 +01001468/*
Daniel Vetter207fd322013-01-20 22:13:14 +01001469 * Allocates the backing storage and sets up the fbdev info structure through
1470 * the ->fb_probe callback and then registers the fbdev and sets up the panic
1471 * notifier.
Daniel Vetter8acf6582013-01-21 23:38:37 +01001472 */
Daniel Vetterde1ace52013-01-20 21:50:49 +01001473static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
1474 int preferred_bpp)
Dave Airlie785b93e2009-08-28 15:46:53 +10001475{
Daniel Vetter8acf6582013-01-21 23:38:37 +01001476 int ret = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +10001477 int crtc_count = 0;
Dave Airlie4abe3522010-03-30 05:34:18 +00001478 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001479 struct drm_fb_helper_surface_size sizes;
Dave Airlie8be48d92010-03-30 05:34:14 +00001480 int gamma_size = 0;
Dave Airlie38651672010-03-30 05:34:13 +00001481
1482 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
1483 sizes.surface_depth = 24;
1484 sizes.surface_bpp = 32;
1485 sizes.fb_width = (unsigned)-1;
1486 sizes.fb_height = (unsigned)-1;
Dave Airlie785b93e2009-08-28 15:46:53 +10001487
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001488 /* if driver picks 8 or 16 by default use that
1489 for both depth/bpp */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001490 if (preferred_bpp != sizes.surface_bpp)
Dave Airlie38651672010-03-30 05:34:13 +00001491 sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001492
Dave Airlie785b93e2009-08-28 15:46:53 +10001493 /* first up get a count of crtcs now in use and new min/maxes width/heights */
Chris Wilson966a6a12016-11-29 12:02:15 +00001494 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001495 struct drm_fb_helper_connector *fb_helper_conn = fb_helper->connector_info[i];
Chris Wilson1794d252011-04-17 07:43:32 +01001496 struct drm_cmdline_mode *cmdline_mode;
Dave Airlie8ef86782009-09-26 06:39:00 +10001497
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001498 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
Dave Airlied50ba252009-09-23 14:44:08 +10001499
1500 if (cmdline_mode->bpp_specified) {
1501 switch (cmdline_mode->bpp) {
1502 case 8:
Dave Airlie38651672010-03-30 05:34:13 +00001503 sizes.surface_depth = sizes.surface_bpp = 8;
Dave Airlied50ba252009-09-23 14:44:08 +10001504 break;
1505 case 15:
Dave Airlie38651672010-03-30 05:34:13 +00001506 sizes.surface_depth = 15;
1507 sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +10001508 break;
1509 case 16:
Dave Airlie38651672010-03-30 05:34:13 +00001510 sizes.surface_depth = sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +10001511 break;
1512 case 24:
Dave Airlie38651672010-03-30 05:34:13 +00001513 sizes.surface_depth = sizes.surface_bpp = 24;
Dave Airlied50ba252009-09-23 14:44:08 +10001514 break;
1515 case 32:
Dave Airlie38651672010-03-30 05:34:13 +00001516 sizes.surface_depth = 24;
1517 sizes.surface_bpp = 32;
Dave Airlied50ba252009-09-23 14:44:08 +10001518 break;
1519 }
1520 break;
1521 }
1522 }
1523
Dave Airlie8be48d92010-03-30 05:34:14 +00001524 crtc_count = 0;
1525 for (i = 0; i < fb_helper->crtc_count; i++) {
1526 struct drm_display_mode *desired_mode;
Rob Clark0e3704c2015-03-11 10:23:14 -04001527 struct drm_mode_set *mode_set;
1528 int x, y, j;
1529 /* in case of tile group, are we the last tile vert or horiz?
1530 * If no tile group you are always the last one both vertically
1531 * and horizontally
1532 */
1533 bool lastv = true, lasth = true;
Rob Clark675c8322015-03-11 10:23:13 -04001534
Dave Airlie8be48d92010-03-30 05:34:14 +00001535 desired_mode = fb_helper->crtc_info[i].desired_mode;
Rob Clark0e3704c2015-03-11 10:23:14 -04001536 mode_set = &fb_helper->crtc_info[i].mode_set;
Rob Clark675c8322015-03-11 10:23:13 -04001537
1538 if (!desired_mode)
1539 continue;
1540
1541 crtc_count++;
1542
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001543 x = fb_helper->crtc_info[i].x;
1544 y = fb_helper->crtc_info[i].y;
Rob Clark675c8322015-03-11 10:23:13 -04001545
1546 if (gamma_size == 0)
1547 gamma_size = fb_helper->crtc_info[i].mode_set.crtc->gamma_size;
1548
1549 sizes.surface_width = max_t(u32, desired_mode->hdisplay + x, sizes.surface_width);
1550 sizes.surface_height = max_t(u32, desired_mode->vdisplay + y, sizes.surface_height);
Rob Clark0e3704c2015-03-11 10:23:14 -04001551
1552 for (j = 0; j < mode_set->num_connectors; j++) {
1553 struct drm_connector *connector = mode_set->connectors[j];
1554 if (connector->has_tile) {
1555 lasth = (connector->tile_h_loc == (connector->num_h_tile - 1));
1556 lastv = (connector->tile_v_loc == (connector->num_v_tile - 1));
1557 /* cloning to multiple tiles is just crazy-talk, so: */
1558 break;
1559 }
1560 }
1561
1562 if (lasth)
1563 sizes.fb_width = min_t(u32, desired_mode->hdisplay + x, sizes.fb_width);
1564 if (lastv)
1565 sizes.fb_height = min_t(u32, desired_mode->vdisplay + y, sizes.fb_height);
Dave Airlie785b93e2009-08-28 15:46:53 +10001566 }
1567
Dave Airlie38651672010-03-30 05:34:13 +00001568 if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001569 /* hmm everyone went away - assume VGA cable just fell out
1570 and will come back later. */
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001571 DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n");
Dave Airlie19b4b442010-03-30 05:34:16 +00001572 sizes.fb_width = sizes.surface_width = 1024;
1573 sizes.fb_height = sizes.surface_height = 768;
Dave Airlie785b93e2009-08-28 15:46:53 +10001574 }
1575
Dave Airlie38651672010-03-30 05:34:13 +00001576 /* push down into drivers */
Daniel Vetter8acf6582013-01-21 23:38:37 +01001577 ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
1578 if (ret < 0)
1579 return ret;
Dave Airlie785b93e2009-08-28 15:46:53 +10001580
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001581 /*
1582 * Set the fb pointer - usually drm_setup_crtcs does this for hotplug
1583 * events, but at init time drm_setup_crtcs needs to be called before
1584 * the fb is allocated (since we need to figure out the desired size of
1585 * the fb before we can allocate it ...). Hence we need to fix things up
1586 * here again.
1587 */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001588 for (i = 0; i < fb_helper->crtc_count; i++)
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001589 if (fb_helper->crtc_info[i].mode_set.num_connectors)
1590 fb_helper->crtc_info[i].mode_set.fb = fb_helper->fb;
1591
Dave Airlie785b93e2009-08-28 15:46:53 +10001592 return 0;
1593}
Dave Airlie785b93e2009-08-28 15:46:53 +10001594
Daniel Vetter207fd322013-01-20 22:13:14 +01001595/**
1596 * drm_fb_helper_fill_fix - initializes fixed fbdev information
1597 * @info: fbdev registered by the helper
1598 * @pitch: desired pitch
1599 * @depth: desired depth
1600 *
1601 * Helper to fill in the fixed fbdev information useful for a non-accelerated
1602 * fbdev emulations. Drivers which support acceleration methods which impose
1603 * additional constraints need to set up their own limits.
1604 *
1605 * Drivers should call this (or their equivalent setup code) from their
1606 * ->fb_probe callback.
1607 */
Dave Airlie3632ef82011-01-15 09:27:00 +10001608void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
1609 uint32_t depth)
1610{
1611 info->fix.type = FB_TYPE_PACKED_PIXELS;
1612 info->fix.visual = depth == 8 ? FB_VISUAL_PSEUDOCOLOR :
1613 FB_VISUAL_TRUECOLOR;
1614 info->fix.mmio_start = 0;
1615 info->fix.mmio_len = 0;
1616 info->fix.type_aux = 0;
1617 info->fix.xpanstep = 1; /* doing it in hw */
1618 info->fix.ypanstep = 1; /* doing it in hw */
1619 info->fix.ywrapstep = 0;
1620 info->fix.accel = FB_ACCEL_NONE;
Dave Airlie3632ef82011-01-15 09:27:00 +10001621
1622 info->fix.line_length = pitch;
1623 return;
1624}
1625EXPORT_SYMBOL(drm_fb_helper_fill_fix);
1626
Daniel Vetter207fd322013-01-20 22:13:14 +01001627/**
1628 * drm_fb_helper_fill_var - initalizes variable fbdev information
1629 * @info: fbdev instance to set up
1630 * @fb_helper: fb helper instance to use as template
1631 * @fb_width: desired fb width
1632 * @fb_height: desired fb height
1633 *
1634 * Sets up the variable fbdev metainformation from the given fb helper instance
1635 * and the drm framebuffer allocated in fb_helper->fb.
1636 *
1637 * Drivers should call this (or their equivalent setup code) from their
1638 * ->fb_probe callback after having allocated the fbdev backing
1639 * storage framebuffer.
1640 */
Dave Airlie38651672010-03-30 05:34:13 +00001641void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper,
Dave Airlie785b93e2009-08-28 15:46:53 +10001642 uint32_t fb_width, uint32_t fb_height)
1643{
Dave Airlie38651672010-03-30 05:34:13 +00001644 struct drm_framebuffer *fb = fb_helper->fb;
1645 info->pseudo_palette = fb_helper->pseudo_palette;
Dave Airlie785b93e2009-08-28 15:46:53 +10001646 info->var.xres_virtual = fb->width;
1647 info->var.yres_virtual = fb->height;
1648 info->var.bits_per_pixel = fb->bits_per_pixel;
James Simmons57084d02010-12-20 19:10:39 +00001649 info->var.accel_flags = FB_ACCELF_TEXT;
Dave Airlie785b93e2009-08-28 15:46:53 +10001650 info->var.xoffset = 0;
1651 info->var.yoffset = 0;
1652 info->var.activate = FB_ACTIVATE_NOW;
1653 info->var.height = -1;
1654 info->var.width = -1;
1655
1656 switch (fb->depth) {
1657 case 8:
1658 info->var.red.offset = 0;
1659 info->var.green.offset = 0;
1660 info->var.blue.offset = 0;
1661 info->var.red.length = 8; /* 8bit DAC */
1662 info->var.green.length = 8;
1663 info->var.blue.length = 8;
1664 info->var.transp.offset = 0;
1665 info->var.transp.length = 0;
1666 break;
1667 case 15:
1668 info->var.red.offset = 10;
1669 info->var.green.offset = 5;
1670 info->var.blue.offset = 0;
1671 info->var.red.length = 5;
1672 info->var.green.length = 5;
1673 info->var.blue.length = 5;
1674 info->var.transp.offset = 15;
1675 info->var.transp.length = 1;
1676 break;
1677 case 16:
1678 info->var.red.offset = 11;
1679 info->var.green.offset = 5;
1680 info->var.blue.offset = 0;
1681 info->var.red.length = 5;
1682 info->var.green.length = 6;
1683 info->var.blue.length = 5;
1684 info->var.transp.offset = 0;
1685 break;
1686 case 24:
1687 info->var.red.offset = 16;
1688 info->var.green.offset = 8;
1689 info->var.blue.offset = 0;
1690 info->var.red.length = 8;
1691 info->var.green.length = 8;
1692 info->var.blue.length = 8;
1693 info->var.transp.offset = 0;
1694 info->var.transp.length = 0;
1695 break;
1696 case 32:
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 = 24;
1704 info->var.transp.length = 8;
1705 break;
1706 default:
1707 break;
1708 }
1709
1710 info->var.xres = fb_width;
1711 info->var.yres = fb_height;
1712}
1713EXPORT_SYMBOL(drm_fb_helper_fill_var);
Dave Airlie38651672010-03-30 05:34:13 +00001714
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001715static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper *fb_helper,
1716 uint32_t maxX,
1717 uint32_t maxY)
Dave Airlie38651672010-03-30 05:34:13 +00001718{
1719 struct drm_connector *connector;
1720 int count = 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001721 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001722
Chris Wilson966a6a12016-11-29 12:02:15 +00001723 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001724 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001725 count += connector->funcs->fill_modes(connector, maxX, maxY);
1726 }
1727
1728 return count;
1729}
1730
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001731struct drm_display_mode *drm_has_preferred_mode(struct drm_fb_helper_connector *fb_connector, int width, int height)
Dave Airlie38651672010-03-30 05:34:13 +00001732{
1733 struct drm_display_mode *mode;
1734
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001735 list_for_each_entry(mode, &fb_connector->connector->modes, head) {
Daniel Vetter9d3de132014-01-23 16:27:56 +01001736 if (mode->hdisplay > width ||
1737 mode->vdisplay > height)
Dave Airlie38651672010-03-30 05:34:13 +00001738 continue;
1739 if (mode->type & DRM_MODE_TYPE_PREFERRED)
1740 return mode;
1741 }
1742 return NULL;
1743}
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001744EXPORT_SYMBOL(drm_has_preferred_mode);
Dave Airlie38651672010-03-30 05:34:13 +00001745
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001746static bool drm_has_cmdline_mode(struct drm_fb_helper_connector *fb_connector)
Dave Airlie38651672010-03-30 05:34:13 +00001747{
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001748 return fb_connector->connector->cmdline_mode.specified;
Dave Airlie38651672010-03-30 05:34:13 +00001749}
1750
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001751struct drm_display_mode *drm_pick_cmdline_mode(struct drm_fb_helper_connector *fb_helper_conn,
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001752 int width, int height)
Dave Airlie38651672010-03-30 05:34:13 +00001753{
Chris Wilson1794d252011-04-17 07:43:32 +01001754 struct drm_cmdline_mode *cmdline_mode;
Daniel Stonef3af5c72015-03-19 04:33:01 +00001755 struct drm_display_mode *mode;
Takashi Iwaic683f422014-03-19 14:53:13 +01001756 bool prefer_non_interlace;
Dave Airlie38651672010-03-30 05:34:13 +00001757
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001758 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
Dave Airlie38651672010-03-30 05:34:13 +00001759 if (cmdline_mode->specified == false)
Daniel Stonef3af5c72015-03-19 04:33:01 +00001760 return NULL;
Dave Airlie38651672010-03-30 05:34:13 +00001761
1762 /* attempt to find a matching mode in the list of modes
1763 * we have gotten so far, if not add a CVT mode that conforms
1764 */
1765 if (cmdline_mode->rb || cmdline_mode->margins)
1766 goto create_mode;
1767
Takashi Iwaic683f422014-03-19 14:53:13 +01001768 prefer_non_interlace = !cmdline_mode->interlace;
Daniel Stonef3af5c72015-03-19 04:33:01 +00001769again:
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001770 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
Dave Airlie38651672010-03-30 05:34:13 +00001771 /* check width/height */
1772 if (mode->hdisplay != cmdline_mode->xres ||
1773 mode->vdisplay != cmdline_mode->yres)
1774 continue;
1775
1776 if (cmdline_mode->refresh_specified) {
1777 if (mode->vrefresh != cmdline_mode->refresh)
1778 continue;
1779 }
1780
1781 if (cmdline_mode->interlace) {
1782 if (!(mode->flags & DRM_MODE_FLAG_INTERLACE))
1783 continue;
Takashi Iwaic683f422014-03-19 14:53:13 +01001784 } else if (prefer_non_interlace) {
1785 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1786 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001787 }
1788 return mode;
1789 }
1790
Takashi Iwaic683f422014-03-19 14:53:13 +01001791 if (prefer_non_interlace) {
1792 prefer_non_interlace = false;
1793 goto again;
1794 }
1795
Dave Airlie38651672010-03-30 05:34:13 +00001796create_mode:
Chris Wilson1794d252011-04-17 07:43:32 +01001797 mode = drm_mode_create_from_cmdline_mode(fb_helper_conn->connector->dev,
1798 cmdline_mode);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001799 list_add(&mode->head, &fb_helper_conn->connector->modes);
Dave Airlie38651672010-03-30 05:34:13 +00001800 return mode;
1801}
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001802EXPORT_SYMBOL(drm_pick_cmdline_mode);
Dave Airlie38651672010-03-30 05:34:13 +00001803
1804static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
1805{
1806 bool enable;
1807
Sachin Kamat96081cd2012-11-15 03:43:30 +00001808 if (strict)
Dave Airlie38651672010-03-30 05:34:13 +00001809 enable = connector->status == connector_status_connected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001810 else
Dave Airlie38651672010-03-30 05:34:13 +00001811 enable = connector->status != connector_status_disconnected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001812
Dave Airlie38651672010-03-30 05:34:13 +00001813 return enable;
1814}
1815
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001816static void drm_enable_connectors(struct drm_fb_helper *fb_helper,
1817 bool *enabled)
Dave Airlie38651672010-03-30 05:34:13 +00001818{
1819 bool any_enabled = false;
1820 struct drm_connector *connector;
1821 int i = 0;
1822
Chris Wilson966a6a12016-11-29 12:02:15 +00001823 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001824 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001825 enabled[i] = drm_connector_enabled(connector, true);
1826 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
1827 enabled[i] ? "yes" : "no");
1828 any_enabled |= enabled[i];
Dave Airlie38651672010-03-30 05:34:13 +00001829 }
1830
1831 if (any_enabled)
1832 return;
1833
Chris Wilson966a6a12016-11-29 12:02:15 +00001834 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001835 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001836 enabled[i] = drm_connector_enabled(connector, false);
Dave Airlie38651672010-03-30 05:34:13 +00001837 }
1838}
1839
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001840static bool drm_target_cloned(struct drm_fb_helper *fb_helper,
1841 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001842 struct drm_fb_offset *offsets,
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001843 bool *enabled, int width, int height)
1844{
1845 int count, i, j;
1846 bool can_clone = false;
1847 struct drm_fb_helper_connector *fb_helper_conn;
1848 struct drm_display_mode *dmt_mode, *mode;
1849
1850 /* only contemplate cloning in the single crtc case */
1851 if (fb_helper->crtc_count > 1)
1852 return false;
1853
1854 count = 0;
Chris Wilson966a6a12016-11-29 12:02:15 +00001855 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001856 if (enabled[i])
1857 count++;
1858 }
1859
1860 /* only contemplate cloning if more than one connector is enabled */
1861 if (count <= 1)
1862 return false;
1863
1864 /* check the command line or if nothing common pick 1024x768 */
1865 can_clone = true;
Chris Wilson966a6a12016-11-29 12:02:15 +00001866 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001867 if (!enabled[i])
1868 continue;
1869 fb_helper_conn = fb_helper->connector_info[i];
1870 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
1871 if (!modes[i]) {
1872 can_clone = false;
1873 break;
1874 }
1875 for (j = 0; j < i; j++) {
1876 if (!enabled[j])
1877 continue;
1878 if (!drm_mode_equal(modes[j], modes[i]))
1879 can_clone = false;
1880 }
1881 }
1882
1883 if (can_clone) {
1884 DRM_DEBUG_KMS("can clone using command line\n");
1885 return true;
1886 }
1887
1888 /* try and find a 1024x768 mode on each connector */
1889 can_clone = true;
Adam Jacksonf6e252b2012-04-13 16:33:31 -04001890 dmt_mode = drm_mode_find_dmt(fb_helper->dev, 1024, 768, 60, false);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001891
Chris Wilson966a6a12016-11-29 12:02:15 +00001892 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001893 if (!enabled[i])
1894 continue;
1895
1896 fb_helper_conn = fb_helper->connector_info[i];
1897 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
1898 if (drm_mode_equal(mode, dmt_mode))
1899 modes[i] = mode;
1900 }
1901 if (!modes[i])
1902 can_clone = false;
1903 }
1904
1905 if (can_clone) {
1906 DRM_DEBUG_KMS("can clone using 1024x768\n");
1907 return true;
1908 }
1909 DRM_INFO("kms: can't enable cloning when we probably wanted to.\n");
1910 return false;
1911}
1912
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001913static int drm_get_tile_offsets(struct drm_fb_helper *fb_helper,
1914 struct drm_display_mode **modes,
1915 struct drm_fb_offset *offsets,
1916 int idx,
1917 int h_idx, int v_idx)
1918{
1919 struct drm_fb_helper_connector *fb_helper_conn;
1920 int i;
1921 int hoffset = 0, voffset = 0;
1922
Chris Wilson966a6a12016-11-29 12:02:15 +00001923 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001924 fb_helper_conn = fb_helper->connector_info[i];
1925 if (!fb_helper_conn->connector->has_tile)
1926 continue;
1927
1928 if (!modes[i] && (h_idx || v_idx)) {
1929 DRM_DEBUG_KMS("no modes for connector tiled %d %d\n", i,
1930 fb_helper_conn->connector->base.id);
1931 continue;
1932 }
1933 if (fb_helper_conn->connector->tile_h_loc < h_idx)
1934 hoffset += modes[i]->hdisplay;
1935
1936 if (fb_helper_conn->connector->tile_v_loc < v_idx)
1937 voffset += modes[i]->vdisplay;
1938 }
1939 offsets[idx].x = hoffset;
1940 offsets[idx].y = voffset;
1941 DRM_DEBUG_KMS("returned %d %d for %d %d\n", hoffset, voffset, h_idx, v_idx);
1942 return 0;
1943}
1944
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001945static bool drm_target_preferred(struct drm_fb_helper *fb_helper,
Dave Airlie38651672010-03-30 05:34:13 +00001946 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001947 struct drm_fb_offset *offsets,
Dave Airlie38651672010-03-30 05:34:13 +00001948 bool *enabled, int width, int height)
1949{
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001950 struct drm_fb_helper_connector *fb_helper_conn;
Chris Wilsonc96521e2016-11-27 17:09:10 +00001951 const u64 mask = BIT_ULL(fb_helper->connector_count) - 1;
1952 u64 conn_configured = 0;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001953 int tile_pass = 0;
Chris Wilsonc96521e2016-11-27 17:09:10 +00001954 int i;
1955
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001956retry:
Chris Wilson966a6a12016-11-29 12:02:15 +00001957 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001958 fb_helper_conn = fb_helper->connector_info[i];
Dave Airlie38651672010-03-30 05:34:13 +00001959
Chris Wilsonc96521e2016-11-27 17:09:10 +00001960 if (conn_configured & BIT_ULL(i))
Dave Airlie38651672010-03-30 05:34:13 +00001961 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001962
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001963 if (enabled[i] == false) {
Chris Wilsonc96521e2016-11-27 17:09:10 +00001964 conn_configured |= BIT_ULL(i);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001965 continue;
1966 }
1967
1968 /* first pass over all the untiled connectors */
1969 if (tile_pass == 0 && fb_helper_conn->connector->has_tile)
1970 continue;
1971
1972 if (tile_pass == 1) {
1973 if (fb_helper_conn->connector->tile_h_loc != 0 ||
1974 fb_helper_conn->connector->tile_v_loc != 0)
1975 continue;
1976
1977 } else {
1978 if (fb_helper_conn->connector->tile_h_loc != tile_pass -1 &&
1979 fb_helper_conn->connector->tile_v_loc != tile_pass - 1)
1980 /* if this tile_pass doesn't cover any of the tiles - keep going */
1981 continue;
1982
1983 /* find the tile offsets for this pass - need
1984 to find all tiles left and above */
1985 drm_get_tile_offsets(fb_helper, modes, offsets,
1986 i, fb_helper_conn->connector->tile_h_loc, fb_helper_conn->connector->tile_v_loc);
1987 }
Dave Airlie38651672010-03-30 05:34:13 +00001988 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001989 fb_helper_conn->connector->base.id);
Dave Airlie38651672010-03-30 05:34:13 +00001990
1991 /* got for command line mode first */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001992 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001993 if (!modes[i]) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001994 DRM_DEBUG_KMS("looking for preferred mode on connector %d %d\n",
1995 fb_helper_conn->connector->base.id, fb_helper_conn->connector->tile_group ? fb_helper_conn->connector->tile_group->id : 0);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001996 modes[i] = drm_has_preferred_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001997 }
1998 /* No preferred modes, pick one off the list */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001999 if (!modes[i] && !list_empty(&fb_helper_conn->connector->modes)) {
2000 list_for_each_entry(modes[i], &fb_helper_conn->connector->modes, head)
Dave Airlie38651672010-03-30 05:34:13 +00002001 break;
2002 }
2003 DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name :
2004 "none");
Chris Wilsonc96521e2016-11-27 17:09:10 +00002005 conn_configured |= BIT_ULL(i);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002006 }
2007
2008 if ((conn_configured & mask) != mask) {
2009 tile_pass++;
2010 goto retry;
Dave Airlie38651672010-03-30 05:34:13 +00002011 }
2012 return true;
2013}
2014
Dave Airlie8be48d92010-03-30 05:34:14 +00002015static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
2016 struct drm_fb_helper_crtc **best_crtcs,
Dave Airlie38651672010-03-30 05:34:13 +00002017 struct drm_display_mode **modes,
2018 int n, int width, int height)
2019{
2020 int c, o;
2021 struct drm_connector *connector;
Jani Nikulabe26a662015-03-11 11:51:06 +02002022 const struct drm_connector_helper_funcs *connector_funcs;
Dave Airlie38651672010-03-30 05:34:13 +00002023 struct drm_encoder *encoder;
Dave Airlie38651672010-03-30 05:34:13 +00002024 int my_score, best_score, score;
Dave Airlie8be48d92010-03-30 05:34:14 +00002025 struct drm_fb_helper_crtc **crtcs, *crtc;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002026 struct drm_fb_helper_connector *fb_helper_conn;
Dave Airlie38651672010-03-30 05:34:13 +00002027
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002028 if (n == fb_helper->connector_count)
Dave Airlie38651672010-03-30 05:34:13 +00002029 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002030
2031 fb_helper_conn = fb_helper->connector_info[n];
2032 connector = fb_helper_conn->connector;
Dave Airlie38651672010-03-30 05:34:13 +00002033
2034 best_crtcs[n] = NULL;
Dave Airlie8be48d92010-03-30 05:34:14 +00002035 best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00002036 if (modes[n] == NULL)
2037 return best_score;
2038
Lyude255f0e72016-05-12 10:56:59 -04002039 crtcs = kzalloc(fb_helper->connector_count *
Dave Airlie8be48d92010-03-30 05:34:14 +00002040 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Dave Airlie38651672010-03-30 05:34:13 +00002041 if (!crtcs)
2042 return best_score;
2043
2044 my_score = 1;
2045 if (connector->status == connector_status_connected)
2046 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002047 if (drm_has_cmdline_mode(fb_helper_conn))
Dave Airlie38651672010-03-30 05:34:13 +00002048 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002049 if (drm_has_preferred_mode(fb_helper_conn, width, height))
Dave Airlie38651672010-03-30 05:34:13 +00002050 my_score++;
2051
2052 connector_funcs = connector->helper_private;
Boris Brezillonc61b93fe2016-06-07 13:47:56 +02002053
2054 /*
2055 * If the DRM device implements atomic hooks and ->best_encoder() is
2056 * NULL we fallback to the default drm_atomic_helper_best_encoder()
2057 * helper.
2058 */
2059 if (fb_helper->dev->mode_config.funcs->atomic_commit &&
2060 !connector_funcs->best_encoder)
2061 encoder = drm_atomic_helper_best_encoder(connector);
2062 else
2063 encoder = connector_funcs->best_encoder(connector);
2064
Dave Airlie38651672010-03-30 05:34:13 +00002065 if (!encoder)
2066 goto out;
2067
Dave Airlie38651672010-03-30 05:34:13 +00002068 /* select a crtc for this connector and then attempt to configure
2069 remaining connectors */
Dave Airlie8be48d92010-03-30 05:34:14 +00002070 for (c = 0; c < fb_helper->crtc_count; c++) {
2071 crtc = &fb_helper->crtc_info[c];
Dave Airlie38651672010-03-30 05:34:13 +00002072
Sachin Kamat96081cd2012-11-15 03:43:30 +00002073 if ((encoder->possible_crtcs & (1 << c)) == 0)
Dave Airlie38651672010-03-30 05:34:13 +00002074 continue;
Dave Airlie38651672010-03-30 05:34:13 +00002075
2076 for (o = 0; o < n; o++)
2077 if (best_crtcs[o] == crtc)
2078 break;
2079
2080 if (o < n) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002081 /* ignore cloning unless only a single crtc */
2082 if (fb_helper->crtc_count > 1)
2083 continue;
2084
2085 if (!drm_mode_equal(modes[o], modes[n]))
2086 continue;
Dave Airlie38651672010-03-30 05:34:13 +00002087 }
2088
2089 crtcs[n] = crtc;
Dave Airlie8be48d92010-03-30 05:34:14 +00002090 memcpy(crtcs, best_crtcs, n * sizeof(struct drm_fb_helper_crtc *));
2091 score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1,
Dave Airlie38651672010-03-30 05:34:13 +00002092 width, height);
2093 if (score > best_score) {
Dave Airlie38651672010-03-30 05:34:13 +00002094 best_score = score;
2095 memcpy(best_crtcs, crtcs,
Lyude255f0e72016-05-12 10:56:59 -04002096 fb_helper->connector_count *
Dave Airlie8be48d92010-03-30 05:34:14 +00002097 sizeof(struct drm_fb_helper_crtc *));
Dave Airlie38651672010-03-30 05:34:13 +00002098 }
Dave Airlie38651672010-03-30 05:34:13 +00002099 }
2100out:
2101 kfree(crtcs);
2102 return best_score;
2103}
2104
Chris Wilson64e94402016-11-29 12:02:16 +00002105static void drm_setup_crtcs(struct drm_fb_helper *fb_helper,
2106 u32 width, u32 height)
Dave Airlie38651672010-03-30 05:34:13 +00002107{
Dave Airlie8be48d92010-03-30 05:34:14 +00002108 struct drm_device *dev = fb_helper->dev;
2109 struct drm_fb_helper_crtc **crtcs;
Dave Airlie38651672010-03-30 05:34:13 +00002110 struct drm_display_mode **modes;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002111 struct drm_fb_offset *offsets;
Dave Airlie38651672010-03-30 05:34:13 +00002112 bool *enabled;
Jesse Barnes11e17a02013-02-19 13:31:39 -08002113 int i;
Dave Airlie38651672010-03-30 05:34:13 +00002114
2115 DRM_DEBUG_KMS("\n");
Chris Wilson64e94402016-11-29 12:02:16 +00002116 if (drm_fb_helper_probe_connector_modes(fb_helper, width, height) == 0)
2117 DRM_DEBUG_KMS("No connectors reported connected with modes\n");
Dave Airlie38651672010-03-30 05:34:13 +00002118
Chris Wilson966a6a12016-11-29 12:02:15 +00002119 /* prevent concurrent modification of connector_count by hotplug */
2120 lockdep_assert_held(&fb_helper->dev->mode_config.mutex);
2121
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002122 crtcs = kcalloc(fb_helper->connector_count,
Dave Airlie8be48d92010-03-30 05:34:14 +00002123 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002124 modes = kcalloc(fb_helper->connector_count,
Dave Airlie38651672010-03-30 05:34:13 +00002125 sizeof(struct drm_display_mode *), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002126 offsets = kcalloc(fb_helper->connector_count,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002127 sizeof(struct drm_fb_offset), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002128 enabled = kcalloc(fb_helper->connector_count,
Dave Airlie38651672010-03-30 05:34:13 +00002129 sizeof(bool), GFP_KERNEL);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002130 if (!crtcs || !modes || !enabled || !offsets) {
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00002131 DRM_ERROR("Memory allocation failed\n");
2132 goto out;
2133 }
2134
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002135 drm_enable_connectors(fb_helper, enabled);
Dave Airlie38651672010-03-30 05:34:13 +00002136
Jesse Barnes11e17a02013-02-19 13:31:39 -08002137 if (!(fb_helper->funcs->initial_config &&
2138 fb_helper->funcs->initial_config(fb_helper, crtcs, modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002139 offsets,
Jesse Barnes11e17a02013-02-19 13:31:39 -08002140 enabled, width, height))) {
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002141 memset(modes, 0, fb_helper->connector_count*sizeof(modes[0]));
2142 memset(crtcs, 0, fb_helper->connector_count*sizeof(crtcs[0]));
2143 memset(offsets, 0, fb_helper->connector_count*sizeof(offsets[0]));
Jesse Barnes11e17a02013-02-19 13:31:39 -08002144
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002145 if (!drm_target_cloned(fb_helper, modes, offsets,
2146 enabled, width, height) &&
2147 !drm_target_preferred(fb_helper, modes, offsets,
2148 enabled, width, height))
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002149 DRM_ERROR("Unable to find initial modes\n");
Jesse Barnes11e17a02013-02-19 13:31:39 -08002150
2151 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n",
2152 width, height);
2153
2154 drm_pick_crtcs(fb_helper, crtcs, modes, 0, width, height);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002155 }
Dave Airlie38651672010-03-30 05:34:13 +00002156
Dave Airlie8be48d92010-03-30 05:34:14 +00002157 /* need to set the modesets up here for use later */
2158 /* fill out the connector<->crtc mappings into the modesets */
Ville Syrjäläa2889602016-10-26 17:41:18 +03002159 for (i = 0; i < fb_helper->crtc_count; i++)
2160 drm_fb_helper_modeset_release(fb_helper,
2161 &fb_helper->crtc_info[i].mode_set);
Dave Airlie38651672010-03-30 05:34:13 +00002162
Chris Wilson966a6a12016-11-29 12:02:15 +00002163 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie38651672010-03-30 05:34:13 +00002164 struct drm_display_mode *mode = modes[i];
Dave Airlie8be48d92010-03-30 05:34:14 +00002165 struct drm_fb_helper_crtc *fb_crtc = crtcs[i];
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002166 struct drm_fb_offset *offset = &offsets[i];
Ville Syrjäläa2889602016-10-26 17:41:18 +03002167 struct drm_mode_set *modeset = &fb_crtc->mode_set;
Dave Airlie38651672010-03-30 05:34:13 +00002168
Dave Airlie8be48d92010-03-30 05:34:14 +00002169 if (mode && fb_crtc) {
Ville Syrjäläa2889602016-10-26 17:41:18 +03002170 struct drm_connector *connector =
2171 fb_helper->connector_info[i]->connector;
2172
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002173 DRM_DEBUG_KMS("desired mode %s set on crtc %d (%d,%d)\n",
2174 mode->name, fb_crtc->mode_set.crtc->base.id, offset->x, offset->y);
Ville Syrjäläa2889602016-10-26 17:41:18 +03002175
Dave Airlie8be48d92010-03-30 05:34:14 +00002176 fb_crtc->desired_mode = mode;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002177 fb_crtc->x = offset->x;
2178 fb_crtc->y = offset->y;
Dave Airlie8be48d92010-03-30 05:34:14 +00002179 modeset->mode = drm_mode_duplicate(dev,
2180 fb_crtc->desired_mode);
Ville Syrjäläa2889602016-10-26 17:41:18 +03002181 drm_connector_reference(connector);
2182 modeset->connectors[modeset->num_connectors++] = connector;
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01002183 modeset->fb = fb_helper->fb;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002184 modeset->x = offset->x;
2185 modeset->y = offset->y;
Dave Airlie38651672010-03-30 05:34:13 +00002186 }
Dave Airlie38651672010-03-30 05:34:13 +00002187 }
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00002188out:
Dave Airlie38651672010-03-30 05:34:13 +00002189 kfree(crtcs);
2190 kfree(modes);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002191 kfree(offsets);
Dave Airlie38651672010-03-30 05:34:13 +00002192 kfree(enabled);
2193}
2194
2195/**
Daniel Vetter207fd322013-01-20 22:13:14 +01002196 * drm_fb_helper_initial_config - setup a sane initial connector configuration
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002197 * @fb_helper: fb_helper device struct
2198 * @bpp_sel: bpp value to use for the framebuffer configuration
Dave Airlie38651672010-03-30 05:34:13 +00002199 *
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002200 * Scans the CRTCs and connectors and tries to put together an initial setup.
Dave Airlie38651672010-03-30 05:34:13 +00002201 * At the moment, this is a cloned configuration across all heads with
2202 * a new framebuffer object as the backing store.
2203 *
Daniel Vetter207fd322013-01-20 22:13:14 +01002204 * Note that this also registers the fbdev and so allows userspace to call into
2205 * the driver through the fbdev interfaces.
2206 *
2207 * This function will call down into the ->fb_probe callback to let
2208 * the driver allocate and initialize the fbdev info structure and the drm
2209 * framebuffer used to back the fbdev. drm_fb_helper_fill_var() and
2210 * drm_fb_helper_fill_fix() are provided as helpers to setup simple default
2211 * values for the fbdev info structure.
2212 *
Daniel Vetter40f8cf42016-01-22 08:53:45 +01002213 * HANG DEBUGGING:
2214 *
2215 * When you have fbcon support built-in or already loaded, this function will do
2216 * a full modeset to setup the fbdev console. Due to locking misdesign in the
2217 * VT/fbdev subsystem that entire modeset sequence has to be done while holding
2218 * console_lock. Until console_unlock is called no dmesg lines will be sent out
2219 * to consoles, not even serial console. This means when your driver crashes,
2220 * you will see absolutely nothing else but a system stuck in this function,
2221 * with no further output. Any kind of printk() you place within your own driver
2222 * or in the drm core modeset code will also never show up.
2223 *
2224 * Standard debug practice is to run the fbcon setup without taking the
2225 * console_lock as a hack, to be able to see backtraces and crashes on the
2226 * serial line. This can be done by setting the fb.lockless_register_fb=1 kernel
2227 * cmdline option.
2228 *
2229 * The other option is to just disable fbdev emulation since very likely the
Lyudeaf509d32016-05-04 11:28:53 -04002230 * first modeset from userspace will crash in the same way, and is even easier
2231 * to debug. This can be done by setting the drm_kms_helper.fbdev_emulation=0
Daniel Vetter40f8cf42016-01-22 08:53:45 +01002232 * kernel cmdline option.
2233 *
Dave Airlie38651672010-03-30 05:34:13 +00002234 * RETURNS:
2235 * Zero if everything went ok, nonzero otherwise.
2236 */
Thierry Reding01934c22014-12-19 11:21:32 +01002237int drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
Dave Airlie38651672010-03-30 05:34:13 +00002238{
Dave Airlie8be48d92010-03-30 05:34:14 +00002239 struct drm_device *dev = fb_helper->dev;
Chris Wilson966a6a12016-11-29 12:02:15 +00002240 struct fb_info *info;
Chris Wilson966a6a12016-11-29 12:02:15 +00002241 int ret;
Dave Airlie38651672010-03-30 05:34:13 +00002242
Daniel Vetterf64c5572015-08-25 15:45:13 +02002243 if (!drm_fbdev_emulation)
2244 return 0;
2245
Daniel Vetter53f19042014-03-20 14:26:35 +01002246 mutex_lock(&dev->mode_config.mutex);
Chris Wilson64e94402016-11-29 12:02:16 +00002247 drm_setup_crtcs(fb_helper,
2248 dev->mode_config.max_width,
2249 dev->mode_config.max_height);
Chris Wilson966a6a12016-11-29 12:02:15 +00002250 ret = drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
2251 mutex_unlock(&dev->mode_config.mutex);
2252 if (ret)
2253 return ret;
Dave Airlie38651672010-03-30 05:34:13 +00002254
Chris Wilson966a6a12016-11-29 12:02:15 +00002255 info = fb_helper->fbdev;
2256 info->var.pixclock = 0;
2257 ret = register_framebuffer(info);
2258 if (ret < 0)
2259 return ret;
2260
2261 dev_info(dev->dev, "fb%d: %s frame buffer device\n",
2262 info->node, info->fix.id);
2263
Chris Wilsona53ca632016-11-29 12:02:17 +00002264 mutex_lock(&kernel_fb_helper_lock);
Chris Wilson966a6a12016-11-29 12:02:15 +00002265 if (list_empty(&kernel_fb_helper_list))
2266 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
2267
2268 list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
Chris Wilsona53ca632016-11-29 12:02:17 +00002269 mutex_unlock(&kernel_fb_helper_lock);
Chris Wilson966a6a12016-11-29 12:02:15 +00002270
2271 return 0;
Dave Airlie38651672010-03-30 05:34:13 +00002272}
Dave Airlie8be48d92010-03-30 05:34:14 +00002273EXPORT_SYMBOL(drm_fb_helper_initial_config);
Dave Airlie38651672010-03-30 05:34:13 +00002274
Chris Wilson73943712011-04-22 11:03:57 +01002275/**
2276 * drm_fb_helper_hotplug_event - respond to a hotplug notification by
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002277 * probing all the outputs attached to the fb
Chris Wilson73943712011-04-22 11:03:57 +01002278 * @fb_helper: the drm_fb_helper
2279 *
Chris Wilson73943712011-04-22 11:03:57 +01002280 * Scan the connectors attached to the fb_helper and try to put together a
Daniel Vetter62cacc72016-08-12 22:48:37 +02002281 * setup after notification of a change in output configuration.
Chris Wilson73943712011-04-22 11:03:57 +01002282 *
Daniel Vetter207fd322013-01-20 22:13:14 +01002283 * Called at runtime, takes the mode config locks to be able to check/change the
2284 * modeset configuration. Must be run from process context (which usually means
2285 * either the output polling work or a work item launched from the driver's
2286 * hotplug interrupt).
2287 *
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002288 * Note that drivers may call this even before calling
Lyudeaf509d32016-05-04 11:28:53 -04002289 * drm_fb_helper_initial_config but only after drm_fb_helper_init. This allows
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002290 * for a race-free fbcon setup and will make sure that the fbdev emulation will
2291 * not miss any hotplug events.
Daniel Vetter207fd322013-01-20 22:13:14 +01002292 *
Chris Wilson73943712011-04-22 11:03:57 +01002293 * RETURNS:
2294 * 0 on success and a non-zero error code otherwise.
2295 */
2296int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
Dave Airlie38651672010-03-30 05:34:13 +00002297{
Chris Wilson73943712011-04-22 11:03:57 +01002298 struct drm_device *dev = fb_helper->dev;
Dave Airlie4abe3522010-03-30 05:34:18 +00002299
Daniel Vetterf64c5572015-08-25 15:45:13 +02002300 if (!drm_fbdev_emulation)
2301 return 0;
2302
Chris Wilson64e94402016-11-29 12:02:16 +00002303 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002304 if (!fb_helper->fb || !drm_fb_helper_is_bound(fb_helper)) {
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002305 fb_helper->delayed_hotplug = true;
Chris Wilson64e94402016-11-29 12:02:16 +00002306 mutex_unlock(&dev->mode_config.mutex);
Chris Wilson73943712011-04-22 11:03:57 +01002307 return 0;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002308 }
Dave Airlie38651672010-03-30 05:34:13 +00002309 DRM_DEBUG_KMS("\n");
2310
Chris Wilson64e94402016-11-29 12:02:16 +00002311 drm_setup_crtcs(fb_helper, fb_helper->fb->width, fb_helper->fb->height);
Dave Airlie4abe3522010-03-30 05:34:18 +00002312
Chris Wilson64e94402016-11-29 12:02:16 +00002313 mutex_unlock(&dev->mode_config.mutex);
Daniel Vetter89ced122013-04-11 14:26:55 +00002314
Daniel Vetter2180c3c2013-01-21 23:12:36 +01002315 drm_fb_helper_set_par(fb_helper->fbdev);
2316
2317 return 0;
Dave Airlie38651672010-03-30 05:34:13 +00002318}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002319EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
Dave Airlie5c4426a2010-03-30 05:34:17 +00002320
David Rientjes6a108a12011-01-20 14:44:16 -08002321/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06002322 * but the module doesn't depend on any fb console symbols. At least
2323 * attempt to load fbcon to avoid leaving the system without a usable console.
2324 */
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002325int __init drm_fb_helper_modinit(void)
David Fries3ce05162010-12-12 12:39:22 -06002326{
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002327#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06002328 const char *name = "fbcon";
2329 struct module *fbcon;
2330
2331 mutex_lock(&module_mutex);
2332 fbcon = find_module(name);
2333 mutex_unlock(&module_mutex);
2334
2335 if (!fbcon)
2336 request_module_nowait(name);
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002337#endif
David Fries3ce05162010-12-12 12:39:22 -06002338 return 0;
2339}
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002340EXPORT_SYMBOL(drm_fb_helper_modinit);