blob: 03414bde1f152637a7ed6002ed8a88e30611fec8 [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);
52
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010053/**
54 * DOC: fbdev helpers
55 *
56 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
Thierry Reding83c617c2014-04-29 11:44:35 +020057 * mode setting driver. They can be used mostly independently from the crtc
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010058 * helper functions used by many drivers to implement the kernel mode setting
59 * interfaces.
Daniel Vetter207fd322013-01-20 22:13:14 +010060 *
Thierry Reding10a23102014-06-27 17:19:24 +020061 * Initialization is done as a four-step process with drm_fb_helper_prepare(),
62 * drm_fb_helper_init(), drm_fb_helper_single_add_all_connectors() and
63 * drm_fb_helper_initial_config(). Drivers with fancier requirements than the
64 * default behaviour can override the third step with their own code.
65 * Teardown is done with drm_fb_helper_fini().
Daniel Vetter207fd322013-01-20 22:13:14 +010066 *
67 * At runtime drivers should restore the fbdev console by calling
Geert Uytterhoeven3d9e35a2015-08-04 15:22:10 +020068 * drm_fb_helper_restore_fbdev_mode_unlocked() from their ->lastclose callback.
69 * They should also notify the fb helper code from updates to the output
Daniel Vetter207fd322013-01-20 22:13:14 +010070 * configuration by calling drm_fb_helper_hotplug_event(). For easier
71 * integration with the output polling code in drm_crtc_helper.c the modeset
Thierry Reding83c617c2014-04-29 11:44:35 +020072 * code provides a ->output_poll_changed callback.
Daniel Vetter207fd322013-01-20 22:13:14 +010073 *
74 * All other functions exported by the fb helper library can be used to
75 * implement the fbdev driver interface by the driver.
Thierry Reding10a23102014-06-27 17:19:24 +020076 *
77 * It is possible, though perhaps somewhat tricky, to implement race-free
78 * hotplug detection using the fbdev helpers. The drm_fb_helper_prepare()
79 * helper must be called first to initialize the minimum required to make
80 * hotplug detection work. Drivers also need to make sure to properly set up
81 * the dev->mode_config.funcs member. After calling drm_kms_helper_poll_init()
82 * it is safe to enable interrupts and start processing hotplug events. At the
83 * same time, drivers should initialize all modeset objects such as CRTCs,
84 * encoders and connectors. To finish up the fbdev helper initialization, the
85 * drm_fb_helper_init() function is called. To probe for all attached displays
86 * and set up an initial configuration using the detected hardware, drivers
87 * should call drm_fb_helper_single_add_all_connectors() followed by
88 * drm_fb_helper_initial_config().
Noralf Trønneseaa434d2016-04-28 17:18:33 +020089 *
Noralf Trønnes2dad5512016-05-11 18:09:17 +020090 * If &drm_framebuffer_funcs ->dirty is set, the
91 * drm_fb_helper_{cfb,sys}_{write,fillrect,copyarea,imageblit} functions will
92 * accumulate changes and schedule &drm_fb_helper ->dirty_work to run right
93 * away. This worker then calls the dirty() function ensuring that it will
94 * always run in process context since the fb_*() function could be running in
95 * atomic context. If drm_fb_helper_deferred_io() is used as the deferred_io
96 * callback it will also schedule dirty_work with the damage collected from the
97 * mmap page writes.
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010098 */
99
Daniel Vetter207fd322013-01-20 22:13:14 +0100100/**
101 * drm_fb_helper_single_add_all_connectors() - add all connectors to fbdev
102 * emulation helper
103 * @fb_helper: fbdev initialized with drm_fb_helper_init
104 *
105 * This functions adds all the available connectors for use with the given
106 * fb_helper. This is a separate step to allow drivers to freely assign
107 * connectors to the fbdev, e.g. if some are reserved for special purposes or
108 * not adequate to be used for the fbcon.
109 *
Daniel Vetter169faec2015-07-09 23:44:27 +0200110 * This function is protected against concurrent connector hotadds/removals
111 * using drm_fb_helper_add_one_connector() and
112 * drm_fb_helper_remove_one_connector().
Daniel Vetter207fd322013-01-20 22:13:14 +0100113 */
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000114int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper *fb_helper)
Dave Airlied50ba252009-09-23 14:44:08 +1000115{
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000116 struct drm_device *dev = fb_helper->dev;
117 struct drm_connector *connector;
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100118 int i, ret;
Dave Airlied50ba252009-09-23 14:44:08 +1000119
Daniel Vetterf64c5572015-08-25 15:45:13 +0200120 if (!drm_fbdev_emulation)
121 return 0;
122
Daniel Vetter169faec2015-07-09 23:44:27 +0200123 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter6295d602015-07-09 23:44:25 +0200124 drm_for_each_connector(connector, dev) {
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100125 ret = drm_fb_helper_add_one_connector(fb_helper, connector);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000126
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100127 if (ret)
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000128 goto fail;
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000129 }
Daniel Vetter169faec2015-07-09 23:44:27 +0200130 mutex_unlock(&dev->mode_config.mutex);
Dave Airlied50ba252009-09-23 14:44:08 +1000131 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000132fail:
133 for (i = 0; i < fb_helper->connector_count; i++) {
134 kfree(fb_helper->connector_info[i]);
135 fb_helper->connector_info[i] = NULL;
136 }
137 fb_helper->connector_count = 0;
Daniel Vetter169faec2015-07-09 23:44:27 +0200138 mutex_unlock(&dev->mode_config.mutex);
139
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100140 return ret;
Dave Airlied50ba252009-09-23 14:44:08 +1000141}
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000142EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors);
Dave Airlied50ba252009-09-23 14:44:08 +1000143
Dave Airlie65c2a892014-06-05 14:01:30 +1000144int drm_fb_helper_add_one_connector(struct drm_fb_helper *fb_helper, struct drm_connector *connector)
145{
146 struct drm_fb_helper_connector **temp;
147 struct drm_fb_helper_connector *fb_helper_connector;
148
Daniel Vetterf64c5572015-08-25 15:45:13 +0200149 if (!drm_fbdev_emulation)
150 return 0;
151
Dave Airlie65c2a892014-06-05 14:01:30 +1000152 WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex));
153 if (fb_helper->connector_count + 1 > fb_helper->connector_info_alloc_count) {
Damien Lespiau14f476f2014-08-08 19:15:20 +0100154 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 +1000155 if (!temp)
156 return -ENOMEM;
157
158 fb_helper->connector_info_alloc_count = fb_helper->connector_count + 1;
159 fb_helper->connector_info = temp;
160 }
161
162
163 fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL);
164 if (!fb_helper_connector)
165 return -ENOMEM;
166
Dave Airlie6e86d582016-04-27 11:24:51 +1000167 drm_connector_reference(connector);
Dave Airlie65c2a892014-06-05 14:01:30 +1000168 fb_helper_connector->connector = connector;
169 fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector;
170 return 0;
171}
172EXPORT_SYMBOL(drm_fb_helper_add_one_connector);
173
174int drm_fb_helper_remove_one_connector(struct drm_fb_helper *fb_helper,
175 struct drm_connector *connector)
176{
177 struct drm_fb_helper_connector *fb_helper_connector;
178 int i, j;
179
Daniel Vetterf64c5572015-08-25 15:45:13 +0200180 if (!drm_fbdev_emulation)
181 return 0;
182
Dave Airlie65c2a892014-06-05 14:01:30 +1000183 WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex));
184
185 for (i = 0; i < fb_helper->connector_count; i++) {
186 if (fb_helper->connector_info[i]->connector == connector)
187 break;
188 }
189
190 if (i == fb_helper->connector_count)
191 return -EINVAL;
192 fb_helper_connector = fb_helper->connector_info[i];
Dave Airlie6e86d582016-04-27 11:24:51 +1000193 drm_connector_unreference(fb_helper_connector->connector);
Dave Airlie65c2a892014-06-05 14:01:30 +1000194
195 for (j = i + 1; j < fb_helper->connector_count; j++) {
196 fb_helper->connector_info[j - 1] = fb_helper->connector_info[j];
197 }
198 fb_helper->connector_count--;
199 kfree(fb_helper_connector);
Rob Clark2148f182015-01-26 10:11:08 -0500200
Dave Airlie65c2a892014-06-05 14:01:30 +1000201 return 0;
202}
203EXPORT_SYMBOL(drm_fb_helper_remove_one_connector);
204
Jason Wessel99231022010-10-13 14:09:43 -0500205static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper)
206{
207 uint16_t *r_base, *g_base, *b_base;
208 int i;
209
Ville Syrjälä04c0c562013-05-27 20:19:57 +0300210 if (helper->funcs->gamma_get == NULL)
211 return;
212
Jason Wessel99231022010-10-13 14:09:43 -0500213 r_base = crtc->gamma_store;
214 g_base = r_base + crtc->gamma_size;
215 b_base = g_base + crtc->gamma_size;
216
217 for (i = 0; i < crtc->gamma_size; i++)
218 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
219}
220
221static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc)
222{
223 uint16_t *r_base, *g_base, *b_base;
224
Laurent Pinchartebe0f242012-05-17 13:27:24 +0200225 if (crtc->funcs->gamma_set == NULL)
226 return;
227
Jason Wessel99231022010-10-13 14:09:43 -0500228 r_base = crtc->gamma_store;
229 g_base = r_base + crtc->gamma_size;
230 b_base = g_base + crtc->gamma_size;
231
Maarten Lankhorst7ea77282016-06-07 12:49:30 +0200232 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, crtc->gamma_size);
Jason Wessel99231022010-10-13 14:09:43 -0500233}
234
Daniel Vetter207fd322013-01-20 22:13:14 +0100235/**
236 * drm_fb_helper_debug_enter - implementation for ->fb_debug_enter
237 * @info: fbdev registered by the helper
238 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500239int drm_fb_helper_debug_enter(struct fb_info *info)
240{
241 struct drm_fb_helper *helper = info->par;
Jani Nikulabe26a662015-03-11 11:51:06 +0200242 const struct drm_crtc_helper_funcs *funcs;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500243 int i;
244
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500245 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
246 for (i = 0; i < helper->crtc_count; i++) {
247 struct drm_mode_set *mode_set =
248 &helper->crtc_info[i].mode_set;
249
250 if (!mode_set->crtc->enabled)
251 continue;
252
253 funcs = mode_set->crtc->helper_private;
Jason Wessel99231022010-10-13 14:09:43 -0500254 drm_fb_helper_save_lut_atomic(mode_set->crtc, helper);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500255 funcs->mode_set_base_atomic(mode_set->crtc,
256 mode_set->fb,
257 mode_set->x,
Jason Wessel413d45d2010-09-26 06:47:25 -0500258 mode_set->y,
Jason Wessel21c74a82010-10-13 14:09:44 -0500259 ENTER_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500260 }
261 }
262
263 return 0;
264}
265EXPORT_SYMBOL(drm_fb_helper_debug_enter);
266
267/* Find the real fb for a given fb helper CRTC */
268static struct drm_framebuffer *drm_mode_config_fb(struct drm_crtc *crtc)
269{
270 struct drm_device *dev = crtc->dev;
271 struct drm_crtc *c;
272
Daniel Vetter6295d602015-07-09 23:44:25 +0200273 drm_for_each_crtc(c, dev) {
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500274 if (crtc->base.id == c->base.id)
Matt Roperf4510a22014-04-01 15:22:40 -0700275 return c->primary->fb;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500276 }
277
278 return NULL;
279}
280
Daniel Vetter207fd322013-01-20 22:13:14 +0100281/**
282 * drm_fb_helper_debug_leave - implementation for ->fb_debug_leave
283 * @info: fbdev registered by the helper
284 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500285int drm_fb_helper_debug_leave(struct fb_info *info)
286{
287 struct drm_fb_helper *helper = info->par;
288 struct drm_crtc *crtc;
Jani Nikulabe26a662015-03-11 11:51:06 +0200289 const struct drm_crtc_helper_funcs *funcs;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500290 struct drm_framebuffer *fb;
291 int i;
292
293 for (i = 0; i < helper->crtc_count; i++) {
294 struct drm_mode_set *mode_set = &helper->crtc_info[i].mode_set;
295 crtc = mode_set->crtc;
296 funcs = crtc->helper_private;
297 fb = drm_mode_config_fb(crtc);
298
299 if (!crtc->enabled)
300 continue;
301
302 if (!fb) {
303 DRM_ERROR("no fb to restore??\n");
304 continue;
305 }
306
Jason Wessel99231022010-10-13 14:09:43 -0500307 drm_fb_helper_restore_lut_atomic(mode_set->crtc);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500308 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
Jason Wessel21c74a82010-10-13 14:09:44 -0500309 crtc->y, LEAVE_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500310 }
311
312 return 0;
313}
314EXPORT_SYMBOL(drm_fb_helper_debug_leave);
315
Rob Clarkbbb1e522015-08-25 15:35:58 -0400316static int restore_fbdev_mode_atomic(struct drm_fb_helper *fb_helper)
317{
318 struct drm_device *dev = fb_helper->dev;
319 struct drm_plane *plane;
320 struct drm_atomic_state *state;
321 int i, ret;
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100322 unsigned plane_mask;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400323
324 state = drm_atomic_state_alloc(dev);
325 if (!state)
326 return -ENOMEM;
327
328 state->acquire_ctx = dev->mode_config.acquire_ctx;
329retry:
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100330 plane_mask = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400331 drm_for_each_plane(plane, dev) {
332 struct drm_plane_state *plane_state;
333
334 plane_state = drm_atomic_get_plane_state(state, plane);
335 if (IS_ERR(plane_state)) {
336 ret = PTR_ERR(plane_state);
337 goto fail;
338 }
339
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +0300340 plane_state->rotation = DRM_ROTATE_0;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400341
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100342 plane->old_fb = plane->fb;
343 plane_mask |= 1 << drm_plane_index(plane);
344
Rob Clarkbbb1e522015-08-25 15:35:58 -0400345 /* disable non-primary: */
346 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
347 continue;
348
349 ret = __drm_atomic_helper_disable_plane(plane, plane_state);
350 if (ret != 0)
351 goto fail;
352 }
353
354 for(i = 0; i < fb_helper->crtc_count; i++) {
355 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
356
357 ret = __drm_atomic_helper_set_config(mode_set, state);
358 if (ret != 0)
359 goto fail;
360 }
361
362 ret = drm_atomic_commit(state);
Rob Clarkbbb1e522015-08-25 15:35:58 -0400363
364fail:
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100365 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Matt Roper94284032015-09-21 17:21:48 -0700366
Rob Clarkbbb1e522015-08-25 15:35:58 -0400367 if (ret == -EDEADLK)
368 goto backoff;
369
Matt Roper94284032015-09-21 17:21:48 -0700370 if (ret != 0)
371 drm_atomic_state_free(state);
Rob Clarkbbb1e522015-08-25 15:35:58 -0400372
373 return ret;
374
375backoff:
376 drm_atomic_state_clear(state);
377 drm_atomic_legacy_backoff(state);
378
379 goto retry;
380}
381
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200382static int restore_fbdev_mode(struct drm_fb_helper *fb_helper)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100383{
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300384 struct drm_device *dev = fb_helper->dev;
385 struct drm_plane *plane;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300386 int i;
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100387
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300388 drm_warn_on_modeset_not_all_locked(dev);
389
Daniel Vetterd3a46182016-06-08 14:19:15 +0200390 if (dev->mode_config.funcs->atomic_commit)
Rob Clarkbbb1e522015-08-25 15:35:58 -0400391 return restore_fbdev_mode_atomic(fb_helper);
392
Daniel Vetter6295d602015-07-09 23:44:25 +0200393 drm_for_each_plane(plane, dev) {
Matt Ropere27dde32014-04-01 15:22:30 -0700394 if (plane->type != DRM_PLANE_TYPE_PRIMARY)
395 drm_plane_force_disable(plane);
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100396
Sonika Jindal9783de22014-08-05 11:26:57 +0530397 if (dev->mode_config.rotation_property) {
Thomas Wood3a5f87c2014-08-20 14:45:00 +0100398 drm_mode_plane_set_obj_prop(plane,
399 dev->mode_config.rotation_property,
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +0300400 DRM_ROTATE_0);
Sonika Jindal9783de22014-08-05 11:26:57 +0530401 }
402 }
403
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100404 for (i = 0; i < fb_helper->crtc_count; i++) {
405 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300406 struct drm_crtc *crtc = mode_set->crtc;
407 int ret;
408
Alex Deucher03f9abb2015-09-30 14:47:37 -0400409 if (crtc->funcs->cursor_set2) {
410 ret = crtc->funcs->cursor_set2(crtc, NULL, 0, 0, 0, 0, 0);
411 if (ret)
Dave Airlie48f87dd2015-10-16 10:10:32 +1000412 return ret;
Alex Deucher03f9abb2015-09-30 14:47:37 -0400413 } else if (crtc->funcs->cursor_set) {
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300414 ret = crtc->funcs->cursor_set(crtc, NULL, 0, 0, 0);
415 if (ret)
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200416 return ret;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300417 }
418
Daniel Vetter2d13b672012-12-11 13:47:23 +0100419 ret = drm_mode_set_config_internal(mode_set);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100420 if (ret)
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200421 return ret;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100422 }
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200423
424 return 0;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100425}
Rob Clark5ea1f752014-05-30 12:29:48 -0400426
427/**
428 * drm_fb_helper_restore_fbdev_mode_unlocked - restore fbdev configuration
429 * @fb_helper: fbcon to restore
430 *
431 * This should be called from driver's drm ->lastclose callback
432 * when implementing an fbcon on top of kms using this helper. This ensures that
433 * the user isn't greeted with a black screen when e.g. X dies.
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200434 *
435 * RETURNS:
436 * Zero if everything went ok, negative error code otherwise.
Rob Clark5ea1f752014-05-30 12:29:48 -0400437 */
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200438int drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper)
Rob Clark5ea1f752014-05-30 12:29:48 -0400439{
440 struct drm_device *dev = fb_helper->dev;
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200441 bool do_delayed;
442 int ret;
Dave Airliee2809c72014-11-26 13:15:24 +1000443
Daniel Vetterf64c5572015-08-25 15:45:13 +0200444 if (!drm_fbdev_emulation)
445 return -ENODEV;
446
Rob Clark5ea1f752014-05-30 12:29:48 -0400447 drm_modeset_lock_all(dev);
448 ret = restore_fbdev_mode(fb_helper);
Dave Airliee2809c72014-11-26 13:15:24 +1000449
450 do_delayed = fb_helper->delayed_hotplug;
451 if (do_delayed)
452 fb_helper->delayed_hotplug = false;
Rob Clark5ea1f752014-05-30 12:29:48 -0400453 drm_modeset_unlock_all(dev);
Dave Airliee2809c72014-11-26 13:15:24 +1000454
455 if (do_delayed)
456 drm_fb_helper_hotplug_event(fb_helper);
Rob Clark5ea1f752014-05-30 12:29:48 -0400457 return ret;
458}
459EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode_unlocked);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100460
Geert Uytterhoeven2c4124f2015-08-04 15:22:11 +0200461static bool drm_fb_helper_is_bound(struct drm_fb_helper *fb_helper)
462{
463 struct drm_device *dev = fb_helper->dev;
464 struct drm_crtc *crtc;
465 int bound = 0, crtcs_bound = 0;
466
467 /* Sometimes user space wants everything disabled, so don't steal the
468 * display if there's a master. */
Johannes Bergf17b3ea2016-08-11 11:50:21 +0200469 if (READ_ONCE(dev->master))
Geert Uytterhoeven2c4124f2015-08-04 15:22:11 +0200470 return false;
471
472 drm_for_each_crtc(crtc, dev) {
473 if (crtc->primary->fb)
474 crtcs_bound++;
475 if (crtc->primary->fb == fb_helper->fb)
476 bound++;
477 }
478
479 if (bound < crtcs_bound)
480 return false;
481
482 return true;
483}
484
485#ifdef CONFIG_MAGIC_SYSRQ
Daniel Vetterd21bf462013-01-20 18:09:52 +0100486/*
487 * restore fbcon display for all kms driver's using this helper, used for sysrq
488 * and panic handling.
489 */
Sachin Kamat78b9c352012-08-01 17:15:32 +0530490static bool drm_fb_helper_force_kernel_mode(void)
Dave Airlie785b93e2009-08-28 15:46:53 +1000491{
Dave Airlie785b93e2009-08-28 15:46:53 +1000492 bool ret, error = false;
493 struct drm_fb_helper *helper;
494
495 if (list_empty(&kernel_fb_helper_list))
496 return false;
497
498 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
Thierry Redingb77f0762014-04-29 11:44:32 +0200499 struct drm_device *dev = helper->dev;
500
501 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100502 continue;
503
Daniel Vetterdd908c82015-07-28 13:18:41 +0200504 drm_modeset_lock_all(dev);
Geert Uytterhoeven3d9e35a2015-08-04 15:22:10 +0200505 ret = restore_fbdev_mode(helper);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100506 if (ret)
507 error = true;
Daniel Vettercb597bb2014-07-27 19:09:33 +0200508 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000509 }
510 return error;
511}
512
Dave Airlie785b93e2009-08-28 15:46:53 +1000513static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
514{
Daniel Vetterd21bf462013-01-20 18:09:52 +0100515 bool ret;
516 ret = drm_fb_helper_force_kernel_mode();
517 if (ret == true)
518 DRM_ERROR("Failed to restore crtc configuration\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000519}
520static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
521
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700522static void drm_fb_helper_sysrq(int dummy1)
Dave Airlie785b93e2009-08-28 15:46:53 +1000523{
524 schedule_work(&drm_fb_helper_restore_work);
525}
526
527static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = {
528 .handler = drm_fb_helper_sysrq,
529 .help_msg = "force-fb(V)",
530 .action_msg = "Restore framebuffer console",
531};
Randy Dunlapb8c40d62010-03-25 18:29:05 +0000532#else
533static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
Mikael Petterssonbea1d352009-09-28 18:26:25 +0200534#endif
Dave Airlie785b93e2009-08-28 15:46:53 +1000535
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100536static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
Dave Airlie785b93e2009-08-28 15:46:53 +1000537{
538 struct drm_fb_helper *fb_helper = info->par;
539 struct drm_device *dev = fb_helper->dev;
540 struct drm_crtc *crtc;
Jesse Barnes023eb572010-07-02 10:48:08 -0700541 struct drm_connector *connector;
Jesse Barnes023eb572010-07-02 10:48:08 -0700542 int i, j;
Dave Airlie785b93e2009-08-28 15:46:53 +1000543
544 /*
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100545 * For each CRTC in this fb, turn the connectors on/off.
Dave Airlie785b93e2009-08-28 15:46:53 +1000546 */
Daniel Vetter84849902012-12-02 00:28:11 +0100547 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +0100548 if (!drm_fb_helper_is_bound(fb_helper)) {
549 drm_modeset_unlock_all(dev);
550 return;
551 }
552
Jesse Barnese87b2c42009-09-17 18:14:41 -0700553 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie8be48d92010-03-30 05:34:14 +0000554 crtc = fb_helper->crtc_info[i].mode_set.crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000555
Dave Airlie8be48d92010-03-30 05:34:14 +0000556 if (!crtc->enabled)
557 continue;
Dave Airlie785b93e2009-08-28 15:46:53 +1000558
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100559 /* Walk the connectors & encoders on this fb turning them on/off */
Jesse Barnes023eb572010-07-02 10:48:08 -0700560 for (j = 0; j < fb_helper->connector_count; j++) {
561 connector = fb_helper->connector_info[j]->connector;
Daniel Vettere04190e2012-09-07 10:14:52 +0200562 connector->funcs->dpms(connector, dpms_mode);
Rob Clark58495562012-10-11 20:50:56 -0500563 drm_object_property_set_value(&connector->base,
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100564 dev->mode_config.dpms_property, dpms_mode);
Jesse Barnes023eb572010-07-02 10:48:08 -0700565 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000566 }
Daniel Vetter84849902012-12-02 00:28:11 +0100567 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000568}
569
Daniel Vetter207fd322013-01-20 22:13:14 +0100570/**
571 * drm_fb_helper_blank - implementation for ->fb_blank
572 * @blank: desired blanking state
573 * @info: fbdev registered by the helper
574 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000575int drm_fb_helper_blank(int blank, struct fb_info *info)
576{
Daniel Vetterc50bfd02015-07-28 13:18:40 +0200577 if (oops_in_progress)
578 return -EBUSY;
579
Dave Airlie785b93e2009-08-28 15:46:53 +1000580 switch (blank) {
James Simmons731b5a12009-10-29 20:39:07 +0000581 /* Display: On; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000582 case FB_BLANK_UNBLANK:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100583 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
Dave Airlie785b93e2009-08-28 15:46:53 +1000584 break;
James Simmons731b5a12009-10-29 20:39:07 +0000585 /* Display: Off; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000586 case FB_BLANK_NORMAL:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100587 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000588 break;
James Simmons731b5a12009-10-29 20:39:07 +0000589 /* Display: Off; HSync: Off, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000590 case FB_BLANK_HSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100591 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000592 break;
James Simmons731b5a12009-10-29 20:39:07 +0000593 /* Display: Off; HSync: On, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000594 case FB_BLANK_VSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100595 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
Dave Airlie785b93e2009-08-28 15:46:53 +1000596 break;
James Simmons731b5a12009-10-29 20:39:07 +0000597 /* Display: Off; HSync: Off, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000598 case FB_BLANK_POWERDOWN:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100599 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
Dave Airlie785b93e2009-08-28 15:46:53 +1000600 break;
601 }
602 return 0;
603}
604EXPORT_SYMBOL(drm_fb_helper_blank);
605
606static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper)
607{
608 int i;
609
Dave Airlie6e86d582016-04-27 11:24:51 +1000610 for (i = 0; i < helper->connector_count; i++) {
611 drm_connector_unreference(helper->connector_info[i]->connector);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000612 kfree(helper->connector_info[i]);
Dave Airlie6e86d582016-04-27 11:24:51 +1000613 }
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000614 kfree(helper->connector_info);
Sascha Hauera1b77362012-02-01 11:38:22 +0100615 for (i = 0; i < helper->crtc_count; i++) {
Dave Airlie785b93e2009-08-28 15:46:53 +1000616 kfree(helper->crtc_info[i].mode_set.connectors);
Sascha Hauera1b77362012-02-01 11:38:22 +0100617 if (helper->crtc_info[i].mode_set.mode)
618 drm_mode_destroy(helper->dev, helper->crtc_info[i].mode_set.mode);
619 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000620 kfree(helper->crtc_info);
621}
622
Noralf Trønnescfe63422016-08-23 13:54:06 +0200623static void drm_fb_helper_resume_worker(struct work_struct *work)
624{
625 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper,
626 resume_work);
627
628 console_lock();
629 fb_set_suspend(helper->fbdev, 0);
630 console_unlock();
631}
632
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200633static void drm_fb_helper_dirty_work(struct work_struct *work)
634{
635 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper,
636 dirty_work);
637 struct drm_clip_rect *clip = &helper->dirty_clip;
638 struct drm_clip_rect clip_copy;
639 unsigned long flags;
640
641 spin_lock_irqsave(&helper->dirty_lock, flags);
642 clip_copy = *clip;
643 clip->x1 = clip->y1 = ~0;
644 clip->x2 = clip->y2 = 0;
645 spin_unlock_irqrestore(&helper->dirty_lock, flags);
646
647 helper->fb->funcs->dirty(helper->fb, NULL, 0, 0, &clip_copy, 1);
648}
649
Daniel Vetter207fd322013-01-20 22:13:14 +0100650/**
Thierry Reding10a23102014-06-27 17:19:24 +0200651 * drm_fb_helper_prepare - setup a drm_fb_helper structure
652 * @dev: DRM device
653 * @helper: driver-allocated fbdev helper structure to set up
654 * @funcs: pointer to structure of functions associate with this helper
655 *
656 * Sets up the bare minimum to make the framebuffer helper usable. This is
657 * useful to implement race-free initialization of the polling helpers.
658 */
659void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
660 const struct drm_fb_helper_funcs *funcs)
661{
662 INIT_LIST_HEAD(&helper->kernel_fb_list);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200663 spin_lock_init(&helper->dirty_lock);
Noralf Trønnescfe63422016-08-23 13:54:06 +0200664 INIT_WORK(&helper->resume_work, drm_fb_helper_resume_worker);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200665 INIT_WORK(&helper->dirty_work, drm_fb_helper_dirty_work);
666 helper->dirty_clip.x1 = helper->dirty_clip.y1 = ~0;
Thierry Reding10a23102014-06-27 17:19:24 +0200667 helper->funcs = funcs;
668 helper->dev = dev;
669}
670EXPORT_SYMBOL(drm_fb_helper_prepare);
671
672/**
Daniel Vetter207fd322013-01-20 22:13:14 +0100673 * drm_fb_helper_init - initialize a drm_fb_helper structure
674 * @dev: drm device
675 * @fb_helper: driver-allocated fbdev helper structure to initialize
676 * @crtc_count: maximum number of crtcs to support in this fbdev emulation
677 * @max_conn_count: max connector count
678 *
679 * This allocates the structures for the fbdev helper with the given limits.
680 * Note that this won't yet touch the hardware (through the driver interfaces)
681 * nor register the fbdev. This is only done in drm_fb_helper_initial_config()
682 * to allow driver writes more control over the exact init sequence.
683 *
Thierry Reding10a23102014-06-27 17:19:24 +0200684 * Drivers must call drm_fb_helper_prepare() before calling this function.
Daniel Vetter207fd322013-01-20 22:13:14 +0100685 *
686 * RETURNS:
687 * Zero if everything went ok, nonzero otherwise.
688 */
Dave Airlie4abe3522010-03-30 05:34:18 +0000689int drm_fb_helper_init(struct drm_device *dev,
690 struct drm_fb_helper *fb_helper,
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000691 int crtc_count, int max_conn_count)
Dave Airlie785b93e2009-08-28 15:46:53 +1000692{
Dave Airlie785b93e2009-08-28 15:46:53 +1000693 struct drm_crtc *crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000694 int i;
695
Daniel Vetterf64c5572015-08-25 15:45:13 +0200696 if (!drm_fbdev_emulation)
697 return 0;
698
Xiubo Li04cfe972014-03-10 09:33:58 +0800699 if (!max_conn_count)
700 return -EINVAL;
701
Dave Airlie4abe3522010-03-30 05:34:18 +0000702 fb_helper->crtc_info = kcalloc(crtc_count, sizeof(struct drm_fb_helper_crtc), GFP_KERNEL);
703 if (!fb_helper->crtc_info)
Dave Airlie785b93e2009-08-28 15:46:53 +1000704 return -ENOMEM;
705
Dave Airlie4abe3522010-03-30 05:34:18 +0000706 fb_helper->crtc_count = crtc_count;
707 fb_helper->connector_info = kcalloc(dev->mode_config.num_connector, sizeof(struct drm_fb_helper_connector *), GFP_KERNEL);
708 if (!fb_helper->connector_info) {
709 kfree(fb_helper->crtc_info);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000710 return -ENOMEM;
711 }
Dave Airlie65c2a892014-06-05 14:01:30 +1000712 fb_helper->connector_info_alloc_count = dev->mode_config.num_connector;
Dave Airlie4abe3522010-03-30 05:34:18 +0000713 fb_helper->connector_count = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000714
715 for (i = 0; i < crtc_count; i++) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000716 fb_helper->crtc_info[i].mode_set.connectors =
Dave Airlie785b93e2009-08-28 15:46:53 +1000717 kcalloc(max_conn_count,
718 sizeof(struct drm_connector *),
719 GFP_KERNEL);
720
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200721 if (!fb_helper->crtc_info[i].mode_set.connectors)
Dave Airlie785b93e2009-08-28 15:46:53 +1000722 goto out_free;
Dave Airlie4abe3522010-03-30 05:34:18 +0000723 fb_helper->crtc_info[i].mode_set.num_connectors = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000724 }
725
726 i = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200727 drm_for_each_crtc(crtc, dev) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000728 fb_helper->crtc_info[i].mode_set.crtc = crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000729 i++;
730 }
Sascha Hauere9ad3182012-02-01 11:38:25 +0100731
Dave Airlie785b93e2009-08-28 15:46:53 +1000732 return 0;
733out_free:
Dave Airlie4abe3522010-03-30 05:34:18 +0000734 drm_fb_helper_crtc_free(fb_helper);
Dave Airlie785b93e2009-08-28 15:46:53 +1000735 return -ENOMEM;
736}
Dave Airlie4abe3522010-03-30 05:34:18 +0000737EXPORT_SYMBOL(drm_fb_helper_init);
738
Archit Tanejab8017d62015-07-22 14:57:56 +0530739/**
740 * drm_fb_helper_alloc_fbi - allocate fb_info and some of its members
741 * @fb_helper: driver-allocated fbdev helper
742 *
743 * A helper to alloc fb_info and the members cmap and apertures. Called
744 * by the driver within the fb_probe fb_helper callback function.
745 *
746 * RETURNS:
747 * fb_info pointer if things went okay, pointer containing error code
748 * otherwise
749 */
750struct fb_info *drm_fb_helper_alloc_fbi(struct drm_fb_helper *fb_helper)
751{
752 struct device *dev = fb_helper->dev->dev;
753 struct fb_info *info;
754 int ret;
755
756 info = framebuffer_alloc(0, dev);
757 if (!info)
758 return ERR_PTR(-ENOMEM);
759
760 ret = fb_alloc_cmap(&info->cmap, 256, 0);
761 if (ret)
762 goto err_release;
763
764 info->apertures = alloc_apertures(1);
765 if (!info->apertures) {
766 ret = -ENOMEM;
767 goto err_free_cmap;
768 }
769
770 fb_helper->fbdev = info;
771
772 return info;
773
774err_free_cmap:
775 fb_dealloc_cmap(&info->cmap);
776err_release:
777 framebuffer_release(info);
778 return ERR_PTR(ret);
779}
780EXPORT_SYMBOL(drm_fb_helper_alloc_fbi);
781
782/**
783 * drm_fb_helper_unregister_fbi - unregister fb_info framebuffer device
784 * @fb_helper: driver-allocated fbdev helper
785 *
786 * A wrapper around unregister_framebuffer, to release the fb_info
787 * framebuffer device
788 */
789void drm_fb_helper_unregister_fbi(struct drm_fb_helper *fb_helper)
790{
791 if (fb_helper && fb_helper->fbdev)
792 unregister_framebuffer(fb_helper->fbdev);
793}
794EXPORT_SYMBOL(drm_fb_helper_unregister_fbi);
795
796/**
797 * drm_fb_helper_release_fbi - dealloc fb_info and its members
798 * @fb_helper: driver-allocated fbdev helper
799 *
800 * A helper to free memory taken by fb_info and the members cmap and
801 * apertures
802 */
803void drm_fb_helper_release_fbi(struct drm_fb_helper *fb_helper)
804{
805 if (fb_helper) {
806 struct fb_info *info = fb_helper->fbdev;
807
808 if (info) {
809 if (info->cmap.len)
810 fb_dealloc_cmap(&info->cmap);
811 framebuffer_release(info);
812 }
813
814 fb_helper->fbdev = NULL;
815 }
816}
817EXPORT_SYMBOL(drm_fb_helper_release_fbi);
818
Dave Airlie4abe3522010-03-30 05:34:18 +0000819void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
820{
Daniel Vetterf64c5572015-08-25 15:45:13 +0200821 if (!drm_fbdev_emulation)
822 return;
823
Dave Airlie4abe3522010-03-30 05:34:18 +0000824 if (!list_empty(&fb_helper->kernel_fb_list)) {
825 list_del(&fb_helper->kernel_fb_list);
826 if (list_empty(&kernel_fb_helper_list)) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000827 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
828 }
829 }
830
831 drm_fb_helper_crtc_free(fb_helper);
832
Dave Airlie4abe3522010-03-30 05:34:18 +0000833}
834EXPORT_SYMBOL(drm_fb_helper_fini);
Dave Airlie785b93e2009-08-28 15:46:53 +1000835
Archit Taneja47074ab2015-07-22 14:57:57 +0530836/**
837 * drm_fb_helper_unlink_fbi - wrapper around unlink_framebuffer
838 * @fb_helper: driver-allocated fbdev helper
839 *
840 * A wrapper around unlink_framebuffer implemented by fbdev core
841 */
842void drm_fb_helper_unlink_fbi(struct drm_fb_helper *fb_helper)
843{
844 if (fb_helper && fb_helper->fbdev)
845 unlink_framebuffer(fb_helper->fbdev);
846}
847EXPORT_SYMBOL(drm_fb_helper_unlink_fbi);
848
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200849static void drm_fb_helper_dirty(struct fb_info *info, u32 x, u32 y,
850 u32 width, u32 height)
851{
852 struct drm_fb_helper *helper = info->par;
853 struct drm_clip_rect *clip = &helper->dirty_clip;
854 unsigned long flags;
855
856 if (!helper->fb->funcs->dirty)
857 return;
858
859 spin_lock_irqsave(&helper->dirty_lock, flags);
860 clip->x1 = min_t(u32, clip->x1, x);
861 clip->y1 = min_t(u32, clip->y1, y);
862 clip->x2 = max_t(u32, clip->x2, x + width);
863 clip->y2 = max_t(u32, clip->y2, y + height);
864 spin_unlock_irqrestore(&helper->dirty_lock, flags);
865
866 schedule_work(&helper->dirty_work);
867}
868
869/**
870 * drm_fb_helper_deferred_io() - fbdev deferred_io callback function
871 * @info: fb_info struct pointer
872 * @pagelist: list of dirty mmap framebuffer pages
873 *
874 * This function is used as the &fb_deferred_io ->deferred_io
875 * callback function for flushing the fbdev mmap writes.
876 */
877void drm_fb_helper_deferred_io(struct fb_info *info,
878 struct list_head *pagelist)
879{
880 unsigned long start, end, min, max;
881 struct page *page;
882 u32 y1, y2;
883
884 min = ULONG_MAX;
885 max = 0;
886 list_for_each_entry(page, pagelist, lru) {
887 start = page->index << PAGE_SHIFT;
888 end = start + PAGE_SIZE - 1;
889 min = min(min, start);
890 max = max(max, end);
891 }
892
893 if (min < max) {
894 y1 = min / info->fix.line_length;
895 y2 = min_t(u32, DIV_ROUND_UP(max, info->fix.line_length),
896 info->var.yres);
897 drm_fb_helper_dirty(info, 0, y1, info->var.xres, y2 - y1);
898 }
899}
900EXPORT_SYMBOL(drm_fb_helper_deferred_io);
901
Archit Tanejacbb1a822015-07-31 16:21:41 +0530902/**
903 * drm_fb_helper_sys_read - wrapper around fb_sys_read
904 * @info: fb_info struct pointer
905 * @buf: userspace buffer to read from framebuffer memory
906 * @count: number of bytes to read from framebuffer memory
907 * @ppos: read offset within framebuffer memory
908 *
909 * A wrapper around fb_sys_read implemented by fbdev core
910 */
911ssize_t drm_fb_helper_sys_read(struct fb_info *info, char __user *buf,
912 size_t count, loff_t *ppos)
913{
914 return fb_sys_read(info, buf, count, ppos);
915}
916EXPORT_SYMBOL(drm_fb_helper_sys_read);
917
918/**
919 * drm_fb_helper_sys_write - wrapper around fb_sys_write
920 * @info: fb_info struct pointer
921 * @buf: userspace buffer to write to framebuffer memory
922 * @count: number of bytes to write to framebuffer memory
923 * @ppos: write offset within framebuffer memory
924 *
925 * A wrapper around fb_sys_write implemented by fbdev core
926 */
927ssize_t drm_fb_helper_sys_write(struct fb_info *info, const char __user *buf,
928 size_t count, loff_t *ppos)
929{
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200930 ssize_t ret;
931
932 ret = fb_sys_write(info, buf, count, ppos);
933 if (ret > 0)
934 drm_fb_helper_dirty(info, 0, 0, info->var.xres,
935 info->var.yres);
936
937 return ret;
Archit Tanejacbb1a822015-07-31 16:21:41 +0530938}
939EXPORT_SYMBOL(drm_fb_helper_sys_write);
940
Archit Taneja742547b2015-07-31 16:21:42 +0530941/**
942 * drm_fb_helper_sys_fillrect - wrapper around sys_fillrect
943 * @info: fbdev registered by the helper
944 * @rect: info about rectangle to fill
945 *
946 * A wrapper around sys_fillrect implemented by fbdev core
947 */
948void drm_fb_helper_sys_fillrect(struct fb_info *info,
949 const struct fb_fillrect *rect)
950{
951 sys_fillrect(info, rect);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200952 drm_fb_helper_dirty(info, rect->dx, rect->dy,
953 rect->width, rect->height);
Archit Taneja742547b2015-07-31 16:21:42 +0530954}
955EXPORT_SYMBOL(drm_fb_helper_sys_fillrect);
956
957/**
958 * drm_fb_helper_sys_copyarea - wrapper around sys_copyarea
959 * @info: fbdev registered by the helper
960 * @area: info about area to copy
961 *
962 * A wrapper around sys_copyarea implemented by fbdev core
963 */
964void drm_fb_helper_sys_copyarea(struct fb_info *info,
965 const struct fb_copyarea *area)
966{
967 sys_copyarea(info, area);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200968 drm_fb_helper_dirty(info, area->dx, area->dy,
969 area->width, area->height);
Archit Taneja742547b2015-07-31 16:21:42 +0530970}
971EXPORT_SYMBOL(drm_fb_helper_sys_copyarea);
972
973/**
974 * drm_fb_helper_sys_imageblit - wrapper around sys_imageblit
975 * @info: fbdev registered by the helper
976 * @image: info about image to blit
977 *
978 * A wrapper around sys_imageblit implemented by fbdev core
979 */
980void drm_fb_helper_sys_imageblit(struct fb_info *info,
981 const struct fb_image *image)
982{
983 sys_imageblit(info, image);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200984 drm_fb_helper_dirty(info, image->dx, image->dy,
985 image->width, image->height);
Archit Taneja742547b2015-07-31 16:21:42 +0530986}
987EXPORT_SYMBOL(drm_fb_helper_sys_imageblit);
988
989/**
990 * drm_fb_helper_cfb_fillrect - wrapper around cfb_fillrect
991 * @info: fbdev registered by the helper
992 * @rect: info about rectangle to fill
993 *
994 * A wrapper around cfb_imageblit implemented by fbdev core
995 */
996void drm_fb_helper_cfb_fillrect(struct fb_info *info,
997 const struct fb_fillrect *rect)
998{
999 cfb_fillrect(info, rect);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001000 drm_fb_helper_dirty(info, rect->dx, rect->dy,
1001 rect->width, rect->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301002}
1003EXPORT_SYMBOL(drm_fb_helper_cfb_fillrect);
1004
1005/**
1006 * drm_fb_helper_cfb_copyarea - wrapper around cfb_copyarea
1007 * @info: fbdev registered by the helper
1008 * @area: info about area to copy
1009 *
1010 * A wrapper around cfb_copyarea implemented by fbdev core
1011 */
1012void drm_fb_helper_cfb_copyarea(struct fb_info *info,
1013 const struct fb_copyarea *area)
1014{
1015 cfb_copyarea(info, area);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001016 drm_fb_helper_dirty(info, area->dx, area->dy,
1017 area->width, area->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301018}
1019EXPORT_SYMBOL(drm_fb_helper_cfb_copyarea);
1020
1021/**
1022 * drm_fb_helper_cfb_imageblit - wrapper around cfb_imageblit
1023 * @info: fbdev registered by the helper
1024 * @image: info about image to blit
1025 *
1026 * A wrapper around cfb_imageblit implemented by fbdev core
1027 */
1028void drm_fb_helper_cfb_imageblit(struct fb_info *info,
1029 const struct fb_image *image)
1030{
1031 cfb_imageblit(info, image);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001032 drm_fb_helper_dirty(info, image->dx, image->dy,
1033 image->width, image->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301034}
1035EXPORT_SYMBOL(drm_fb_helper_cfb_imageblit);
1036
Archit Tanejafdefa582015-07-31 16:21:43 +05301037/**
1038 * drm_fb_helper_set_suspend - wrapper around fb_set_suspend
1039 * @fb_helper: driver-allocated fbdev helper
Daniel Vetter28579f32016-08-23 17:27:27 +02001040 * @suspend: whether to suspend or resume
Archit Tanejafdefa582015-07-31 16:21:43 +05301041 *
Noralf Trønnescfe63422016-08-23 13:54:06 +02001042 * A wrapper around fb_set_suspend implemented by fbdev core.
1043 * Use drm_fb_helper_set_suspend_unlocked() if you don't need to take
1044 * the lock yourself
Archit Tanejafdefa582015-07-31 16:21:43 +05301045 */
Daniel Vetter28579f32016-08-23 17:27:27 +02001046void drm_fb_helper_set_suspend(struct drm_fb_helper *fb_helper, bool suspend)
Archit Tanejafdefa582015-07-31 16:21:43 +05301047{
1048 if (fb_helper && fb_helper->fbdev)
Daniel Vetter28579f32016-08-23 17:27:27 +02001049 fb_set_suspend(fb_helper->fbdev, suspend);
Archit Tanejafdefa582015-07-31 16:21:43 +05301050}
1051EXPORT_SYMBOL(drm_fb_helper_set_suspend);
1052
Noralf Trønnescfe63422016-08-23 13:54:06 +02001053/**
1054 * drm_fb_helper_set_suspend_unlocked - wrapper around fb_set_suspend that also
1055 * takes the console lock
1056 * @fb_helper: driver-allocated fbdev helper
Daniel Vetter28579f32016-08-23 17:27:27 +02001057 * @suspend: whether to suspend or resume
Noralf Trønnescfe63422016-08-23 13:54:06 +02001058 *
1059 * A wrapper around fb_set_suspend() that takes the console lock. If the lock
1060 * isn't available on resume, a worker is tasked with waiting for the lock
1061 * to become available. The console lock can be pretty contented on resume
1062 * due to all the printk activity.
1063 *
1064 * This function can be called multiple times with the same state since
1065 * &fb_info->state is checked to see if fbdev is running or not before locking.
1066 *
1067 * Use drm_fb_helper_set_suspend() if you need to take the lock yourself.
1068 */
1069void drm_fb_helper_set_suspend_unlocked(struct drm_fb_helper *fb_helper,
Daniel Vetter28579f32016-08-23 17:27:27 +02001070 bool suspend)
Noralf Trønnescfe63422016-08-23 13:54:06 +02001071{
1072 if (!fb_helper || !fb_helper->fbdev)
1073 return;
1074
1075 /* make sure there's no pending/ongoing resume */
1076 flush_work(&fb_helper->resume_work);
1077
1078 if (suspend) {
1079 if (fb_helper->fbdev->state != FBINFO_STATE_RUNNING)
1080 return;
1081
1082 console_lock();
1083
1084 } else {
1085 if (fb_helper->fbdev->state == FBINFO_STATE_RUNNING)
1086 return;
1087
1088 if (!console_trylock()) {
1089 schedule_work(&fb_helper->resume_work);
1090 return;
1091 }
1092 }
1093
1094 fb_set_suspend(fb_helper->fbdev, suspend);
1095 console_unlock();
1096}
1097EXPORT_SYMBOL(drm_fb_helper_set_suspend_unlocked);
1098
Dave Airliec850cb72009-10-23 18:49:03 +10001099static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green,
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001100 u16 blue, u16 regno, struct fb_info *info)
1101{
1102 struct drm_fb_helper *fb_helper = info->par;
1103 struct drm_framebuffer *fb = fb_helper->fb;
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001104
Dave Airliec850cb72009-10-23 18:49:03 +10001105 if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
1106 u32 *palette;
1107 u32 value;
1108 /* place color in psuedopalette */
1109 if (regno > 16)
1110 return -EINVAL;
1111 palette = (u32 *)info->pseudo_palette;
1112 red >>= (16 - info->var.red.length);
1113 green >>= (16 - info->var.green.length);
1114 blue >>= (16 - info->var.blue.length);
1115 value = (red << info->var.red.offset) |
1116 (green << info->var.green.offset) |
1117 (blue << info->var.blue.offset);
Rob Clark9da12b6a2011-02-16 02:45:51 +00001118 if (info->var.transp.length > 0) {
1119 u32 mask = (1 << info->var.transp.length) - 1;
1120 mask <<= info->var.transp.offset;
1121 value |= mask;
1122 }
Dave Airliec850cb72009-10-23 18:49:03 +10001123 palette[regno] = value;
1124 return 0;
1125 }
1126
Ville Syrjälä04c0c562013-05-27 20:19:57 +03001127 /*
1128 * The driver really shouldn't advertise pseudo/directcolor
1129 * visuals if it can't deal with the palette.
1130 */
1131 if (WARN_ON(!fb_helper->funcs->gamma_set ||
1132 !fb_helper->funcs->gamma_get))
1133 return -EINVAL;
1134
Daniel Vetterfef14802016-03-30 11:51:17 +02001135 WARN_ON(fb->bits_per_pixel != 8);
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001136
Daniel Vetterfef14802016-03-30 11:51:17 +02001137 fb_helper->funcs->gamma_set(crtc, red, green, blue, regno);
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001138
Dave Airliec850cb72009-10-23 18:49:03 +10001139 return 0;
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001140}
1141
Daniel Vetter207fd322013-01-20 22:13:14 +01001142/**
1143 * drm_fb_helper_setcmap - implementation for ->fb_setcmap
1144 * @cmap: cmap to set
1145 * @info: fbdev registered by the helper
1146 */
Dave Airlie068143d2009-10-05 09:58:02 +10001147int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
1148{
1149 struct drm_fb_helper *fb_helper = info->par;
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001150 struct drm_device *dev = fb_helper->dev;
Jani Nikulabe26a662015-03-11 11:51:06 +02001151 const struct drm_crtc_helper_funcs *crtc_funcs;
Dave Airlie068143d2009-10-05 09:58:02 +10001152 u16 *red, *green, *blue, *transp;
1153 struct drm_crtc *crtc;
roel062ac622011-03-07 18:00:34 +01001154 int i, j, rc = 0;
Dave Airlie068143d2009-10-05 09:58:02 +10001155 int start;
1156
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001157 if (oops_in_progress)
Rui Wang9aa609e2014-12-15 11:28:26 -08001158 return -EBUSY;
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001159
1160 drm_modeset_lock_all(dev);
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001161 if (!drm_fb_helper_is_bound(fb_helper)) {
1162 drm_modeset_unlock_all(dev);
1163 return -EBUSY;
1164 }
1165
Dave Airlie8be48d92010-03-30 05:34:14 +00001166 for (i = 0; i < fb_helper->crtc_count; i++) {
1167 crtc = fb_helper->crtc_info[i].mode_set.crtc;
1168 crtc_funcs = crtc->helper_private;
Dave Airlie068143d2009-10-05 09:58:02 +10001169
1170 red = cmap->red;
1171 green = cmap->green;
1172 blue = cmap->blue;
1173 transp = cmap->transp;
1174 start = cmap->start;
1175
roel062ac622011-03-07 18:00:34 +01001176 for (j = 0; j < cmap->len; j++) {
Dave Airlie068143d2009-10-05 09:58:02 +10001177 u16 hred, hgreen, hblue, htransp = 0xffff;
1178
1179 hred = *red++;
1180 hgreen = *green++;
1181 hblue = *blue++;
1182
1183 if (transp)
1184 htransp = *transp++;
1185
Dave Airliec850cb72009-10-23 18:49:03 +10001186 rc = setcolreg(crtc, hred, hgreen, hblue, start++, info);
1187 if (rc)
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001188 goto out;
Dave Airlie068143d2009-10-05 09:58:02 +10001189 }
Ville Syrjälä04c0c562013-05-27 20:19:57 +03001190 if (crtc_funcs->load_lut)
1191 crtc_funcs->load_lut(crtc);
Dave Airlie068143d2009-10-05 09:58:02 +10001192 }
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001193 out:
1194 drm_modeset_unlock_all(dev);
Dave Airlie068143d2009-10-05 09:58:02 +10001195 return rc;
1196}
1197EXPORT_SYMBOL(drm_fb_helper_setcmap);
1198
Daniel Vetter207fd322013-01-20 22:13:14 +01001199/**
1200 * drm_fb_helper_check_var - implementation for ->fb_check_var
1201 * @var: screeninfo to check
1202 * @info: fbdev registered by the helper
1203 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001204int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
1205 struct fb_info *info)
1206{
1207 struct drm_fb_helper *fb_helper = info->par;
1208 struct drm_framebuffer *fb = fb_helper->fb;
1209 int depth;
1210
Jason Wesself90ebd92010-08-05 09:22:32 -05001211 if (var->pixclock != 0 || in_dbg_master())
Dave Airlie785b93e2009-08-28 15:46:53 +10001212 return -EINVAL;
1213
1214 /* Need to resize the fb object !!! */
Chris Wilson62fb3762012-03-26 21:15:53 +01001215 if (var->bits_per_pixel > fb->bits_per_pixel ||
1216 var->xres > fb->width || var->yres > fb->height ||
1217 var->xres_virtual > fb->width || var->yres_virtual > fb->height) {
Dave Airlie509c7d82010-01-08 09:27:08 +10001218 DRM_DEBUG("fb userspace requested width/height/bpp is greater than current fb "
Chris Wilson62fb3762012-03-26 21:15:53 +01001219 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
1220 var->xres, var->yres, var->bits_per_pixel,
1221 var->xres_virtual, var->yres_virtual,
Dave Airlie509c7d82010-01-08 09:27:08 +10001222 fb->width, fb->height, fb->bits_per_pixel);
Dave Airlie785b93e2009-08-28 15:46:53 +10001223 return -EINVAL;
1224 }
1225
1226 switch (var->bits_per_pixel) {
1227 case 16:
1228 depth = (var->green.length == 6) ? 16 : 15;
1229 break;
1230 case 32:
1231 depth = (var->transp.length > 0) ? 32 : 24;
1232 break;
1233 default:
1234 depth = var->bits_per_pixel;
1235 break;
1236 }
1237
1238 switch (depth) {
1239 case 8:
1240 var->red.offset = 0;
1241 var->green.offset = 0;
1242 var->blue.offset = 0;
1243 var->red.length = 8;
1244 var->green.length = 8;
1245 var->blue.length = 8;
1246 var->transp.length = 0;
1247 var->transp.offset = 0;
1248 break;
1249 case 15:
1250 var->red.offset = 10;
1251 var->green.offset = 5;
1252 var->blue.offset = 0;
1253 var->red.length = 5;
1254 var->green.length = 5;
1255 var->blue.length = 5;
1256 var->transp.length = 1;
1257 var->transp.offset = 15;
1258 break;
1259 case 16:
1260 var->red.offset = 11;
1261 var->green.offset = 5;
1262 var->blue.offset = 0;
1263 var->red.length = 5;
1264 var->green.length = 6;
1265 var->blue.length = 5;
1266 var->transp.length = 0;
1267 var->transp.offset = 0;
1268 break;
1269 case 24:
1270 var->red.offset = 16;
1271 var->green.offset = 8;
1272 var->blue.offset = 0;
1273 var->red.length = 8;
1274 var->green.length = 8;
1275 var->blue.length = 8;
1276 var->transp.length = 0;
1277 var->transp.offset = 0;
1278 break;
1279 case 32:
1280 var->red.offset = 16;
1281 var->green.offset = 8;
1282 var->blue.offset = 0;
1283 var->red.length = 8;
1284 var->green.length = 8;
1285 var->blue.length = 8;
1286 var->transp.length = 8;
1287 var->transp.offset = 24;
1288 break;
1289 default:
1290 return -EINVAL;
1291 }
1292 return 0;
1293}
1294EXPORT_SYMBOL(drm_fb_helper_check_var);
1295
Daniel Vetter207fd322013-01-20 22:13:14 +01001296/**
1297 * drm_fb_helper_set_par - implementation for ->fb_set_par
1298 * @info: fbdev registered by the helper
1299 *
1300 * This will let fbcon do the mode init and is called at initialization time by
1301 * the fbdev core when registering the driver, and later on through the hotplug
1302 * callback.
1303 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001304int drm_fb_helper_set_par(struct fb_info *info)
1305{
1306 struct drm_fb_helper *fb_helper = info->par;
Dave Airlie785b93e2009-08-28 15:46:53 +10001307 struct fb_var_screeninfo *var = &info->var;
Dave Airlie785b93e2009-08-28 15:46:53 +10001308
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001309 if (oops_in_progress)
1310 return -EBUSY;
1311
Clemens Ladisch5349ef32009-11-04 09:42:52 +01001312 if (var->pixclock != 0) {
Pavel Roskin172e91f2010-02-11 14:31:32 +10001313 DRM_ERROR("PIXEL CLOCK SET\n");
Dave Airlie785b93e2009-08-28 15:46:53 +10001314 return -EINVAL;
1315 }
1316
Rob Clark5ea1f752014-05-30 12:29:48 -04001317 drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
Dave Airlie4abe3522010-03-30 05:34:18 +00001318
Dave Airlie785b93e2009-08-28 15:46:53 +10001319 return 0;
1320}
1321EXPORT_SYMBOL(drm_fb_helper_set_par);
1322
Rob Clark1edf0262015-08-25 15:35:59 -04001323static int pan_display_atomic(struct fb_var_screeninfo *var,
Daniel Vettera0fb6ad2015-10-16 19:11:30 +02001324 struct fb_info *info)
Rob Clark1edf0262015-08-25 15:35:59 -04001325{
1326 struct drm_fb_helper *fb_helper = info->par;
1327 struct drm_device *dev = fb_helper->dev;
1328 struct drm_atomic_state *state;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001329 struct drm_plane *plane;
Rob Clark1edf0262015-08-25 15:35:59 -04001330 int i, ret;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001331 unsigned plane_mask;
Rob Clark1edf0262015-08-25 15:35:59 -04001332
1333 state = drm_atomic_state_alloc(dev);
1334 if (!state)
1335 return -ENOMEM;
1336
1337 state->acquire_ctx = dev->mode_config.acquire_ctx;
1338retry:
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001339 plane_mask = 0;
Rob Clark1edf0262015-08-25 15:35:59 -04001340 for(i = 0; i < fb_helper->crtc_count; i++) {
1341 struct drm_mode_set *mode_set;
1342
1343 mode_set = &fb_helper->crtc_info[i].mode_set;
1344
1345 mode_set->x = var->xoffset;
1346 mode_set->y = var->yoffset;
1347
1348 ret = __drm_atomic_helper_set_config(mode_set, state);
1349 if (ret != 0)
1350 goto fail;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001351
1352 plane = mode_set->crtc->primary;
Matt Roper7118fd92015-12-18 17:27:01 -08001353 plane_mask |= (1 << drm_plane_index(plane));
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001354 plane->old_fb = plane->fb;
Rob Clark1edf0262015-08-25 15:35:59 -04001355 }
1356
1357 ret = drm_atomic_commit(state);
1358 if (ret != 0)
1359 goto fail;
1360
1361 info->var.xoffset = var->xoffset;
1362 info->var.yoffset = var->yoffset;
1363
Rob Clark1edf0262015-08-25 15:35:59 -04001364
1365fail:
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001366 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Daniel Vettera0fb6ad2015-10-16 19:11:30 +02001367
Rob Clark1edf0262015-08-25 15:35:59 -04001368 if (ret == -EDEADLK)
1369 goto backoff;
1370
Daniel Vettera0fb6ad2015-10-16 19:11:30 +02001371 if (ret != 0)
1372 drm_atomic_state_free(state);
Rob Clark1edf0262015-08-25 15:35:59 -04001373
1374 return ret;
1375
1376backoff:
1377 drm_atomic_state_clear(state);
1378 drm_atomic_legacy_backoff(state);
1379
1380 goto retry;
1381}
1382
Daniel Vetter207fd322013-01-20 22:13:14 +01001383/**
1384 * drm_fb_helper_pan_display - implementation for ->fb_pan_display
1385 * @var: updated screen information
1386 * @info: fbdev registered by the helper
1387 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001388int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
1389 struct fb_info *info)
1390{
1391 struct drm_fb_helper *fb_helper = info->par;
1392 struct drm_device *dev = fb_helper->dev;
1393 struct drm_mode_set *modeset;
Dave Airlie785b93e2009-08-28 15:46:53 +10001394 int ret = 0;
1395 int i;
1396
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001397 if (oops_in_progress)
Rui Wang9aa609e2014-12-15 11:28:26 -08001398 return -EBUSY;
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001399
1400 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +01001401 if (!drm_fb_helper_is_bound(fb_helper)) {
1402 drm_modeset_unlock_all(dev);
1403 return -EBUSY;
1404 }
1405
Daniel Vetterd3a46182016-06-08 14:19:15 +02001406 if (dev->mode_config.funcs->atomic_commit) {
Rob Clark1edf0262015-08-25 15:35:59 -04001407 ret = pan_display_atomic(var, info);
1408 goto unlock;
1409 }
1410
Dave Airlie8be48d92010-03-30 05:34:14 +00001411 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001412 modeset = &fb_helper->crtc_info[i].mode_set;
1413
1414 modeset->x = var->xoffset;
1415 modeset->y = var->yoffset;
1416
1417 if (modeset->num_connectors) {
Daniel Vetter2d13b672012-12-11 13:47:23 +01001418 ret = drm_mode_set_config_internal(modeset);
Dave Airlie785b93e2009-08-28 15:46:53 +10001419 if (!ret) {
1420 info->var.xoffset = var->xoffset;
1421 info->var.yoffset = var->yoffset;
1422 }
1423 }
1424 }
Rob Clark1edf0262015-08-25 15:35:59 -04001425unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001426 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +10001427 return ret;
1428}
1429EXPORT_SYMBOL(drm_fb_helper_pan_display);
1430
Daniel Vetter8acf6582013-01-21 23:38:37 +01001431/*
Daniel Vetter207fd322013-01-20 22:13:14 +01001432 * Allocates the backing storage and sets up the fbdev info structure through
1433 * the ->fb_probe callback and then registers the fbdev and sets up the panic
1434 * notifier.
Daniel Vetter8acf6582013-01-21 23:38:37 +01001435 */
Daniel Vetterde1ace52013-01-20 21:50:49 +01001436static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
1437 int preferred_bpp)
Dave Airlie785b93e2009-08-28 15:46:53 +10001438{
Daniel Vetter8acf6582013-01-21 23:38:37 +01001439 int ret = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +10001440 int crtc_count = 0;
Dave Airlie4abe3522010-03-30 05:34:18 +00001441 int i;
Dave Airlie785b93e2009-08-28 15:46:53 +10001442 struct fb_info *info;
Dave Airlie38651672010-03-30 05:34:13 +00001443 struct drm_fb_helper_surface_size sizes;
Dave Airlie8be48d92010-03-30 05:34:14 +00001444 int gamma_size = 0;
Dave Airlie38651672010-03-30 05:34:13 +00001445
1446 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
1447 sizes.surface_depth = 24;
1448 sizes.surface_bpp = 32;
1449 sizes.fb_width = (unsigned)-1;
1450 sizes.fb_height = (unsigned)-1;
Dave Airlie785b93e2009-08-28 15:46:53 +10001451
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001452 /* if driver picks 8 or 16 by default use that
1453 for both depth/bpp */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001454 if (preferred_bpp != sizes.surface_bpp)
Dave Airlie38651672010-03-30 05:34:13 +00001455 sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001456
Dave Airlie785b93e2009-08-28 15:46:53 +10001457 /* first up get a count of crtcs now in use and new min/maxes width/heights */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001458 for (i = 0; i < fb_helper->connector_count; i++) {
1459 struct drm_fb_helper_connector *fb_helper_conn = fb_helper->connector_info[i];
Chris Wilson1794d252011-04-17 07:43:32 +01001460 struct drm_cmdline_mode *cmdline_mode;
Dave Airlie8ef86782009-09-26 06:39:00 +10001461
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001462 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
Dave Airlied50ba252009-09-23 14:44:08 +10001463
1464 if (cmdline_mode->bpp_specified) {
1465 switch (cmdline_mode->bpp) {
1466 case 8:
Dave Airlie38651672010-03-30 05:34:13 +00001467 sizes.surface_depth = sizes.surface_bpp = 8;
Dave Airlied50ba252009-09-23 14:44:08 +10001468 break;
1469 case 15:
Dave Airlie38651672010-03-30 05:34:13 +00001470 sizes.surface_depth = 15;
1471 sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +10001472 break;
1473 case 16:
Dave Airlie38651672010-03-30 05:34:13 +00001474 sizes.surface_depth = sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +10001475 break;
1476 case 24:
Dave Airlie38651672010-03-30 05:34:13 +00001477 sizes.surface_depth = sizes.surface_bpp = 24;
Dave Airlied50ba252009-09-23 14:44:08 +10001478 break;
1479 case 32:
Dave Airlie38651672010-03-30 05:34:13 +00001480 sizes.surface_depth = 24;
1481 sizes.surface_bpp = 32;
Dave Airlied50ba252009-09-23 14:44:08 +10001482 break;
1483 }
1484 break;
1485 }
1486 }
1487
Dave Airlie8be48d92010-03-30 05:34:14 +00001488 crtc_count = 0;
1489 for (i = 0; i < fb_helper->crtc_count; i++) {
1490 struct drm_display_mode *desired_mode;
Rob Clark0e3704c2015-03-11 10:23:14 -04001491 struct drm_mode_set *mode_set;
1492 int x, y, j;
1493 /* in case of tile group, are we the last tile vert or horiz?
1494 * If no tile group you are always the last one both vertically
1495 * and horizontally
1496 */
1497 bool lastv = true, lasth = true;
Rob Clark675c8322015-03-11 10:23:13 -04001498
Dave Airlie8be48d92010-03-30 05:34:14 +00001499 desired_mode = fb_helper->crtc_info[i].desired_mode;
Rob Clark0e3704c2015-03-11 10:23:14 -04001500 mode_set = &fb_helper->crtc_info[i].mode_set;
Rob Clark675c8322015-03-11 10:23:13 -04001501
1502 if (!desired_mode)
1503 continue;
1504
1505 crtc_count++;
1506
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001507 x = fb_helper->crtc_info[i].x;
1508 y = fb_helper->crtc_info[i].y;
Rob Clark675c8322015-03-11 10:23:13 -04001509
1510 if (gamma_size == 0)
1511 gamma_size = fb_helper->crtc_info[i].mode_set.crtc->gamma_size;
1512
1513 sizes.surface_width = max_t(u32, desired_mode->hdisplay + x, sizes.surface_width);
1514 sizes.surface_height = max_t(u32, desired_mode->vdisplay + y, sizes.surface_height);
Rob Clark0e3704c2015-03-11 10:23:14 -04001515
1516 for (j = 0; j < mode_set->num_connectors; j++) {
1517 struct drm_connector *connector = mode_set->connectors[j];
1518 if (connector->has_tile) {
1519 lasth = (connector->tile_h_loc == (connector->num_h_tile - 1));
1520 lastv = (connector->tile_v_loc == (connector->num_v_tile - 1));
1521 /* cloning to multiple tiles is just crazy-talk, so: */
1522 break;
1523 }
1524 }
1525
1526 if (lasth)
1527 sizes.fb_width = min_t(u32, desired_mode->hdisplay + x, sizes.fb_width);
1528 if (lastv)
1529 sizes.fb_height = min_t(u32, desired_mode->vdisplay + y, sizes.fb_height);
Dave Airlie785b93e2009-08-28 15:46:53 +10001530 }
1531
Dave Airlie38651672010-03-30 05:34:13 +00001532 if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001533 /* hmm everyone went away - assume VGA cable just fell out
1534 and will come back later. */
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001535 DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n");
Dave Airlie19b4b442010-03-30 05:34:16 +00001536 sizes.fb_width = sizes.surface_width = 1024;
1537 sizes.fb_height = sizes.surface_height = 768;
Dave Airlie785b93e2009-08-28 15:46:53 +10001538 }
1539
Dave Airlie38651672010-03-30 05:34:13 +00001540 /* push down into drivers */
Daniel Vetter8acf6582013-01-21 23:38:37 +01001541 ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
1542 if (ret < 0)
1543 return ret;
Dave Airlie785b93e2009-08-28 15:46:53 +10001544
Dave Airlie38651672010-03-30 05:34:13 +00001545 info = fb_helper->fbdev;
Dave Airlie785b93e2009-08-28 15:46:53 +10001546
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001547 /*
1548 * Set the fb pointer - usually drm_setup_crtcs does this for hotplug
1549 * events, but at init time drm_setup_crtcs needs to be called before
1550 * the fb is allocated (since we need to figure out the desired size of
1551 * the fb before we can allocate it ...). Hence we need to fix things up
1552 * here again.
1553 */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001554 for (i = 0; i < fb_helper->crtc_count; i++)
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001555 if (fb_helper->crtc_info[i].mode_set.num_connectors)
1556 fb_helper->crtc_info[i].mode_set.fb = fb_helper->fb;
1557
Dave Airlie785b93e2009-08-28 15:46:53 +10001558
Daniel Vetter8acf6582013-01-21 23:38:37 +01001559 info->var.pixclock = 0;
1560 if (register_framebuffer(info) < 0)
1561 return -EINVAL;
Dave Airlie38651672010-03-30 05:34:13 +00001562
Daniel Vetter8acf6582013-01-21 23:38:37 +01001563 dev_info(fb_helper->dev->dev, "fb%d: %s frame buffer device\n",
1564 info->node, info->fix.id);
Dave Airlie785b93e2009-08-28 15:46:53 +10001565
Dave Airlie785b93e2009-08-28 15:46:53 +10001566 if (list_empty(&kernel_fb_helper_list)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001567 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
1568 }
Daniel Vetter8acf6582013-01-21 23:38:37 +01001569
1570 list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
Dave Airlie38651672010-03-30 05:34:13 +00001571
Dave Airlie785b93e2009-08-28 15:46:53 +10001572 return 0;
1573}
Dave Airlie785b93e2009-08-28 15:46:53 +10001574
Daniel Vetter207fd322013-01-20 22:13:14 +01001575/**
1576 * drm_fb_helper_fill_fix - initializes fixed fbdev information
1577 * @info: fbdev registered by the helper
1578 * @pitch: desired pitch
1579 * @depth: desired depth
1580 *
1581 * Helper to fill in the fixed fbdev information useful for a non-accelerated
1582 * fbdev emulations. Drivers which support acceleration methods which impose
1583 * additional constraints need to set up their own limits.
1584 *
1585 * Drivers should call this (or their equivalent setup code) from their
1586 * ->fb_probe callback.
1587 */
Dave Airlie3632ef82011-01-15 09:27:00 +10001588void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
1589 uint32_t depth)
1590{
1591 info->fix.type = FB_TYPE_PACKED_PIXELS;
1592 info->fix.visual = depth == 8 ? FB_VISUAL_PSEUDOCOLOR :
1593 FB_VISUAL_TRUECOLOR;
1594 info->fix.mmio_start = 0;
1595 info->fix.mmio_len = 0;
1596 info->fix.type_aux = 0;
1597 info->fix.xpanstep = 1; /* doing it in hw */
1598 info->fix.ypanstep = 1; /* doing it in hw */
1599 info->fix.ywrapstep = 0;
1600 info->fix.accel = FB_ACCEL_NONE;
Dave Airlie3632ef82011-01-15 09:27:00 +10001601
1602 info->fix.line_length = pitch;
1603 return;
1604}
1605EXPORT_SYMBOL(drm_fb_helper_fill_fix);
1606
Daniel Vetter207fd322013-01-20 22:13:14 +01001607/**
1608 * drm_fb_helper_fill_var - initalizes variable fbdev information
1609 * @info: fbdev instance to set up
1610 * @fb_helper: fb helper instance to use as template
1611 * @fb_width: desired fb width
1612 * @fb_height: desired fb height
1613 *
1614 * Sets up the variable fbdev metainformation from the given fb helper instance
1615 * and the drm framebuffer allocated in fb_helper->fb.
1616 *
1617 * Drivers should call this (or their equivalent setup code) from their
1618 * ->fb_probe callback after having allocated the fbdev backing
1619 * storage framebuffer.
1620 */
Dave Airlie38651672010-03-30 05:34:13 +00001621void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper,
Dave Airlie785b93e2009-08-28 15:46:53 +10001622 uint32_t fb_width, uint32_t fb_height)
1623{
Dave Airlie38651672010-03-30 05:34:13 +00001624 struct drm_framebuffer *fb = fb_helper->fb;
1625 info->pseudo_palette = fb_helper->pseudo_palette;
Dave Airlie785b93e2009-08-28 15:46:53 +10001626 info->var.xres_virtual = fb->width;
1627 info->var.yres_virtual = fb->height;
1628 info->var.bits_per_pixel = fb->bits_per_pixel;
James Simmons57084d02010-12-20 19:10:39 +00001629 info->var.accel_flags = FB_ACCELF_TEXT;
Dave Airlie785b93e2009-08-28 15:46:53 +10001630 info->var.xoffset = 0;
1631 info->var.yoffset = 0;
1632 info->var.activate = FB_ACTIVATE_NOW;
1633 info->var.height = -1;
1634 info->var.width = -1;
1635
1636 switch (fb->depth) {
1637 case 8:
1638 info->var.red.offset = 0;
1639 info->var.green.offset = 0;
1640 info->var.blue.offset = 0;
1641 info->var.red.length = 8; /* 8bit DAC */
1642 info->var.green.length = 8;
1643 info->var.blue.length = 8;
1644 info->var.transp.offset = 0;
1645 info->var.transp.length = 0;
1646 break;
1647 case 15:
1648 info->var.red.offset = 10;
1649 info->var.green.offset = 5;
1650 info->var.blue.offset = 0;
1651 info->var.red.length = 5;
1652 info->var.green.length = 5;
1653 info->var.blue.length = 5;
1654 info->var.transp.offset = 15;
1655 info->var.transp.length = 1;
1656 break;
1657 case 16:
1658 info->var.red.offset = 11;
1659 info->var.green.offset = 5;
1660 info->var.blue.offset = 0;
1661 info->var.red.length = 5;
1662 info->var.green.length = 6;
1663 info->var.blue.length = 5;
1664 info->var.transp.offset = 0;
1665 break;
1666 case 24:
1667 info->var.red.offset = 16;
1668 info->var.green.offset = 8;
1669 info->var.blue.offset = 0;
1670 info->var.red.length = 8;
1671 info->var.green.length = 8;
1672 info->var.blue.length = 8;
1673 info->var.transp.offset = 0;
1674 info->var.transp.length = 0;
1675 break;
1676 case 32:
1677 info->var.red.offset = 16;
1678 info->var.green.offset = 8;
1679 info->var.blue.offset = 0;
1680 info->var.red.length = 8;
1681 info->var.green.length = 8;
1682 info->var.blue.length = 8;
1683 info->var.transp.offset = 24;
1684 info->var.transp.length = 8;
1685 break;
1686 default:
1687 break;
1688 }
1689
1690 info->var.xres = fb_width;
1691 info->var.yres = fb_height;
1692}
1693EXPORT_SYMBOL(drm_fb_helper_fill_var);
Dave Airlie38651672010-03-30 05:34:13 +00001694
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001695static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper *fb_helper,
1696 uint32_t maxX,
1697 uint32_t maxY)
Dave Airlie38651672010-03-30 05:34:13 +00001698{
1699 struct drm_connector *connector;
1700 int count = 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001701 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001702
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001703 for (i = 0; i < fb_helper->connector_count; i++) {
1704 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001705 count += connector->funcs->fill_modes(connector, maxX, maxY);
1706 }
1707
1708 return count;
1709}
1710
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001711struct 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 +00001712{
1713 struct drm_display_mode *mode;
1714
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001715 list_for_each_entry(mode, &fb_connector->connector->modes, head) {
Daniel Vetter9d3de132014-01-23 16:27:56 +01001716 if (mode->hdisplay > width ||
1717 mode->vdisplay > height)
Dave Airlie38651672010-03-30 05:34:13 +00001718 continue;
1719 if (mode->type & DRM_MODE_TYPE_PREFERRED)
1720 return mode;
1721 }
1722 return NULL;
1723}
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001724EXPORT_SYMBOL(drm_has_preferred_mode);
Dave Airlie38651672010-03-30 05:34:13 +00001725
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001726static bool drm_has_cmdline_mode(struct drm_fb_helper_connector *fb_connector)
Dave Airlie38651672010-03-30 05:34:13 +00001727{
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001728 return fb_connector->connector->cmdline_mode.specified;
Dave Airlie38651672010-03-30 05:34:13 +00001729}
1730
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001731struct drm_display_mode *drm_pick_cmdline_mode(struct drm_fb_helper_connector *fb_helper_conn,
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001732 int width, int height)
Dave Airlie38651672010-03-30 05:34:13 +00001733{
Chris Wilson1794d252011-04-17 07:43:32 +01001734 struct drm_cmdline_mode *cmdline_mode;
Daniel Stonef3af5c72015-03-19 04:33:01 +00001735 struct drm_display_mode *mode;
Takashi Iwaic683f422014-03-19 14:53:13 +01001736 bool prefer_non_interlace;
Dave Airlie38651672010-03-30 05:34:13 +00001737
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001738 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
Dave Airlie38651672010-03-30 05:34:13 +00001739 if (cmdline_mode->specified == false)
Daniel Stonef3af5c72015-03-19 04:33:01 +00001740 return NULL;
Dave Airlie38651672010-03-30 05:34:13 +00001741
1742 /* attempt to find a matching mode in the list of modes
1743 * we have gotten so far, if not add a CVT mode that conforms
1744 */
1745 if (cmdline_mode->rb || cmdline_mode->margins)
1746 goto create_mode;
1747
Takashi Iwaic683f422014-03-19 14:53:13 +01001748 prefer_non_interlace = !cmdline_mode->interlace;
Daniel Stonef3af5c72015-03-19 04:33:01 +00001749again:
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001750 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
Dave Airlie38651672010-03-30 05:34:13 +00001751 /* check width/height */
1752 if (mode->hdisplay != cmdline_mode->xres ||
1753 mode->vdisplay != cmdline_mode->yres)
1754 continue;
1755
1756 if (cmdline_mode->refresh_specified) {
1757 if (mode->vrefresh != cmdline_mode->refresh)
1758 continue;
1759 }
1760
1761 if (cmdline_mode->interlace) {
1762 if (!(mode->flags & DRM_MODE_FLAG_INTERLACE))
1763 continue;
Takashi Iwaic683f422014-03-19 14:53:13 +01001764 } else if (prefer_non_interlace) {
1765 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1766 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001767 }
1768 return mode;
1769 }
1770
Takashi Iwaic683f422014-03-19 14:53:13 +01001771 if (prefer_non_interlace) {
1772 prefer_non_interlace = false;
1773 goto again;
1774 }
1775
Dave Airlie38651672010-03-30 05:34:13 +00001776create_mode:
Chris Wilson1794d252011-04-17 07:43:32 +01001777 mode = drm_mode_create_from_cmdline_mode(fb_helper_conn->connector->dev,
1778 cmdline_mode);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001779 list_add(&mode->head, &fb_helper_conn->connector->modes);
Dave Airlie38651672010-03-30 05:34:13 +00001780 return mode;
1781}
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001782EXPORT_SYMBOL(drm_pick_cmdline_mode);
Dave Airlie38651672010-03-30 05:34:13 +00001783
1784static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
1785{
1786 bool enable;
1787
Sachin Kamat96081cd2012-11-15 03:43:30 +00001788 if (strict)
Dave Airlie38651672010-03-30 05:34:13 +00001789 enable = connector->status == connector_status_connected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001790 else
Dave Airlie38651672010-03-30 05:34:13 +00001791 enable = connector->status != connector_status_disconnected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001792
Dave Airlie38651672010-03-30 05:34:13 +00001793 return enable;
1794}
1795
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001796static void drm_enable_connectors(struct drm_fb_helper *fb_helper,
1797 bool *enabled)
Dave Airlie38651672010-03-30 05:34:13 +00001798{
1799 bool any_enabled = false;
1800 struct drm_connector *connector;
1801 int i = 0;
1802
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001803 for (i = 0; i < fb_helper->connector_count; i++) {
1804 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001805 enabled[i] = drm_connector_enabled(connector, true);
1806 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
1807 enabled[i] ? "yes" : "no");
1808 any_enabled |= enabled[i];
Dave Airlie38651672010-03-30 05:34:13 +00001809 }
1810
1811 if (any_enabled)
1812 return;
1813
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001814 for (i = 0; i < fb_helper->connector_count; i++) {
1815 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001816 enabled[i] = drm_connector_enabled(connector, false);
Dave Airlie38651672010-03-30 05:34:13 +00001817 }
1818}
1819
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001820static bool drm_target_cloned(struct drm_fb_helper *fb_helper,
1821 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001822 struct drm_fb_offset *offsets,
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001823 bool *enabled, int width, int height)
1824{
1825 int count, i, j;
1826 bool can_clone = false;
1827 struct drm_fb_helper_connector *fb_helper_conn;
1828 struct drm_display_mode *dmt_mode, *mode;
1829
1830 /* only contemplate cloning in the single crtc case */
1831 if (fb_helper->crtc_count > 1)
1832 return false;
1833
1834 count = 0;
1835 for (i = 0; i < fb_helper->connector_count; i++) {
1836 if (enabled[i])
1837 count++;
1838 }
1839
1840 /* only contemplate cloning if more than one connector is enabled */
1841 if (count <= 1)
1842 return false;
1843
1844 /* check the command line or if nothing common pick 1024x768 */
1845 can_clone = true;
1846 for (i = 0; i < fb_helper->connector_count; i++) {
1847 if (!enabled[i])
1848 continue;
1849 fb_helper_conn = fb_helper->connector_info[i];
1850 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
1851 if (!modes[i]) {
1852 can_clone = false;
1853 break;
1854 }
1855 for (j = 0; j < i; j++) {
1856 if (!enabled[j])
1857 continue;
1858 if (!drm_mode_equal(modes[j], modes[i]))
1859 can_clone = false;
1860 }
1861 }
1862
1863 if (can_clone) {
1864 DRM_DEBUG_KMS("can clone using command line\n");
1865 return true;
1866 }
1867
1868 /* try and find a 1024x768 mode on each connector */
1869 can_clone = true;
Adam Jacksonf6e252b2012-04-13 16:33:31 -04001870 dmt_mode = drm_mode_find_dmt(fb_helper->dev, 1024, 768, 60, false);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001871
1872 for (i = 0; i < fb_helper->connector_count; i++) {
1873
1874 if (!enabled[i])
1875 continue;
1876
1877 fb_helper_conn = fb_helper->connector_info[i];
1878 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
1879 if (drm_mode_equal(mode, dmt_mode))
1880 modes[i] = mode;
1881 }
1882 if (!modes[i])
1883 can_clone = false;
1884 }
1885
1886 if (can_clone) {
1887 DRM_DEBUG_KMS("can clone using 1024x768\n");
1888 return true;
1889 }
1890 DRM_INFO("kms: can't enable cloning when we probably wanted to.\n");
1891 return false;
1892}
1893
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001894static int drm_get_tile_offsets(struct drm_fb_helper *fb_helper,
1895 struct drm_display_mode **modes,
1896 struct drm_fb_offset *offsets,
1897 int idx,
1898 int h_idx, int v_idx)
1899{
1900 struct drm_fb_helper_connector *fb_helper_conn;
1901 int i;
1902 int hoffset = 0, voffset = 0;
1903
1904 for (i = 0; i < fb_helper->connector_count; i++) {
1905 fb_helper_conn = fb_helper->connector_info[i];
1906 if (!fb_helper_conn->connector->has_tile)
1907 continue;
1908
1909 if (!modes[i] && (h_idx || v_idx)) {
1910 DRM_DEBUG_KMS("no modes for connector tiled %d %d\n", i,
1911 fb_helper_conn->connector->base.id);
1912 continue;
1913 }
1914 if (fb_helper_conn->connector->tile_h_loc < h_idx)
1915 hoffset += modes[i]->hdisplay;
1916
1917 if (fb_helper_conn->connector->tile_v_loc < v_idx)
1918 voffset += modes[i]->vdisplay;
1919 }
1920 offsets[idx].x = hoffset;
1921 offsets[idx].y = voffset;
1922 DRM_DEBUG_KMS("returned %d %d for %d %d\n", hoffset, voffset, h_idx, v_idx);
1923 return 0;
1924}
1925
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001926static bool drm_target_preferred(struct drm_fb_helper *fb_helper,
Dave Airlie38651672010-03-30 05:34:13 +00001927 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001928 struct drm_fb_offset *offsets,
Dave Airlie38651672010-03-30 05:34:13 +00001929 bool *enabled, int width, int height)
1930{
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001931 struct drm_fb_helper_connector *fb_helper_conn;
1932 int i;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001933 uint64_t conn_configured = 0, mask;
1934 int tile_pass = 0;
1935 mask = (1 << fb_helper->connector_count) - 1;
1936retry:
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001937 for (i = 0; i < fb_helper->connector_count; i++) {
1938 fb_helper_conn = fb_helper->connector_info[i];
Dave Airlie38651672010-03-30 05:34:13 +00001939
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001940 if (conn_configured & (1 << i))
Dave Airlie38651672010-03-30 05:34:13 +00001941 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001942
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001943 if (enabled[i] == false) {
1944 conn_configured |= (1 << i);
1945 continue;
1946 }
1947
1948 /* first pass over all the untiled connectors */
1949 if (tile_pass == 0 && fb_helper_conn->connector->has_tile)
1950 continue;
1951
1952 if (tile_pass == 1) {
1953 if (fb_helper_conn->connector->tile_h_loc != 0 ||
1954 fb_helper_conn->connector->tile_v_loc != 0)
1955 continue;
1956
1957 } else {
1958 if (fb_helper_conn->connector->tile_h_loc != tile_pass -1 &&
1959 fb_helper_conn->connector->tile_v_loc != tile_pass - 1)
1960 /* if this tile_pass doesn't cover any of the tiles - keep going */
1961 continue;
1962
1963 /* find the tile offsets for this pass - need
1964 to find all tiles left and above */
1965 drm_get_tile_offsets(fb_helper, modes, offsets,
1966 i, fb_helper_conn->connector->tile_h_loc, fb_helper_conn->connector->tile_v_loc);
1967 }
Dave Airlie38651672010-03-30 05:34:13 +00001968 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001969 fb_helper_conn->connector->base.id);
Dave Airlie38651672010-03-30 05:34:13 +00001970
1971 /* got for command line mode first */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001972 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001973 if (!modes[i]) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001974 DRM_DEBUG_KMS("looking for preferred mode on connector %d %d\n",
1975 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 +00001976 modes[i] = drm_has_preferred_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001977 }
1978 /* No preferred modes, pick one off the list */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001979 if (!modes[i] && !list_empty(&fb_helper_conn->connector->modes)) {
1980 list_for_each_entry(modes[i], &fb_helper_conn->connector->modes, head)
Dave Airlie38651672010-03-30 05:34:13 +00001981 break;
1982 }
1983 DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name :
1984 "none");
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001985 conn_configured |= (1 << i);
1986 }
1987
1988 if ((conn_configured & mask) != mask) {
1989 tile_pass++;
1990 goto retry;
Dave Airlie38651672010-03-30 05:34:13 +00001991 }
1992 return true;
1993}
1994
Dave Airlie8be48d92010-03-30 05:34:14 +00001995static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
1996 struct drm_fb_helper_crtc **best_crtcs,
Dave Airlie38651672010-03-30 05:34:13 +00001997 struct drm_display_mode **modes,
1998 int n, int width, int height)
1999{
2000 int c, o;
2001 struct drm_connector *connector;
Jani Nikulabe26a662015-03-11 11:51:06 +02002002 const struct drm_connector_helper_funcs *connector_funcs;
Dave Airlie38651672010-03-30 05:34:13 +00002003 struct drm_encoder *encoder;
Dave Airlie38651672010-03-30 05:34:13 +00002004 int my_score, best_score, score;
Dave Airlie8be48d92010-03-30 05:34:14 +00002005 struct drm_fb_helper_crtc **crtcs, *crtc;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002006 struct drm_fb_helper_connector *fb_helper_conn;
Dave Airlie38651672010-03-30 05:34:13 +00002007
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002008 if (n == fb_helper->connector_count)
Dave Airlie38651672010-03-30 05:34:13 +00002009 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002010
2011 fb_helper_conn = fb_helper->connector_info[n];
2012 connector = fb_helper_conn->connector;
Dave Airlie38651672010-03-30 05:34:13 +00002013
2014 best_crtcs[n] = NULL;
Dave Airlie8be48d92010-03-30 05:34:14 +00002015 best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00002016 if (modes[n] == NULL)
2017 return best_score;
2018
Lyude255f0e72016-05-12 10:56:59 -04002019 crtcs = kzalloc(fb_helper->connector_count *
Dave Airlie8be48d92010-03-30 05:34:14 +00002020 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Dave Airlie38651672010-03-30 05:34:13 +00002021 if (!crtcs)
2022 return best_score;
2023
2024 my_score = 1;
2025 if (connector->status == connector_status_connected)
2026 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002027 if (drm_has_cmdline_mode(fb_helper_conn))
Dave Airlie38651672010-03-30 05:34:13 +00002028 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002029 if (drm_has_preferred_mode(fb_helper_conn, width, height))
Dave Airlie38651672010-03-30 05:34:13 +00002030 my_score++;
2031
2032 connector_funcs = connector->helper_private;
Boris Brezillonc61b93f2016-06-07 13:47:56 +02002033
2034 /*
2035 * If the DRM device implements atomic hooks and ->best_encoder() is
2036 * NULL we fallback to the default drm_atomic_helper_best_encoder()
2037 * helper.
2038 */
2039 if (fb_helper->dev->mode_config.funcs->atomic_commit &&
2040 !connector_funcs->best_encoder)
2041 encoder = drm_atomic_helper_best_encoder(connector);
2042 else
2043 encoder = connector_funcs->best_encoder(connector);
2044
Dave Airlie38651672010-03-30 05:34:13 +00002045 if (!encoder)
2046 goto out;
2047
Dave Airlie38651672010-03-30 05:34:13 +00002048 /* select a crtc for this connector and then attempt to configure
2049 remaining connectors */
Dave Airlie8be48d92010-03-30 05:34:14 +00002050 for (c = 0; c < fb_helper->crtc_count; c++) {
2051 crtc = &fb_helper->crtc_info[c];
Dave Airlie38651672010-03-30 05:34:13 +00002052
Sachin Kamat96081cd2012-11-15 03:43:30 +00002053 if ((encoder->possible_crtcs & (1 << c)) == 0)
Dave Airlie38651672010-03-30 05:34:13 +00002054 continue;
Dave Airlie38651672010-03-30 05:34:13 +00002055
2056 for (o = 0; o < n; o++)
2057 if (best_crtcs[o] == crtc)
2058 break;
2059
2060 if (o < n) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002061 /* ignore cloning unless only a single crtc */
2062 if (fb_helper->crtc_count > 1)
2063 continue;
2064
2065 if (!drm_mode_equal(modes[o], modes[n]))
2066 continue;
Dave Airlie38651672010-03-30 05:34:13 +00002067 }
2068
2069 crtcs[n] = crtc;
Dave Airlie8be48d92010-03-30 05:34:14 +00002070 memcpy(crtcs, best_crtcs, n * sizeof(struct drm_fb_helper_crtc *));
2071 score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1,
Dave Airlie38651672010-03-30 05:34:13 +00002072 width, height);
2073 if (score > best_score) {
Dave Airlie38651672010-03-30 05:34:13 +00002074 best_score = score;
2075 memcpy(best_crtcs, crtcs,
Lyude255f0e72016-05-12 10:56:59 -04002076 fb_helper->connector_count *
Dave Airlie8be48d92010-03-30 05:34:14 +00002077 sizeof(struct drm_fb_helper_crtc *));
Dave Airlie38651672010-03-30 05:34:13 +00002078 }
Dave Airlie38651672010-03-30 05:34:13 +00002079 }
2080out:
2081 kfree(crtcs);
2082 return best_score;
2083}
2084
Dave Airlie8be48d92010-03-30 05:34:14 +00002085static void drm_setup_crtcs(struct drm_fb_helper *fb_helper)
Dave Airlie38651672010-03-30 05:34:13 +00002086{
Dave Airlie8be48d92010-03-30 05:34:14 +00002087 struct drm_device *dev = fb_helper->dev;
2088 struct drm_fb_helper_crtc **crtcs;
Dave Airlie38651672010-03-30 05:34:13 +00002089 struct drm_display_mode **modes;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002090 struct drm_fb_offset *offsets;
Dave Airlie8be48d92010-03-30 05:34:14 +00002091 struct drm_mode_set *modeset;
Dave Airlie38651672010-03-30 05:34:13 +00002092 bool *enabled;
2093 int width, height;
Jesse Barnes11e17a02013-02-19 13:31:39 -08002094 int i;
Dave Airlie38651672010-03-30 05:34:13 +00002095
2096 DRM_DEBUG_KMS("\n");
2097
2098 width = dev->mode_config.max_width;
2099 height = dev->mode_config.max_height;
2100
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002101 crtcs = kcalloc(fb_helper->connector_count,
Dave Airlie8be48d92010-03-30 05:34:14 +00002102 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002103 modes = kcalloc(fb_helper->connector_count,
Dave Airlie38651672010-03-30 05:34:13 +00002104 sizeof(struct drm_display_mode *), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002105 offsets = kcalloc(fb_helper->connector_count,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002106 sizeof(struct drm_fb_offset), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002107 enabled = kcalloc(fb_helper->connector_count,
Dave Airlie38651672010-03-30 05:34:13 +00002108 sizeof(bool), GFP_KERNEL);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002109 if (!crtcs || !modes || !enabled || !offsets) {
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00002110 DRM_ERROR("Memory allocation failed\n");
2111 goto out;
2112 }
2113
Dave Airlie38651672010-03-30 05:34:13 +00002114
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002115 drm_enable_connectors(fb_helper, enabled);
Dave Airlie38651672010-03-30 05:34:13 +00002116
Jesse Barnes11e17a02013-02-19 13:31:39 -08002117 if (!(fb_helper->funcs->initial_config &&
2118 fb_helper->funcs->initial_config(fb_helper, crtcs, modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002119 offsets,
Jesse Barnes11e17a02013-02-19 13:31:39 -08002120 enabled, width, height))) {
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002121 memset(modes, 0, fb_helper->connector_count*sizeof(modes[0]));
2122 memset(crtcs, 0, fb_helper->connector_count*sizeof(crtcs[0]));
2123 memset(offsets, 0, fb_helper->connector_count*sizeof(offsets[0]));
Jesse Barnes11e17a02013-02-19 13:31:39 -08002124
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002125 if (!drm_target_cloned(fb_helper, modes, offsets,
2126 enabled, width, height) &&
2127 !drm_target_preferred(fb_helper, modes, offsets,
2128 enabled, width, height))
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002129 DRM_ERROR("Unable to find initial modes\n");
Jesse Barnes11e17a02013-02-19 13:31:39 -08002130
2131 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n",
2132 width, height);
2133
2134 drm_pick_crtcs(fb_helper, crtcs, modes, 0, width, height);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002135 }
Dave Airlie38651672010-03-30 05:34:13 +00002136
Dave Airlie8be48d92010-03-30 05:34:14 +00002137 /* need to set the modesets up here for use later */
2138 /* fill out the connector<->crtc mappings into the modesets */
2139 for (i = 0; i < fb_helper->crtc_count; i++) {
2140 modeset = &fb_helper->crtc_info[i].mode_set;
2141 modeset->num_connectors = 0;
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01002142 modeset->fb = NULL;
Dave Airlie8be48d92010-03-30 05:34:14 +00002143 }
Dave Airlie38651672010-03-30 05:34:13 +00002144
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002145 for (i = 0; i < fb_helper->connector_count; i++) {
Dave Airlie38651672010-03-30 05:34:13 +00002146 struct drm_display_mode *mode = modes[i];
Dave Airlie8be48d92010-03-30 05:34:14 +00002147 struct drm_fb_helper_crtc *fb_crtc = crtcs[i];
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002148 struct drm_fb_offset *offset = &offsets[i];
Dave Airlie8be48d92010-03-30 05:34:14 +00002149 modeset = &fb_crtc->mode_set;
Dave Airlie38651672010-03-30 05:34:13 +00002150
Dave Airlie8be48d92010-03-30 05:34:14 +00002151 if (mode && fb_crtc) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002152 DRM_DEBUG_KMS("desired mode %s set on crtc %d (%d,%d)\n",
2153 mode->name, fb_crtc->mode_set.crtc->base.id, offset->x, offset->y);
Dave Airlie8be48d92010-03-30 05:34:14 +00002154 fb_crtc->desired_mode = mode;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002155 fb_crtc->x = offset->x;
2156 fb_crtc->y = offset->y;
Dave Airlie8be48d92010-03-30 05:34:14 +00002157 if (modeset->mode)
2158 drm_mode_destroy(dev, modeset->mode);
2159 modeset->mode = drm_mode_duplicate(dev,
2160 fb_crtc->desired_mode);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002161 modeset->connectors[modeset->num_connectors++] = fb_helper->connector_info[i]->connector;
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01002162 modeset->fb = fb_helper->fb;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002163 modeset->x = offset->x;
2164 modeset->y = offset->y;
Dave Airlie38651672010-03-30 05:34:13 +00002165 }
Dave Airlie38651672010-03-30 05:34:13 +00002166 }
2167
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01002168 /* Clear out any old modes if there are no more connected outputs. */
2169 for (i = 0; i < fb_helper->crtc_count; i++) {
2170 modeset = &fb_helper->crtc_info[i].mode_set;
2171 if (modeset->num_connectors == 0) {
2172 BUG_ON(modeset->fb);
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01002173 if (modeset->mode)
2174 drm_mode_destroy(dev, modeset->mode);
2175 modeset->mode = NULL;
2176 }
2177 }
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00002178out:
Dave Airlie38651672010-03-30 05:34:13 +00002179 kfree(crtcs);
2180 kfree(modes);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002181 kfree(offsets);
Dave Airlie38651672010-03-30 05:34:13 +00002182 kfree(enabled);
2183}
2184
2185/**
Daniel Vetter207fd322013-01-20 22:13:14 +01002186 * drm_fb_helper_initial_config - setup a sane initial connector configuration
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002187 * @fb_helper: fb_helper device struct
2188 * @bpp_sel: bpp value to use for the framebuffer configuration
Dave Airlie38651672010-03-30 05:34:13 +00002189 *
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002190 * Scans the CRTCs and connectors and tries to put together an initial setup.
Dave Airlie38651672010-03-30 05:34:13 +00002191 * At the moment, this is a cloned configuration across all heads with
2192 * a new framebuffer object as the backing store.
2193 *
Daniel Vetter207fd322013-01-20 22:13:14 +01002194 * Note that this also registers the fbdev and so allows userspace to call into
2195 * the driver through the fbdev interfaces.
2196 *
2197 * This function will call down into the ->fb_probe callback to let
2198 * the driver allocate and initialize the fbdev info structure and the drm
2199 * framebuffer used to back the fbdev. drm_fb_helper_fill_var() and
2200 * drm_fb_helper_fill_fix() are provided as helpers to setup simple default
2201 * values for the fbdev info structure.
2202 *
Daniel Vetter40f8cf42016-01-22 08:53:45 +01002203 * HANG DEBUGGING:
2204 *
2205 * When you have fbcon support built-in or already loaded, this function will do
2206 * a full modeset to setup the fbdev console. Due to locking misdesign in the
2207 * VT/fbdev subsystem that entire modeset sequence has to be done while holding
2208 * console_lock. Until console_unlock is called no dmesg lines will be sent out
2209 * to consoles, not even serial console. This means when your driver crashes,
2210 * you will see absolutely nothing else but a system stuck in this function,
2211 * with no further output. Any kind of printk() you place within your own driver
2212 * or in the drm core modeset code will also never show up.
2213 *
2214 * Standard debug practice is to run the fbcon setup without taking the
2215 * console_lock as a hack, to be able to see backtraces and crashes on the
2216 * serial line. This can be done by setting the fb.lockless_register_fb=1 kernel
2217 * cmdline option.
2218 *
2219 * The other option is to just disable fbdev emulation since very likely the
Lyudeaf509d32016-05-04 11:28:53 -04002220 * first modeset from userspace will crash in the same way, and is even easier
2221 * to debug. This can be done by setting the drm_kms_helper.fbdev_emulation=0
Daniel Vetter40f8cf42016-01-22 08:53:45 +01002222 * kernel cmdline option.
2223 *
Dave Airlie38651672010-03-30 05:34:13 +00002224 * RETURNS:
2225 * Zero if everything went ok, nonzero otherwise.
2226 */
Thierry Reding01934c22014-12-19 11:21:32 +01002227int drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
Dave Airlie38651672010-03-30 05:34:13 +00002228{
Dave Airlie8be48d92010-03-30 05:34:14 +00002229 struct drm_device *dev = fb_helper->dev;
Dave Airlie38651672010-03-30 05:34:13 +00002230 int count = 0;
2231
Daniel Vetterf64c5572015-08-25 15:45:13 +02002232 if (!drm_fbdev_emulation)
2233 return 0;
2234
Daniel Vetter53f19042014-03-20 14:26:35 +01002235 mutex_lock(&dev->mode_config.mutex);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002236 count = drm_fb_helper_probe_connector_modes(fb_helper,
2237 dev->mode_config.max_width,
2238 dev->mode_config.max_height);
Daniel Vetter53f19042014-03-20 14:26:35 +01002239 mutex_unlock(&dev->mode_config.mutex);
Dave Airlie38651672010-03-30 05:34:13 +00002240 /*
2241 * we shouldn't end up with no modes here.
2242 */
Sachin Kamat96081cd2012-11-15 03:43:30 +00002243 if (count == 0)
Sachin Kamatd56b1b92012-11-15 03:43:29 +00002244 dev_info(fb_helper->dev->dev, "No connectors reported connected with modes\n");
Sachin Kamat96081cd2012-11-15 03:43:30 +00002245
Dave Airlie8be48d92010-03-30 05:34:14 +00002246 drm_setup_crtcs(fb_helper);
Dave Airlie38651672010-03-30 05:34:13 +00002247
Dave Airlie4abe3522010-03-30 05:34:18 +00002248 return drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
Dave Airlie38651672010-03-30 05:34:13 +00002249}
Dave Airlie8be48d92010-03-30 05:34:14 +00002250EXPORT_SYMBOL(drm_fb_helper_initial_config);
Dave Airlie38651672010-03-30 05:34:13 +00002251
Chris Wilson73943712011-04-22 11:03:57 +01002252/**
2253 * drm_fb_helper_hotplug_event - respond to a hotplug notification by
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002254 * probing all the outputs attached to the fb
Chris Wilson73943712011-04-22 11:03:57 +01002255 * @fb_helper: the drm_fb_helper
2256 *
Chris Wilson73943712011-04-22 11:03:57 +01002257 * Scan the connectors attached to the fb_helper and try to put together a
Daniel Vetter62cacc72016-08-12 22:48:37 +02002258 * setup after notification of a change in output configuration.
Chris Wilson73943712011-04-22 11:03:57 +01002259 *
Daniel Vetter207fd322013-01-20 22:13:14 +01002260 * Called at runtime, takes the mode config locks to be able to check/change the
2261 * modeset configuration. Must be run from process context (which usually means
2262 * either the output polling work or a work item launched from the driver's
2263 * hotplug interrupt).
2264 *
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002265 * Note that drivers may call this even before calling
Lyudeaf509d32016-05-04 11:28:53 -04002266 * drm_fb_helper_initial_config but only after drm_fb_helper_init. This allows
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002267 * for a race-free fbcon setup and will make sure that the fbdev emulation will
2268 * not miss any hotplug events.
Daniel Vetter207fd322013-01-20 22:13:14 +01002269 *
Chris Wilson73943712011-04-22 11:03:57 +01002270 * RETURNS:
2271 * 0 on success and a non-zero error code otherwise.
2272 */
2273int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
Dave Airlie38651672010-03-30 05:34:13 +00002274{
Chris Wilson73943712011-04-22 11:03:57 +01002275 struct drm_device *dev = fb_helper->dev;
Lespiau, Damien51bbd272013-09-28 16:24:05 +01002276 u32 max_width, max_height;
Dave Airlie4abe3522010-03-30 05:34:18 +00002277
Daniel Vetterf64c5572015-08-25 15:45:13 +02002278 if (!drm_fbdev_emulation)
2279 return 0;
2280
Daniel Vetter89ced122013-04-11 14:26:55 +00002281 mutex_lock(&fb_helper->dev->mode_config.mutex);
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002282 if (!fb_helper->fb || !drm_fb_helper_is_bound(fb_helper)) {
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002283 fb_helper->delayed_hotplug = true;
Daniel Vetter89ced122013-04-11 14:26:55 +00002284 mutex_unlock(&fb_helper->dev->mode_config.mutex);
Chris Wilson73943712011-04-22 11:03:57 +01002285 return 0;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002286 }
Dave Airlie38651672010-03-30 05:34:13 +00002287 DRM_DEBUG_KMS("\n");
2288
Dave Airlie4abe3522010-03-30 05:34:18 +00002289 max_width = fb_helper->fb->width;
2290 max_height = fb_helper->fb->height;
Dave Airlie4abe3522010-03-30 05:34:18 +00002291
Lespiau, Damien51bbd272013-09-28 16:24:05 +01002292 drm_fb_helper_probe_connector_modes(fb_helper, max_width, max_height);
Daniel Vetter89ced122013-04-11 14:26:55 +00002293 mutex_unlock(&fb_helper->dev->mode_config.mutex);
2294
2295 drm_modeset_lock_all(dev);
Dave Airlie8be48d92010-03-30 05:34:14 +00002296 drm_setup_crtcs(fb_helper);
Daniel Vetter84849902012-12-02 00:28:11 +01002297 drm_modeset_unlock_all(dev);
Daniel Vetter2180c3c2013-01-21 23:12:36 +01002298 drm_fb_helper_set_par(fb_helper->fbdev);
2299
2300 return 0;
Dave Airlie38651672010-03-30 05:34:13 +00002301}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002302EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
Dave Airlie5c4426a2010-03-30 05:34:17 +00002303
David Rientjes6a108a12011-01-20 14:44:16 -08002304/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06002305 * but the module doesn't depend on any fb console symbols. At least
2306 * attempt to load fbcon to avoid leaving the system without a usable console.
2307 */
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002308int __init drm_fb_helper_modinit(void)
David Fries3ce05162010-12-12 12:39:22 -06002309{
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002310#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06002311 const char *name = "fbcon";
2312 struct module *fbcon;
2313
2314 mutex_lock(&module_mutex);
2315 fbcon = find_module(name);
2316 mutex_unlock(&module_mutex);
2317
2318 if (!fbcon)
2319 request_module_nowait(name);
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002320#endif
David Fries3ce05162010-12-12 12:39:22 -06002321 return 0;
2322}
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002323EXPORT_SYMBOL(drm_fb_helper_modinit);