blob: 73f90f7e2f74407d2b346ce8d37f410624459314 [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
Andy Shevchenko3b40a442010-02-02 14:40:32 -080032#include <linux/kernel.h>
Dave Airlie785b93e2009-08-28 15:46:53 +100033#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Dave Airlie785b93e2009-08-28 15:46:53 +100035#include <linux/fb.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>
Dave Airlie785b93e2009-08-28 15:46:53 +100041
42static LIST_HEAD(kernel_fb_helper_list);
43
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010044/**
45 * DOC: fbdev helpers
46 *
47 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
Thierry Reding83c617c2014-04-29 11:44:35 +020048 * mode setting driver. They can be used mostly independently from the crtc
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010049 * helper functions used by many drivers to implement the kernel mode setting
50 * interfaces.
Daniel Vetter207fd322013-01-20 22:13:14 +010051 *
Thierry Reding10a23102014-06-27 17:19:24 +020052 * Initialization is done as a four-step process with drm_fb_helper_prepare(),
53 * drm_fb_helper_init(), drm_fb_helper_single_add_all_connectors() and
54 * drm_fb_helper_initial_config(). Drivers with fancier requirements than the
55 * default behaviour can override the third step with their own code.
56 * Teardown is done with drm_fb_helper_fini().
Daniel Vetter207fd322013-01-20 22:13:14 +010057 *
58 * At runtime drivers should restore the fbdev console by calling
59 * drm_fb_helper_restore_fbdev_mode() from their ->lastclose callback. They
60 * should also notify the fb helper code from updates to the output
61 * configuration by calling drm_fb_helper_hotplug_event(). For easier
62 * integration with the output polling code in drm_crtc_helper.c the modeset
Thierry Reding83c617c2014-04-29 11:44:35 +020063 * code provides a ->output_poll_changed callback.
Daniel Vetter207fd322013-01-20 22:13:14 +010064 *
65 * All other functions exported by the fb helper library can be used to
66 * implement the fbdev driver interface by the driver.
Thierry Reding10a23102014-06-27 17:19:24 +020067 *
68 * It is possible, though perhaps somewhat tricky, to implement race-free
69 * hotplug detection using the fbdev helpers. The drm_fb_helper_prepare()
70 * helper must be called first to initialize the minimum required to make
71 * hotplug detection work. Drivers also need to make sure to properly set up
72 * the dev->mode_config.funcs member. After calling drm_kms_helper_poll_init()
73 * it is safe to enable interrupts and start processing hotplug events. At the
74 * same time, drivers should initialize all modeset objects such as CRTCs,
75 * encoders and connectors. To finish up the fbdev helper initialization, the
76 * drm_fb_helper_init() function is called. To probe for all attached displays
77 * and set up an initial configuration using the detected hardware, drivers
78 * should call drm_fb_helper_single_add_all_connectors() followed by
79 * drm_fb_helper_initial_config().
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010080 */
81
Daniel Vetter207fd322013-01-20 22:13:14 +010082/**
83 * drm_fb_helper_single_add_all_connectors() - add all connectors to fbdev
84 * emulation helper
85 * @fb_helper: fbdev initialized with drm_fb_helper_init
86 *
87 * This functions adds all the available connectors for use with the given
88 * fb_helper. This is a separate step to allow drivers to freely assign
89 * connectors to the fbdev, e.g. if some are reserved for special purposes or
90 * not adequate to be used for the fbcon.
91 *
Daniel Vetter169faec2015-07-09 23:44:27 +020092 * This function is protected against concurrent connector hotadds/removals
93 * using drm_fb_helper_add_one_connector() and
94 * drm_fb_helper_remove_one_connector().
Daniel Vetter207fd322013-01-20 22:13:14 +010095 */
Dave Airlie0b4c0f32010-03-30 05:34:15 +000096int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper *fb_helper)
Dave Airlied50ba252009-09-23 14:44:08 +100097{
Dave Airlie0b4c0f32010-03-30 05:34:15 +000098 struct drm_device *dev = fb_helper->dev;
99 struct drm_connector *connector;
100 int i;
Dave Airlied50ba252009-09-23 14:44:08 +1000101
Daniel Vetter169faec2015-07-09 23:44:27 +0200102 mutex_lock(&dev->mode_config.mutex);
Daniel Vetter6295d602015-07-09 23:44:25 +0200103 drm_for_each_connector(connector, dev) {
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000104 struct drm_fb_helper_connector *fb_helper_connector;
105
106 fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL);
107 if (!fb_helper_connector)
108 goto fail;
109
110 fb_helper_connector->connector = connector;
111 fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector;
112 }
Daniel Vetter169faec2015-07-09 23:44:27 +0200113 mutex_unlock(&dev->mode_config.mutex);
Dave Airlied50ba252009-09-23 14:44:08 +1000114 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000115fail:
116 for (i = 0; i < fb_helper->connector_count; i++) {
117 kfree(fb_helper->connector_info[i]);
118 fb_helper->connector_info[i] = NULL;
119 }
120 fb_helper->connector_count = 0;
Daniel Vetter169faec2015-07-09 23:44:27 +0200121 mutex_unlock(&dev->mode_config.mutex);
122
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000123 return -ENOMEM;
Dave Airlied50ba252009-09-23 14:44:08 +1000124}
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000125EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors);
Dave Airlied50ba252009-09-23 14:44:08 +1000126
Dave Airlie65c2a892014-06-05 14:01:30 +1000127int drm_fb_helper_add_one_connector(struct drm_fb_helper *fb_helper, struct drm_connector *connector)
128{
129 struct drm_fb_helper_connector **temp;
130 struct drm_fb_helper_connector *fb_helper_connector;
131
132 WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex));
133 if (fb_helper->connector_count + 1 > fb_helper->connector_info_alloc_count) {
Damien Lespiau14f476f2014-08-08 19:15:20 +0100134 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 +1000135 if (!temp)
136 return -ENOMEM;
137
138 fb_helper->connector_info_alloc_count = fb_helper->connector_count + 1;
139 fb_helper->connector_info = temp;
140 }
141
142
143 fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL);
144 if (!fb_helper_connector)
145 return -ENOMEM;
146
147 fb_helper_connector->connector = connector;
148 fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector;
149 return 0;
150}
151EXPORT_SYMBOL(drm_fb_helper_add_one_connector);
152
Rob Clark2148f182015-01-26 10:11:08 -0500153static void remove_from_modeset(struct drm_mode_set *set,
154 struct drm_connector *connector)
155{
156 int i, j;
157
158 for (i = 0; i < set->num_connectors; i++) {
159 if (set->connectors[i] == connector)
160 break;
161 }
162
163 if (i == set->num_connectors)
164 return;
165
166 for (j = i + 1; j < set->num_connectors; j++) {
167 set->connectors[j - 1] = set->connectors[j];
168 }
169 set->num_connectors--;
170
171 /* because i915 is pissy about this..
172 * TODO maybe need to makes sure we set it back to !=NULL somewhere?
173 */
174 if (set->num_connectors == 0)
175 set->fb = NULL;
176}
177
Dave Airlie65c2a892014-06-05 14:01:30 +1000178int drm_fb_helper_remove_one_connector(struct drm_fb_helper *fb_helper,
179 struct drm_connector *connector)
180{
181 struct drm_fb_helper_connector *fb_helper_connector;
182 int i, j;
183
184 WARN_ON(!mutex_is_locked(&fb_helper->dev->mode_config.mutex));
185
186 for (i = 0; i < fb_helper->connector_count; i++) {
187 if (fb_helper->connector_info[i]->connector == connector)
188 break;
189 }
190
191 if (i == fb_helper->connector_count)
192 return -EINVAL;
193 fb_helper_connector = fb_helper->connector_info[i];
194
195 for (j = i + 1; j < fb_helper->connector_count; j++) {
196 fb_helper->connector_info[j - 1] = fb_helper->connector_info[j];
197 }
198 fb_helper->connector_count--;
199 kfree(fb_helper_connector);
Rob Clark2148f182015-01-26 10:11:08 -0500200
201 /* also cleanup dangling references to the connector: */
202 for (i = 0; i < fb_helper->crtc_count; i++)
203 remove_from_modeset(&fb_helper->crtc_info[i].mode_set, connector);
204
Dave Airlie65c2a892014-06-05 14:01:30 +1000205 return 0;
206}
207EXPORT_SYMBOL(drm_fb_helper_remove_one_connector);
208
Jason Wessel99231022010-10-13 14:09:43 -0500209static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper)
210{
211 uint16_t *r_base, *g_base, *b_base;
212 int i;
213
Ville Syrjälä04c0c562013-05-27 20:19:57 +0300214 if (helper->funcs->gamma_get == NULL)
215 return;
216
Jason Wessel99231022010-10-13 14:09:43 -0500217 r_base = crtc->gamma_store;
218 g_base = r_base + crtc->gamma_size;
219 b_base = g_base + crtc->gamma_size;
220
221 for (i = 0; i < crtc->gamma_size; i++)
222 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
223}
224
225static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc)
226{
227 uint16_t *r_base, *g_base, *b_base;
228
Laurent Pinchartebe0f242012-05-17 13:27:24 +0200229 if (crtc->funcs->gamma_set == NULL)
230 return;
231
Jason Wessel99231022010-10-13 14:09:43 -0500232 r_base = crtc->gamma_store;
233 g_base = r_base + crtc->gamma_size;
234 b_base = g_base + crtc->gamma_size;
235
236 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
237}
238
Daniel Vetter207fd322013-01-20 22:13:14 +0100239/**
240 * drm_fb_helper_debug_enter - implementation for ->fb_debug_enter
241 * @info: fbdev registered by the helper
242 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500243int drm_fb_helper_debug_enter(struct fb_info *info)
244{
245 struct drm_fb_helper *helper = info->par;
Jani Nikulabe26a662015-03-11 11:51:06 +0200246 const struct drm_crtc_helper_funcs *funcs;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500247 int i;
248
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500249 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
250 for (i = 0; i < helper->crtc_count; i++) {
251 struct drm_mode_set *mode_set =
252 &helper->crtc_info[i].mode_set;
253
254 if (!mode_set->crtc->enabled)
255 continue;
256
257 funcs = mode_set->crtc->helper_private;
Jason Wessel99231022010-10-13 14:09:43 -0500258 drm_fb_helper_save_lut_atomic(mode_set->crtc, helper);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500259 funcs->mode_set_base_atomic(mode_set->crtc,
260 mode_set->fb,
261 mode_set->x,
Jason Wessel413d45d2010-09-26 06:47:25 -0500262 mode_set->y,
Jason Wessel21c74a82010-10-13 14:09:44 -0500263 ENTER_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500264 }
265 }
266
267 return 0;
268}
269EXPORT_SYMBOL(drm_fb_helper_debug_enter);
270
271/* Find the real fb for a given fb helper CRTC */
272static struct drm_framebuffer *drm_mode_config_fb(struct drm_crtc *crtc)
273{
274 struct drm_device *dev = crtc->dev;
275 struct drm_crtc *c;
276
Daniel Vetter6295d602015-07-09 23:44:25 +0200277 drm_for_each_crtc(c, dev) {
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500278 if (crtc->base.id == c->base.id)
Matt Roperf4510a22014-04-01 15:22:40 -0700279 return c->primary->fb;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500280 }
281
282 return NULL;
283}
284
Daniel Vetter207fd322013-01-20 22:13:14 +0100285/**
286 * drm_fb_helper_debug_leave - implementation for ->fb_debug_leave
287 * @info: fbdev registered by the helper
288 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500289int drm_fb_helper_debug_leave(struct fb_info *info)
290{
291 struct drm_fb_helper *helper = info->par;
292 struct drm_crtc *crtc;
Jani Nikulabe26a662015-03-11 11:51:06 +0200293 const struct drm_crtc_helper_funcs *funcs;
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500294 struct drm_framebuffer *fb;
295 int i;
296
297 for (i = 0; i < helper->crtc_count; i++) {
298 struct drm_mode_set *mode_set = &helper->crtc_info[i].mode_set;
299 crtc = mode_set->crtc;
300 funcs = crtc->helper_private;
301 fb = drm_mode_config_fb(crtc);
302
303 if (!crtc->enabled)
304 continue;
305
306 if (!fb) {
307 DRM_ERROR("no fb to restore??\n");
308 continue;
309 }
310
Jason Wessel99231022010-10-13 14:09:43 -0500311 drm_fb_helper_restore_lut_atomic(mode_set->crtc);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500312 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
Jason Wessel21c74a82010-10-13 14:09:44 -0500313 crtc->y, LEAVE_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500314 }
315
316 return 0;
317}
318EXPORT_SYMBOL(drm_fb_helper_debug_leave);
319
Rob Clark5ea1f752014-05-30 12:29:48 -0400320static bool restore_fbdev_mode(struct drm_fb_helper *fb_helper)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100321{
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300322 struct drm_device *dev = fb_helper->dev;
323 struct drm_plane *plane;
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100324 bool error = false;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300325 int i;
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100326
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300327 drm_warn_on_modeset_not_all_locked(dev);
328
Daniel Vetter6295d602015-07-09 23:44:25 +0200329 drm_for_each_plane(plane, dev) {
Matt Ropere27dde32014-04-01 15:22:30 -0700330 if (plane->type != DRM_PLANE_TYPE_PRIMARY)
331 drm_plane_force_disable(plane);
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100332
Sonika Jindal9783de22014-08-05 11:26:57 +0530333 if (dev->mode_config.rotation_property) {
Thomas Wood3a5f87c2014-08-20 14:45:00 +0100334 drm_mode_plane_set_obj_prop(plane,
335 dev->mode_config.rotation_property,
336 BIT(DRM_ROTATE_0));
Sonika Jindal9783de22014-08-05 11:26:57 +0530337 }
338 }
339
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100340 for (i = 0; i < fb_helper->crtc_count; i++) {
341 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
Ville Syrjälä3858bc52013-06-03 16:10:42 +0300342 struct drm_crtc *crtc = mode_set->crtc;
343 int ret;
344
345 if (crtc->funcs->cursor_set) {
346 ret = crtc->funcs->cursor_set(crtc, NULL, 0, 0, 0);
347 if (ret)
348 error = true;
349 }
350
Daniel Vetter2d13b672012-12-11 13:47:23 +0100351 ret = drm_mode_set_config_internal(mode_set);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100352 if (ret)
353 error = true;
354 }
355 return error;
356}
Rob Clark5ea1f752014-05-30 12:29:48 -0400357/**
358 * drm_fb_helper_restore_fbdev_mode - restore fbdev configuration
359 * @fb_helper: fbcon to restore
360 *
361 * This should be called from driver's drm ->lastclose callback
362 * when implementing an fbcon on top of kms using this helper. This ensures that
363 * the user isn't greeted with a black screen when e.g. X dies.
364 *
365 * Use this variant if you need to bypass locking (panic), or already
366 * hold all modeset locks. Otherwise use drm_fb_helper_restore_fbdev_mode_unlocked()
367 */
368static bool drm_fb_helper_restore_fbdev_mode(struct drm_fb_helper *fb_helper)
369{
370 return restore_fbdev_mode(fb_helper);
371}
372
373/**
374 * drm_fb_helper_restore_fbdev_mode_unlocked - restore fbdev configuration
375 * @fb_helper: fbcon to restore
376 *
377 * This should be called from driver's drm ->lastclose callback
378 * when implementing an fbcon on top of kms using this helper. This ensures that
379 * the user isn't greeted with a black screen when e.g. X dies.
380 */
381bool drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper)
382{
383 struct drm_device *dev = fb_helper->dev;
384 bool ret;
Dave Airliee2809c72014-11-26 13:15:24 +1000385 bool do_delayed = false;
386
Rob Clark5ea1f752014-05-30 12:29:48 -0400387 drm_modeset_lock_all(dev);
388 ret = restore_fbdev_mode(fb_helper);
Dave Airliee2809c72014-11-26 13:15:24 +1000389
390 do_delayed = fb_helper->delayed_hotplug;
391 if (do_delayed)
392 fb_helper->delayed_hotplug = false;
Rob Clark5ea1f752014-05-30 12:29:48 -0400393 drm_modeset_unlock_all(dev);
Dave Airliee2809c72014-11-26 13:15:24 +1000394
395 if (do_delayed)
396 drm_fb_helper_hotplug_event(fb_helper);
Rob Clark5ea1f752014-05-30 12:29:48 -0400397 return ret;
398}
399EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode_unlocked);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100400
Daniel Vetterd21bf462013-01-20 18:09:52 +0100401/*
402 * restore fbcon display for all kms driver's using this helper, used for sysrq
403 * and panic handling.
404 */
Sachin Kamat78b9c352012-08-01 17:15:32 +0530405static bool drm_fb_helper_force_kernel_mode(void)
Dave Airlie785b93e2009-08-28 15:46:53 +1000406{
Dave Airlie785b93e2009-08-28 15:46:53 +1000407 bool ret, error = false;
408 struct drm_fb_helper *helper;
409
410 if (list_empty(&kernel_fb_helper_list))
411 return false;
412
413 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
Thierry Redingb77f0762014-04-29 11:44:32 +0200414 struct drm_device *dev = helper->dev;
415
416 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100417 continue;
418
Daniel Vettercb597bb2014-07-27 19:09:33 +0200419 /*
420 * NOTE: Use trylock mode to avoid deadlocks and sleeping in
421 * panic context.
Rob Clark51fd3712013-11-19 12:10:12 -0500422 */
Daniel Vettercb597bb2014-07-27 19:09:33 +0200423 if (__drm_modeset_lock_all(dev, true) != 0) {
Thierry Redingb77f0762014-04-29 11:44:32 +0200424 error = true;
425 continue;
426 }
427
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100428 ret = drm_fb_helper_restore_fbdev_mode(helper);
429 if (ret)
430 error = true;
Thierry Redingb77f0762014-04-29 11:44:32 +0200431
Daniel Vettercb597bb2014-07-27 19:09:33 +0200432 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000433 }
434 return error;
435}
436
Daniel Vetter20c60c32012-12-17 12:13:23 +0100437static bool drm_fb_helper_is_bound(struct drm_fb_helper *fb_helper)
438{
439 struct drm_device *dev = fb_helper->dev;
440 struct drm_crtc *crtc;
441 int bound = 0, crtcs_bound = 0;
442
Paulo Zanoni520edd12013-11-27 18:24:08 -0200443 /* Sometimes user space wants everything disabled, so don't steal the
444 * display if there's a master. */
445 if (dev->primary->master)
446 return false;
447
Daniel Vetter6295d602015-07-09 23:44:25 +0200448 drm_for_each_crtc(crtc, dev) {
Matt Roperf4510a22014-04-01 15:22:40 -0700449 if (crtc->primary->fb)
Daniel Vetter20c60c32012-12-17 12:13:23 +0100450 crtcs_bound++;
Matt Roperf4510a22014-04-01 15:22:40 -0700451 if (crtc->primary->fb == fb_helper->fb)
Daniel Vetter20c60c32012-12-17 12:13:23 +0100452 bound++;
453 }
454
455 if (bound < crtcs_bound)
456 return false;
Paulo Zanoni520edd12013-11-27 18:24:08 -0200457
Daniel Vetter20c60c32012-12-17 12:13:23 +0100458 return true;
459}
460
Mikael Petterssonbea1d352009-09-28 18:26:25 +0200461#ifdef CONFIG_MAGIC_SYSRQ
Dave Airlie785b93e2009-08-28 15:46:53 +1000462static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
463{
Daniel Vetterd21bf462013-01-20 18:09:52 +0100464 bool ret;
465 ret = drm_fb_helper_force_kernel_mode();
466 if (ret == true)
467 DRM_ERROR("Failed to restore crtc configuration\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000468}
469static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
470
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700471static void drm_fb_helper_sysrq(int dummy1)
Dave Airlie785b93e2009-08-28 15:46:53 +1000472{
473 schedule_work(&drm_fb_helper_restore_work);
474}
475
476static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = {
477 .handler = drm_fb_helper_sysrq,
478 .help_msg = "force-fb(V)",
479 .action_msg = "Restore framebuffer console",
480};
Randy Dunlapb8c40d62010-03-25 18:29:05 +0000481#else
482static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
Mikael Petterssonbea1d352009-09-28 18:26:25 +0200483#endif
Dave Airlie785b93e2009-08-28 15:46:53 +1000484
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100485static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
Dave Airlie785b93e2009-08-28 15:46:53 +1000486{
487 struct drm_fb_helper *fb_helper = info->par;
488 struct drm_device *dev = fb_helper->dev;
489 struct drm_crtc *crtc;
Jesse Barnes023eb572010-07-02 10:48:08 -0700490 struct drm_connector *connector;
Jesse Barnes023eb572010-07-02 10:48:08 -0700491 int i, j;
Dave Airlie785b93e2009-08-28 15:46:53 +1000492
493 /*
Daniel Vetter1b1d5392013-01-24 16:42:07 +0100494 * fbdev->blank can be called from irq context in case of a panic.
495 * Since we already have our own special panic handler which will
496 * restore the fbdev console mode completely, just bail out early.
497 */
498 if (oops_in_progress)
499 return;
500
501 /*
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100502 * For each CRTC in this fb, turn the connectors on/off.
Dave Airlie785b93e2009-08-28 15:46:53 +1000503 */
Daniel Vetter84849902012-12-02 00:28:11 +0100504 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +0100505 if (!drm_fb_helper_is_bound(fb_helper)) {
506 drm_modeset_unlock_all(dev);
507 return;
508 }
509
Jesse Barnese87b2c42009-09-17 18:14:41 -0700510 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie8be48d92010-03-30 05:34:14 +0000511 crtc = fb_helper->crtc_info[i].mode_set.crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000512
Dave Airlie8be48d92010-03-30 05:34:14 +0000513 if (!crtc->enabled)
514 continue;
Dave Airlie785b93e2009-08-28 15:46:53 +1000515
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100516 /* Walk the connectors & encoders on this fb turning them on/off */
Jesse Barnes023eb572010-07-02 10:48:08 -0700517 for (j = 0; j < fb_helper->connector_count; j++) {
518 connector = fb_helper->connector_info[j]->connector;
Daniel Vettere04190e2012-09-07 10:14:52 +0200519 connector->funcs->dpms(connector, dpms_mode);
Rob Clark58495562012-10-11 20:50:56 -0500520 drm_object_property_set_value(&connector->base,
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100521 dev->mode_config.dpms_property, dpms_mode);
Jesse Barnes023eb572010-07-02 10:48:08 -0700522 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000523 }
Daniel Vetter84849902012-12-02 00:28:11 +0100524 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000525}
526
Daniel Vetter207fd322013-01-20 22:13:14 +0100527/**
528 * drm_fb_helper_blank - implementation for ->fb_blank
529 * @blank: desired blanking state
530 * @info: fbdev registered by the helper
531 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000532int drm_fb_helper_blank(int blank, struct fb_info *info)
533{
534 switch (blank) {
James Simmons731b5a12009-10-29 20:39:07 +0000535 /* Display: On; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000536 case FB_BLANK_UNBLANK:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100537 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
Dave Airlie785b93e2009-08-28 15:46:53 +1000538 break;
James Simmons731b5a12009-10-29 20:39:07 +0000539 /* Display: Off; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000540 case FB_BLANK_NORMAL:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100541 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000542 break;
James Simmons731b5a12009-10-29 20:39:07 +0000543 /* Display: Off; HSync: Off, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000544 case FB_BLANK_HSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100545 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000546 break;
James Simmons731b5a12009-10-29 20:39:07 +0000547 /* Display: Off; HSync: On, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000548 case FB_BLANK_VSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100549 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
Dave Airlie785b93e2009-08-28 15:46:53 +1000550 break;
James Simmons731b5a12009-10-29 20:39:07 +0000551 /* Display: Off; HSync: Off, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000552 case FB_BLANK_POWERDOWN:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100553 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
Dave Airlie785b93e2009-08-28 15:46:53 +1000554 break;
555 }
556 return 0;
557}
558EXPORT_SYMBOL(drm_fb_helper_blank);
559
560static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper)
561{
562 int i;
563
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000564 for (i = 0; i < helper->connector_count; i++)
565 kfree(helper->connector_info[i]);
566 kfree(helper->connector_info);
Sascha Hauera1b77362012-02-01 11:38:22 +0100567 for (i = 0; i < helper->crtc_count; i++) {
Dave Airlie785b93e2009-08-28 15:46:53 +1000568 kfree(helper->crtc_info[i].mode_set.connectors);
Sascha Hauera1b77362012-02-01 11:38:22 +0100569 if (helper->crtc_info[i].mode_set.mode)
570 drm_mode_destroy(helper->dev, helper->crtc_info[i].mode_set.mode);
571 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000572 kfree(helper->crtc_info);
573}
574
Daniel Vetter207fd322013-01-20 22:13:14 +0100575/**
Thierry Reding10a23102014-06-27 17:19:24 +0200576 * drm_fb_helper_prepare - setup a drm_fb_helper structure
577 * @dev: DRM device
578 * @helper: driver-allocated fbdev helper structure to set up
579 * @funcs: pointer to structure of functions associate with this helper
580 *
581 * Sets up the bare minimum to make the framebuffer helper usable. This is
582 * useful to implement race-free initialization of the polling helpers.
583 */
584void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
585 const struct drm_fb_helper_funcs *funcs)
586{
587 INIT_LIST_HEAD(&helper->kernel_fb_list);
588 helper->funcs = funcs;
589 helper->dev = dev;
590}
591EXPORT_SYMBOL(drm_fb_helper_prepare);
592
593/**
Daniel Vetter207fd322013-01-20 22:13:14 +0100594 * drm_fb_helper_init - initialize a drm_fb_helper structure
595 * @dev: drm device
596 * @fb_helper: driver-allocated fbdev helper structure to initialize
597 * @crtc_count: maximum number of crtcs to support in this fbdev emulation
598 * @max_conn_count: max connector count
599 *
600 * This allocates the structures for the fbdev helper with the given limits.
601 * Note that this won't yet touch the hardware (through the driver interfaces)
602 * nor register the fbdev. This is only done in drm_fb_helper_initial_config()
603 * to allow driver writes more control over the exact init sequence.
604 *
Thierry Reding10a23102014-06-27 17:19:24 +0200605 * Drivers must call drm_fb_helper_prepare() before calling this function.
Daniel Vetter207fd322013-01-20 22:13:14 +0100606 *
607 * RETURNS:
608 * Zero if everything went ok, nonzero otherwise.
609 */
Dave Airlie4abe3522010-03-30 05:34:18 +0000610int drm_fb_helper_init(struct drm_device *dev,
611 struct drm_fb_helper *fb_helper,
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000612 int crtc_count, int max_conn_count)
Dave Airlie785b93e2009-08-28 15:46:53 +1000613{
Dave Airlie785b93e2009-08-28 15:46:53 +1000614 struct drm_crtc *crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000615 int i;
616
Xiubo Li04cfe972014-03-10 09:33:58 +0800617 if (!max_conn_count)
618 return -EINVAL;
619
Dave Airlie4abe3522010-03-30 05:34:18 +0000620 fb_helper->crtc_info = kcalloc(crtc_count, sizeof(struct drm_fb_helper_crtc), GFP_KERNEL);
621 if (!fb_helper->crtc_info)
Dave Airlie785b93e2009-08-28 15:46:53 +1000622 return -ENOMEM;
623
Dave Airlie4abe3522010-03-30 05:34:18 +0000624 fb_helper->crtc_count = crtc_count;
625 fb_helper->connector_info = kcalloc(dev->mode_config.num_connector, sizeof(struct drm_fb_helper_connector *), GFP_KERNEL);
626 if (!fb_helper->connector_info) {
627 kfree(fb_helper->crtc_info);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000628 return -ENOMEM;
629 }
Dave Airlie65c2a892014-06-05 14:01:30 +1000630 fb_helper->connector_info_alloc_count = dev->mode_config.num_connector;
Dave Airlie4abe3522010-03-30 05:34:18 +0000631 fb_helper->connector_count = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000632
633 for (i = 0; i < crtc_count; i++) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000634 fb_helper->crtc_info[i].mode_set.connectors =
Dave Airlie785b93e2009-08-28 15:46:53 +1000635 kcalloc(max_conn_count,
636 sizeof(struct drm_connector *),
637 GFP_KERNEL);
638
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200639 if (!fb_helper->crtc_info[i].mode_set.connectors)
Dave Airlie785b93e2009-08-28 15:46:53 +1000640 goto out_free;
Dave Airlie4abe3522010-03-30 05:34:18 +0000641 fb_helper->crtc_info[i].mode_set.num_connectors = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000642 }
643
644 i = 0;
Daniel Vetter6295d602015-07-09 23:44:25 +0200645 drm_for_each_crtc(crtc, dev) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000646 fb_helper->crtc_info[i].mode_set.crtc = crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000647 i++;
648 }
Sascha Hauere9ad3182012-02-01 11:38:25 +0100649
Dave Airlie785b93e2009-08-28 15:46:53 +1000650 return 0;
651out_free:
Dave Airlie4abe3522010-03-30 05:34:18 +0000652 drm_fb_helper_crtc_free(fb_helper);
Dave Airlie785b93e2009-08-28 15:46:53 +1000653 return -ENOMEM;
654}
Dave Airlie4abe3522010-03-30 05:34:18 +0000655EXPORT_SYMBOL(drm_fb_helper_init);
656
657void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
658{
659 if (!list_empty(&fb_helper->kernel_fb_list)) {
660 list_del(&fb_helper->kernel_fb_list);
661 if (list_empty(&kernel_fb_helper_list)) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000662 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
663 }
664 }
665
666 drm_fb_helper_crtc_free(fb_helper);
667
Dave Airlie4abe3522010-03-30 05:34:18 +0000668}
669EXPORT_SYMBOL(drm_fb_helper_fini);
Dave Airlie785b93e2009-08-28 15:46:53 +1000670
Dave Airliec850cb72009-10-23 18:49:03 +1000671static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green,
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000672 u16 blue, u16 regno, struct fb_info *info)
673{
674 struct drm_fb_helper *fb_helper = info->par;
675 struct drm_framebuffer *fb = fb_helper->fb;
676 int pindex;
677
Dave Airliec850cb72009-10-23 18:49:03 +1000678 if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
679 u32 *palette;
680 u32 value;
681 /* place color in psuedopalette */
682 if (regno > 16)
683 return -EINVAL;
684 palette = (u32 *)info->pseudo_palette;
685 red >>= (16 - info->var.red.length);
686 green >>= (16 - info->var.green.length);
687 blue >>= (16 - info->var.blue.length);
688 value = (red << info->var.red.offset) |
689 (green << info->var.green.offset) |
690 (blue << info->var.blue.offset);
Rob Clark9da12b6a2011-02-16 02:45:51 +0000691 if (info->var.transp.length > 0) {
692 u32 mask = (1 << info->var.transp.length) - 1;
693 mask <<= info->var.transp.offset;
694 value |= mask;
695 }
Dave Airliec850cb72009-10-23 18:49:03 +1000696 palette[regno] = value;
697 return 0;
698 }
699
Ville Syrjälä04c0c562013-05-27 20:19:57 +0300700 /*
701 * The driver really shouldn't advertise pseudo/directcolor
702 * visuals if it can't deal with the palette.
703 */
704 if (WARN_ON(!fb_helper->funcs->gamma_set ||
705 !fb_helper->funcs->gamma_get))
706 return -EINVAL;
707
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000708 pindex = regno;
709
710 if (fb->bits_per_pixel == 16) {
711 pindex = regno << 3;
712
713 if (fb->depth == 16 && regno > 63)
Dave Airliec850cb72009-10-23 18:49:03 +1000714 return -EINVAL;
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000715 if (fb->depth == 15 && regno > 31)
Dave Airliec850cb72009-10-23 18:49:03 +1000716 return -EINVAL;
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000717
718 if (fb->depth == 16) {
719 u16 r, g, b;
720 int i;
721 if (regno < 32) {
722 for (i = 0; i < 8; i++)
723 fb_helper->funcs->gamma_set(crtc, red,
724 green, blue, pindex + i);
725 }
726
727 fb_helper->funcs->gamma_get(crtc, &r,
728 &g, &b,
729 pindex >> 1);
730
731 for (i = 0; i < 4; i++)
732 fb_helper->funcs->gamma_set(crtc, r,
733 green, b,
734 (pindex >> 1) + i);
735 }
736 }
737
738 if (fb->depth != 16)
739 fb_helper->funcs->gamma_set(crtc, red, green, blue, pindex);
Dave Airliec850cb72009-10-23 18:49:03 +1000740 return 0;
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000741}
742
Daniel Vetter207fd322013-01-20 22:13:14 +0100743/**
744 * drm_fb_helper_setcmap - implementation for ->fb_setcmap
745 * @cmap: cmap to set
746 * @info: fbdev registered by the helper
747 */
Dave Airlie068143d2009-10-05 09:58:02 +1000748int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
749{
750 struct drm_fb_helper *fb_helper = info->par;
Ville Syrjälä8391a3d2013-05-27 20:19:56 +0300751 struct drm_device *dev = fb_helper->dev;
Jani Nikulabe26a662015-03-11 11:51:06 +0200752 const struct drm_crtc_helper_funcs *crtc_funcs;
Dave Airlie068143d2009-10-05 09:58:02 +1000753 u16 *red, *green, *blue, *transp;
754 struct drm_crtc *crtc;
roel062ac622011-03-07 18:00:34 +0100755 int i, j, rc = 0;
Dave Airlie068143d2009-10-05 09:58:02 +1000756 int start;
757
Rui Wang9aa609e2014-12-15 11:28:26 -0800758 if (__drm_modeset_lock_all(dev, !!oops_in_progress)) {
759 return -EBUSY;
760 }
Ville Syrjälä8391a3d2013-05-27 20:19:56 +0300761 if (!drm_fb_helper_is_bound(fb_helper)) {
762 drm_modeset_unlock_all(dev);
763 return -EBUSY;
764 }
765
Dave Airlie8be48d92010-03-30 05:34:14 +0000766 for (i = 0; i < fb_helper->crtc_count; i++) {
767 crtc = fb_helper->crtc_info[i].mode_set.crtc;
768 crtc_funcs = crtc->helper_private;
Dave Airlie068143d2009-10-05 09:58:02 +1000769
770 red = cmap->red;
771 green = cmap->green;
772 blue = cmap->blue;
773 transp = cmap->transp;
774 start = cmap->start;
775
roel062ac622011-03-07 18:00:34 +0100776 for (j = 0; j < cmap->len; j++) {
Dave Airlie068143d2009-10-05 09:58:02 +1000777 u16 hred, hgreen, hblue, htransp = 0xffff;
778
779 hred = *red++;
780 hgreen = *green++;
781 hblue = *blue++;
782
783 if (transp)
784 htransp = *transp++;
785
Dave Airliec850cb72009-10-23 18:49:03 +1000786 rc = setcolreg(crtc, hred, hgreen, hblue, start++, info);
787 if (rc)
Ville Syrjälä8391a3d2013-05-27 20:19:56 +0300788 goto out;
Dave Airlie068143d2009-10-05 09:58:02 +1000789 }
Ville Syrjälä04c0c562013-05-27 20:19:57 +0300790 if (crtc_funcs->load_lut)
791 crtc_funcs->load_lut(crtc);
Dave Airlie068143d2009-10-05 09:58:02 +1000792 }
Ville Syrjälä8391a3d2013-05-27 20:19:56 +0300793 out:
794 drm_modeset_unlock_all(dev);
Dave Airlie068143d2009-10-05 09:58:02 +1000795 return rc;
796}
797EXPORT_SYMBOL(drm_fb_helper_setcmap);
798
Daniel Vetter207fd322013-01-20 22:13:14 +0100799/**
800 * drm_fb_helper_check_var - implementation for ->fb_check_var
801 * @var: screeninfo to check
802 * @info: fbdev registered by the helper
803 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000804int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
805 struct fb_info *info)
806{
807 struct drm_fb_helper *fb_helper = info->par;
808 struct drm_framebuffer *fb = fb_helper->fb;
809 int depth;
810
Jason Wesself90ebd92010-08-05 09:22:32 -0500811 if (var->pixclock != 0 || in_dbg_master())
Dave Airlie785b93e2009-08-28 15:46:53 +1000812 return -EINVAL;
813
814 /* Need to resize the fb object !!! */
Chris Wilson62fb3762012-03-26 21:15:53 +0100815 if (var->bits_per_pixel > fb->bits_per_pixel ||
816 var->xres > fb->width || var->yres > fb->height ||
817 var->xres_virtual > fb->width || var->yres_virtual > fb->height) {
Dave Airlie509c7d82010-01-08 09:27:08 +1000818 DRM_DEBUG("fb userspace requested width/height/bpp is greater than current fb "
Chris Wilson62fb3762012-03-26 21:15:53 +0100819 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
820 var->xres, var->yres, var->bits_per_pixel,
821 var->xres_virtual, var->yres_virtual,
Dave Airlie509c7d82010-01-08 09:27:08 +1000822 fb->width, fb->height, fb->bits_per_pixel);
Dave Airlie785b93e2009-08-28 15:46:53 +1000823 return -EINVAL;
824 }
825
826 switch (var->bits_per_pixel) {
827 case 16:
828 depth = (var->green.length == 6) ? 16 : 15;
829 break;
830 case 32:
831 depth = (var->transp.length > 0) ? 32 : 24;
832 break;
833 default:
834 depth = var->bits_per_pixel;
835 break;
836 }
837
838 switch (depth) {
839 case 8:
840 var->red.offset = 0;
841 var->green.offset = 0;
842 var->blue.offset = 0;
843 var->red.length = 8;
844 var->green.length = 8;
845 var->blue.length = 8;
846 var->transp.length = 0;
847 var->transp.offset = 0;
848 break;
849 case 15:
850 var->red.offset = 10;
851 var->green.offset = 5;
852 var->blue.offset = 0;
853 var->red.length = 5;
854 var->green.length = 5;
855 var->blue.length = 5;
856 var->transp.length = 1;
857 var->transp.offset = 15;
858 break;
859 case 16:
860 var->red.offset = 11;
861 var->green.offset = 5;
862 var->blue.offset = 0;
863 var->red.length = 5;
864 var->green.length = 6;
865 var->blue.length = 5;
866 var->transp.length = 0;
867 var->transp.offset = 0;
868 break;
869 case 24:
870 var->red.offset = 16;
871 var->green.offset = 8;
872 var->blue.offset = 0;
873 var->red.length = 8;
874 var->green.length = 8;
875 var->blue.length = 8;
876 var->transp.length = 0;
877 var->transp.offset = 0;
878 break;
879 case 32:
880 var->red.offset = 16;
881 var->green.offset = 8;
882 var->blue.offset = 0;
883 var->red.length = 8;
884 var->green.length = 8;
885 var->blue.length = 8;
886 var->transp.length = 8;
887 var->transp.offset = 24;
888 break;
889 default:
890 return -EINVAL;
891 }
892 return 0;
893}
894EXPORT_SYMBOL(drm_fb_helper_check_var);
895
Daniel Vetter207fd322013-01-20 22:13:14 +0100896/**
897 * drm_fb_helper_set_par - implementation for ->fb_set_par
898 * @info: fbdev registered by the helper
899 *
900 * This will let fbcon do the mode init and is called at initialization time by
901 * the fbdev core when registering the driver, and later on through the hotplug
902 * callback.
903 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000904int drm_fb_helper_set_par(struct fb_info *info)
905{
906 struct drm_fb_helper *fb_helper = info->par;
Dave Airlie785b93e2009-08-28 15:46:53 +1000907 struct fb_var_screeninfo *var = &info->var;
Dave Airlie785b93e2009-08-28 15:46:53 +1000908
Clemens Ladisch5349ef32009-11-04 09:42:52 +0100909 if (var->pixclock != 0) {
Pavel Roskin172e91f2010-02-11 14:31:32 +1000910 DRM_ERROR("PIXEL CLOCK SET\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000911 return -EINVAL;
912 }
913
Rob Clark5ea1f752014-05-30 12:29:48 -0400914 drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
Dave Airlie4abe3522010-03-30 05:34:18 +0000915
Dave Airlie785b93e2009-08-28 15:46:53 +1000916 return 0;
917}
918EXPORT_SYMBOL(drm_fb_helper_set_par);
919
Daniel Vetter207fd322013-01-20 22:13:14 +0100920/**
921 * drm_fb_helper_pan_display - implementation for ->fb_pan_display
922 * @var: updated screen information
923 * @info: fbdev registered by the helper
924 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000925int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
926 struct fb_info *info)
927{
928 struct drm_fb_helper *fb_helper = info->par;
929 struct drm_device *dev = fb_helper->dev;
930 struct drm_mode_set *modeset;
Dave Airlie785b93e2009-08-28 15:46:53 +1000931 int ret = 0;
932 int i;
933
Rui Wang9aa609e2014-12-15 11:28:26 -0800934 if (__drm_modeset_lock_all(dev, !!oops_in_progress)) {
935 return -EBUSY;
936 }
Daniel Vetter20c60c32012-12-17 12:13:23 +0100937 if (!drm_fb_helper_is_bound(fb_helper)) {
938 drm_modeset_unlock_all(dev);
939 return -EBUSY;
940 }
941
Dave Airlie8be48d92010-03-30 05:34:14 +0000942 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie785b93e2009-08-28 15:46:53 +1000943 modeset = &fb_helper->crtc_info[i].mode_set;
944
945 modeset->x = var->xoffset;
946 modeset->y = var->yoffset;
947
948 if (modeset->num_connectors) {
Daniel Vetter2d13b672012-12-11 13:47:23 +0100949 ret = drm_mode_set_config_internal(modeset);
Dave Airlie785b93e2009-08-28 15:46:53 +1000950 if (!ret) {
951 info->var.xoffset = var->xoffset;
952 info->var.yoffset = var->yoffset;
953 }
954 }
955 }
Daniel Vetter84849902012-12-02 00:28:11 +0100956 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000957 return ret;
958}
959EXPORT_SYMBOL(drm_fb_helper_pan_display);
960
Daniel Vetter8acf6582013-01-21 23:38:37 +0100961/*
Daniel Vetter207fd322013-01-20 22:13:14 +0100962 * Allocates the backing storage and sets up the fbdev info structure through
963 * the ->fb_probe callback and then registers the fbdev and sets up the panic
964 * notifier.
Daniel Vetter8acf6582013-01-21 23:38:37 +0100965 */
Daniel Vetterde1ace52013-01-20 21:50:49 +0100966static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
967 int preferred_bpp)
Dave Airlie785b93e2009-08-28 15:46:53 +1000968{
Daniel Vetter8acf6582013-01-21 23:38:37 +0100969 int ret = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000970 int crtc_count = 0;
Dave Airlie4abe3522010-03-30 05:34:18 +0000971 int i;
Dave Airlie785b93e2009-08-28 15:46:53 +1000972 struct fb_info *info;
Dave Airlie38651672010-03-30 05:34:13 +0000973 struct drm_fb_helper_surface_size sizes;
Dave Airlie8be48d92010-03-30 05:34:14 +0000974 int gamma_size = 0;
Dave Airlie38651672010-03-30 05:34:13 +0000975
976 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
977 sizes.surface_depth = 24;
978 sizes.surface_bpp = 32;
979 sizes.fb_width = (unsigned)-1;
980 sizes.fb_height = (unsigned)-1;
Dave Airlie785b93e2009-08-28 15:46:53 +1000981
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000982 /* if driver picks 8 or 16 by default use that
983 for both depth/bpp */
Sachin Kamat96081cd2012-11-15 03:43:30 +0000984 if (preferred_bpp != sizes.surface_bpp)
Dave Airlie38651672010-03-30 05:34:13 +0000985 sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
Sachin Kamat96081cd2012-11-15 03:43:30 +0000986
Dave Airlie785b93e2009-08-28 15:46:53 +1000987 /* first up get a count of crtcs now in use and new min/maxes width/heights */
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000988 for (i = 0; i < fb_helper->connector_count; i++) {
989 struct drm_fb_helper_connector *fb_helper_conn = fb_helper->connector_info[i];
Chris Wilson1794d252011-04-17 07:43:32 +0100990 struct drm_cmdline_mode *cmdline_mode;
Dave Airlie8ef86782009-09-26 06:39:00 +1000991
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200992 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
Dave Airlied50ba252009-09-23 14:44:08 +1000993
994 if (cmdline_mode->bpp_specified) {
995 switch (cmdline_mode->bpp) {
996 case 8:
Dave Airlie38651672010-03-30 05:34:13 +0000997 sizes.surface_depth = sizes.surface_bpp = 8;
Dave Airlied50ba252009-09-23 14:44:08 +1000998 break;
999 case 15:
Dave Airlie38651672010-03-30 05:34:13 +00001000 sizes.surface_depth = 15;
1001 sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +10001002 break;
1003 case 16:
Dave Airlie38651672010-03-30 05:34:13 +00001004 sizes.surface_depth = sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +10001005 break;
1006 case 24:
Dave Airlie38651672010-03-30 05:34:13 +00001007 sizes.surface_depth = sizes.surface_bpp = 24;
Dave Airlied50ba252009-09-23 14:44:08 +10001008 break;
1009 case 32:
Dave Airlie38651672010-03-30 05:34:13 +00001010 sizes.surface_depth = 24;
1011 sizes.surface_bpp = 32;
Dave Airlied50ba252009-09-23 14:44:08 +10001012 break;
1013 }
1014 break;
1015 }
1016 }
1017
Dave Airlie8be48d92010-03-30 05:34:14 +00001018 crtc_count = 0;
1019 for (i = 0; i < fb_helper->crtc_count; i++) {
1020 struct drm_display_mode *desired_mode;
Rob Clark0e3704c2015-03-11 10:23:14 -04001021 struct drm_mode_set *mode_set;
1022 int x, y, j;
1023 /* in case of tile group, are we the last tile vert or horiz?
1024 * If no tile group you are always the last one both vertically
1025 * and horizontally
1026 */
1027 bool lastv = true, lasth = true;
Rob Clark675c8322015-03-11 10:23:13 -04001028
Dave Airlie8be48d92010-03-30 05:34:14 +00001029 desired_mode = fb_helper->crtc_info[i].desired_mode;
Rob Clark0e3704c2015-03-11 10:23:14 -04001030 mode_set = &fb_helper->crtc_info[i].mode_set;
Rob Clark675c8322015-03-11 10:23:13 -04001031
1032 if (!desired_mode)
1033 continue;
1034
1035 crtc_count++;
1036
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001037 x = fb_helper->crtc_info[i].x;
1038 y = fb_helper->crtc_info[i].y;
Rob Clark675c8322015-03-11 10:23:13 -04001039
1040 if (gamma_size == 0)
1041 gamma_size = fb_helper->crtc_info[i].mode_set.crtc->gamma_size;
1042
1043 sizes.surface_width = max_t(u32, desired_mode->hdisplay + x, sizes.surface_width);
1044 sizes.surface_height = max_t(u32, desired_mode->vdisplay + y, sizes.surface_height);
Rob Clark0e3704c2015-03-11 10:23:14 -04001045
1046 for (j = 0; j < mode_set->num_connectors; j++) {
1047 struct drm_connector *connector = mode_set->connectors[j];
1048 if (connector->has_tile) {
1049 lasth = (connector->tile_h_loc == (connector->num_h_tile - 1));
1050 lastv = (connector->tile_v_loc == (connector->num_v_tile - 1));
1051 /* cloning to multiple tiles is just crazy-talk, so: */
1052 break;
1053 }
1054 }
1055
1056 if (lasth)
1057 sizes.fb_width = min_t(u32, desired_mode->hdisplay + x, sizes.fb_width);
1058 if (lastv)
1059 sizes.fb_height = min_t(u32, desired_mode->vdisplay + y, sizes.fb_height);
Dave Airlie785b93e2009-08-28 15:46:53 +10001060 }
1061
Dave Airlie38651672010-03-30 05:34:13 +00001062 if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001063 /* hmm everyone went away - assume VGA cable just fell out
1064 and will come back later. */
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001065 DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n");
Dave Airlie19b4b442010-03-30 05:34:16 +00001066 sizes.fb_width = sizes.surface_width = 1024;
1067 sizes.fb_height = sizes.surface_height = 768;
Dave Airlie785b93e2009-08-28 15:46:53 +10001068 }
1069
Dave Airlie38651672010-03-30 05:34:13 +00001070 /* push down into drivers */
Daniel Vetter8acf6582013-01-21 23:38:37 +01001071 ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
1072 if (ret < 0)
1073 return ret;
Dave Airlie785b93e2009-08-28 15:46:53 +10001074
Dave Airlie38651672010-03-30 05:34:13 +00001075 info = fb_helper->fbdev;
Dave Airlie785b93e2009-08-28 15:46:53 +10001076
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001077 /*
1078 * Set the fb pointer - usually drm_setup_crtcs does this for hotplug
1079 * events, but at init time drm_setup_crtcs needs to be called before
1080 * the fb is allocated (since we need to figure out the desired size of
1081 * the fb before we can allocate it ...). Hence we need to fix things up
1082 * here again.
1083 */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001084 for (i = 0; i < fb_helper->crtc_count; i++)
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001085 if (fb_helper->crtc_info[i].mode_set.num_connectors)
1086 fb_helper->crtc_info[i].mode_set.fb = fb_helper->fb;
1087
Dave Airlie785b93e2009-08-28 15:46:53 +10001088
Daniel Vetter8acf6582013-01-21 23:38:37 +01001089 info->var.pixclock = 0;
1090 if (register_framebuffer(info) < 0)
1091 return -EINVAL;
Dave Airlie38651672010-03-30 05:34:13 +00001092
Daniel Vetter8acf6582013-01-21 23:38:37 +01001093 dev_info(fb_helper->dev->dev, "fb%d: %s frame buffer device\n",
1094 info->node, info->fix.id);
Dave Airlie785b93e2009-08-28 15:46:53 +10001095
Dave Airlie785b93e2009-08-28 15:46:53 +10001096 if (list_empty(&kernel_fb_helper_list)) {
Dave Airlie785b93e2009-08-28 15:46:53 +10001097 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
1098 }
Daniel Vetter8acf6582013-01-21 23:38:37 +01001099
1100 list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
Dave Airlie38651672010-03-30 05:34:13 +00001101
Dave Airlie785b93e2009-08-28 15:46:53 +10001102 return 0;
1103}
Dave Airlie785b93e2009-08-28 15:46:53 +10001104
Daniel Vetter207fd322013-01-20 22:13:14 +01001105/**
1106 * drm_fb_helper_fill_fix - initializes fixed fbdev information
1107 * @info: fbdev registered by the helper
1108 * @pitch: desired pitch
1109 * @depth: desired depth
1110 *
1111 * Helper to fill in the fixed fbdev information useful for a non-accelerated
1112 * fbdev emulations. Drivers which support acceleration methods which impose
1113 * additional constraints need to set up their own limits.
1114 *
1115 * Drivers should call this (or their equivalent setup code) from their
1116 * ->fb_probe callback.
1117 */
Dave Airlie3632ef82011-01-15 09:27:00 +10001118void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
1119 uint32_t depth)
1120{
1121 info->fix.type = FB_TYPE_PACKED_PIXELS;
1122 info->fix.visual = depth == 8 ? FB_VISUAL_PSEUDOCOLOR :
1123 FB_VISUAL_TRUECOLOR;
1124 info->fix.mmio_start = 0;
1125 info->fix.mmio_len = 0;
1126 info->fix.type_aux = 0;
1127 info->fix.xpanstep = 1; /* doing it in hw */
1128 info->fix.ypanstep = 1; /* doing it in hw */
1129 info->fix.ywrapstep = 0;
1130 info->fix.accel = FB_ACCEL_NONE;
Dave Airlie3632ef82011-01-15 09:27:00 +10001131
1132 info->fix.line_length = pitch;
1133 return;
1134}
1135EXPORT_SYMBOL(drm_fb_helper_fill_fix);
1136
Daniel Vetter207fd322013-01-20 22:13:14 +01001137/**
1138 * drm_fb_helper_fill_var - initalizes variable fbdev information
1139 * @info: fbdev instance to set up
1140 * @fb_helper: fb helper instance to use as template
1141 * @fb_width: desired fb width
1142 * @fb_height: desired fb height
1143 *
1144 * Sets up the variable fbdev metainformation from the given fb helper instance
1145 * and the drm framebuffer allocated in fb_helper->fb.
1146 *
1147 * Drivers should call this (or their equivalent setup code) from their
1148 * ->fb_probe callback after having allocated the fbdev backing
1149 * storage framebuffer.
1150 */
Dave Airlie38651672010-03-30 05:34:13 +00001151void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper,
Dave Airlie785b93e2009-08-28 15:46:53 +10001152 uint32_t fb_width, uint32_t fb_height)
1153{
Dave Airlie38651672010-03-30 05:34:13 +00001154 struct drm_framebuffer *fb = fb_helper->fb;
1155 info->pseudo_palette = fb_helper->pseudo_palette;
Dave Airlie785b93e2009-08-28 15:46:53 +10001156 info->var.xres_virtual = fb->width;
1157 info->var.yres_virtual = fb->height;
1158 info->var.bits_per_pixel = fb->bits_per_pixel;
James Simmons57084d02010-12-20 19:10:39 +00001159 info->var.accel_flags = FB_ACCELF_TEXT;
Dave Airlie785b93e2009-08-28 15:46:53 +10001160 info->var.xoffset = 0;
1161 info->var.yoffset = 0;
1162 info->var.activate = FB_ACTIVATE_NOW;
1163 info->var.height = -1;
1164 info->var.width = -1;
1165
1166 switch (fb->depth) {
1167 case 8:
1168 info->var.red.offset = 0;
1169 info->var.green.offset = 0;
1170 info->var.blue.offset = 0;
1171 info->var.red.length = 8; /* 8bit DAC */
1172 info->var.green.length = 8;
1173 info->var.blue.length = 8;
1174 info->var.transp.offset = 0;
1175 info->var.transp.length = 0;
1176 break;
1177 case 15:
1178 info->var.red.offset = 10;
1179 info->var.green.offset = 5;
1180 info->var.blue.offset = 0;
1181 info->var.red.length = 5;
1182 info->var.green.length = 5;
1183 info->var.blue.length = 5;
1184 info->var.transp.offset = 15;
1185 info->var.transp.length = 1;
1186 break;
1187 case 16:
1188 info->var.red.offset = 11;
1189 info->var.green.offset = 5;
1190 info->var.blue.offset = 0;
1191 info->var.red.length = 5;
1192 info->var.green.length = 6;
1193 info->var.blue.length = 5;
1194 info->var.transp.offset = 0;
1195 break;
1196 case 24:
1197 info->var.red.offset = 16;
1198 info->var.green.offset = 8;
1199 info->var.blue.offset = 0;
1200 info->var.red.length = 8;
1201 info->var.green.length = 8;
1202 info->var.blue.length = 8;
1203 info->var.transp.offset = 0;
1204 info->var.transp.length = 0;
1205 break;
1206 case 32:
1207 info->var.red.offset = 16;
1208 info->var.green.offset = 8;
1209 info->var.blue.offset = 0;
1210 info->var.red.length = 8;
1211 info->var.green.length = 8;
1212 info->var.blue.length = 8;
1213 info->var.transp.offset = 24;
1214 info->var.transp.length = 8;
1215 break;
1216 default:
1217 break;
1218 }
1219
1220 info->var.xres = fb_width;
1221 info->var.yres = fb_height;
1222}
1223EXPORT_SYMBOL(drm_fb_helper_fill_var);
Dave Airlie38651672010-03-30 05:34:13 +00001224
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001225static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper *fb_helper,
1226 uint32_t maxX,
1227 uint32_t maxY)
Dave Airlie38651672010-03-30 05:34:13 +00001228{
1229 struct drm_connector *connector;
1230 int count = 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001231 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001232
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001233 for (i = 0; i < fb_helper->connector_count; i++) {
1234 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001235 count += connector->funcs->fill_modes(connector, maxX, maxY);
1236 }
1237
1238 return count;
1239}
1240
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001241struct 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 +00001242{
1243 struct drm_display_mode *mode;
1244
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001245 list_for_each_entry(mode, &fb_connector->connector->modes, head) {
Daniel Vetter9d3de132014-01-23 16:27:56 +01001246 if (mode->hdisplay > width ||
1247 mode->vdisplay > height)
Dave Airlie38651672010-03-30 05:34:13 +00001248 continue;
1249 if (mode->type & DRM_MODE_TYPE_PREFERRED)
1250 return mode;
1251 }
1252 return NULL;
1253}
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001254EXPORT_SYMBOL(drm_has_preferred_mode);
Dave Airlie38651672010-03-30 05:34:13 +00001255
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001256static bool drm_has_cmdline_mode(struct drm_fb_helper_connector *fb_connector)
Dave Airlie38651672010-03-30 05:34:13 +00001257{
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001258 return fb_connector->connector->cmdline_mode.specified;
Dave Airlie38651672010-03-30 05:34:13 +00001259}
1260
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001261struct drm_display_mode *drm_pick_cmdline_mode(struct drm_fb_helper_connector *fb_helper_conn,
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001262 int width, int height)
Dave Airlie38651672010-03-30 05:34:13 +00001263{
Chris Wilson1794d252011-04-17 07:43:32 +01001264 struct drm_cmdline_mode *cmdline_mode;
Daniel Stonef3af5c72015-03-19 04:33:01 +00001265 struct drm_display_mode *mode;
Takashi Iwaic683f422014-03-19 14:53:13 +01001266 bool prefer_non_interlace;
Dave Airlie38651672010-03-30 05:34:13 +00001267
Chris Wilsoneaf99c72014-08-06 10:08:32 +02001268 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
Dave Airlie38651672010-03-30 05:34:13 +00001269 if (cmdline_mode->specified == false)
Daniel Stonef3af5c72015-03-19 04:33:01 +00001270 return NULL;
Dave Airlie38651672010-03-30 05:34:13 +00001271
1272 /* attempt to find a matching mode in the list of modes
1273 * we have gotten so far, if not add a CVT mode that conforms
1274 */
1275 if (cmdline_mode->rb || cmdline_mode->margins)
1276 goto create_mode;
1277
Takashi Iwaic683f422014-03-19 14:53:13 +01001278 prefer_non_interlace = !cmdline_mode->interlace;
Daniel Stonef3af5c72015-03-19 04:33:01 +00001279again:
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001280 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
Dave Airlie38651672010-03-30 05:34:13 +00001281 /* check width/height */
1282 if (mode->hdisplay != cmdline_mode->xres ||
1283 mode->vdisplay != cmdline_mode->yres)
1284 continue;
1285
1286 if (cmdline_mode->refresh_specified) {
1287 if (mode->vrefresh != cmdline_mode->refresh)
1288 continue;
1289 }
1290
1291 if (cmdline_mode->interlace) {
1292 if (!(mode->flags & DRM_MODE_FLAG_INTERLACE))
1293 continue;
Takashi Iwaic683f422014-03-19 14:53:13 +01001294 } else if (prefer_non_interlace) {
1295 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1296 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001297 }
1298 return mode;
1299 }
1300
Takashi Iwaic683f422014-03-19 14:53:13 +01001301 if (prefer_non_interlace) {
1302 prefer_non_interlace = false;
1303 goto again;
1304 }
1305
Dave Airlie38651672010-03-30 05:34:13 +00001306create_mode:
Chris Wilson1794d252011-04-17 07:43:32 +01001307 mode = drm_mode_create_from_cmdline_mode(fb_helper_conn->connector->dev,
1308 cmdline_mode);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001309 list_add(&mode->head, &fb_helper_conn->connector->modes);
Dave Airlie38651672010-03-30 05:34:13 +00001310 return mode;
1311}
Jesse Barnes2f1046f2014-02-12 12:26:24 -08001312EXPORT_SYMBOL(drm_pick_cmdline_mode);
Dave Airlie38651672010-03-30 05:34:13 +00001313
1314static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
1315{
1316 bool enable;
1317
Sachin Kamat96081cd2012-11-15 03:43:30 +00001318 if (strict)
Dave Airlie38651672010-03-30 05:34:13 +00001319 enable = connector->status == connector_status_connected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001320 else
Dave Airlie38651672010-03-30 05:34:13 +00001321 enable = connector->status != connector_status_disconnected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001322
Dave Airlie38651672010-03-30 05:34:13 +00001323 return enable;
1324}
1325
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001326static void drm_enable_connectors(struct drm_fb_helper *fb_helper,
1327 bool *enabled)
Dave Airlie38651672010-03-30 05:34:13 +00001328{
1329 bool any_enabled = false;
1330 struct drm_connector *connector;
1331 int i = 0;
1332
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001333 for (i = 0; i < fb_helper->connector_count; i++) {
1334 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001335 enabled[i] = drm_connector_enabled(connector, true);
1336 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
1337 enabled[i] ? "yes" : "no");
1338 any_enabled |= enabled[i];
Dave Airlie38651672010-03-30 05:34:13 +00001339 }
1340
1341 if (any_enabled)
1342 return;
1343
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001344 for (i = 0; i < fb_helper->connector_count; i++) {
1345 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001346 enabled[i] = drm_connector_enabled(connector, false);
Dave Airlie38651672010-03-30 05:34:13 +00001347 }
1348}
1349
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001350static bool drm_target_cloned(struct drm_fb_helper *fb_helper,
1351 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001352 struct drm_fb_offset *offsets,
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001353 bool *enabled, int width, int height)
1354{
1355 int count, i, j;
1356 bool can_clone = false;
1357 struct drm_fb_helper_connector *fb_helper_conn;
1358 struct drm_display_mode *dmt_mode, *mode;
1359
1360 /* only contemplate cloning in the single crtc case */
1361 if (fb_helper->crtc_count > 1)
1362 return false;
1363
1364 count = 0;
1365 for (i = 0; i < fb_helper->connector_count; i++) {
1366 if (enabled[i])
1367 count++;
1368 }
1369
1370 /* only contemplate cloning if more than one connector is enabled */
1371 if (count <= 1)
1372 return false;
1373
1374 /* check the command line or if nothing common pick 1024x768 */
1375 can_clone = true;
1376 for (i = 0; i < fb_helper->connector_count; i++) {
1377 if (!enabled[i])
1378 continue;
1379 fb_helper_conn = fb_helper->connector_info[i];
1380 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
1381 if (!modes[i]) {
1382 can_clone = false;
1383 break;
1384 }
1385 for (j = 0; j < i; j++) {
1386 if (!enabled[j])
1387 continue;
1388 if (!drm_mode_equal(modes[j], modes[i]))
1389 can_clone = false;
1390 }
1391 }
1392
1393 if (can_clone) {
1394 DRM_DEBUG_KMS("can clone using command line\n");
1395 return true;
1396 }
1397
1398 /* try and find a 1024x768 mode on each connector */
1399 can_clone = true;
Adam Jacksonf6e252b2012-04-13 16:33:31 -04001400 dmt_mode = drm_mode_find_dmt(fb_helper->dev, 1024, 768, 60, false);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001401
1402 for (i = 0; i < fb_helper->connector_count; i++) {
1403
1404 if (!enabled[i])
1405 continue;
1406
1407 fb_helper_conn = fb_helper->connector_info[i];
1408 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
1409 if (drm_mode_equal(mode, dmt_mode))
1410 modes[i] = mode;
1411 }
1412 if (!modes[i])
1413 can_clone = false;
1414 }
1415
1416 if (can_clone) {
1417 DRM_DEBUG_KMS("can clone using 1024x768\n");
1418 return true;
1419 }
1420 DRM_INFO("kms: can't enable cloning when we probably wanted to.\n");
1421 return false;
1422}
1423
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001424static int drm_get_tile_offsets(struct drm_fb_helper *fb_helper,
1425 struct drm_display_mode **modes,
1426 struct drm_fb_offset *offsets,
1427 int idx,
1428 int h_idx, int v_idx)
1429{
1430 struct drm_fb_helper_connector *fb_helper_conn;
1431 int i;
1432 int hoffset = 0, voffset = 0;
1433
1434 for (i = 0; i < fb_helper->connector_count; i++) {
1435 fb_helper_conn = fb_helper->connector_info[i];
1436 if (!fb_helper_conn->connector->has_tile)
1437 continue;
1438
1439 if (!modes[i] && (h_idx || v_idx)) {
1440 DRM_DEBUG_KMS("no modes for connector tiled %d %d\n", i,
1441 fb_helper_conn->connector->base.id);
1442 continue;
1443 }
1444 if (fb_helper_conn->connector->tile_h_loc < h_idx)
1445 hoffset += modes[i]->hdisplay;
1446
1447 if (fb_helper_conn->connector->tile_v_loc < v_idx)
1448 voffset += modes[i]->vdisplay;
1449 }
1450 offsets[idx].x = hoffset;
1451 offsets[idx].y = voffset;
1452 DRM_DEBUG_KMS("returned %d %d for %d %d\n", hoffset, voffset, h_idx, v_idx);
1453 return 0;
1454}
1455
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001456static bool drm_target_preferred(struct drm_fb_helper *fb_helper,
Dave Airlie38651672010-03-30 05:34:13 +00001457 struct drm_display_mode **modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001458 struct drm_fb_offset *offsets,
Dave Airlie38651672010-03-30 05:34:13 +00001459 bool *enabled, int width, int height)
1460{
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001461 struct drm_fb_helper_connector *fb_helper_conn;
1462 int i;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001463 uint64_t conn_configured = 0, mask;
1464 int tile_pass = 0;
1465 mask = (1 << fb_helper->connector_count) - 1;
1466retry:
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001467 for (i = 0; i < fb_helper->connector_count; i++) {
1468 fb_helper_conn = fb_helper->connector_info[i];
Dave Airlie38651672010-03-30 05:34:13 +00001469
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001470 if (conn_configured & (1 << i))
Dave Airlie38651672010-03-30 05:34:13 +00001471 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001472
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001473 if (enabled[i] == false) {
1474 conn_configured |= (1 << i);
1475 continue;
1476 }
1477
1478 /* first pass over all the untiled connectors */
1479 if (tile_pass == 0 && fb_helper_conn->connector->has_tile)
1480 continue;
1481
1482 if (tile_pass == 1) {
1483 if (fb_helper_conn->connector->tile_h_loc != 0 ||
1484 fb_helper_conn->connector->tile_v_loc != 0)
1485 continue;
1486
1487 } else {
1488 if (fb_helper_conn->connector->tile_h_loc != tile_pass -1 &&
1489 fb_helper_conn->connector->tile_v_loc != tile_pass - 1)
1490 /* if this tile_pass doesn't cover any of the tiles - keep going */
1491 continue;
1492
1493 /* find the tile offsets for this pass - need
1494 to find all tiles left and above */
1495 drm_get_tile_offsets(fb_helper, modes, offsets,
1496 i, fb_helper_conn->connector->tile_h_loc, fb_helper_conn->connector->tile_v_loc);
1497 }
Dave Airlie38651672010-03-30 05:34:13 +00001498 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001499 fb_helper_conn->connector->base.id);
Dave Airlie38651672010-03-30 05:34:13 +00001500
1501 /* got for command line mode first */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001502 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001503 if (!modes[i]) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001504 DRM_DEBUG_KMS("looking for preferred mode on connector %d %d\n",
1505 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 +00001506 modes[i] = drm_has_preferred_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001507 }
1508 /* No preferred modes, pick one off the list */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001509 if (!modes[i] && !list_empty(&fb_helper_conn->connector->modes)) {
1510 list_for_each_entry(modes[i], &fb_helper_conn->connector->modes, head)
Dave Airlie38651672010-03-30 05:34:13 +00001511 break;
1512 }
1513 DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name :
1514 "none");
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001515 conn_configured |= (1 << i);
1516 }
1517
1518 if ((conn_configured & mask) != mask) {
1519 tile_pass++;
1520 goto retry;
Dave Airlie38651672010-03-30 05:34:13 +00001521 }
1522 return true;
1523}
1524
Dave Airlie8be48d92010-03-30 05:34:14 +00001525static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
1526 struct drm_fb_helper_crtc **best_crtcs,
Dave Airlie38651672010-03-30 05:34:13 +00001527 struct drm_display_mode **modes,
1528 int n, int width, int height)
1529{
1530 int c, o;
Dave Airlie8be48d92010-03-30 05:34:14 +00001531 struct drm_device *dev = fb_helper->dev;
Dave Airlie38651672010-03-30 05:34:13 +00001532 struct drm_connector *connector;
Jani Nikulabe26a662015-03-11 11:51:06 +02001533 const struct drm_connector_helper_funcs *connector_funcs;
Dave Airlie38651672010-03-30 05:34:13 +00001534 struct drm_encoder *encoder;
Dave Airlie38651672010-03-30 05:34:13 +00001535 int my_score, best_score, score;
Dave Airlie8be48d92010-03-30 05:34:14 +00001536 struct drm_fb_helper_crtc **crtcs, *crtc;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001537 struct drm_fb_helper_connector *fb_helper_conn;
Dave Airlie38651672010-03-30 05:34:13 +00001538
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001539 if (n == fb_helper->connector_count)
Dave Airlie38651672010-03-30 05:34:13 +00001540 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001541
1542 fb_helper_conn = fb_helper->connector_info[n];
1543 connector = fb_helper_conn->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001544
1545 best_crtcs[n] = NULL;
Dave Airlie8be48d92010-03-30 05:34:14 +00001546 best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001547 if (modes[n] == NULL)
1548 return best_score;
1549
Dave Airlie8be48d92010-03-30 05:34:14 +00001550 crtcs = kzalloc(dev->mode_config.num_connector *
1551 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Dave Airlie38651672010-03-30 05:34:13 +00001552 if (!crtcs)
1553 return best_score;
1554
1555 my_score = 1;
1556 if (connector->status == connector_status_connected)
1557 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001558 if (drm_has_cmdline_mode(fb_helper_conn))
Dave Airlie38651672010-03-30 05:34:13 +00001559 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001560 if (drm_has_preferred_mode(fb_helper_conn, width, height))
Dave Airlie38651672010-03-30 05:34:13 +00001561 my_score++;
1562
1563 connector_funcs = connector->helper_private;
1564 encoder = connector_funcs->best_encoder(connector);
1565 if (!encoder)
1566 goto out;
1567
Dave Airlie38651672010-03-30 05:34:13 +00001568 /* select a crtc for this connector and then attempt to configure
1569 remaining connectors */
Dave Airlie8be48d92010-03-30 05:34:14 +00001570 for (c = 0; c < fb_helper->crtc_count; c++) {
1571 crtc = &fb_helper->crtc_info[c];
Dave Airlie38651672010-03-30 05:34:13 +00001572
Sachin Kamat96081cd2012-11-15 03:43:30 +00001573 if ((encoder->possible_crtcs & (1 << c)) == 0)
Dave Airlie38651672010-03-30 05:34:13 +00001574 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001575
1576 for (o = 0; o < n; o++)
1577 if (best_crtcs[o] == crtc)
1578 break;
1579
1580 if (o < n) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001581 /* ignore cloning unless only a single crtc */
1582 if (fb_helper->crtc_count > 1)
1583 continue;
1584
1585 if (!drm_mode_equal(modes[o], modes[n]))
1586 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001587 }
1588
1589 crtcs[n] = crtc;
Dave Airlie8be48d92010-03-30 05:34:14 +00001590 memcpy(crtcs, best_crtcs, n * sizeof(struct drm_fb_helper_crtc *));
1591 score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1,
Dave Airlie38651672010-03-30 05:34:13 +00001592 width, height);
1593 if (score > best_score) {
Dave Airlie38651672010-03-30 05:34:13 +00001594 best_score = score;
1595 memcpy(best_crtcs, crtcs,
1596 dev->mode_config.num_connector *
Dave Airlie8be48d92010-03-30 05:34:14 +00001597 sizeof(struct drm_fb_helper_crtc *));
Dave Airlie38651672010-03-30 05:34:13 +00001598 }
Dave Airlie38651672010-03-30 05:34:13 +00001599 }
1600out:
1601 kfree(crtcs);
1602 return best_score;
1603}
1604
Dave Airlie8be48d92010-03-30 05:34:14 +00001605static void drm_setup_crtcs(struct drm_fb_helper *fb_helper)
Dave Airlie38651672010-03-30 05:34:13 +00001606{
Dave Airlie8be48d92010-03-30 05:34:14 +00001607 struct drm_device *dev = fb_helper->dev;
1608 struct drm_fb_helper_crtc **crtcs;
Dave Airlie38651672010-03-30 05:34:13 +00001609 struct drm_display_mode **modes;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001610 struct drm_fb_offset *offsets;
Dave Airlie8be48d92010-03-30 05:34:14 +00001611 struct drm_mode_set *modeset;
Dave Airlie38651672010-03-30 05:34:13 +00001612 bool *enabled;
1613 int width, height;
Jesse Barnes11e17a02013-02-19 13:31:39 -08001614 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001615
1616 DRM_DEBUG_KMS("\n");
1617
1618 width = dev->mode_config.max_width;
1619 height = dev->mode_config.max_height;
1620
Dave Airlie38651672010-03-30 05:34:13 +00001621 crtcs = kcalloc(dev->mode_config.num_connector,
Dave Airlie8be48d92010-03-30 05:34:14 +00001622 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Dave Airlie38651672010-03-30 05:34:13 +00001623 modes = kcalloc(dev->mode_config.num_connector,
1624 sizeof(struct drm_display_mode *), GFP_KERNEL);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001625 offsets = kcalloc(dev->mode_config.num_connector,
1626 sizeof(struct drm_fb_offset), GFP_KERNEL);
Dave Airlie38651672010-03-30 05:34:13 +00001627 enabled = kcalloc(dev->mode_config.num_connector,
1628 sizeof(bool), GFP_KERNEL);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001629 if (!crtcs || !modes || !enabled || !offsets) {
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00001630 DRM_ERROR("Memory allocation failed\n");
1631 goto out;
1632 }
1633
Dave Airlie38651672010-03-30 05:34:13 +00001634
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001635 drm_enable_connectors(fb_helper, enabled);
Dave Airlie38651672010-03-30 05:34:13 +00001636
Jesse Barnes11e17a02013-02-19 13:31:39 -08001637 if (!(fb_helper->funcs->initial_config &&
1638 fb_helper->funcs->initial_config(fb_helper, crtcs, modes,
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001639 offsets,
Jesse Barnes11e17a02013-02-19 13:31:39 -08001640 enabled, width, height))) {
1641 memset(modes, 0, dev->mode_config.num_connector*sizeof(modes[0]));
1642 memset(crtcs, 0, dev->mode_config.num_connector*sizeof(crtcs[0]));
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001643 memset(offsets, 0, dev->mode_config.num_connector*sizeof(offsets[0]));
Jesse Barnes11e17a02013-02-19 13:31:39 -08001644
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001645 if (!drm_target_cloned(fb_helper, modes, offsets,
1646 enabled, width, height) &&
1647 !drm_target_preferred(fb_helper, modes, offsets,
1648 enabled, width, height))
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001649 DRM_ERROR("Unable to find initial modes\n");
Jesse Barnes11e17a02013-02-19 13:31:39 -08001650
1651 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n",
1652 width, height);
1653
1654 drm_pick_crtcs(fb_helper, crtcs, modes, 0, width, height);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001655 }
Dave Airlie38651672010-03-30 05:34:13 +00001656
Dave Airlie8be48d92010-03-30 05:34:14 +00001657 /* need to set the modesets up here for use later */
1658 /* fill out the connector<->crtc mappings into the modesets */
1659 for (i = 0; i < fb_helper->crtc_count; i++) {
1660 modeset = &fb_helper->crtc_info[i].mode_set;
1661 modeset->num_connectors = 0;
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001662 modeset->fb = NULL;
Dave Airlie8be48d92010-03-30 05:34:14 +00001663 }
Dave Airlie38651672010-03-30 05:34:13 +00001664
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001665 for (i = 0; i < fb_helper->connector_count; i++) {
Dave Airlie38651672010-03-30 05:34:13 +00001666 struct drm_display_mode *mode = modes[i];
Dave Airlie8be48d92010-03-30 05:34:14 +00001667 struct drm_fb_helper_crtc *fb_crtc = crtcs[i];
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001668 struct drm_fb_offset *offset = &offsets[i];
Dave Airlie8be48d92010-03-30 05:34:14 +00001669 modeset = &fb_crtc->mode_set;
Dave Airlie38651672010-03-30 05:34:13 +00001670
Dave Airlie8be48d92010-03-30 05:34:14 +00001671 if (mode && fb_crtc) {
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001672 DRM_DEBUG_KMS("desired mode %s set on crtc %d (%d,%d)\n",
1673 mode->name, fb_crtc->mode_set.crtc->base.id, offset->x, offset->y);
Dave Airlie8be48d92010-03-30 05:34:14 +00001674 fb_crtc->desired_mode = mode;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001675 fb_crtc->x = offset->x;
1676 fb_crtc->y = offset->y;
Dave Airlie8be48d92010-03-30 05:34:14 +00001677 if (modeset->mode)
1678 drm_mode_destroy(dev, modeset->mode);
1679 modeset->mode = drm_mode_duplicate(dev,
1680 fb_crtc->desired_mode);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001681 modeset->connectors[modeset->num_connectors++] = fb_helper->connector_info[i]->connector;
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001682 modeset->fb = fb_helper->fb;
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001683 modeset->x = offset->x;
1684 modeset->y = offset->y;
Dave Airlie38651672010-03-30 05:34:13 +00001685 }
Dave Airlie38651672010-03-30 05:34:13 +00001686 }
1687
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001688 /* Clear out any old modes if there are no more connected outputs. */
1689 for (i = 0; i < fb_helper->crtc_count; i++) {
1690 modeset = &fb_helper->crtc_info[i].mode_set;
1691 if (modeset->num_connectors == 0) {
1692 BUG_ON(modeset->fb);
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001693 if (modeset->mode)
1694 drm_mode_destroy(dev, modeset->mode);
1695 modeset->mode = NULL;
1696 }
1697 }
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00001698out:
Dave Airlie38651672010-03-30 05:34:13 +00001699 kfree(crtcs);
1700 kfree(modes);
Dave Airlieb0ee9e72014-10-20 16:31:53 +10001701 kfree(offsets);
Dave Airlie38651672010-03-30 05:34:13 +00001702 kfree(enabled);
1703}
1704
1705/**
Daniel Vetter207fd322013-01-20 22:13:14 +01001706 * drm_fb_helper_initial_config - setup a sane initial connector configuration
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01001707 * @fb_helper: fb_helper device struct
1708 * @bpp_sel: bpp value to use for the framebuffer configuration
Dave Airlie38651672010-03-30 05:34:13 +00001709 *
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01001710 * Scans the CRTCs and connectors and tries to put together an initial setup.
Dave Airlie38651672010-03-30 05:34:13 +00001711 * At the moment, this is a cloned configuration across all heads with
1712 * a new framebuffer object as the backing store.
1713 *
Daniel Vetter207fd322013-01-20 22:13:14 +01001714 * Note that this also registers the fbdev and so allows userspace to call into
1715 * the driver through the fbdev interfaces.
1716 *
1717 * This function will call down into the ->fb_probe callback to let
1718 * the driver allocate and initialize the fbdev info structure and the drm
1719 * framebuffer used to back the fbdev. drm_fb_helper_fill_var() and
1720 * drm_fb_helper_fill_fix() are provided as helpers to setup simple default
1721 * values for the fbdev info structure.
1722 *
Dave Airlie38651672010-03-30 05:34:13 +00001723 * RETURNS:
1724 * Zero if everything went ok, nonzero otherwise.
1725 */
Thierry Reding01934c22014-12-19 11:21:32 +01001726int drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
Dave Airlie38651672010-03-30 05:34:13 +00001727{
Dave Airlie8be48d92010-03-30 05:34:14 +00001728 struct drm_device *dev = fb_helper->dev;
Dave Airlie38651672010-03-30 05:34:13 +00001729 int count = 0;
1730
Daniel Vetter53f19042014-03-20 14:26:35 +01001731 mutex_lock(&dev->mode_config.mutex);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001732 count = drm_fb_helper_probe_connector_modes(fb_helper,
1733 dev->mode_config.max_width,
1734 dev->mode_config.max_height);
Daniel Vetter53f19042014-03-20 14:26:35 +01001735 mutex_unlock(&dev->mode_config.mutex);
Dave Airlie38651672010-03-30 05:34:13 +00001736 /*
1737 * we shouldn't end up with no modes here.
1738 */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001739 if (count == 0)
Sachin Kamatd56b1b92012-11-15 03:43:29 +00001740 dev_info(fb_helper->dev->dev, "No connectors reported connected with modes\n");
Sachin Kamat96081cd2012-11-15 03:43:30 +00001741
Dave Airlie8be48d92010-03-30 05:34:14 +00001742 drm_setup_crtcs(fb_helper);
Dave Airlie38651672010-03-30 05:34:13 +00001743
Dave Airlie4abe3522010-03-30 05:34:18 +00001744 return drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
Dave Airlie38651672010-03-30 05:34:13 +00001745}
Dave Airlie8be48d92010-03-30 05:34:14 +00001746EXPORT_SYMBOL(drm_fb_helper_initial_config);
Dave Airlie38651672010-03-30 05:34:13 +00001747
Chris Wilson73943712011-04-22 11:03:57 +01001748/**
1749 * drm_fb_helper_hotplug_event - respond to a hotplug notification by
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01001750 * probing all the outputs attached to the fb
Chris Wilson73943712011-04-22 11:03:57 +01001751 * @fb_helper: the drm_fb_helper
1752 *
Chris Wilson73943712011-04-22 11:03:57 +01001753 * Scan the connectors attached to the fb_helper and try to put together a
1754 * setup after *notification of a change in output configuration.
1755 *
Daniel Vetter207fd322013-01-20 22:13:14 +01001756 * Called at runtime, takes the mode config locks to be able to check/change the
1757 * modeset configuration. Must be run from process context (which usually means
1758 * either the output polling work or a work item launched from the driver's
1759 * hotplug interrupt).
1760 *
Daniel Vetter50c3dc92014-06-27 17:19:22 +02001761 * Note that drivers may call this even before calling
1762 * drm_fb_helper_initial_config but only aftert drm_fb_helper_init. This allows
1763 * for a race-free fbcon setup and will make sure that the fbdev emulation will
1764 * not miss any hotplug events.
Daniel Vetter207fd322013-01-20 22:13:14 +01001765 *
Chris Wilson73943712011-04-22 11:03:57 +01001766 * RETURNS:
1767 * 0 on success and a non-zero error code otherwise.
1768 */
1769int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
Dave Airlie38651672010-03-30 05:34:13 +00001770{
Chris Wilson73943712011-04-22 11:03:57 +01001771 struct drm_device *dev = fb_helper->dev;
Lespiau, Damien51bbd272013-09-28 16:24:05 +01001772 u32 max_width, max_height;
Dave Airlie4abe3522010-03-30 05:34:18 +00001773
Daniel Vetter89ced122013-04-11 14:26:55 +00001774 mutex_lock(&fb_helper->dev->mode_config.mutex);
Daniel Vetter50c3dc92014-06-27 17:19:22 +02001775 if (!fb_helper->fb || !drm_fb_helper_is_bound(fb_helper)) {
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001776 fb_helper->delayed_hotplug = true;
Daniel Vetter89ced122013-04-11 14:26:55 +00001777 mutex_unlock(&fb_helper->dev->mode_config.mutex);
Chris Wilson73943712011-04-22 11:03:57 +01001778 return 0;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001779 }
Dave Airlie38651672010-03-30 05:34:13 +00001780 DRM_DEBUG_KMS("\n");
1781
Dave Airlie4abe3522010-03-30 05:34:18 +00001782 max_width = fb_helper->fb->width;
1783 max_height = fb_helper->fb->height;
Dave Airlie4abe3522010-03-30 05:34:18 +00001784
Lespiau, Damien51bbd272013-09-28 16:24:05 +01001785 drm_fb_helper_probe_connector_modes(fb_helper, max_width, max_height);
Daniel Vetter89ced122013-04-11 14:26:55 +00001786 mutex_unlock(&fb_helper->dev->mode_config.mutex);
1787
1788 drm_modeset_lock_all(dev);
Dave Airlie8be48d92010-03-30 05:34:14 +00001789 drm_setup_crtcs(fb_helper);
Daniel Vetter84849902012-12-02 00:28:11 +01001790 drm_modeset_unlock_all(dev);
Daniel Vetter2180c3c2013-01-21 23:12:36 +01001791 drm_fb_helper_set_par(fb_helper->fbdev);
1792
1793 return 0;
Dave Airlie38651672010-03-30 05:34:13 +00001794}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001795EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
Dave Airlie5c4426a2010-03-30 05:34:17 +00001796
David Rientjes6a108a12011-01-20 14:44:16 -08001797/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06001798 * but the module doesn't depend on any fb console symbols. At least
1799 * attempt to load fbcon to avoid leaving the system without a usable console.
1800 */
David Rientjes6a108a12011-01-20 14:44:16 -08001801#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06001802static int __init drm_fb_helper_modinit(void)
1803{
1804 const char *name = "fbcon";
1805 struct module *fbcon;
1806
1807 mutex_lock(&module_mutex);
1808 fbcon = find_module(name);
1809 mutex_unlock(&module_mutex);
1810
1811 if (!fbcon)
1812 request_module_nowait(name);
1813 return 0;
1814}
1815
1816module_init(drm_fb_helper_modinit);
1817#endif