blob: c91240598471b7cf8d8e156fd15e18f6bd016cd1 [file] [log] [blame]
Dave Airlie785b93e2009-08-28 15:46:53 +10001/*
2 * Copyright (c) 2006-2009 Red Hat Inc.
3 * Copyright (c) 2006-2008 Intel Corporation
4 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
5 *
6 * DRM framebuffer helper functions
7 *
8 * Permission to use, copy, modify, distribute, and sell this software and its
9 * documentation for any purpose is hereby granted without fee, provided that
10 * the above copyright notice appear in all copies and that both that copyright
11 * notice and this permission notice appear in supporting documentation, and
12 * that the name of the copyright holders not be used in advertising or
13 * publicity pertaining to distribution of the software without specific,
14 * written prior permission. The copyright holders make no representations
15 * about the suitability of this software for any purpose. It is provided "as
16 * is" without express or implied warranty.
17 *
18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 * OF THIS SOFTWARE.
25 *
26 * Authors:
27 * Dave Airlie <airlied@linux.ie>
28 * Jesse Barnes <jesse.barnes@intel.com>
29 */
Sachin Kamatd56b1b92012-11-15 03:43:29 +000030#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
Noralf Trønnescfe63422016-08-23 13:54:06 +020032#include <linux/console.h>
Andy Shevchenko3b40a442010-02-02 14:40:32 -080033#include <linux/kernel.h>
Dave Airlie785b93e2009-08-28 15:46:53 +100034#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Paul Gortmakere0cd3602011-08-30 11:04:30 -040036#include <linux/module.h>
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/drmP.h>
38#include <drm/drm_crtc.h>
39#include <drm/drm_fb_helper.h>
40#include <drm/drm_crtc_helper.h>
Rob Clarkbbb1e522015-08-25 15:35:58 -040041#include <drm/drm_atomic.h>
42#include <drm/drm_atomic_helper.h>
Dave Airlie785b93e2009-08-28 15:46:53 +100043
Ville Syrjälä699fbee2016-09-19 16:33:44 +030044#include "drm_crtc_helper_internal.h"
45
Daniel Vetterf64c5572015-08-25 15:45:13 +020046static bool drm_fbdev_emulation = true;
47module_param_named(fbdev_emulation, drm_fbdev_emulation, bool, 0600);
48MODULE_PARM_DESC(fbdev_emulation,
49 "Enable legacy fbdev emulation [default=true]");
50
Dave Airlie785b93e2009-08-28 15:46:53 +100051static LIST_HEAD(kernel_fb_helper_list);
Chris Wilsona53ca632016-11-29 12:02:17 +000052static DEFINE_MUTEX(kernel_fb_helper_lock);
Dave Airlie785b93e2009-08-28 15:46:53 +100053
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010054/**
55 * DOC: fbdev helpers
56 *
57 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
Thierry Reding83c617c2014-04-29 11:44:35 +020058 * mode setting driver. They can be used mostly independently from the crtc
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010059 * helper functions used by many drivers to implement the kernel mode setting
60 * interfaces.
Daniel Vetter207fd322013-01-20 22:13:14 +010061 *
Thierry Reding10a23102014-06-27 17:19:24 +020062 * Initialization is done as a four-step process with drm_fb_helper_prepare(),
63 * drm_fb_helper_init(), drm_fb_helper_single_add_all_connectors() and
64 * drm_fb_helper_initial_config(). Drivers with fancier requirements than the
65 * default behaviour can override the third step with their own code.
Daniel Vettered84e252017-02-07 15:10:49 +010066 * Teardown is done with drm_fb_helper_fini() after the fbdev device is
67 * unregisters using drm_fb_helper_unregister_fbi().
Daniel Vetter207fd322013-01-20 22:13:14 +010068 *
69 * At runtime drivers should restore the fbdev console by calling
Daniel Vetter6806cdf2017-01-25 07:26:43 +010070 * drm_fb_helper_restore_fbdev_mode_unlocked() from their &drm_driver.lastclose
71 * callback. They should also notify the fb helper code from updates to the
72 * output configuration by calling drm_fb_helper_hotplug_event(). For easier
Daniel Vetter207fd322013-01-20 22:13:14 +010073 * integration with the output polling code in drm_crtc_helper.c the modeset
Daniel Vetter6806cdf2017-01-25 07:26:43 +010074 * code provides a &drm_mode_config_funcs.output_poll_changed callback.
Daniel Vetter207fd322013-01-20 22:13:14 +010075 *
76 * All other functions exported by the fb helper library can be used to
77 * implement the fbdev driver interface by the driver.
Thierry Reding10a23102014-06-27 17:19:24 +020078 *
79 * It is possible, though perhaps somewhat tricky, to implement race-free
80 * hotplug detection using the fbdev helpers. The drm_fb_helper_prepare()
81 * helper must be called first to initialize the minimum required to make
82 * hotplug detection work. Drivers also need to make sure to properly set up
Daniel Vetter6806cdf2017-01-25 07:26:43 +010083 * the &drm_mode_config.funcs member. After calling drm_kms_helper_poll_init()
Thierry Reding10a23102014-06-27 17:19:24 +020084 * it is safe to enable interrupts and start processing hotplug events. At the
85 * same time, drivers should initialize all modeset objects such as CRTCs,
86 * encoders and connectors. To finish up the fbdev helper initialization, the
87 * drm_fb_helper_init() function is called. To probe for all attached displays
88 * and set up an initial configuration using the detected hardware, drivers
89 * should call drm_fb_helper_single_add_all_connectors() followed by
90 * drm_fb_helper_initial_config().
Noralf Trønneseaa434d2016-04-28 17:18:33 +020091 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +010092 * If &drm_framebuffer_funcs.dirty is set, the
Noralf Trønnes2dad5512016-05-11 18:09:17 +020093 * drm_fb_helper_{cfb,sys}_{write,fillrect,copyarea,imageblit} functions will
Daniel Vetter6806cdf2017-01-25 07:26:43 +010094 * accumulate changes and schedule &drm_fb_helper.dirty_work to run right
Noralf Trønnes2dad5512016-05-11 18:09:17 +020095 * away. This worker then calls the dirty() function ensuring that it will
96 * always run in process context since the fb_*() function could be running in
97 * atomic context. If drm_fb_helper_deferred_io() is used as the deferred_io
98 * callback it will also schedule dirty_work with the damage collected from the
99 * mmap page writes.
Daniel Vetterd0ddc0332012-11-01 14:45:17 +0100100 */
101
Chris Wilson966a6a12016-11-29 12:02:15 +0000102#define drm_fb_helper_for_each_connector(fbh, i__) \
103 for (({ lockdep_assert_held(&(fbh)->dev->mode_config.mutex); }), \
104 i__ = 0; i__ < (fbh)->connector_count; i__++)
105
Daniel Vetter207fd322013-01-20 22:13:14 +0100106/**
107 * drm_fb_helper_single_add_all_connectors() - add all connectors to fbdev
108 * emulation helper
109 * @fb_helper: fbdev initialized with drm_fb_helper_init
110 *
111 * This functions adds all the available connectors for use with the given
112 * fb_helper. This is a separate step to allow drivers to freely assign
113 * connectors to the fbdev, e.g. if some are reserved for special purposes or
114 * not adequate to be used for the fbcon.
115 *
Daniel Vetter169faec2015-07-09 23:44:27 +0200116 * This function is protected against concurrent connector hotadds/removals
117 * using drm_fb_helper_add_one_connector() and
118 * drm_fb_helper_remove_one_connector().
Daniel Vetter207fd322013-01-20 22:13:14 +0100119 */
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000120int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper *fb_helper)
Dave Airlied50ba252009-09-23 14:44:08 +1000121{
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000122 struct drm_device *dev = fb_helper->dev;
123 struct drm_connector *connector;
Daniel Vetterc36a3252016-12-15 16:58:43 +0100124 struct drm_connector_list_iter conn_iter;
125 int i, ret = 0;
Dave Airlied50ba252009-09-23 14:44:08 +1000126
Daniel Vetterf64c5572015-08-25 15:45:13 +0200127 if (!drm_fbdev_emulation)
128 return 0;
129
Daniel Vetter169faec2015-07-09 23:44:27 +0200130 mutex_lock(&dev->mode_config.mutex);
Daniel Vetterc36a3252016-12-15 16:58:43 +0100131 drm_connector_list_iter_get(dev, &conn_iter);
132 drm_for_each_connector_iter(connector, &conn_iter) {
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100133 ret = drm_fb_helper_add_one_connector(fb_helper, connector);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000134
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100135 if (ret)
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000136 goto fail;
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000137 }
Daniel Vetterc36a3252016-12-15 16:58:43 +0100138 goto out;
139
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000140fail:
Chris Wilson966a6a12016-11-29 12:02:15 +0000141 drm_fb_helper_for_each_connector(fb_helper, i) {
Ville Syrjälä7dfcb362016-10-26 12:05:52 +0300142 struct drm_fb_helper_connector *fb_helper_connector =
143 fb_helper->connector_info[i];
144
145 drm_connector_unreference(fb_helper_connector->connector);
146
147 kfree(fb_helper_connector);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000148 fb_helper->connector_info[i] = NULL;
149 }
150 fb_helper->connector_count = 0;
Daniel Vetterc36a3252016-12-15 16:58:43 +0100151out:
152 drm_connector_list_iter_put(&conn_iter);
Daniel Vetter169faec2015-07-09 23:44:27 +0200153 mutex_unlock(&dev->mode_config.mutex);
154
Maarten Lankhorst15fce292016-02-15 13:45:16 +0100155 return ret;
Dave Airlied50ba252009-09-23 14:44:08 +1000156}
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000157EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors);
Dave Airlied50ba252009-09-23 14:44:08 +1000158
Dave Airlie65c2a892014-06-05 14:01:30 +1000159int drm_fb_helper_add_one_connector(struct drm_fb_helper *fb_helper, struct drm_connector *connector)
160{
161 struct drm_fb_helper_connector **temp;
162 struct drm_fb_helper_connector *fb_helper_connector;
163
Daniel Vetterf64c5572015-08-25 15:45:13 +0200164 if (!drm_fbdev_emulation)
165 return 0;
166
Dave Airlie65c2a892014-06-05 14:01:30 +1000167 WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex));
168 if (fb_helper->connector_count + 1 > fb_helper->connector_info_alloc_count) {
Damien Lespiau14f476f2014-08-08 19:15:20 +0100169 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 +1000170 if (!temp)
171 return -ENOMEM;
172
173 fb_helper->connector_info_alloc_count = fb_helper->connector_count + 1;
174 fb_helper->connector_info = temp;
175 }
176
177
178 fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL);
179 if (!fb_helper_connector)
180 return -ENOMEM;
181
Dave Airlie6e86d582016-04-27 11:24:51 +1000182 drm_connector_reference(connector);
Dave Airlie65c2a892014-06-05 14:01:30 +1000183 fb_helper_connector->connector = connector;
184 fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector;
185 return 0;
186}
187EXPORT_SYMBOL(drm_fb_helper_add_one_connector);
188
189int drm_fb_helper_remove_one_connector(struct drm_fb_helper *fb_helper,
190 struct drm_connector *connector)
191{
192 struct drm_fb_helper_connector *fb_helper_connector;
193 int i, j;
194
Daniel Vetterf64c5572015-08-25 15:45:13 +0200195 if (!drm_fbdev_emulation)
196 return 0;
197
Dave Airlie65c2a892014-06-05 14:01:30 +1000198 WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex));
199
200 for (i = 0; i < fb_helper->connector_count; i++) {
201 if (fb_helper->connector_info[i]->connector == connector)
202 break;
203 }
204
205 if (i == fb_helper->connector_count)
206 return -EINVAL;
207 fb_helper_connector = fb_helper->connector_info[i];
Dave Airlie6e86d582016-04-27 11:24:51 +1000208 drm_connector_unreference(fb_helper_connector->connector);
Dave Airlie65c2a892014-06-05 14:01:30 +1000209
210 for (j = i + 1; j < fb_helper->connector_count; j++) {
211 fb_helper->connector_info[j - 1] = fb_helper->connector_info[j];
212 }
213 fb_helper->connector_count--;
214 kfree(fb_helper_connector);
Rob Clark2148f182015-01-26 10:11:08 -0500215
Dave Airlie65c2a892014-06-05 14:01:30 +1000216 return 0;
217}
218EXPORT_SYMBOL(drm_fb_helper_remove_one_connector);
219
Jason Wessel99231022010-10-13 14:09:43 -0500220static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper)
221{
222 uint16_t *r_base, *g_base, *b_base;
223 int i;
224
Ville Syrjälä04c0c562013-05-27 20:19:57 +0300225 if (helper->funcs->gamma_get == 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
232 for (i = 0; i < crtc->gamma_size; i++)
233 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
234}
235
236static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc)
237{
238 uint16_t *r_base, *g_base, *b_base;
239
Laurent Pinchartebe0f242012-05-17 13:27:24 +0200240 if (crtc->funcs->gamma_set == NULL)
241 return;
242
Jason Wessel99231022010-10-13 14:09:43 -0500243 r_base = crtc->gamma_store;
244 g_base = r_base + crtc->gamma_size;
245 b_base = g_base + crtc->gamma_size;
246
Maarten Lankhorst7ea77282016-06-07 12:49:30 +0200247 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, crtc->gamma_size);
Jason Wessel99231022010-10-13 14:09:43 -0500248}
249
Daniel Vetter207fd322013-01-20 22:13:14 +0100250/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100251 * drm_fb_helper_debug_enter - implementation for &fb_ops.fb_debug_enter
Daniel Vetter207fd322013-01-20 22:13:14 +0100252 * @info: fbdev registered by the helper
253 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500254int drm_fb_helper_debug_enter(struct fb_info *info)
255{
256 struct drm_fb_helper *helper = info->par;
Jani Nikulabe26a662015-03-11 11:51:06 +0200257 const struct drm_crtc_helper_funcs *funcs;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500258 int i;
259
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500260 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
261 for (i = 0; i < helper->crtc_count; i++) {
262 struct drm_mode_set *mode_set =
263 &helper->crtc_info[i].mode_set;
264
265 if (!mode_set->crtc->enabled)
266 continue;
267
268 funcs = mode_set->crtc->helper_private;
Stefan Christ1b99b722016-11-14 00:03:11 +0100269 if (funcs->mode_set_base_atomic == NULL)
270 continue;
271
Jason Wessel99231022010-10-13 14:09:43 -0500272 drm_fb_helper_save_lut_atomic(mode_set->crtc, helper);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500273 funcs->mode_set_base_atomic(mode_set->crtc,
274 mode_set->fb,
275 mode_set->x,
Jason Wessel413d45d2010-09-26 06:47:25 -0500276 mode_set->y,
Jason Wessel21c74a82010-10-13 14:09:44 -0500277 ENTER_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500278 }
279 }
280
281 return 0;
282}
283EXPORT_SYMBOL(drm_fb_helper_debug_enter);
284
285/* Find the real fb for a given fb helper CRTC */
286static struct drm_framebuffer *drm_mode_config_fb(struct drm_crtc *crtc)
287{
288 struct drm_device *dev = crtc->dev;
289 struct drm_crtc *c;
290
Daniel Vetter6295d602015-07-09 23:44:25 +0200291 drm_for_each_crtc(c, dev) {
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500292 if (crtc->base.id == c->base.id)
Matt Roperf4510a22014-04-01 15:22:40 -0700293 return c->primary->fb;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500294 }
295
296 return NULL;
297}
298
Daniel Vetter207fd322013-01-20 22:13:14 +0100299/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100300 * drm_fb_helper_debug_leave - implementation for &fb_ops.fb_debug_leave
Daniel Vetter207fd322013-01-20 22:13:14 +0100301 * @info: fbdev registered by the helper
302 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500303int drm_fb_helper_debug_leave(struct fb_info *info)
304{
305 struct drm_fb_helper *helper = info->par;
306 struct drm_crtc *crtc;
Jani Nikulabe26a662015-03-11 11:51:06 +0200307 const struct drm_crtc_helper_funcs *funcs;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500308 struct drm_framebuffer *fb;
309 int i;
310
311 for (i = 0; i < helper->crtc_count; i++) {
312 struct drm_mode_set *mode_set = &helper->crtc_info[i].mode_set;
313 crtc = mode_set->crtc;
314 funcs = crtc->helper_private;
315 fb = drm_mode_config_fb(crtc);
316
317 if (!crtc->enabled)
318 continue;
319
320 if (!fb) {
321 DRM_ERROR("no fb to restore??\n");
322 continue;
323 }
324
Stefan Christ1b99b722016-11-14 00:03:11 +0100325 if (funcs->mode_set_base_atomic == NULL)
326 continue;
327
Jason Wessel99231022010-10-13 14:09:43 -0500328 drm_fb_helper_restore_lut_atomic(mode_set->crtc);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500329 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
Jason Wessel21c74a82010-10-13 14:09:44 -0500330 crtc->y, LEAVE_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500331 }
332
333 return 0;
334}
335EXPORT_SYMBOL(drm_fb_helper_debug_leave);
336
Rob Clarkbbb1e522015-08-25 15:35:58 -0400337static int restore_fbdev_mode_atomic(struct drm_fb_helper *fb_helper)
338{
339 struct drm_device *dev = fb_helper->dev;
340 struct drm_plane *plane;
341 struct drm_atomic_state *state;
342 int i, ret;
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100343 unsigned plane_mask;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400344
345 state = drm_atomic_state_alloc(dev);
346 if (!state)
347 return -ENOMEM;
348
349 state->acquire_ctx = dev->mode_config.acquire_ctx;
350retry:
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100351 plane_mask = 0;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400352 drm_for_each_plane(plane, dev) {
353 struct drm_plane_state *plane_state;
354
355 plane_state = drm_atomic_get_plane_state(state, plane);
356 if (IS_ERR(plane_state)) {
357 ret = PTR_ERR(plane_state);
358 goto fail;
359 }
360
Joonas Lahtinen31ad61e2016-07-29 08:50:05 +0300361 plane_state->rotation = DRM_ROTATE_0;
Rob Clarkbbb1e522015-08-25 15:35:58 -0400362
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100363 plane->old_fb = plane->fb;
364 plane_mask |= 1 << drm_plane_index(plane);
365
Rob Clarkbbb1e522015-08-25 15:35:58 -0400366 /* disable non-primary: */
367 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
368 continue;
369
370 ret = __drm_atomic_helper_disable_plane(plane, plane_state);
371 if (ret != 0)
372 goto fail;
373 }
374
375 for(i = 0; i < fb_helper->crtc_count; i++) {
376 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
377
378 ret = __drm_atomic_helper_set_config(mode_set, state);
379 if (ret != 0)
380 goto fail;
381 }
382
383 ret = drm_atomic_commit(state);
Rob Clarkbbb1e522015-08-25 15:35:58 -0400384
385fail:
Maarten Lankhorstf72c6b32015-11-11 11:29:10 +0100386 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Matt Roper94284032015-09-21 17:21:48 -0700387
Rob Clarkbbb1e522015-08-25 15:35:58 -0400388 if (ret == -EDEADLK)
389 goto backoff;
390
Chris Wilson08536952016-10-14 13:18:18 +0100391 drm_atomic_state_put(state);
Rob Clarkbbb1e522015-08-25 15:35:58 -0400392 return ret;
393
394backoff:
395 drm_atomic_state_clear(state);
396 drm_atomic_legacy_backoff(state);
397
398 goto retry;
399}
400
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200401static int restore_fbdev_mode(struct drm_fb_helper *fb_helper)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100402{
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300403 struct drm_device *dev = fb_helper->dev;
404 struct drm_plane *plane;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300405 int i;
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100406
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300407 drm_warn_on_modeset_not_all_locked(dev);
408
Dhinakaran Pandiyana743d752016-12-22 00:50:42 -0800409 if (drm_drv_uses_atomic_modeset(dev))
Rob Clarkbbb1e522015-08-25 15:35:58 -0400410 return restore_fbdev_mode_atomic(fb_helper);
411
Daniel Vetter6295d602015-07-09 23:44:25 +0200412 drm_for_each_plane(plane, dev) {
Matt Ropere27dde32014-04-01 15:22:30 -0700413 if (plane->type != DRM_PLANE_TYPE_PRIMARY)
414 drm_plane_force_disable(plane);
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100415
Ville Syrjälä6686df82016-10-21 22:22:45 +0300416 if (plane->rotation_property)
Ville Syrjäläd138dd32016-09-26 19:30:48 +0300417 drm_mode_plane_set_obj_prop(plane,
418 plane->rotation_property,
419 DRM_ROTATE_0);
Sonika Jindal9783de22014-08-05 11:26:57 +0530420 }
421
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100422 for (i = 0; i < fb_helper->crtc_count; i++) {
423 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300424 struct drm_crtc *crtc = mode_set->crtc;
425 int ret;
426
Alex Deucher03f9abb2015-09-30 14:47:37 -0400427 if (crtc->funcs->cursor_set2) {
428 ret = crtc->funcs->cursor_set2(crtc, NULL, 0, 0, 0, 0, 0);
429 if (ret)
Dave Airlie48f87dd2015-10-16 10:10:32 +1000430 return ret;
Alex Deucher03f9abb2015-09-30 14:47:37 -0400431 } else if (crtc->funcs->cursor_set) {
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300432 ret = crtc->funcs->cursor_set(crtc, NULL, 0, 0, 0);
433 if (ret)
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200434 return ret;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300435 }
436
Daniel Vetter2d13b672012-12-11 13:47:23 +0100437 ret = drm_mode_set_config_internal(mode_set);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100438 if (ret)
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200439 return ret;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100440 }
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200441
442 return 0;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100443}
Rob Clark5ea1f752014-05-30 12:29:48 -0400444
445/**
446 * drm_fb_helper_restore_fbdev_mode_unlocked - restore fbdev configuration
447 * @fb_helper: fbcon to restore
448 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100449 * This should be called from driver's drm &drm_driver.lastclose callback
Rob Clark5ea1f752014-05-30 12:29:48 -0400450 * when implementing an fbcon on top of kms using this helper. This ensures that
451 * the user isn't greeted with a black screen when e.g. X dies.
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200452 *
453 * RETURNS:
454 * Zero if everything went ok, negative error code otherwise.
Rob Clark5ea1f752014-05-30 12:29:48 -0400455 */
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200456int drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper)
Rob Clark5ea1f752014-05-30 12:29:48 -0400457{
458 struct drm_device *dev = fb_helper->dev;
Daniel Vetterb7bdf0a82015-08-25 17:20:28 +0200459 bool do_delayed;
460 int ret;
Dave Airliee2809c72014-11-26 13:15:24 +1000461
Daniel Vetterf64c5572015-08-25 15:45:13 +0200462 if (!drm_fbdev_emulation)
463 return -ENODEV;
464
Rob Clark5ea1f752014-05-30 12:29:48 -0400465 drm_modeset_lock_all(dev);
466 ret = restore_fbdev_mode(fb_helper);
Dave Airliee2809c72014-11-26 13:15:24 +1000467
468 do_delayed = fb_helper->delayed_hotplug;
469 if (do_delayed)
470 fb_helper->delayed_hotplug = false;
Rob Clark5ea1f752014-05-30 12:29:48 -0400471 drm_modeset_unlock_all(dev);
Dave Airliee2809c72014-11-26 13:15:24 +1000472
473 if (do_delayed)
474 drm_fb_helper_hotplug_event(fb_helper);
Rob Clark5ea1f752014-05-30 12:29:48 -0400475 return ret;
476}
477EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode_unlocked);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100478
Geert Uytterhoeven2c4124f2015-08-04 15:22:11 +0200479static bool drm_fb_helper_is_bound(struct drm_fb_helper *fb_helper)
480{
481 struct drm_device *dev = fb_helper->dev;
482 struct drm_crtc *crtc;
483 int bound = 0, crtcs_bound = 0;
484
485 /* Sometimes user space wants everything disabled, so don't steal the
486 * display if there's a master. */
Johannes Bergf17b3ea2016-08-11 11:50:21 +0200487 if (READ_ONCE(dev->master))
Geert Uytterhoeven2c4124f2015-08-04 15:22:11 +0200488 return false;
489
490 drm_for_each_crtc(crtc, dev) {
491 if (crtc->primary->fb)
492 crtcs_bound++;
493 if (crtc->primary->fb == fb_helper->fb)
494 bound++;
495 }
496
497 if (bound < crtcs_bound)
498 return false;
499
500 return true;
501}
502
503#ifdef CONFIG_MAGIC_SYSRQ
Daniel Vetterd21bf462013-01-20 18:09:52 +0100504/*
505 * restore fbcon display for all kms driver's using this helper, used for sysrq
506 * and panic handling.
507 */
Sachin Kamat78b9c352012-08-01 17:15:32 +0530508static bool drm_fb_helper_force_kernel_mode(void)
Dave Airlie785b93e2009-08-28 15:46:53 +1000509{
Dave Airlie785b93e2009-08-28 15:46:53 +1000510 bool ret, error = false;
511 struct drm_fb_helper *helper;
512
513 if (list_empty(&kernel_fb_helper_list))
514 return false;
515
516 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
Thierry Redingb77f0762014-04-29 11:44:32 +0200517 struct drm_device *dev = helper->dev;
518
519 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100520 continue;
521
Daniel Vetterdd908c82015-07-28 13:18:41 +0200522 drm_modeset_lock_all(dev);
Geert Uytterhoeven3d9e35a2015-08-04 15:22:10 +0200523 ret = restore_fbdev_mode(helper);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100524 if (ret)
525 error = true;
Daniel Vettercb597bb2014-07-27 19:09:33 +0200526 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000527 }
528 return error;
529}
530
Dave Airlie785b93e2009-08-28 15:46:53 +1000531static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
532{
Daniel Vetterd21bf462013-01-20 18:09:52 +0100533 bool ret;
534 ret = drm_fb_helper_force_kernel_mode();
535 if (ret == true)
536 DRM_ERROR("Failed to restore crtc configuration\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000537}
538static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
539
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700540static void drm_fb_helper_sysrq(int dummy1)
Dave Airlie785b93e2009-08-28 15:46:53 +1000541{
542 schedule_work(&drm_fb_helper_restore_work);
543}
544
545static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = {
546 .handler = drm_fb_helper_sysrq,
547 .help_msg = "force-fb(V)",
548 .action_msg = "Restore framebuffer console",
549};
Randy Dunlapb8c40d62010-03-25 18:29:05 +0000550#else
551static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
Mikael Petterssonbea1d352009-09-28 18:26:25 +0200552#endif
Dave Airlie785b93e2009-08-28 15:46:53 +1000553
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100554static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
Dave Airlie785b93e2009-08-28 15:46:53 +1000555{
556 struct drm_fb_helper *fb_helper = info->par;
557 struct drm_device *dev = fb_helper->dev;
558 struct drm_crtc *crtc;
Jesse Barnes023eb572010-07-02 10:48:08 -0700559 struct drm_connector *connector;
Jesse Barnes023eb572010-07-02 10:48:08 -0700560 int i, j;
Dave Airlie785b93e2009-08-28 15:46:53 +1000561
562 /*
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100563 * For each CRTC in this fb, turn the connectors on/off.
Dave Airlie785b93e2009-08-28 15:46:53 +1000564 */
Daniel Vetter84849902012-12-02 00:28:11 +0100565 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +0100566 if (!drm_fb_helper_is_bound(fb_helper)) {
567 drm_modeset_unlock_all(dev);
568 return;
569 }
570
Jesse Barnese87b2c42009-09-17 18:14:41 -0700571 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie8be48d92010-03-30 05:34:14 +0000572 crtc = fb_helper->crtc_info[i].mode_set.crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000573
Dave Airlie8be48d92010-03-30 05:34:14 +0000574 if (!crtc->enabled)
575 continue;
Dave Airlie785b93e2009-08-28 15:46:53 +1000576
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100577 /* Walk the connectors & encoders on this fb turning them on/off */
Chris Wilson966a6a12016-11-29 12:02:15 +0000578 drm_fb_helper_for_each_connector(fb_helper, j) {
Jesse Barnes023eb572010-07-02 10:48:08 -0700579 connector = fb_helper->connector_info[j]->connector;
Daniel Vettere04190e2012-09-07 10:14:52 +0200580 connector->funcs->dpms(connector, dpms_mode);
Rob Clark58495562012-10-11 20:50:56 -0500581 drm_object_property_set_value(&connector->base,
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100582 dev->mode_config.dpms_property, dpms_mode);
Jesse Barnes023eb572010-07-02 10:48:08 -0700583 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000584 }
Daniel Vetter84849902012-12-02 00:28:11 +0100585 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000586}
587
Daniel Vetter207fd322013-01-20 22:13:14 +0100588/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100589 * drm_fb_helper_blank - implementation for &fb_ops.fb_blank
Daniel Vetter207fd322013-01-20 22:13:14 +0100590 * @blank: desired blanking state
591 * @info: fbdev registered by the helper
592 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000593int drm_fb_helper_blank(int blank, struct fb_info *info)
594{
Daniel Vetterc50bfd02015-07-28 13:18:40 +0200595 if (oops_in_progress)
596 return -EBUSY;
597
Dave Airlie785b93e2009-08-28 15:46:53 +1000598 switch (blank) {
James Simmons731b5a12009-10-29 20:39:07 +0000599 /* Display: On; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000600 case FB_BLANK_UNBLANK:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100601 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
Dave Airlie785b93e2009-08-28 15:46:53 +1000602 break;
James Simmons731b5a12009-10-29 20:39:07 +0000603 /* Display: Off; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000604 case FB_BLANK_NORMAL:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100605 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000606 break;
James Simmons731b5a12009-10-29 20:39:07 +0000607 /* Display: Off; HSync: Off, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000608 case FB_BLANK_HSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100609 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000610 break;
James Simmons731b5a12009-10-29 20:39:07 +0000611 /* Display: Off; HSync: On, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000612 case FB_BLANK_VSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100613 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
Dave Airlie785b93e2009-08-28 15:46:53 +1000614 break;
James Simmons731b5a12009-10-29 20:39:07 +0000615 /* Display: Off; HSync: Off, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000616 case FB_BLANK_POWERDOWN:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100617 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
Dave Airlie785b93e2009-08-28 15:46:53 +1000618 break;
619 }
620 return 0;
621}
622EXPORT_SYMBOL(drm_fb_helper_blank);
623
Ville Syrjäläa2889602016-10-26 17:41:18 +0300624static void drm_fb_helper_modeset_release(struct drm_fb_helper *helper,
625 struct drm_mode_set *modeset)
626{
627 int i;
628
629 for (i = 0; i < modeset->num_connectors; i++) {
630 drm_connector_unreference(modeset->connectors[i]);
631 modeset->connectors[i] = NULL;
632 }
633 modeset->num_connectors = 0;
634
635 drm_mode_destroy(helper->dev, modeset->mode);
636 modeset->mode = NULL;
637
638 /* FIXME should hold a ref? */
639 modeset->fb = NULL;
640}
641
Dave Airlie785b93e2009-08-28 15:46:53 +1000642static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper)
643{
644 int i;
645
Dave Airlie6e86d582016-04-27 11:24:51 +1000646 for (i = 0; i < helper->connector_count; i++) {
647 drm_connector_unreference(helper->connector_info[i]->connector);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000648 kfree(helper->connector_info[i]);
Dave Airlie6e86d582016-04-27 11:24:51 +1000649 }
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000650 kfree(helper->connector_info);
Ville Syrjäläa2889602016-10-26 17:41:18 +0300651
Sascha Hauera1b77362012-02-01 11:38:22 +0100652 for (i = 0; i < helper->crtc_count; i++) {
Ville Syrjäläa2889602016-10-26 17:41:18 +0300653 struct drm_mode_set *modeset = &helper->crtc_info[i].mode_set;
654
655 drm_fb_helper_modeset_release(helper, modeset);
656 kfree(modeset->connectors);
Sascha Hauera1b77362012-02-01 11:38:22 +0100657 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000658 kfree(helper->crtc_info);
659}
660
Noralf Trønnescfe63422016-08-23 13:54:06 +0200661static void drm_fb_helper_resume_worker(struct work_struct *work)
662{
663 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper,
664 resume_work);
665
666 console_lock();
667 fb_set_suspend(helper->fbdev, 0);
668 console_unlock();
669}
670
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200671static void drm_fb_helper_dirty_work(struct work_struct *work)
672{
673 struct drm_fb_helper *helper = container_of(work, struct drm_fb_helper,
674 dirty_work);
675 struct drm_clip_rect *clip = &helper->dirty_clip;
676 struct drm_clip_rect clip_copy;
677 unsigned long flags;
678
679 spin_lock_irqsave(&helper->dirty_lock, flags);
680 clip_copy = *clip;
681 clip->x1 = clip->y1 = ~0;
682 clip->x2 = clip->y2 = 0;
683 spin_unlock_irqrestore(&helper->dirty_lock, flags);
684
Takashi Iwai87d3b652016-10-20 17:05:30 +0200685 /* call dirty callback only when it has been really touched */
686 if (clip_copy.x1 < clip_copy.x2 && clip_copy.y1 < clip_copy.y2)
687 helper->fb->funcs->dirty(helper->fb, NULL, 0, 0, &clip_copy, 1);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200688}
689
Daniel Vetter207fd322013-01-20 22:13:14 +0100690/**
Thierry Reding10a23102014-06-27 17:19:24 +0200691 * drm_fb_helper_prepare - setup a drm_fb_helper structure
692 * @dev: DRM device
693 * @helper: driver-allocated fbdev helper structure to set up
694 * @funcs: pointer to structure of functions associate with this helper
695 *
696 * Sets up the bare minimum to make the framebuffer helper usable. This is
697 * useful to implement race-free initialization of the polling helpers.
698 */
699void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
700 const struct drm_fb_helper_funcs *funcs)
701{
702 INIT_LIST_HEAD(&helper->kernel_fb_list);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200703 spin_lock_init(&helper->dirty_lock);
Noralf Trønnescfe63422016-08-23 13:54:06 +0200704 INIT_WORK(&helper->resume_work, drm_fb_helper_resume_worker);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200705 INIT_WORK(&helper->dirty_work, drm_fb_helper_dirty_work);
706 helper->dirty_clip.x1 = helper->dirty_clip.y1 = ~0;
Thierry Reding10a23102014-06-27 17:19:24 +0200707 helper->funcs = funcs;
708 helper->dev = dev;
709}
710EXPORT_SYMBOL(drm_fb_helper_prepare);
711
712/**
Daniel Vettered84e252017-02-07 15:10:49 +0100713 * drm_fb_helper_init - initialize a &struct drm_fb_helper
Daniel Vetter207fd322013-01-20 22:13:14 +0100714 * @dev: drm device
715 * @fb_helper: driver-allocated fbdev helper structure to initialize
Daniel Vetter207fd322013-01-20 22:13:14 +0100716 * @max_conn_count: max connector count
717 *
718 * This allocates the structures for the fbdev helper with the given limits.
719 * Note that this won't yet touch the hardware (through the driver interfaces)
720 * nor register the fbdev. This is only done in drm_fb_helper_initial_config()
721 * to allow driver writes more control over the exact init sequence.
722 *
Thierry Reding10a23102014-06-27 17:19:24 +0200723 * Drivers must call drm_fb_helper_prepare() before calling this function.
Daniel Vetter207fd322013-01-20 22:13:14 +0100724 *
725 * RETURNS:
726 * Zero if everything went ok, nonzero otherwise.
727 */
Dave Airlie4abe3522010-03-30 05:34:18 +0000728int drm_fb_helper_init(struct drm_device *dev,
729 struct drm_fb_helper *fb_helper,
Gabriel Krisman Bertazie4563f62017-02-02 14:26:40 -0200730 int max_conn_count)
Dave Airlie785b93e2009-08-28 15:46:53 +1000731{
Dave Airlie785b93e2009-08-28 15:46:53 +1000732 struct drm_crtc *crtc;
Gabriel Krisman Bertazie4563f62017-02-02 14:26:40 -0200733 struct drm_mode_config *config = &dev->mode_config;
Dave Airlie785b93e2009-08-28 15:46:53 +1000734 int i;
735
Daniel Vetterf64c5572015-08-25 15:45:13 +0200736 if (!drm_fbdev_emulation)
737 return 0;
738
Xiubo Li04cfe972014-03-10 09:33:58 +0800739 if (!max_conn_count)
740 return -EINVAL;
741
Gabriel Krisman Bertazie4563f62017-02-02 14:26:40 -0200742 fb_helper->crtc_info = kcalloc(config->num_crtc, sizeof(struct drm_fb_helper_crtc), GFP_KERNEL);
Dave Airlie4abe3522010-03-30 05:34:18 +0000743 if (!fb_helper->crtc_info)
Dave Airlie785b93e2009-08-28 15:46:53 +1000744 return -ENOMEM;
745
Gabriel Krisman Bertazie4563f62017-02-02 14:26:40 -0200746 fb_helper->crtc_count = config->num_crtc;
Dave Airlie4abe3522010-03-30 05:34:18 +0000747 fb_helper->connector_info = kcalloc(dev->mode_config.num_connector, sizeof(struct drm_fb_helper_connector *), GFP_KERNEL);
748 if (!fb_helper->connector_info) {
749 kfree(fb_helper->crtc_info);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000750 return -ENOMEM;
751 }
Dave Airlie65c2a892014-06-05 14:01:30 +1000752 fb_helper->connector_info_alloc_count = dev->mode_config.num_connector;
Dave Airlie4abe3522010-03-30 05:34:18 +0000753 fb_helper->connector_count = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000754
Gabriel Krisman Bertazie4563f62017-02-02 14:26:40 -0200755 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000756 fb_helper->crtc_info[i].mode_set.connectors =
Dave Airlie785b93e2009-08-28 15:46:53 +1000757 kcalloc(max_conn_count,
758 sizeof(struct drm_connector *),
759 GFP_KERNEL);
760
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200761 if (!fb_helper->crtc_info[i].mode_set.connectors)
Dave Airlie785b93e2009-08-28 15:46:53 +1000762 goto out_free;
Dave Airlie4abe3522010-03-30 05:34:18 +0000763 fb_helper->crtc_info[i].mode_set.num_connectors = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000764 }
765
766 i = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200767 drm_for_each_crtc(crtc, dev) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000768 fb_helper->crtc_info[i].mode_set.crtc = crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000769 i++;
770 }
Sascha Hauere9ad3182012-02-01 11:38:25 +0100771
Dave Airlie785b93e2009-08-28 15:46:53 +1000772 return 0;
773out_free:
Dave Airlie4abe3522010-03-30 05:34:18 +0000774 drm_fb_helper_crtc_free(fb_helper);
Dave Airlie785b93e2009-08-28 15:46:53 +1000775 return -ENOMEM;
776}
Dave Airlie4abe3522010-03-30 05:34:18 +0000777EXPORT_SYMBOL(drm_fb_helper_init);
778
Archit Tanejab8017d62015-07-22 14:57:56 +0530779/**
780 * drm_fb_helper_alloc_fbi - allocate fb_info and some of its members
781 * @fb_helper: driver-allocated fbdev helper
782 *
783 * A helper to alloc fb_info and the members cmap and apertures. Called
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100784 * by the driver within the fb_probe fb_helper callback function. Drivers do not
785 * need to release the allocated fb_info structure themselves, this is
786 * automatically done when calling drm_fb_helper_fini().
Archit Tanejab8017d62015-07-22 14:57:56 +0530787 *
788 * RETURNS:
789 * fb_info pointer if things went okay, pointer containing error code
790 * otherwise
791 */
792struct fb_info *drm_fb_helper_alloc_fbi(struct drm_fb_helper *fb_helper)
793{
794 struct device *dev = fb_helper->dev->dev;
795 struct fb_info *info;
796 int ret;
797
798 info = framebuffer_alloc(0, dev);
799 if (!info)
800 return ERR_PTR(-ENOMEM);
801
802 ret = fb_alloc_cmap(&info->cmap, 256, 0);
803 if (ret)
804 goto err_release;
805
806 info->apertures = alloc_apertures(1);
807 if (!info->apertures) {
808 ret = -ENOMEM;
809 goto err_free_cmap;
810 }
811
812 fb_helper->fbdev = info;
813
814 return info;
815
816err_free_cmap:
817 fb_dealloc_cmap(&info->cmap);
818err_release:
819 framebuffer_release(info);
820 return ERR_PTR(ret);
821}
822EXPORT_SYMBOL(drm_fb_helper_alloc_fbi);
823
824/**
825 * drm_fb_helper_unregister_fbi - unregister fb_info framebuffer device
826 * @fb_helper: driver-allocated fbdev helper
827 *
828 * A wrapper around unregister_framebuffer, to release the fb_info
Daniel Vettered84e252017-02-07 15:10:49 +0100829 * framebuffer device. This must be called before releasing all resources for
830 * @fb_helper by calling drm_fb_helper_fini().
Archit Tanejab8017d62015-07-22 14:57:56 +0530831 */
832void drm_fb_helper_unregister_fbi(struct drm_fb_helper *fb_helper)
833{
834 if (fb_helper && fb_helper->fbdev)
835 unregister_framebuffer(fb_helper->fbdev);
836}
837EXPORT_SYMBOL(drm_fb_helper_unregister_fbi);
838
839/**
Daniel Vettered84e252017-02-07 15:10:49 +0100840 * drm_fb_helper_fini - finialize a &struct drm_fb_helper
841 * @fb_helper: driver-allocated fbdev helper
842 *
843 * This cleans up all remaining resources associated with @fb_helper. Must be
844 * called after drm_fb_helper_unlink_fbi() was called.
845 */
Dave Airlie4abe3522010-03-30 05:34:18 +0000846void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
847{
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100848 struct fb_info *info;
849
850 if (!drm_fbdev_emulation || !fb_helper)
Daniel Vetterf64c5572015-08-25 15:45:13 +0200851 return;
852
Daniel Vetterda7bdda2017-02-07 17:16:03 +0100853 info = fb_helper->fbdev;
854 if (info) {
855 if (info->cmap.len)
856 fb_dealloc_cmap(&info->cmap);
857 framebuffer_release(info);
858 }
859 fb_helper->fbdev = NULL;
860
Chris Wilsona53ca632016-11-29 12:02:17 +0000861 mutex_lock(&kernel_fb_helper_lock);
Dave Airlie4abe3522010-03-30 05:34:18 +0000862 if (!list_empty(&fb_helper->kernel_fb_list)) {
863 list_del(&fb_helper->kernel_fb_list);
864 if (list_empty(&kernel_fb_helper_list)) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000865 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
866 }
867 }
Chris Wilsona53ca632016-11-29 12:02:17 +0000868 mutex_unlock(&kernel_fb_helper_lock);
Dave Airlie4abe3522010-03-30 05:34:18 +0000869
870 drm_fb_helper_crtc_free(fb_helper);
871
Dave Airlie4abe3522010-03-30 05:34:18 +0000872}
873EXPORT_SYMBOL(drm_fb_helper_fini);
Dave Airlie785b93e2009-08-28 15:46:53 +1000874
Archit Taneja47074ab2015-07-22 14:57:57 +0530875/**
876 * drm_fb_helper_unlink_fbi - wrapper around unlink_framebuffer
877 * @fb_helper: driver-allocated fbdev helper
878 *
879 * A wrapper around unlink_framebuffer implemented by fbdev core
880 */
881void drm_fb_helper_unlink_fbi(struct drm_fb_helper *fb_helper)
882{
883 if (fb_helper && fb_helper->fbdev)
884 unlink_framebuffer(fb_helper->fbdev);
885}
886EXPORT_SYMBOL(drm_fb_helper_unlink_fbi);
887
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200888static void drm_fb_helper_dirty(struct fb_info *info, u32 x, u32 y,
889 u32 width, u32 height)
890{
891 struct drm_fb_helper *helper = info->par;
892 struct drm_clip_rect *clip = &helper->dirty_clip;
893 unsigned long flags;
894
895 if (!helper->fb->funcs->dirty)
896 return;
897
898 spin_lock_irqsave(&helper->dirty_lock, flags);
899 clip->x1 = min_t(u32, clip->x1, x);
900 clip->y1 = min_t(u32, clip->y1, y);
901 clip->x2 = max_t(u32, clip->x2, x + width);
902 clip->y2 = max_t(u32, clip->y2, y + height);
903 spin_unlock_irqrestore(&helper->dirty_lock, flags);
904
905 schedule_work(&helper->dirty_work);
906}
907
908/**
909 * drm_fb_helper_deferred_io() - fbdev deferred_io callback function
910 * @info: fb_info struct pointer
911 * @pagelist: list of dirty mmap framebuffer pages
912 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100913 * This function is used as the &fb_deferred_io.deferred_io
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200914 * callback function for flushing the fbdev mmap writes.
915 */
916void drm_fb_helper_deferred_io(struct fb_info *info,
917 struct list_head *pagelist)
918{
919 unsigned long start, end, min, max;
920 struct page *page;
921 u32 y1, y2;
922
923 min = ULONG_MAX;
924 max = 0;
925 list_for_each_entry(page, pagelist, lru) {
926 start = page->index << PAGE_SHIFT;
927 end = start + PAGE_SIZE - 1;
928 min = min(min, start);
929 max = max(max, end);
930 }
931
932 if (min < max) {
933 y1 = min / info->fix.line_length;
934 y2 = min_t(u32, DIV_ROUND_UP(max, info->fix.line_length),
935 info->var.yres);
936 drm_fb_helper_dirty(info, 0, y1, info->var.xres, y2 - y1);
937 }
938}
939EXPORT_SYMBOL(drm_fb_helper_deferred_io);
940
Archit Tanejacbb1a822015-07-31 16:21:41 +0530941/**
942 * drm_fb_helper_sys_read - wrapper around fb_sys_read
943 * @info: fb_info struct pointer
944 * @buf: userspace buffer to read from framebuffer memory
945 * @count: number of bytes to read from framebuffer memory
946 * @ppos: read offset within framebuffer memory
947 *
948 * A wrapper around fb_sys_read implemented by fbdev core
949 */
950ssize_t drm_fb_helper_sys_read(struct fb_info *info, char __user *buf,
951 size_t count, loff_t *ppos)
952{
953 return fb_sys_read(info, buf, count, ppos);
954}
955EXPORT_SYMBOL(drm_fb_helper_sys_read);
956
957/**
958 * drm_fb_helper_sys_write - wrapper around fb_sys_write
959 * @info: fb_info struct pointer
960 * @buf: userspace buffer to write to framebuffer memory
961 * @count: number of bytes to write to framebuffer memory
962 * @ppos: write offset within framebuffer memory
963 *
964 * A wrapper around fb_sys_write implemented by fbdev core
965 */
966ssize_t drm_fb_helper_sys_write(struct fb_info *info, const char __user *buf,
967 size_t count, loff_t *ppos)
968{
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200969 ssize_t ret;
970
971 ret = fb_sys_write(info, buf, count, ppos);
972 if (ret > 0)
973 drm_fb_helper_dirty(info, 0, 0, info->var.xres,
974 info->var.yres);
975
976 return ret;
Archit Tanejacbb1a822015-07-31 16:21:41 +0530977}
978EXPORT_SYMBOL(drm_fb_helper_sys_write);
979
Archit Taneja742547b2015-07-31 16:21:42 +0530980/**
981 * drm_fb_helper_sys_fillrect - wrapper around sys_fillrect
982 * @info: fbdev registered by the helper
983 * @rect: info about rectangle to fill
984 *
985 * A wrapper around sys_fillrect implemented by fbdev core
986 */
987void drm_fb_helper_sys_fillrect(struct fb_info *info,
988 const struct fb_fillrect *rect)
989{
990 sys_fillrect(info, rect);
Noralf Trønneseaa434d2016-04-28 17:18:33 +0200991 drm_fb_helper_dirty(info, rect->dx, rect->dy,
992 rect->width, rect->height);
Archit Taneja742547b2015-07-31 16:21:42 +0530993}
994EXPORT_SYMBOL(drm_fb_helper_sys_fillrect);
995
996/**
997 * drm_fb_helper_sys_copyarea - wrapper around sys_copyarea
998 * @info: fbdev registered by the helper
999 * @area: info about area to copy
1000 *
1001 * A wrapper around sys_copyarea implemented by fbdev core
1002 */
1003void drm_fb_helper_sys_copyarea(struct fb_info *info,
1004 const struct fb_copyarea *area)
1005{
1006 sys_copyarea(info, area);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001007 drm_fb_helper_dirty(info, area->dx, area->dy,
1008 area->width, area->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301009}
1010EXPORT_SYMBOL(drm_fb_helper_sys_copyarea);
1011
1012/**
1013 * drm_fb_helper_sys_imageblit - wrapper around sys_imageblit
1014 * @info: fbdev registered by the helper
1015 * @image: info about image to blit
1016 *
1017 * A wrapper around sys_imageblit implemented by fbdev core
1018 */
1019void drm_fb_helper_sys_imageblit(struct fb_info *info,
1020 const struct fb_image *image)
1021{
1022 sys_imageblit(info, image);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001023 drm_fb_helper_dirty(info, image->dx, image->dy,
1024 image->width, image->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301025}
1026EXPORT_SYMBOL(drm_fb_helper_sys_imageblit);
1027
1028/**
1029 * drm_fb_helper_cfb_fillrect - wrapper around cfb_fillrect
1030 * @info: fbdev registered by the helper
1031 * @rect: info about rectangle to fill
1032 *
1033 * A wrapper around cfb_imageblit implemented by fbdev core
1034 */
1035void drm_fb_helper_cfb_fillrect(struct fb_info *info,
1036 const struct fb_fillrect *rect)
1037{
1038 cfb_fillrect(info, rect);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001039 drm_fb_helper_dirty(info, rect->dx, rect->dy,
1040 rect->width, rect->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301041}
1042EXPORT_SYMBOL(drm_fb_helper_cfb_fillrect);
1043
1044/**
1045 * drm_fb_helper_cfb_copyarea - wrapper around cfb_copyarea
1046 * @info: fbdev registered by the helper
1047 * @area: info about area to copy
1048 *
1049 * A wrapper around cfb_copyarea implemented by fbdev core
1050 */
1051void drm_fb_helper_cfb_copyarea(struct fb_info *info,
1052 const struct fb_copyarea *area)
1053{
1054 cfb_copyarea(info, area);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001055 drm_fb_helper_dirty(info, area->dx, area->dy,
1056 area->width, area->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301057}
1058EXPORT_SYMBOL(drm_fb_helper_cfb_copyarea);
1059
1060/**
1061 * drm_fb_helper_cfb_imageblit - wrapper around cfb_imageblit
1062 * @info: fbdev registered by the helper
1063 * @image: info about image to blit
1064 *
1065 * A wrapper around cfb_imageblit implemented by fbdev core
1066 */
1067void drm_fb_helper_cfb_imageblit(struct fb_info *info,
1068 const struct fb_image *image)
1069{
1070 cfb_imageblit(info, image);
Noralf Trønneseaa434d2016-04-28 17:18:33 +02001071 drm_fb_helper_dirty(info, image->dx, image->dy,
1072 image->width, image->height);
Archit Taneja742547b2015-07-31 16:21:42 +05301073}
1074EXPORT_SYMBOL(drm_fb_helper_cfb_imageblit);
1075
Archit Tanejafdefa582015-07-31 16:21:43 +05301076/**
1077 * drm_fb_helper_set_suspend - wrapper around fb_set_suspend
1078 * @fb_helper: driver-allocated fbdev helper
Daniel Vetter28579f32016-08-23 17:27:27 +02001079 * @suspend: whether to suspend or resume
Archit Tanejafdefa582015-07-31 16:21:43 +05301080 *
Noralf Trønnescfe63422016-08-23 13:54:06 +02001081 * A wrapper around fb_set_suspend implemented by fbdev core.
1082 * Use drm_fb_helper_set_suspend_unlocked() if you don't need to take
1083 * the lock yourself
Archit Tanejafdefa582015-07-31 16:21:43 +05301084 */
Daniel Vetter28579f32016-08-23 17:27:27 +02001085void drm_fb_helper_set_suspend(struct drm_fb_helper *fb_helper, bool suspend)
Archit Tanejafdefa582015-07-31 16:21:43 +05301086{
1087 if (fb_helper && fb_helper->fbdev)
Daniel Vetter28579f32016-08-23 17:27:27 +02001088 fb_set_suspend(fb_helper->fbdev, suspend);
Archit Tanejafdefa582015-07-31 16:21:43 +05301089}
1090EXPORT_SYMBOL(drm_fb_helper_set_suspend);
1091
Noralf Trønnescfe63422016-08-23 13:54:06 +02001092/**
1093 * drm_fb_helper_set_suspend_unlocked - wrapper around fb_set_suspend that also
1094 * takes the console lock
1095 * @fb_helper: driver-allocated fbdev helper
Daniel Vetter28579f32016-08-23 17:27:27 +02001096 * @suspend: whether to suspend or resume
Noralf Trønnescfe63422016-08-23 13:54:06 +02001097 *
1098 * A wrapper around fb_set_suspend() that takes the console lock. If the lock
1099 * isn't available on resume, a worker is tasked with waiting for the lock
1100 * to become available. The console lock can be pretty contented on resume
1101 * due to all the printk activity.
1102 *
1103 * This function can be called multiple times with the same state since
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001104 * &fb_info.state is checked to see if fbdev is running or not before locking.
Noralf Trønnescfe63422016-08-23 13:54:06 +02001105 *
1106 * Use drm_fb_helper_set_suspend() if you need to take the lock yourself.
1107 */
1108void drm_fb_helper_set_suspend_unlocked(struct drm_fb_helper *fb_helper,
Daniel Vetter28579f32016-08-23 17:27:27 +02001109 bool suspend)
Noralf Trønnescfe63422016-08-23 13:54:06 +02001110{
1111 if (!fb_helper || !fb_helper->fbdev)
1112 return;
1113
1114 /* make sure there's no pending/ongoing resume */
1115 flush_work(&fb_helper->resume_work);
1116
1117 if (suspend) {
1118 if (fb_helper->fbdev->state != FBINFO_STATE_RUNNING)
1119 return;
1120
1121 console_lock();
1122
1123 } else {
1124 if (fb_helper->fbdev->state == FBINFO_STATE_RUNNING)
1125 return;
1126
1127 if (!console_trylock()) {
1128 schedule_work(&fb_helper->resume_work);
1129 return;
1130 }
1131 }
1132
1133 fb_set_suspend(fb_helper->fbdev, suspend);
1134 console_unlock();
1135}
1136EXPORT_SYMBOL(drm_fb_helper_set_suspend_unlocked);
1137
Dave Airliec850cb72009-10-23 18:49:03 +10001138static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green,
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001139 u16 blue, u16 regno, struct fb_info *info)
1140{
1141 struct drm_fb_helper *fb_helper = info->par;
1142 struct drm_framebuffer *fb = fb_helper->fb;
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001143
Dave Airliec850cb72009-10-23 18:49:03 +10001144 if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
1145 u32 *palette;
1146 u32 value;
1147 /* place color in psuedopalette */
1148 if (regno > 16)
1149 return -EINVAL;
1150 palette = (u32 *)info->pseudo_palette;
1151 red >>= (16 - info->var.red.length);
1152 green >>= (16 - info->var.green.length);
1153 blue >>= (16 - info->var.blue.length);
1154 value = (red << info->var.red.offset) |
1155 (green << info->var.green.offset) |
1156 (blue << info->var.blue.offset);
Rob Clark9da12b6a2011-02-16 02:45:51 +00001157 if (info->var.transp.length > 0) {
1158 u32 mask = (1 << info->var.transp.length) - 1;
1159 mask <<= info->var.transp.offset;
1160 value |= mask;
1161 }
Dave Airliec850cb72009-10-23 18:49:03 +10001162 palette[regno] = value;
1163 return 0;
1164 }
1165
Ville Syrjälä04c0c562013-05-27 20:19:57 +03001166 /*
1167 * The driver really shouldn't advertise pseudo/directcolor
1168 * visuals if it can't deal with the palette.
1169 */
1170 if (WARN_ON(!fb_helper->funcs->gamma_set ||
1171 !fb_helper->funcs->gamma_get))
1172 return -EINVAL;
1173
Ville Syrjälä272725c2016-12-14 23:32:20 +02001174 WARN_ON(fb->format->cpp[0] != 1);
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001175
Daniel Vetterfef14802016-03-30 11:51:17 +02001176 fb_helper->funcs->gamma_set(crtc, red, green, blue, regno);
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001177
Dave Airliec850cb72009-10-23 18:49:03 +10001178 return 0;
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001179}
1180
Daniel Vetter207fd322013-01-20 22:13:14 +01001181/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001182 * drm_fb_helper_setcmap - implementation for &fb_ops.fb_setcmap
Daniel Vetter207fd322013-01-20 22:13:14 +01001183 * @cmap: cmap to set
1184 * @info: fbdev registered by the helper
1185 */
Dave Airlie068143d2009-10-05 09:58:02 +10001186int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
1187{
1188 struct drm_fb_helper *fb_helper = info->par;
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001189 struct drm_device *dev = fb_helper->dev;
Jani Nikulabe26a662015-03-11 11:51:06 +02001190 const struct drm_crtc_helper_funcs *crtc_funcs;
Dave Airlie068143d2009-10-05 09:58:02 +10001191 u16 *red, *green, *blue, *transp;
1192 struct drm_crtc *crtc;
roel062ac622011-03-07 18:00:34 +01001193 int i, j, rc = 0;
Dave Airlie068143d2009-10-05 09:58:02 +10001194 int start;
1195
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001196 if (oops_in_progress)
Rui Wang9aa609e2014-12-15 11:28:26 -08001197 return -EBUSY;
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001198
1199 drm_modeset_lock_all(dev);
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001200 if (!drm_fb_helper_is_bound(fb_helper)) {
1201 drm_modeset_unlock_all(dev);
1202 return -EBUSY;
1203 }
1204
Dave Airlie8be48d92010-03-30 05:34:14 +00001205 for (i = 0; i < fb_helper->crtc_count; i++) {
1206 crtc = fb_helper->crtc_info[i].mode_set.crtc;
1207 crtc_funcs = crtc->helper_private;
Dave Airlie068143d2009-10-05 09:58:02 +10001208
1209 red = cmap->red;
1210 green = cmap->green;
1211 blue = cmap->blue;
1212 transp = cmap->transp;
1213 start = cmap->start;
1214
roel062ac622011-03-07 18:00:34 +01001215 for (j = 0; j < cmap->len; j++) {
Dave Airlie068143d2009-10-05 09:58:02 +10001216 u16 hred, hgreen, hblue, htransp = 0xffff;
1217
1218 hred = *red++;
1219 hgreen = *green++;
1220 hblue = *blue++;
1221
1222 if (transp)
1223 htransp = *transp++;
1224
Dave Airliec850cb72009-10-23 18:49:03 +10001225 rc = setcolreg(crtc, hred, hgreen, hblue, start++, info);
1226 if (rc)
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001227 goto out;
Dave Airlie068143d2009-10-05 09:58:02 +10001228 }
Ville Syrjälä04c0c562013-05-27 20:19:57 +03001229 if (crtc_funcs->load_lut)
1230 crtc_funcs->load_lut(crtc);
Dave Airlie068143d2009-10-05 09:58:02 +10001231 }
Ville Syrjälä8391a3d2013-05-27 20:19:56 +03001232 out:
1233 drm_modeset_unlock_all(dev);
Dave Airlie068143d2009-10-05 09:58:02 +10001234 return rc;
1235}
1236EXPORT_SYMBOL(drm_fb_helper_setcmap);
1237
Daniel Vetter207fd322013-01-20 22:13:14 +01001238/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001239 * drm_fb_helper_check_var - implementation for &fb_ops.fb_check_var
Daniel Vetter207fd322013-01-20 22:13:14 +01001240 * @var: screeninfo to check
1241 * @info: fbdev registered by the helper
1242 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001243int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
1244 struct fb_info *info)
1245{
1246 struct drm_fb_helper *fb_helper = info->par;
1247 struct drm_framebuffer *fb = fb_helper->fb;
1248 int depth;
1249
Jason Wesself90ebd92010-08-05 09:22:32 -05001250 if (var->pixclock != 0 || in_dbg_master())
Dave Airlie785b93e2009-08-28 15:46:53 +10001251 return -EINVAL;
1252
Stefan Agner865afb12016-10-11 16:15:04 -07001253 /*
1254 * Changes struct fb_var_screeninfo are currently not pushed back
1255 * to KMS, hence fail if different settings are requested.
1256 */
Ville Syrjälä272725c2016-12-14 23:32:20 +02001257 if (var->bits_per_pixel != fb->format->cpp[0] * 8 ||
Stefan Agner865afb12016-10-11 16:15:04 -07001258 var->xres != fb->width || var->yres != fb->height ||
1259 var->xres_virtual != fb->width || var->yres_virtual != fb->height) {
1260 DRM_DEBUG("fb userspace requested width/height/bpp different than current fb "
Chris Wilson62fb3762012-03-26 21:15:53 +01001261 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
1262 var->xres, var->yres, var->bits_per_pixel,
1263 var->xres_virtual, var->yres_virtual,
Ville Syrjälä272725c2016-12-14 23:32:20 +02001264 fb->width, fb->height, fb->format->cpp[0] * 8);
Dave Airlie785b93e2009-08-28 15:46:53 +10001265 return -EINVAL;
1266 }
1267
1268 switch (var->bits_per_pixel) {
1269 case 16:
1270 depth = (var->green.length == 6) ? 16 : 15;
1271 break;
1272 case 32:
1273 depth = (var->transp.length > 0) ? 32 : 24;
1274 break;
1275 default:
1276 depth = var->bits_per_pixel;
1277 break;
1278 }
1279
1280 switch (depth) {
1281 case 8:
1282 var->red.offset = 0;
1283 var->green.offset = 0;
1284 var->blue.offset = 0;
1285 var->red.length = 8;
1286 var->green.length = 8;
1287 var->blue.length = 8;
1288 var->transp.length = 0;
1289 var->transp.offset = 0;
1290 break;
1291 case 15:
1292 var->red.offset = 10;
1293 var->green.offset = 5;
1294 var->blue.offset = 0;
1295 var->red.length = 5;
1296 var->green.length = 5;
1297 var->blue.length = 5;
1298 var->transp.length = 1;
1299 var->transp.offset = 15;
1300 break;
1301 case 16:
1302 var->red.offset = 11;
1303 var->green.offset = 5;
1304 var->blue.offset = 0;
1305 var->red.length = 5;
1306 var->green.length = 6;
1307 var->blue.length = 5;
1308 var->transp.length = 0;
1309 var->transp.offset = 0;
1310 break;
1311 case 24:
1312 var->red.offset = 16;
1313 var->green.offset = 8;
1314 var->blue.offset = 0;
1315 var->red.length = 8;
1316 var->green.length = 8;
1317 var->blue.length = 8;
1318 var->transp.length = 0;
1319 var->transp.offset = 0;
1320 break;
1321 case 32:
1322 var->red.offset = 16;
1323 var->green.offset = 8;
1324 var->blue.offset = 0;
1325 var->red.length = 8;
1326 var->green.length = 8;
1327 var->blue.length = 8;
1328 var->transp.length = 8;
1329 var->transp.offset = 24;
1330 break;
1331 default:
1332 return -EINVAL;
1333 }
1334 return 0;
1335}
1336EXPORT_SYMBOL(drm_fb_helper_check_var);
1337
Daniel Vetter207fd322013-01-20 22:13:14 +01001338/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001339 * drm_fb_helper_set_par - implementation for &fb_ops.fb_set_par
Daniel Vetter207fd322013-01-20 22:13:14 +01001340 * @info: fbdev registered by the helper
1341 *
1342 * This will let fbcon do the mode init and is called at initialization time by
1343 * the fbdev core when registering the driver, and later on through the hotplug
1344 * callback.
1345 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001346int drm_fb_helper_set_par(struct fb_info *info)
1347{
1348 struct drm_fb_helper *fb_helper = info->par;
Dave Airlie785b93e2009-08-28 15:46:53 +10001349 struct fb_var_screeninfo *var = &info->var;
Dave Airlie785b93e2009-08-28 15:46:53 +10001350
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001351 if (oops_in_progress)
1352 return -EBUSY;
1353
Clemens Ladisch5349ef32009-11-04 09:42:52 +01001354 if (var->pixclock != 0) {
Pavel Roskin172e91f2010-02-11 14:31:32 +10001355 DRM_ERROR("PIXEL CLOCK SET\n");
Dave Airlie785b93e2009-08-28 15:46:53 +10001356 return -EINVAL;
1357 }
1358
Rob Clark5ea1f752014-05-30 12:29:48 -04001359 drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
Dave Airlie4abe3522010-03-30 05:34:18 +00001360
Dave Airlie785b93e2009-08-28 15:46:53 +10001361 return 0;
1362}
1363EXPORT_SYMBOL(drm_fb_helper_set_par);
1364
Rob Clark1edf0262015-08-25 15:35:59 -04001365static int pan_display_atomic(struct fb_var_screeninfo *var,
Daniel Vettera0fb6ad2015-10-16 19:11:30 +02001366 struct fb_info *info)
Rob Clark1edf0262015-08-25 15:35:59 -04001367{
1368 struct drm_fb_helper *fb_helper = info->par;
1369 struct drm_device *dev = fb_helper->dev;
1370 struct drm_atomic_state *state;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001371 struct drm_plane *plane;
Rob Clark1edf0262015-08-25 15:35:59 -04001372 int i, ret;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001373 unsigned plane_mask;
Rob Clark1edf0262015-08-25 15:35:59 -04001374
1375 state = drm_atomic_state_alloc(dev);
1376 if (!state)
1377 return -ENOMEM;
1378
1379 state->acquire_ctx = dev->mode_config.acquire_ctx;
1380retry:
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001381 plane_mask = 0;
Rob Clark1edf0262015-08-25 15:35:59 -04001382 for(i = 0; i < fb_helper->crtc_count; i++) {
1383 struct drm_mode_set *mode_set;
1384
1385 mode_set = &fb_helper->crtc_info[i].mode_set;
1386
1387 mode_set->x = var->xoffset;
1388 mode_set->y = var->yoffset;
1389
1390 ret = __drm_atomic_helper_set_config(mode_set, state);
1391 if (ret != 0)
1392 goto fail;
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001393
1394 plane = mode_set->crtc->primary;
Matt Roper7118fd92015-12-18 17:27:01 -08001395 plane_mask |= (1 << drm_plane_index(plane));
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001396 plane->old_fb = plane->fb;
Rob Clark1edf0262015-08-25 15:35:59 -04001397 }
1398
1399 ret = drm_atomic_commit(state);
1400 if (ret != 0)
1401 goto fail;
1402
1403 info->var.xoffset = var->xoffset;
1404 info->var.yoffset = var->yoffset;
1405
Rob Clark1edf0262015-08-25 15:35:59 -04001406fail:
Maarten Lankhorst07d3bad2015-11-11 11:29:11 +01001407 drm_atomic_clean_old_fb(dev, plane_mask, ret);
Daniel Vettera0fb6ad2015-10-16 19:11:30 +02001408
Rob Clark1edf0262015-08-25 15:35:59 -04001409 if (ret == -EDEADLK)
1410 goto backoff;
1411
Chris Wilson08536952016-10-14 13:18:18 +01001412 drm_atomic_state_put(state);
Rob Clark1edf0262015-08-25 15:35:59 -04001413 return ret;
1414
1415backoff:
1416 drm_atomic_state_clear(state);
1417 drm_atomic_legacy_backoff(state);
1418
1419 goto retry;
1420}
1421
Daniel Vetter207fd322013-01-20 22:13:14 +01001422/**
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001423 * drm_fb_helper_pan_display - implementation for &fb_ops.fb_pan_display
Daniel Vetter207fd322013-01-20 22:13:14 +01001424 * @var: updated screen information
1425 * @info: fbdev registered by the helper
1426 */
Dave Airlie785b93e2009-08-28 15:46:53 +10001427int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
1428 struct fb_info *info)
1429{
1430 struct drm_fb_helper *fb_helper = info->par;
1431 struct drm_device *dev = fb_helper->dev;
1432 struct drm_mode_set *modeset;
Dave Airlie785b93e2009-08-28 15:46:53 +10001433 int ret = 0;
1434 int i;
1435
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001436 if (oops_in_progress)
Rui Wang9aa609e2014-12-15 11:28:26 -08001437 return -EBUSY;
Daniel Vetterc50bfd02015-07-28 13:18:40 +02001438
1439 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +01001440 if (!drm_fb_helper_is_bound(fb_helper)) {
1441 drm_modeset_unlock_all(dev);
1442 return -EBUSY;
1443 }
1444
Dhinakaran Pandiyana743d752016-12-22 00:50:42 -08001445 if (drm_drv_uses_atomic_modeset(dev)) {
Rob Clark1edf0262015-08-25 15:35:59 -04001446 ret = pan_display_atomic(var, info);
1447 goto unlock;
1448 }
1449
Dave Airlie8be48d92010-03-30 05:34:14 +00001450 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001451 modeset = &fb_helper->crtc_info[i].mode_set;
1452
1453 modeset->x = var->xoffset;
1454 modeset->y = var->yoffset;
1455
1456 if (modeset->num_connectors) {
Daniel Vetter2d13b672012-12-11 13:47:23 +01001457 ret = drm_mode_set_config_internal(modeset);
Dave Airlie785b93e2009-08-28 15:46:53 +10001458 if (!ret) {
1459 info->var.xoffset = var->xoffset;
1460 info->var.yoffset = var->yoffset;
1461 }
1462 }
1463 }
Rob Clark1edf0262015-08-25 15:35:59 -04001464unlock:
Daniel Vetter84849902012-12-02 00:28:11 +01001465 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +10001466 return ret;
1467}
1468EXPORT_SYMBOL(drm_fb_helper_pan_display);
1469
Daniel Vetter8acf6582013-01-21 23:38:37 +01001470/*
Daniel Vetter207fd322013-01-20 22:13:14 +01001471 * Allocates the backing storage and sets up the fbdev info structure through
1472 * the ->fb_probe callback and then registers the fbdev and sets up the panic
1473 * notifier.
Daniel Vetter8acf6582013-01-21 23:38:37 +01001474 */
Daniel Vetterde1ace52013-01-20 21:50:49 +01001475static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
1476 int preferred_bpp)
Dave Airlie785b93e2009-08-28 15:46:53 +10001477{
Daniel Vetter8acf6582013-01-21 23:38:37 +01001478 int ret = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +10001479 int crtc_count = 0;
Dave Airlie4abe3522010-03-30 05:34:18 +00001480 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001481 struct drm_fb_helper_surface_size sizes;
Dave Airlie8be48d92010-03-30 05:34:14 +00001482 int gamma_size = 0;
Dave Airlie38651672010-03-30 05:34:13 +00001483
1484 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
1485 sizes.surface_depth = 24;
1486 sizes.surface_bpp = 32;
1487 sizes.fb_width = (unsigned)-1;
1488 sizes.fb_height = (unsigned)-1;
Dave Airlie785b93e2009-08-28 15:46:53 +10001489
Dave Airlieb8c00ac2009-10-06 13:54:01 +10001490 /* if driver picks 8 or 16 by default use that
1491 for both depth/bpp */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001492 if (preferred_bpp != sizes.surface_bpp)
Dave Airlie38651672010-03-30 05:34:13 +00001493 sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001494
Dave Airlie785b93e2009-08-28 15:46:53 +10001495 /* first up get a count of crtcs now in use and new min/maxes width/heights */
Chris Wilson966a6a12016-11-29 12:02:15 +00001496 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001497 struct drm_fb_helper_connector *fb_helper_conn = fb_helper->connector_info[i];
Chris Wilson1794d252011-04-17 07:43:32 +01001498 struct drm_cmdline_mode *cmdline_mode;
Dave Airlie8ef86782009-09-26 06:39:00 +10001499
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001500 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
Dave Airlied50ba252009-09-23 14:44:08 +10001501
1502 if (cmdline_mode->bpp_specified) {
1503 switch (cmdline_mode->bpp) {
1504 case 8:
Dave Airlie38651672010-03-30 05:34:13 +00001505 sizes.surface_depth = sizes.surface_bpp = 8;
Dave Airlied50ba252009-09-23 14:44:08 +10001506 break;
1507 case 15:
Dave Airlie38651672010-03-30 05:34:13 +00001508 sizes.surface_depth = 15;
1509 sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +10001510 break;
1511 case 16:
Dave Airlie38651672010-03-30 05:34:13 +00001512 sizes.surface_depth = sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +10001513 break;
1514 case 24:
Dave Airlie38651672010-03-30 05:34:13 +00001515 sizes.surface_depth = sizes.surface_bpp = 24;
Dave Airlied50ba252009-09-23 14:44:08 +10001516 break;
1517 case 32:
Dave Airlie38651672010-03-30 05:34:13 +00001518 sizes.surface_depth = 24;
1519 sizes.surface_bpp = 32;
Dave Airlied50ba252009-09-23 14:44:08 +10001520 break;
1521 }
1522 break;
1523 }
1524 }
1525
Dave Airlie8be48d92010-03-30 05:34:14 +00001526 crtc_count = 0;
1527 for (i = 0; i < fb_helper->crtc_count; i++) {
1528 struct drm_display_mode *desired_mode;
Rob Clark0e3704c2015-03-11 10:23:14 -04001529 struct drm_mode_set *mode_set;
1530 int x, y, j;
1531 /* in case of tile group, are we the last tile vert or horiz?
1532 * If no tile group you are always the last one both vertically
1533 * and horizontally
1534 */
1535 bool lastv = true, lasth = true;
Rob Clark675c8322015-03-11 10:23:13 -04001536
Dave Airlie8be48d92010-03-30 05:34:14 +00001537 desired_mode = fb_helper->crtc_info[i].desired_mode;
Rob Clark0e3704c2015-03-11 10:23:14 -04001538 mode_set = &fb_helper->crtc_info[i].mode_set;
Rob Clark675c8322015-03-11 10:23:13 -04001539
1540 if (!desired_mode)
1541 continue;
1542
1543 crtc_count++;
1544
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001545 x = fb_helper->crtc_info[i].x;
1546 y = fb_helper->crtc_info[i].y;
Rob Clark675c8322015-03-11 10:23:13 -04001547
1548 if (gamma_size == 0)
1549 gamma_size = fb_helper->crtc_info[i].mode_set.crtc->gamma_size;
1550
1551 sizes.surface_width = max_t(u32, desired_mode->hdisplay + x, sizes.surface_width);
1552 sizes.surface_height = max_t(u32, desired_mode->vdisplay + y, sizes.surface_height);
Rob Clark0e3704c2015-03-11 10:23:14 -04001553
1554 for (j = 0; j < mode_set->num_connectors; j++) {
1555 struct drm_connector *connector = mode_set->connectors[j];
1556 if (connector->has_tile) {
1557 lasth = (connector->tile_h_loc == (connector->num_h_tile - 1));
1558 lastv = (connector->tile_v_loc == (connector->num_v_tile - 1));
1559 /* cloning to multiple tiles is just crazy-talk, so: */
1560 break;
1561 }
1562 }
1563
1564 if (lasth)
1565 sizes.fb_width = min_t(u32, desired_mode->hdisplay + x, sizes.fb_width);
1566 if (lastv)
1567 sizes.fb_height = min_t(u32, desired_mode->vdisplay + y, sizes.fb_height);
Dave Airlie785b93e2009-08-28 15:46:53 +10001568 }
1569
Dave Airlie38651672010-03-30 05:34:13 +00001570 if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001571 /* hmm everyone went away - assume VGA cable just fell out
1572 and will come back later. */
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001573 DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n");
Dave Airlie19b4b442010-03-30 05:34:16 +00001574 sizes.fb_width = sizes.surface_width = 1024;
1575 sizes.fb_height = sizes.surface_height = 768;
Dave Airlie785b93e2009-08-28 15:46:53 +10001576 }
1577
Dave Airlie38651672010-03-30 05:34:13 +00001578 /* push down into drivers */
Daniel Vetter8acf6582013-01-21 23:38:37 +01001579 ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
1580 if (ret < 0)
1581 return ret;
Dave Airlie785b93e2009-08-28 15:46:53 +10001582
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001583 /*
1584 * Set the fb pointer - usually drm_setup_crtcs does this for hotplug
1585 * events, but at init time drm_setup_crtcs needs to be called before
1586 * the fb is allocated (since we need to figure out the desired size of
1587 * the fb before we can allocate it ...). Hence we need to fix things up
1588 * here again.
1589 */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001590 for (i = 0; i < fb_helper->crtc_count; i++)
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001591 if (fb_helper->crtc_info[i].mode_set.num_connectors)
1592 fb_helper->crtc_info[i].mode_set.fb = fb_helper->fb;
1593
Dave Airlie785b93e2009-08-28 15:46:53 +10001594 return 0;
1595}
Dave Airlie785b93e2009-08-28 15:46:53 +10001596
Daniel Vetter207fd322013-01-20 22:13:14 +01001597/**
1598 * drm_fb_helper_fill_fix - initializes fixed fbdev information
1599 * @info: fbdev registered by the helper
1600 * @pitch: desired pitch
1601 * @depth: desired depth
1602 *
1603 * Helper to fill in the fixed fbdev information useful for a non-accelerated
1604 * fbdev emulations. Drivers which support acceleration methods which impose
1605 * additional constraints need to set up their own limits.
1606 *
1607 * Drivers should call this (or their equivalent setup code) from their
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001608 * &drm_fb_helper_funcs.fb_probe callback.
Daniel Vetter207fd322013-01-20 22:13:14 +01001609 */
Dave Airlie3632ef82011-01-15 09:27:00 +10001610void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
1611 uint32_t depth)
1612{
1613 info->fix.type = FB_TYPE_PACKED_PIXELS;
1614 info->fix.visual = depth == 8 ? FB_VISUAL_PSEUDOCOLOR :
1615 FB_VISUAL_TRUECOLOR;
1616 info->fix.mmio_start = 0;
1617 info->fix.mmio_len = 0;
1618 info->fix.type_aux = 0;
1619 info->fix.xpanstep = 1; /* doing it in hw */
1620 info->fix.ypanstep = 1; /* doing it in hw */
1621 info->fix.ywrapstep = 0;
1622 info->fix.accel = FB_ACCEL_NONE;
Dave Airlie3632ef82011-01-15 09:27:00 +10001623
1624 info->fix.line_length = pitch;
1625 return;
1626}
1627EXPORT_SYMBOL(drm_fb_helper_fill_fix);
1628
Daniel Vetter207fd322013-01-20 22:13:14 +01001629/**
1630 * drm_fb_helper_fill_var - initalizes variable fbdev information
1631 * @info: fbdev instance to set up
1632 * @fb_helper: fb helper instance to use as template
1633 * @fb_width: desired fb width
1634 * @fb_height: desired fb height
1635 *
1636 * Sets up the variable fbdev metainformation from the given fb helper instance
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001637 * and the drm framebuffer allocated in &drm_fb_helper.fb.
Daniel Vetter207fd322013-01-20 22:13:14 +01001638 *
1639 * Drivers should call this (or their equivalent setup code) from their
Daniel Vetter6806cdf2017-01-25 07:26:43 +01001640 * &drm_fb_helper_funcs.fb_probe callback after having allocated the fbdev
1641 * backing storage framebuffer.
Daniel Vetter207fd322013-01-20 22:13:14 +01001642 */
Dave Airlie38651672010-03-30 05:34:13 +00001643void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper,
Dave Airlie785b93e2009-08-28 15:46:53 +10001644 uint32_t fb_width, uint32_t fb_height)
1645{
Dave Airlie38651672010-03-30 05:34:13 +00001646 struct drm_framebuffer *fb = fb_helper->fb;
1647 info->pseudo_palette = fb_helper->pseudo_palette;
Dave Airlie785b93e2009-08-28 15:46:53 +10001648 info->var.xres_virtual = fb->width;
1649 info->var.yres_virtual = fb->height;
Ville Syrjälä272725c2016-12-14 23:32:20 +02001650 info->var.bits_per_pixel = fb->format->cpp[0] * 8;
James Simmons57084d02010-12-20 19:10:39 +00001651 info->var.accel_flags = FB_ACCELF_TEXT;
Dave Airlie785b93e2009-08-28 15:46:53 +10001652 info->var.xoffset = 0;
1653 info->var.yoffset = 0;
1654 info->var.activate = FB_ACTIVATE_NOW;
1655 info->var.height = -1;
1656 info->var.width = -1;
1657
Ville Syrjäläb00c6002016-12-14 23:31:35 +02001658 switch (fb->format->depth) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001659 case 8:
1660 info->var.red.offset = 0;
1661 info->var.green.offset = 0;
1662 info->var.blue.offset = 0;
1663 info->var.red.length = 8; /* 8bit DAC */
1664 info->var.green.length = 8;
1665 info->var.blue.length = 8;
1666 info->var.transp.offset = 0;
1667 info->var.transp.length = 0;
1668 break;
1669 case 15:
1670 info->var.red.offset = 10;
1671 info->var.green.offset = 5;
1672 info->var.blue.offset = 0;
1673 info->var.red.length = 5;
1674 info->var.green.length = 5;
1675 info->var.blue.length = 5;
1676 info->var.transp.offset = 15;
1677 info->var.transp.length = 1;
1678 break;
1679 case 16:
1680 info->var.red.offset = 11;
1681 info->var.green.offset = 5;
1682 info->var.blue.offset = 0;
1683 info->var.red.length = 5;
1684 info->var.green.length = 6;
1685 info->var.blue.length = 5;
1686 info->var.transp.offset = 0;
1687 break;
1688 case 24:
1689 info->var.red.offset = 16;
1690 info->var.green.offset = 8;
1691 info->var.blue.offset = 0;
1692 info->var.red.length = 8;
1693 info->var.green.length = 8;
1694 info->var.blue.length = 8;
1695 info->var.transp.offset = 0;
1696 info->var.transp.length = 0;
1697 break;
1698 case 32:
1699 info->var.red.offset = 16;
1700 info->var.green.offset = 8;
1701 info->var.blue.offset = 0;
1702 info->var.red.length = 8;
1703 info->var.green.length = 8;
1704 info->var.blue.length = 8;
1705 info->var.transp.offset = 24;
1706 info->var.transp.length = 8;
1707 break;
1708 default:
1709 break;
1710 }
1711
1712 info->var.xres = fb_width;
1713 info->var.yres = fb_height;
1714}
1715EXPORT_SYMBOL(drm_fb_helper_fill_var);
Dave Airlie38651672010-03-30 05:34:13 +00001716
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001717static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper *fb_helper,
1718 uint32_t maxX,
1719 uint32_t maxY)
Dave Airlie38651672010-03-30 05:34:13 +00001720{
1721 struct drm_connector *connector;
1722 int count = 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001723 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001724
Chris Wilson966a6a12016-11-29 12:02:15 +00001725 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001726 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001727 count += connector->funcs->fill_modes(connector, maxX, maxY);
1728 }
1729
1730 return count;
1731}
1732
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001733struct 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 +00001734{
1735 struct drm_display_mode *mode;
1736
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001737 list_for_each_entry(mode, &fb_connector->connector->modes, head) {
Daniel Vetter9d3de132014-01-23 16:27:56 +01001738 if (mode->hdisplay > width ||
1739 mode->vdisplay > height)
Dave Airlie38651672010-03-30 05:34:13 +00001740 continue;
1741 if (mode->type & DRM_MODE_TYPE_PREFERRED)
1742 return mode;
1743 }
1744 return NULL;
1745}
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001746EXPORT_SYMBOL(drm_has_preferred_mode);
Dave Airlie38651672010-03-30 05:34:13 +00001747
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001748static bool drm_has_cmdline_mode(struct drm_fb_helper_connector *fb_connector)
Dave Airlie38651672010-03-30 05:34:13 +00001749{
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001750 return fb_connector->connector->cmdline_mode.specified;
Dave Airlie38651672010-03-30 05:34:13 +00001751}
1752
Vincent Abrioua09759e2017-01-06 17:44:43 +01001753struct drm_display_mode *drm_pick_cmdline_mode(struct drm_fb_helper_connector *fb_helper_conn)
Dave Airlie38651672010-03-30 05:34:13 +00001754{
Chris Wilson1794d252011-04-17 07:43:32 +01001755 struct drm_cmdline_mode *cmdline_mode;
Daniel Stonef3af5c72015-03-19 04:33:01 +00001756 struct drm_display_mode *mode;
Takashi Iwaic683f422014-03-19 14:53:13 +01001757 bool prefer_non_interlace;
Dave Airlie38651672010-03-30 05:34:13 +00001758
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001759 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
Dave Airlie38651672010-03-30 05:34:13 +00001760 if (cmdline_mode->specified == false)
Daniel Stonef3af5c72015-03-19 04:33:01 +00001761 return NULL;
Dave Airlie38651672010-03-30 05:34:13 +00001762
1763 /* attempt to find a matching mode in the list of modes
1764 * we have gotten so far, if not add a CVT mode that conforms
1765 */
1766 if (cmdline_mode->rb || cmdline_mode->margins)
1767 goto create_mode;
1768
Takashi Iwaic683f422014-03-19 14:53:13 +01001769 prefer_non_interlace = !cmdline_mode->interlace;
Daniel Stonef3af5c72015-03-19 04:33:01 +00001770again:
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001771 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
Dave Airlie38651672010-03-30 05:34:13 +00001772 /* check width/height */
1773 if (mode->hdisplay != cmdline_mode->xres ||
1774 mode->vdisplay != cmdline_mode->yres)
1775 continue;
1776
1777 if (cmdline_mode->refresh_specified) {
1778 if (mode->vrefresh != cmdline_mode->refresh)
1779 continue;
1780 }
1781
1782 if (cmdline_mode->interlace) {
1783 if (!(mode->flags & DRM_MODE_FLAG_INTERLACE))
1784 continue;
Takashi Iwaic683f422014-03-19 14:53:13 +01001785 } else if (prefer_non_interlace) {
1786 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1787 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001788 }
1789 return mode;
1790 }
1791
Takashi Iwaic683f422014-03-19 14:53:13 +01001792 if (prefer_non_interlace) {
1793 prefer_non_interlace = false;
1794 goto again;
1795 }
1796
Dave Airlie38651672010-03-30 05:34:13 +00001797create_mode:
Chris Wilson1794d252011-04-17 07:43:32 +01001798 mode = drm_mode_create_from_cmdline_mode(fb_helper_conn->connector->dev,
1799 cmdline_mode);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001800 list_add(&mode->head, &fb_helper_conn->connector->modes);
Dave Airlie38651672010-03-30 05:34:13 +00001801 return mode;
1802}
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001803EXPORT_SYMBOL(drm_pick_cmdline_mode);
Dave Airlie38651672010-03-30 05:34:13 +00001804
1805static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
1806{
1807 bool enable;
1808
Sachin Kamat96081cd2012-11-15 03:43:30 +00001809 if (strict)
Dave Airlie38651672010-03-30 05:34:13 +00001810 enable = connector->status == connector_status_connected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001811 else
Dave Airlie38651672010-03-30 05:34:13 +00001812 enable = connector->status != connector_status_disconnected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001813
Dave Airlie38651672010-03-30 05:34:13 +00001814 return enable;
1815}
1816
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001817static void drm_enable_connectors(struct drm_fb_helper *fb_helper,
1818 bool *enabled)
Dave Airlie38651672010-03-30 05:34:13 +00001819{
1820 bool any_enabled = false;
1821 struct drm_connector *connector;
1822 int i = 0;
1823
Chris Wilson966a6a12016-11-29 12:02:15 +00001824 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001825 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001826 enabled[i] = drm_connector_enabled(connector, true);
1827 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
1828 enabled[i] ? "yes" : "no");
1829 any_enabled |= enabled[i];
Dave Airlie38651672010-03-30 05:34:13 +00001830 }
1831
1832 if (any_enabled)
1833 return;
1834
Chris Wilson966a6a12016-11-29 12:02:15 +00001835 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001836 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001837 enabled[i] = drm_connector_enabled(connector, false);
Dave Airlie38651672010-03-30 05:34:13 +00001838 }
1839}
1840
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001841static bool drm_target_cloned(struct drm_fb_helper *fb_helper,
1842 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001843 struct drm_fb_offset *offsets,
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001844 bool *enabled, int width, int height)
1845{
1846 int count, i, j;
1847 bool can_clone = false;
1848 struct drm_fb_helper_connector *fb_helper_conn;
1849 struct drm_display_mode *dmt_mode, *mode;
1850
1851 /* only contemplate cloning in the single crtc case */
1852 if (fb_helper->crtc_count > 1)
1853 return false;
1854
1855 count = 0;
Chris Wilson966a6a12016-11-29 12:02:15 +00001856 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001857 if (enabled[i])
1858 count++;
1859 }
1860
1861 /* only contemplate cloning if more than one connector is enabled */
1862 if (count <= 1)
1863 return false;
1864
1865 /* check the command line or if nothing common pick 1024x768 */
1866 can_clone = true;
Chris Wilson966a6a12016-11-29 12:02:15 +00001867 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001868 if (!enabled[i])
1869 continue;
1870 fb_helper_conn = fb_helper->connector_info[i];
Vincent Abrioua09759e2017-01-06 17:44:43 +01001871 modes[i] = drm_pick_cmdline_mode(fb_helper_conn);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001872 if (!modes[i]) {
1873 can_clone = false;
1874 break;
1875 }
1876 for (j = 0; j < i; j++) {
1877 if (!enabled[j])
1878 continue;
1879 if (!drm_mode_equal(modes[j], modes[i]))
1880 can_clone = false;
1881 }
1882 }
1883
1884 if (can_clone) {
1885 DRM_DEBUG_KMS("can clone using command line\n");
1886 return true;
1887 }
1888
1889 /* try and find a 1024x768 mode on each connector */
1890 can_clone = true;
Adam Jacksonf6e252b2012-04-13 16:33:31 -04001891 dmt_mode = drm_mode_find_dmt(fb_helper->dev, 1024, 768, 60, false);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001892
Chris Wilson966a6a12016-11-29 12:02:15 +00001893 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001894 if (!enabled[i])
1895 continue;
1896
1897 fb_helper_conn = fb_helper->connector_info[i];
1898 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
1899 if (drm_mode_equal(mode, dmt_mode))
1900 modes[i] = mode;
1901 }
1902 if (!modes[i])
1903 can_clone = false;
1904 }
1905
1906 if (can_clone) {
1907 DRM_DEBUG_KMS("can clone using 1024x768\n");
1908 return true;
1909 }
1910 DRM_INFO("kms: can't enable cloning when we probably wanted to.\n");
1911 return false;
1912}
1913
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001914static int drm_get_tile_offsets(struct drm_fb_helper *fb_helper,
1915 struct drm_display_mode **modes,
1916 struct drm_fb_offset *offsets,
1917 int idx,
1918 int h_idx, int v_idx)
1919{
1920 struct drm_fb_helper_connector *fb_helper_conn;
1921 int i;
1922 int hoffset = 0, voffset = 0;
1923
Chris Wilson966a6a12016-11-29 12:02:15 +00001924 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001925 fb_helper_conn = fb_helper->connector_info[i];
1926 if (!fb_helper_conn->connector->has_tile)
1927 continue;
1928
1929 if (!modes[i] && (h_idx || v_idx)) {
1930 DRM_DEBUG_KMS("no modes for connector tiled %d %d\n", i,
1931 fb_helper_conn->connector->base.id);
1932 continue;
1933 }
1934 if (fb_helper_conn->connector->tile_h_loc < h_idx)
1935 hoffset += modes[i]->hdisplay;
1936
1937 if (fb_helper_conn->connector->tile_v_loc < v_idx)
1938 voffset += modes[i]->vdisplay;
1939 }
1940 offsets[idx].x = hoffset;
1941 offsets[idx].y = voffset;
1942 DRM_DEBUG_KMS("returned %d %d for %d %d\n", hoffset, voffset, h_idx, v_idx);
1943 return 0;
1944}
1945
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001946static bool drm_target_preferred(struct drm_fb_helper *fb_helper,
Dave Airlie38651672010-03-30 05:34:13 +00001947 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001948 struct drm_fb_offset *offsets,
Dave Airlie38651672010-03-30 05:34:13 +00001949 bool *enabled, int width, int height)
1950{
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001951 struct drm_fb_helper_connector *fb_helper_conn;
Chris Wilsonc96521e2016-11-27 17:09:10 +00001952 const u64 mask = BIT_ULL(fb_helper->connector_count) - 1;
1953 u64 conn_configured = 0;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001954 int tile_pass = 0;
Chris Wilsonc96521e2016-11-27 17:09:10 +00001955 int i;
1956
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001957retry:
Chris Wilson966a6a12016-11-29 12:02:15 +00001958 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001959 fb_helper_conn = fb_helper->connector_info[i];
Dave Airlie38651672010-03-30 05:34:13 +00001960
Chris Wilsonc96521e2016-11-27 17:09:10 +00001961 if (conn_configured & BIT_ULL(i))
Dave Airlie38651672010-03-30 05:34:13 +00001962 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001963
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001964 if (enabled[i] == false) {
Chris Wilsonc96521e2016-11-27 17:09:10 +00001965 conn_configured |= BIT_ULL(i);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001966 continue;
1967 }
1968
1969 /* first pass over all the untiled connectors */
1970 if (tile_pass == 0 && fb_helper_conn->connector->has_tile)
1971 continue;
1972
1973 if (tile_pass == 1) {
1974 if (fb_helper_conn->connector->tile_h_loc != 0 ||
1975 fb_helper_conn->connector->tile_v_loc != 0)
1976 continue;
1977
1978 } else {
1979 if (fb_helper_conn->connector->tile_h_loc != tile_pass -1 &&
1980 fb_helper_conn->connector->tile_v_loc != tile_pass - 1)
1981 /* if this tile_pass doesn't cover any of the tiles - keep going */
1982 continue;
1983
1984 /* find the tile offsets for this pass - need
1985 to find all tiles left and above */
1986 drm_get_tile_offsets(fb_helper, modes, offsets,
1987 i, fb_helper_conn->connector->tile_h_loc, fb_helper_conn->connector->tile_v_loc);
1988 }
Dave Airlie38651672010-03-30 05:34:13 +00001989 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001990 fb_helper_conn->connector->base.id);
Dave Airlie38651672010-03-30 05:34:13 +00001991
1992 /* got for command line mode first */
Vincent Abrioua09759e2017-01-06 17:44:43 +01001993 modes[i] = drm_pick_cmdline_mode(fb_helper_conn);
Dave Airlie38651672010-03-30 05:34:13 +00001994 if (!modes[i]) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001995 DRM_DEBUG_KMS("looking for preferred mode on connector %d %d\n",
1996 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 +00001997 modes[i] = drm_has_preferred_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001998 }
1999 /* No preferred modes, pick one off the list */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002000 if (!modes[i] && !list_empty(&fb_helper_conn->connector->modes)) {
2001 list_for_each_entry(modes[i], &fb_helper_conn->connector->modes, head)
Dave Airlie38651672010-03-30 05:34:13 +00002002 break;
2003 }
2004 DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name :
2005 "none");
Chris Wilsonc96521e2016-11-27 17:09:10 +00002006 conn_configured |= BIT_ULL(i);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002007 }
2008
2009 if ((conn_configured & mask) != mask) {
2010 tile_pass++;
2011 goto retry;
Dave Airlie38651672010-03-30 05:34:13 +00002012 }
2013 return true;
2014}
2015
Dave Airlie8be48d92010-03-30 05:34:14 +00002016static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
2017 struct drm_fb_helper_crtc **best_crtcs,
Dave Airlie38651672010-03-30 05:34:13 +00002018 struct drm_display_mode **modes,
2019 int n, int width, int height)
2020{
2021 int c, o;
2022 struct drm_connector *connector;
Jani Nikulabe26a662015-03-11 11:51:06 +02002023 const struct drm_connector_helper_funcs *connector_funcs;
Dave Airlie38651672010-03-30 05:34:13 +00002024 struct drm_encoder *encoder;
Dave Airlie38651672010-03-30 05:34:13 +00002025 int my_score, best_score, score;
Dave Airlie8be48d92010-03-30 05:34:14 +00002026 struct drm_fb_helper_crtc **crtcs, *crtc;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002027 struct drm_fb_helper_connector *fb_helper_conn;
Dave Airlie38651672010-03-30 05:34:13 +00002028
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002029 if (n == fb_helper->connector_count)
Dave Airlie38651672010-03-30 05:34:13 +00002030 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002031
2032 fb_helper_conn = fb_helper->connector_info[n];
2033 connector = fb_helper_conn->connector;
Dave Airlie38651672010-03-30 05:34:13 +00002034
2035 best_crtcs[n] = NULL;
Dave Airlie8be48d92010-03-30 05:34:14 +00002036 best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00002037 if (modes[n] == NULL)
2038 return best_score;
2039
Lyude255f0e72016-05-12 10:56:59 -04002040 crtcs = kzalloc(fb_helper->connector_count *
Dave Airlie8be48d92010-03-30 05:34:14 +00002041 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Dave Airlie38651672010-03-30 05:34:13 +00002042 if (!crtcs)
2043 return best_score;
2044
2045 my_score = 1;
2046 if (connector->status == connector_status_connected)
2047 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002048 if (drm_has_cmdline_mode(fb_helper_conn))
Dave Airlie38651672010-03-30 05:34:13 +00002049 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002050 if (drm_has_preferred_mode(fb_helper_conn, width, height))
Dave Airlie38651672010-03-30 05:34:13 +00002051 my_score++;
2052
2053 connector_funcs = connector->helper_private;
Boris Brezillonc61b93fe2016-06-07 13:47:56 +02002054
2055 /*
2056 * If the DRM device implements atomic hooks and ->best_encoder() is
2057 * NULL we fallback to the default drm_atomic_helper_best_encoder()
2058 * helper.
2059 */
Dhinakaran Pandiyana743d752016-12-22 00:50:42 -08002060 if (drm_drv_uses_atomic_modeset(fb_helper->dev) &&
Boris Brezillonc61b93fe2016-06-07 13:47:56 +02002061 !connector_funcs->best_encoder)
2062 encoder = drm_atomic_helper_best_encoder(connector);
2063 else
2064 encoder = connector_funcs->best_encoder(connector);
2065
Dave Airlie38651672010-03-30 05:34:13 +00002066 if (!encoder)
2067 goto out;
2068
Dave Airlie38651672010-03-30 05:34:13 +00002069 /* select a crtc for this connector and then attempt to configure
2070 remaining connectors */
Dave Airlie8be48d92010-03-30 05:34:14 +00002071 for (c = 0; c < fb_helper->crtc_count; c++) {
2072 crtc = &fb_helper->crtc_info[c];
Dave Airlie38651672010-03-30 05:34:13 +00002073
Sachin Kamat96081cd2012-11-15 03:43:30 +00002074 if ((encoder->possible_crtcs & (1 << c)) == 0)
Dave Airlie38651672010-03-30 05:34:13 +00002075 continue;
Dave Airlie38651672010-03-30 05:34:13 +00002076
2077 for (o = 0; o < n; o++)
2078 if (best_crtcs[o] == crtc)
2079 break;
2080
2081 if (o < n) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002082 /* ignore cloning unless only a single crtc */
2083 if (fb_helper->crtc_count > 1)
2084 continue;
2085
2086 if (!drm_mode_equal(modes[o], modes[n]))
2087 continue;
Dave Airlie38651672010-03-30 05:34:13 +00002088 }
2089
2090 crtcs[n] = crtc;
Dave Airlie8be48d92010-03-30 05:34:14 +00002091 memcpy(crtcs, best_crtcs, n * sizeof(struct drm_fb_helper_crtc *));
2092 score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1,
Dave Airlie38651672010-03-30 05:34:13 +00002093 width, height);
2094 if (score > best_score) {
Dave Airlie38651672010-03-30 05:34:13 +00002095 best_score = score;
2096 memcpy(best_crtcs, crtcs,
Lyude255f0e72016-05-12 10:56:59 -04002097 fb_helper->connector_count *
Dave Airlie8be48d92010-03-30 05:34:14 +00002098 sizeof(struct drm_fb_helper_crtc *));
Dave Airlie38651672010-03-30 05:34:13 +00002099 }
Dave Airlie38651672010-03-30 05:34:13 +00002100 }
2101out:
2102 kfree(crtcs);
2103 return best_score;
2104}
2105
Chris Wilson64e94402016-11-29 12:02:16 +00002106static void drm_setup_crtcs(struct drm_fb_helper *fb_helper,
2107 u32 width, u32 height)
Dave Airlie38651672010-03-30 05:34:13 +00002108{
Dave Airlie8be48d92010-03-30 05:34:14 +00002109 struct drm_device *dev = fb_helper->dev;
2110 struct drm_fb_helper_crtc **crtcs;
Dave Airlie38651672010-03-30 05:34:13 +00002111 struct drm_display_mode **modes;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002112 struct drm_fb_offset *offsets;
Dave Airlie38651672010-03-30 05:34:13 +00002113 bool *enabled;
Jesse Barnes11e17a02013-02-19 13:31:39 -08002114 int i;
Dave Airlie38651672010-03-30 05:34:13 +00002115
2116 DRM_DEBUG_KMS("\n");
Chris Wilson64e94402016-11-29 12:02:16 +00002117 if (drm_fb_helper_probe_connector_modes(fb_helper, width, height) == 0)
2118 DRM_DEBUG_KMS("No connectors reported connected with modes\n");
Dave Airlie38651672010-03-30 05:34:13 +00002119
Chris Wilson966a6a12016-11-29 12:02:15 +00002120 /* prevent concurrent modification of connector_count by hotplug */
2121 lockdep_assert_held(&fb_helper->dev->mode_config.mutex);
2122
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002123 crtcs = kcalloc(fb_helper->connector_count,
Dave Airlie8be48d92010-03-30 05:34:14 +00002124 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002125 modes = kcalloc(fb_helper->connector_count,
Dave Airlie38651672010-03-30 05:34:13 +00002126 sizeof(struct drm_display_mode *), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002127 offsets = kcalloc(fb_helper->connector_count,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002128 sizeof(struct drm_fb_offset), GFP_KERNEL);
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002129 enabled = kcalloc(fb_helper->connector_count,
Dave Airlie38651672010-03-30 05:34:13 +00002130 sizeof(bool), GFP_KERNEL);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002131 if (!crtcs || !modes || !enabled || !offsets) {
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00002132 DRM_ERROR("Memory allocation failed\n");
2133 goto out;
2134 }
2135
Dave Airlie0b4c0f32010-03-30 05:34:15 +00002136 drm_enable_connectors(fb_helper, enabled);
Dave Airlie38651672010-03-30 05:34:13 +00002137
Jesse Barnes11e17a02013-02-19 13:31:39 -08002138 if (!(fb_helper->funcs->initial_config &&
2139 fb_helper->funcs->initial_config(fb_helper, crtcs, modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002140 offsets,
Jesse Barnes11e17a02013-02-19 13:31:39 -08002141 enabled, width, height))) {
Maarten Lankhorst383b2e52016-02-15 13:45:15 +01002142 memset(modes, 0, fb_helper->connector_count*sizeof(modes[0]));
2143 memset(crtcs, 0, fb_helper->connector_count*sizeof(crtcs[0]));
2144 memset(offsets, 0, fb_helper->connector_count*sizeof(offsets[0]));
Jesse Barnes11e17a02013-02-19 13:31:39 -08002145
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002146 if (!drm_target_cloned(fb_helper, modes, offsets,
2147 enabled, width, height) &&
2148 !drm_target_preferred(fb_helper, modes, offsets,
2149 enabled, width, height))
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002150 DRM_ERROR("Unable to find initial modes\n");
Jesse Barnes11e17a02013-02-19 13:31:39 -08002151
2152 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n",
2153 width, height);
2154
2155 drm_pick_crtcs(fb_helper, crtcs, modes, 0, width, height);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00002156 }
Dave Airlie38651672010-03-30 05:34:13 +00002157
Dave Airlie8be48d92010-03-30 05:34:14 +00002158 /* need to set the modesets up here for use later */
2159 /* fill out the connector<->crtc mappings into the modesets */
Ville Syrjäläa2889602016-10-26 17:41:18 +03002160 for (i = 0; i < fb_helper->crtc_count; i++)
2161 drm_fb_helper_modeset_release(fb_helper,
2162 &fb_helper->crtc_info[i].mode_set);
Dave Airlie38651672010-03-30 05:34:13 +00002163
Chris Wilson966a6a12016-11-29 12:02:15 +00002164 drm_fb_helper_for_each_connector(fb_helper, i) {
Dave Airlie38651672010-03-30 05:34:13 +00002165 struct drm_display_mode *mode = modes[i];
Dave Airlie8be48d92010-03-30 05:34:14 +00002166 struct drm_fb_helper_crtc *fb_crtc = crtcs[i];
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002167 struct drm_fb_offset *offset = &offsets[i];
Ville Syrjäläa2889602016-10-26 17:41:18 +03002168 struct drm_mode_set *modeset = &fb_crtc->mode_set;
Dave Airlie38651672010-03-30 05:34:13 +00002169
Dave Airlie8be48d92010-03-30 05:34:14 +00002170 if (mode && fb_crtc) {
Ville Syrjäläa2889602016-10-26 17:41:18 +03002171 struct drm_connector *connector =
2172 fb_helper->connector_info[i]->connector;
2173
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002174 DRM_DEBUG_KMS("desired mode %s set on crtc %d (%d,%d)\n",
2175 mode->name, fb_crtc->mode_set.crtc->base.id, offset->x, offset->y);
Ville Syrjäläa2889602016-10-26 17:41:18 +03002176
Dave Airlie8be48d92010-03-30 05:34:14 +00002177 fb_crtc->desired_mode = mode;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002178 fb_crtc->x = offset->x;
2179 fb_crtc->y = offset->y;
Dave Airlie8be48d92010-03-30 05:34:14 +00002180 modeset->mode = drm_mode_duplicate(dev,
2181 fb_crtc->desired_mode);
Ville Syrjäläa2889602016-10-26 17:41:18 +03002182 drm_connector_reference(connector);
2183 modeset->connectors[modeset->num_connectors++] = connector;
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01002184 modeset->fb = fb_helper->fb;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002185 modeset->x = offset->x;
2186 modeset->y = offset->y;
Dave Airlie38651672010-03-30 05:34:13 +00002187 }
Dave Airlie38651672010-03-30 05:34:13 +00002188 }
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00002189out:
Dave Airlie38651672010-03-30 05:34:13 +00002190 kfree(crtcs);
2191 kfree(modes);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10002192 kfree(offsets);
Dave Airlie38651672010-03-30 05:34:13 +00002193 kfree(enabled);
2194}
2195
2196/**
Daniel Vetter207fd322013-01-20 22:13:14 +01002197 * drm_fb_helper_initial_config - setup a sane initial connector configuration
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002198 * @fb_helper: fb_helper device struct
2199 * @bpp_sel: bpp value to use for the framebuffer configuration
Dave Airlie38651672010-03-30 05:34:13 +00002200 *
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002201 * Scans the CRTCs and connectors and tries to put together an initial setup.
Dave Airlie38651672010-03-30 05:34:13 +00002202 * At the moment, this is a cloned configuration across all heads with
2203 * a new framebuffer object as the backing store.
2204 *
Daniel Vetter207fd322013-01-20 22:13:14 +01002205 * Note that this also registers the fbdev and so allows userspace to call into
2206 * the driver through the fbdev interfaces.
2207 *
Daniel Vetter6806cdf2017-01-25 07:26:43 +01002208 * This function will call down into the &drm_fb_helper_funcs.fb_probe callback
2209 * to let the driver allocate and initialize the fbdev info structure and the
2210 * drm framebuffer used to back the fbdev. drm_fb_helper_fill_var() and
Daniel Vetter207fd322013-01-20 22:13:14 +01002211 * drm_fb_helper_fill_fix() are provided as helpers to setup simple default
2212 * values for the fbdev info structure.
2213 *
Daniel Vetter40f8cf42016-01-22 08:53:45 +01002214 * HANG DEBUGGING:
2215 *
2216 * When you have fbcon support built-in or already loaded, this function will do
2217 * a full modeset to setup the fbdev console. Due to locking misdesign in the
2218 * VT/fbdev subsystem that entire modeset sequence has to be done while holding
2219 * console_lock. Until console_unlock is called no dmesg lines will be sent out
2220 * to consoles, not even serial console. This means when your driver crashes,
2221 * you will see absolutely nothing else but a system stuck in this function,
2222 * with no further output. Any kind of printk() you place within your own driver
2223 * or in the drm core modeset code will also never show up.
2224 *
2225 * Standard debug practice is to run the fbcon setup without taking the
2226 * console_lock as a hack, to be able to see backtraces and crashes on the
2227 * serial line. This can be done by setting the fb.lockless_register_fb=1 kernel
2228 * cmdline option.
2229 *
2230 * The other option is to just disable fbdev emulation since very likely the
Lyudeaf509d32016-05-04 11:28:53 -04002231 * first modeset from userspace will crash in the same way, and is even easier
2232 * to debug. This can be done by setting the drm_kms_helper.fbdev_emulation=0
Daniel Vetter40f8cf42016-01-22 08:53:45 +01002233 * kernel cmdline option.
2234 *
Dave Airlie38651672010-03-30 05:34:13 +00002235 * RETURNS:
2236 * Zero if everything went ok, nonzero otherwise.
2237 */
Thierry Reding01934c22014-12-19 11:21:32 +01002238int drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
Dave Airlie38651672010-03-30 05:34:13 +00002239{
Dave Airlie8be48d92010-03-30 05:34:14 +00002240 struct drm_device *dev = fb_helper->dev;
Chris Wilson966a6a12016-11-29 12:02:15 +00002241 struct fb_info *info;
Chris Wilson966a6a12016-11-29 12:02:15 +00002242 int ret;
Dave Airlie38651672010-03-30 05:34:13 +00002243
Daniel Vetterf64c5572015-08-25 15:45:13 +02002244 if (!drm_fbdev_emulation)
2245 return 0;
2246
Daniel Vetter53f19042014-03-20 14:26:35 +01002247 mutex_lock(&dev->mode_config.mutex);
Chris Wilson64e94402016-11-29 12:02:16 +00002248 drm_setup_crtcs(fb_helper,
2249 dev->mode_config.max_width,
2250 dev->mode_config.max_height);
Chris Wilson966a6a12016-11-29 12:02:15 +00002251 ret = drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
2252 mutex_unlock(&dev->mode_config.mutex);
2253 if (ret)
2254 return ret;
Dave Airlie38651672010-03-30 05:34:13 +00002255
Chris Wilson966a6a12016-11-29 12:02:15 +00002256 info = fb_helper->fbdev;
2257 info->var.pixclock = 0;
2258 ret = register_framebuffer(info);
2259 if (ret < 0)
2260 return ret;
2261
2262 dev_info(dev->dev, "fb%d: %s frame buffer device\n",
2263 info->node, info->fix.id);
2264
Chris Wilsona53ca632016-11-29 12:02:17 +00002265 mutex_lock(&kernel_fb_helper_lock);
Chris Wilson966a6a12016-11-29 12:02:15 +00002266 if (list_empty(&kernel_fb_helper_list))
2267 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
2268
2269 list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
Chris Wilsona53ca632016-11-29 12:02:17 +00002270 mutex_unlock(&kernel_fb_helper_lock);
Chris Wilson966a6a12016-11-29 12:02:15 +00002271
2272 return 0;
Dave Airlie38651672010-03-30 05:34:13 +00002273}
Dave Airlie8be48d92010-03-30 05:34:14 +00002274EXPORT_SYMBOL(drm_fb_helper_initial_config);
Dave Airlie38651672010-03-30 05:34:13 +00002275
Chris Wilson73943712011-04-22 11:03:57 +01002276/**
2277 * drm_fb_helper_hotplug_event - respond to a hotplug notification by
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01002278 * probing all the outputs attached to the fb
Chris Wilson73943712011-04-22 11:03:57 +01002279 * @fb_helper: the drm_fb_helper
2280 *
Chris Wilson73943712011-04-22 11:03:57 +01002281 * Scan the connectors attached to the fb_helper and try to put together a
Daniel Vetter62cacc72016-08-12 22:48:37 +02002282 * setup after notification of a change in output configuration.
Chris Wilson73943712011-04-22 11:03:57 +01002283 *
Daniel Vetter207fd322013-01-20 22:13:14 +01002284 * Called at runtime, takes the mode config locks to be able to check/change the
2285 * modeset configuration. Must be run from process context (which usually means
2286 * either the output polling work or a work item launched from the driver's
2287 * hotplug interrupt).
2288 *
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002289 * Note that drivers may call this even before calling
Lyudeaf509d32016-05-04 11:28:53 -04002290 * drm_fb_helper_initial_config but only after drm_fb_helper_init. This allows
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002291 * for a race-free fbcon setup and will make sure that the fbdev emulation will
2292 * not miss any hotplug events.
Daniel Vetter207fd322013-01-20 22:13:14 +01002293 *
Chris Wilson73943712011-04-22 11:03:57 +01002294 * RETURNS:
2295 * 0 on success and a non-zero error code otherwise.
2296 */
2297int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
Dave Airlie38651672010-03-30 05:34:13 +00002298{
Chris Wilson73943712011-04-22 11:03:57 +01002299 struct drm_device *dev = fb_helper->dev;
Dave Airlie4abe3522010-03-30 05:34:18 +00002300
Daniel Vetterf64c5572015-08-25 15:45:13 +02002301 if (!drm_fbdev_emulation)
2302 return 0;
2303
Chris Wilson64e94402016-11-29 12:02:16 +00002304 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter50c3dc92014-06-27 17:19:22 +02002305 if (!fb_helper->fb || !drm_fb_helper_is_bound(fb_helper)) {
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002306 fb_helper->delayed_hotplug = true;
Chris Wilson64e94402016-11-29 12:02:16 +00002307 mutex_unlock(&dev->mode_config.mutex);
Chris Wilson73943712011-04-22 11:03:57 +01002308 return 0;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002309 }
Dave Airlie38651672010-03-30 05:34:13 +00002310 DRM_DEBUG_KMS("\n");
2311
Chris Wilson64e94402016-11-29 12:02:16 +00002312 drm_setup_crtcs(fb_helper, fb_helper->fb->width, fb_helper->fb->height);
Dave Airlie4abe3522010-03-30 05:34:18 +00002313
Chris Wilson64e94402016-11-29 12:02:16 +00002314 mutex_unlock(&dev->mode_config.mutex);
Daniel Vetter89ced122013-04-11 14:26:55 +00002315
Daniel Vetter2180c3c2013-01-21 23:12:36 +01002316 drm_fb_helper_set_par(fb_helper->fbdev);
2317
2318 return 0;
Dave Airlie38651672010-03-30 05:34:13 +00002319}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00002320EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
Dave Airlie5c4426a2010-03-30 05:34:17 +00002321
David Rientjes6a108a12011-01-20 14:44:16 -08002322/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06002323 * but the module doesn't depend on any fb console symbols. At least
2324 * attempt to load fbcon to avoid leaving the system without a usable console.
2325 */
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002326int __init drm_fb_helper_modinit(void)
David Fries3ce05162010-12-12 12:39:22 -06002327{
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002328#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06002329 const char *name = "fbcon";
2330 struct module *fbcon;
2331
2332 mutex_lock(&module_mutex);
2333 fbcon = find_module(name);
2334 mutex_unlock(&module_mutex);
2335
2336 if (!fbcon)
2337 request_module_nowait(name);
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002338#endif
David Fries3ce05162010-12-12 12:39:22 -06002339 return 0;
2340}
Rafael Antognolli70412cf2016-01-21 15:10:18 -08002341EXPORT_SYMBOL(drm_fb_helper_modinit);