drm/fb-helper: Clarify drm_fb_helper_restore_fbdev_mode*()
[linux-2.6-block.git] / drivers / gpu / drm / drm_fb_helper.c
CommitLineData
785b93ef
DA
1/*
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 */
d56b1b9d
SK
30#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31
3b40a443 32#include <linux/kernel.h>
785b93ef 33#include <linux/sysrq.h>
5a0e3ad6 34#include <linux/slab.h>
785b93ef 35#include <linux/fb.h>
e0cd3608 36#include <linux/module.h>
760285e7
DH
37#include <drm/drmP.h>
38#include <drm/drm_crtc.h>
39#include <drm/drm_fb_helper.h>
40#include <drm/drm_crtc_helper.h>
785b93ef
DA
41
42static LIST_HEAD(kernel_fb_helper_list);
43
d0ddc033
DV
44/**
45 * DOC: fbdev helpers
46 *
47 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
83c617c5 48 * mode setting driver. They can be used mostly independently from the crtc
d0ddc033
DV
49 * helper functions used by many drivers to implement the kernel mode setting
50 * interfaces.
207fd329 51 *
10a23102
TR
52 * 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().
207fd329
DV
57 *
58 * At runtime drivers should restore the fbdev console by calling
3d9e35a9
GU
59 * drm_fb_helper_restore_fbdev_mode_unlocked() from their ->lastclose callback.
60 * They should also notify the fb helper code from updates to the output
207fd329
DV
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
83c617c5 63 * code provides a ->output_poll_changed callback.
207fd329
DV
64 *
65 * All other functions exported by the fb helper library can be used to
66 * implement the fbdev driver interface by the driver.
10a23102
TR
67 *
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().
d0ddc033
DV
80 */
81
207fd329
DV
82/**
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 *
169faeca
DV
92 * 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().
207fd329 95 */
0b4c0f3f 96int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper *fb_helper)
d50ba256 97{
0b4c0f3f
DA
98 struct drm_device *dev = fb_helper->dev;
99 struct drm_connector *connector;
100 int i;
d50ba256 101
169faeca 102 mutex_lock(&dev->mode_config.mutex);
6295d607 103 drm_for_each_connector(connector, dev) {
0b4c0f3f
DA
104 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;
d50ba256 109
0b4c0f3f
DA
110 fb_helper_connector->connector = connector;
111 fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector;
112 }
169faeca 113 mutex_unlock(&dev->mode_config.mutex);
d50ba256 114 return 0;
0b4c0f3f
DA
115fail:
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;
169faeca
DV
121 mutex_unlock(&dev->mode_config.mutex);
122
0b4c0f3f 123 return -ENOMEM;
d50ba256 124}
0b4c0f3f 125EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors);
d50ba256 126
65c2a89c
DA
127int 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) {
14f476fa 134 temp = krealloc(fb_helper->connector_info, sizeof(struct drm_fb_helper_connector *) * (fb_helper->connector_count + 1), GFP_KERNEL);
65c2a89c
DA
135 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
2148f18f
RC
153static 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
65c2a89c
DA
178int 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);
2148f18f
RC
200
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
65c2a89c
DA
205 return 0;
206}
207EXPORT_SYMBOL(drm_fb_helper_remove_one_connector);
208
99231028
JW
209static 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
04c0c569
VS
214 if (helper->funcs->gamma_get == NULL)
215 return;
216
99231028
JW
217 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
ebe0f244
LP
229 if (crtc->funcs->gamma_set == NULL)
230 return;
231
99231028
JW
232 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
207fd329
DV
239/**
240 * drm_fb_helper_debug_enter - implementation for ->fb_debug_enter
241 * @info: fbdev registered by the helper
242 */
1a7aba7f
JB
243int drm_fb_helper_debug_enter(struct fb_info *info)
244{
245 struct drm_fb_helper *helper = info->par;
be26a66d 246 const struct drm_crtc_helper_funcs *funcs;
1a7aba7f
JB
247 int i;
248
1a7aba7f
JB
249 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;
99231028 258 drm_fb_helper_save_lut_atomic(mode_set->crtc, helper);
1a7aba7f
JB
259 funcs->mode_set_base_atomic(mode_set->crtc,
260 mode_set->fb,
261 mode_set->x,
413d45d3 262 mode_set->y,
21c74a8e 263 ENTER_ATOMIC_MODE_SET);
1a7aba7f
JB
264 }
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
6295d607 277 drm_for_each_crtc(c, dev) {
1a7aba7f 278 if (crtc->base.id == c->base.id)
f4510a27 279 return c->primary->fb;
1a7aba7f
JB
280 }
281
282 return NULL;
283}
284
207fd329
DV
285/**
286 * drm_fb_helper_debug_leave - implementation for ->fb_debug_leave
287 * @info: fbdev registered by the helper
288 */
1a7aba7f
JB
289int drm_fb_helper_debug_leave(struct fb_info *info)
290{
291 struct drm_fb_helper *helper = info->par;
292 struct drm_crtc *crtc;
be26a66d 293 const struct drm_crtc_helper_funcs *funcs;
1a7aba7f
JB
294 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
99231028 311 drm_fb_helper_restore_lut_atomic(mode_set->crtc);
1a7aba7f 312 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
21c74a8e 313 crtc->y, LEAVE_ATOMIC_MODE_SET);
1a7aba7f
JB
314 }
315
316 return 0;
317}
318EXPORT_SYMBOL(drm_fb_helper_debug_leave);
319
5ea1f752 320static bool restore_fbdev_mode(struct drm_fb_helper *fb_helper)
e8e7a2b8 321{
3858bc5d
VS
322 struct drm_device *dev = fb_helper->dev;
323 struct drm_plane *plane;
e8e7a2b8 324 bool error = false;
3858bc5d
VS
325 int i;
326
327 drm_warn_on_modeset_not_all_locked(dev);
6aed8ec3 328
6295d607 329 drm_for_each_plane(plane, dev) {
e27dde3e
MR
330 if (plane->type != DRM_PLANE_TYPE_PRIMARY)
331 drm_plane_force_disable(plane);
6aed8ec3 332
9783de20 333 if (dev->mode_config.rotation_property) {
3a5f87c2
TW
334 drm_mode_plane_set_obj_prop(plane,
335 dev->mode_config.rotation_property,
336 BIT(DRM_ROTATE_0));
9783de20
SJ
337 }
338 }
339
e8e7a2b8
DA
340 for (i = 0; i < fb_helper->crtc_count; i++) {
341 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
3858bc5d
VS
342 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
2d13b679 351 ret = drm_mode_set_config_internal(mode_set);
e8e7a2b8
DA
352 if (ret)
353 error = true;
354 }
355 return error;
356}
5ea1f752
RC
357
358/**
359 * drm_fb_helper_restore_fbdev_mode_unlocked - restore fbdev configuration
360 * @fb_helper: fbcon to restore
361 *
362 * This should be called from driver's drm ->lastclose callback
363 * when implementing an fbcon on top of kms using this helper. This ensures that
364 * the user isn't greeted with a black screen when e.g. X dies.
365 */
366bool drm_fb_helper_restore_fbdev_mode_unlocked(struct drm_fb_helper *fb_helper)
367{
368 struct drm_device *dev = fb_helper->dev;
369 bool ret;
e2809c7d
DA
370 bool do_delayed = false;
371
5ea1f752
RC
372 drm_modeset_lock_all(dev);
373 ret = restore_fbdev_mode(fb_helper);
e2809c7d
DA
374
375 do_delayed = fb_helper->delayed_hotplug;
376 if (do_delayed)
377 fb_helper->delayed_hotplug = false;
5ea1f752 378 drm_modeset_unlock_all(dev);
e2809c7d
DA
379
380 if (do_delayed)
381 drm_fb_helper_hotplug_event(fb_helper);
5ea1f752
RC
382 return ret;
383}
384EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode_unlocked);
e8e7a2b8 385
d21bf469
DV
386/*
387 * restore fbcon display for all kms driver's using this helper, used for sysrq
388 * and panic handling.
389 */
78b9c353 390static bool drm_fb_helper_force_kernel_mode(void)
785b93ef 391{
785b93ef
DA
392 bool ret, error = false;
393 struct drm_fb_helper *helper;
394
395 if (list_empty(&kernel_fb_helper_list))
396 return false;
397
398 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
b77f0765
TR
399 struct drm_device *dev = helper->dev;
400
401 if (dev->switch_power_state == DRM_SWITCH_POWER_OFF)
402 continue;
403
dd908c86 404 drm_modeset_lock_all(dev);
3d9e35a9 405 ret = restore_fbdev_mode(helper);
e8e7a2b8
DA
406 if (ret)
407 error = true;
cb597bb3 408 drm_modeset_unlock_all(dev);
785b93ef
DA
409 }
410 return error;
411}
412
20c60c35
DV
413static bool drm_fb_helper_is_bound(struct drm_fb_helper *fb_helper)
414{
415 struct drm_device *dev = fb_helper->dev;
416 struct drm_crtc *crtc;
417 int bound = 0, crtcs_bound = 0;
418
520edd13
PZ
419 /* Sometimes user space wants everything disabled, so don't steal the
420 * display if there's a master. */
421 if (dev->primary->master)
422 return false;
423
6295d607 424 drm_for_each_crtc(crtc, dev) {
f4510a27 425 if (crtc->primary->fb)
20c60c35 426 crtcs_bound++;
f4510a27 427 if (crtc->primary->fb == fb_helper->fb)
20c60c35
DV
428 bound++;
429 }
430
431 if (bound < crtcs_bound)
432 return false;
520edd13 433
20c60c35
DV
434 return true;
435}
436
bea1d35b 437#ifdef CONFIG_MAGIC_SYSRQ
785b93ef
DA
438static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
439{
d21bf469
DV
440 bool ret;
441 ret = drm_fb_helper_force_kernel_mode();
442 if (ret == true)
443 DRM_ERROR("Failed to restore crtc configuration\n");
785b93ef
DA
444}
445static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
446
1495cc9d 447static void drm_fb_helper_sysrq(int dummy1)
785b93ef
DA
448{
449 schedule_work(&drm_fb_helper_restore_work);
450}
451
452static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = {
453 .handler = drm_fb_helper_sysrq,
454 .help_msg = "force-fb(V)",
455 .action_msg = "Restore framebuffer console",
456};
b8c40d62
RD
457#else
458static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
bea1d35b 459#endif
785b93ef 460
3a8148c5 461static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
785b93ef
DA
462{
463 struct drm_fb_helper *fb_helper = info->par;
464 struct drm_device *dev = fb_helper->dev;
465 struct drm_crtc *crtc;
023eb571 466 struct drm_connector *connector;
023eb571 467 int i, j;
785b93ef
DA
468
469 /*
3a8148c5 470 * For each CRTC in this fb, turn the connectors on/off.
785b93ef 471 */
84849903 472 drm_modeset_lock_all(dev);
20c60c35
DV
473 if (!drm_fb_helper_is_bound(fb_helper)) {
474 drm_modeset_unlock_all(dev);
475 return;
476 }
477
e87b2c42 478 for (i = 0; i < fb_helper->crtc_count; i++) {
8be48d92 479 crtc = fb_helper->crtc_info[i].mode_set.crtc;
785b93ef 480
8be48d92
DA
481 if (!crtc->enabled)
482 continue;
483
3a8148c5 484 /* Walk the connectors & encoders on this fb turning them on/off */
023eb571
JB
485 for (j = 0; j < fb_helper->connector_count; j++) {
486 connector = fb_helper->connector_info[j]->connector;
e04190e0 487 connector->funcs->dpms(connector, dpms_mode);
58495563 488 drm_object_property_set_value(&connector->base,
3a8148c5 489 dev->mode_config.dpms_property, dpms_mode);
785b93ef 490 }
785b93ef 491 }
84849903 492 drm_modeset_unlock_all(dev);
785b93ef
DA
493}
494
207fd329
DV
495/**
496 * drm_fb_helper_blank - implementation for ->fb_blank
497 * @blank: desired blanking state
498 * @info: fbdev registered by the helper
499 */
785b93ef
DA
500int drm_fb_helper_blank(int blank, struct fb_info *info)
501{
c50bfd08
DV
502 if (oops_in_progress)
503 return -EBUSY;
504
785b93ef 505 switch (blank) {
731b5a15 506 /* Display: On; HSync: On, VSync: On */
785b93ef 507 case FB_BLANK_UNBLANK:
3a8148c5 508 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
785b93ef 509 break;
731b5a15 510 /* Display: Off; HSync: On, VSync: On */
785b93ef 511 case FB_BLANK_NORMAL:
3a8148c5 512 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
785b93ef 513 break;
731b5a15 514 /* Display: Off; HSync: Off, VSync: On */
785b93ef 515 case FB_BLANK_HSYNC_SUSPEND:
3a8148c5 516 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
785b93ef 517 break;
731b5a15 518 /* Display: Off; HSync: On, VSync: Off */
785b93ef 519 case FB_BLANK_VSYNC_SUSPEND:
3a8148c5 520 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
785b93ef 521 break;
731b5a15 522 /* Display: Off; HSync: Off, VSync: Off */
785b93ef 523 case FB_BLANK_POWERDOWN:
3a8148c5 524 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
785b93ef
DA
525 break;
526 }
527 return 0;
528}
529EXPORT_SYMBOL(drm_fb_helper_blank);
530
531static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper)
532{
533 int i;
534
0b4c0f3f
DA
535 for (i = 0; i < helper->connector_count; i++)
536 kfree(helper->connector_info[i]);
537 kfree(helper->connector_info);
a1b7736d 538 for (i = 0; i < helper->crtc_count; i++) {
785b93ef 539 kfree(helper->crtc_info[i].mode_set.connectors);
a1b7736d
SH
540 if (helper->crtc_info[i].mode_set.mode)
541 drm_mode_destroy(helper->dev, helper->crtc_info[i].mode_set.mode);
542 }
785b93ef
DA
543 kfree(helper->crtc_info);
544}
545
10a23102
TR
546/**
547 * drm_fb_helper_prepare - setup a drm_fb_helper structure
548 * @dev: DRM device
549 * @helper: driver-allocated fbdev helper structure to set up
550 * @funcs: pointer to structure of functions associate with this helper
551 *
552 * Sets up the bare minimum to make the framebuffer helper usable. This is
553 * useful to implement race-free initialization of the polling helpers.
554 */
555void drm_fb_helper_prepare(struct drm_device *dev, struct drm_fb_helper *helper,
556 const struct drm_fb_helper_funcs *funcs)
557{
558 INIT_LIST_HEAD(&helper->kernel_fb_list);
559 helper->funcs = funcs;
560 helper->dev = dev;
561}
562EXPORT_SYMBOL(drm_fb_helper_prepare);
563
207fd329
DV
564/**
565 * drm_fb_helper_init - initialize a drm_fb_helper structure
566 * @dev: drm device
567 * @fb_helper: driver-allocated fbdev helper structure to initialize
568 * @crtc_count: maximum number of crtcs to support in this fbdev emulation
569 * @max_conn_count: max connector count
570 *
571 * This allocates the structures for the fbdev helper with the given limits.
572 * Note that this won't yet touch the hardware (through the driver interfaces)
573 * nor register the fbdev. This is only done in drm_fb_helper_initial_config()
574 * to allow driver writes more control over the exact init sequence.
575 *
10a23102 576 * Drivers must call drm_fb_helper_prepare() before calling this function.
207fd329
DV
577 *
578 * RETURNS:
579 * Zero if everything went ok, nonzero otherwise.
580 */
4abe3520
DA
581int drm_fb_helper_init(struct drm_device *dev,
582 struct drm_fb_helper *fb_helper,
eb1f8e4f 583 int crtc_count, int max_conn_count)
785b93ef 584{
785b93ef 585 struct drm_crtc *crtc;
785b93ef
DA
586 int i;
587
04cfe97e
XL
588 if (!max_conn_count)
589 return -EINVAL;
590
4abe3520
DA
591 fb_helper->crtc_info = kcalloc(crtc_count, sizeof(struct drm_fb_helper_crtc), GFP_KERNEL);
592 if (!fb_helper->crtc_info)
785b93ef
DA
593 return -ENOMEM;
594
4abe3520
DA
595 fb_helper->crtc_count = crtc_count;
596 fb_helper->connector_info = kcalloc(dev->mode_config.num_connector, sizeof(struct drm_fb_helper_connector *), GFP_KERNEL);
597 if (!fb_helper->connector_info) {
598 kfree(fb_helper->crtc_info);
0b4c0f3f
DA
599 return -ENOMEM;
600 }
65c2a89c 601 fb_helper->connector_info_alloc_count = dev->mode_config.num_connector;
4abe3520 602 fb_helper->connector_count = 0;
785b93ef
DA
603
604 for (i = 0; i < crtc_count; i++) {
4abe3520 605 fb_helper->crtc_info[i].mode_set.connectors =
785b93ef
DA
606 kcalloc(max_conn_count,
607 sizeof(struct drm_connector *),
608 GFP_KERNEL);
609
4a1b0714 610 if (!fb_helper->crtc_info[i].mode_set.connectors)
785b93ef 611 goto out_free;
4abe3520 612 fb_helper->crtc_info[i].mode_set.num_connectors = 0;
785b93ef
DA
613 }
614
615 i = 0;
6295d607 616 drm_for_each_crtc(crtc, dev) {
4abe3520 617 fb_helper->crtc_info[i].mode_set.crtc = crtc;
785b93ef
DA
618 i++;
619 }
e9ad3181 620
785b93ef
DA
621 return 0;
622out_free:
4abe3520 623 drm_fb_helper_crtc_free(fb_helper);
785b93ef
DA
624 return -ENOMEM;
625}
4abe3520
DA
626EXPORT_SYMBOL(drm_fb_helper_init);
627
b8017d6c
AT
628/**
629 * drm_fb_helper_alloc_fbi - allocate fb_info and some of its members
630 * @fb_helper: driver-allocated fbdev helper
631 *
632 * A helper to alloc fb_info and the members cmap and apertures. Called
633 * by the driver within the fb_probe fb_helper callback function.
634 *
635 * RETURNS:
636 * fb_info pointer if things went okay, pointer containing error code
637 * otherwise
638 */
639struct fb_info *drm_fb_helper_alloc_fbi(struct drm_fb_helper *fb_helper)
640{
641 struct device *dev = fb_helper->dev->dev;
642 struct fb_info *info;
643 int ret;
644
645 info = framebuffer_alloc(0, dev);
646 if (!info)
647 return ERR_PTR(-ENOMEM);
648
649 ret = fb_alloc_cmap(&info->cmap, 256, 0);
650 if (ret)
651 goto err_release;
652
653 info->apertures = alloc_apertures(1);
654 if (!info->apertures) {
655 ret = -ENOMEM;
656 goto err_free_cmap;
657 }
658
659 fb_helper->fbdev = info;
660
661 return info;
662
663err_free_cmap:
664 fb_dealloc_cmap(&info->cmap);
665err_release:
666 framebuffer_release(info);
667 return ERR_PTR(ret);
668}
669EXPORT_SYMBOL(drm_fb_helper_alloc_fbi);
670
671/**
672 * drm_fb_helper_unregister_fbi - unregister fb_info framebuffer device
673 * @fb_helper: driver-allocated fbdev helper
674 *
675 * A wrapper around unregister_framebuffer, to release the fb_info
676 * framebuffer device
677 */
678void drm_fb_helper_unregister_fbi(struct drm_fb_helper *fb_helper)
679{
680 if (fb_helper && fb_helper->fbdev)
681 unregister_framebuffer(fb_helper->fbdev);
682}
683EXPORT_SYMBOL(drm_fb_helper_unregister_fbi);
684
685/**
686 * drm_fb_helper_release_fbi - dealloc fb_info and its members
687 * @fb_helper: driver-allocated fbdev helper
688 *
689 * A helper to free memory taken by fb_info and the members cmap and
690 * apertures
691 */
692void drm_fb_helper_release_fbi(struct drm_fb_helper *fb_helper)
693{
694 if (fb_helper) {
695 struct fb_info *info = fb_helper->fbdev;
696
697 if (info) {
698 if (info->cmap.len)
699 fb_dealloc_cmap(&info->cmap);
700 framebuffer_release(info);
701 }
702
703 fb_helper->fbdev = NULL;
704 }
705}
706EXPORT_SYMBOL(drm_fb_helper_release_fbi);
707
4abe3520
DA
708void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
709{
710 if (!list_empty(&fb_helper->kernel_fb_list)) {
711 list_del(&fb_helper->kernel_fb_list);
712 if (list_empty(&kernel_fb_helper_list)) {
4abe3520
DA
713 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
714 }
715 }
716
717 drm_fb_helper_crtc_free(fb_helper);
718
4abe3520
DA
719}
720EXPORT_SYMBOL(drm_fb_helper_fini);
785b93ef 721
47074ab7
AT
722/**
723 * drm_fb_helper_unlink_fbi - wrapper around unlink_framebuffer
724 * @fb_helper: driver-allocated fbdev helper
725 *
726 * A wrapper around unlink_framebuffer implemented by fbdev core
727 */
728void drm_fb_helper_unlink_fbi(struct drm_fb_helper *fb_helper)
729{
730 if (fb_helper && fb_helper->fbdev)
731 unlink_framebuffer(fb_helper->fbdev);
732}
733EXPORT_SYMBOL(drm_fb_helper_unlink_fbi);
734
cbb1a82e
AT
735/**
736 * drm_fb_helper_sys_read - wrapper around fb_sys_read
737 * @info: fb_info struct pointer
738 * @buf: userspace buffer to read from framebuffer memory
739 * @count: number of bytes to read from framebuffer memory
740 * @ppos: read offset within framebuffer memory
741 *
742 * A wrapper around fb_sys_read implemented by fbdev core
743 */
744ssize_t drm_fb_helper_sys_read(struct fb_info *info, char __user *buf,
745 size_t count, loff_t *ppos)
746{
747 return fb_sys_read(info, buf, count, ppos);
748}
749EXPORT_SYMBOL(drm_fb_helper_sys_read);
750
751/**
752 * drm_fb_helper_sys_write - wrapper around fb_sys_write
753 * @info: fb_info struct pointer
754 * @buf: userspace buffer to write to framebuffer memory
755 * @count: number of bytes to write to framebuffer memory
756 * @ppos: write offset within framebuffer memory
757 *
758 * A wrapper around fb_sys_write implemented by fbdev core
759 */
760ssize_t drm_fb_helper_sys_write(struct fb_info *info, const char __user *buf,
761 size_t count, loff_t *ppos)
762{
763 return fb_sys_write(info, buf, count, ppos);
764}
765EXPORT_SYMBOL(drm_fb_helper_sys_write);
766
742547b7
AT
767/**
768 * drm_fb_helper_sys_fillrect - wrapper around sys_fillrect
769 * @info: fbdev registered by the helper
770 * @rect: info about rectangle to fill
771 *
772 * A wrapper around sys_fillrect implemented by fbdev core
773 */
774void drm_fb_helper_sys_fillrect(struct fb_info *info,
775 const struct fb_fillrect *rect)
776{
777 sys_fillrect(info, rect);
778}
779EXPORT_SYMBOL(drm_fb_helper_sys_fillrect);
780
781/**
782 * drm_fb_helper_sys_copyarea - wrapper around sys_copyarea
783 * @info: fbdev registered by the helper
784 * @area: info about area to copy
785 *
786 * A wrapper around sys_copyarea implemented by fbdev core
787 */
788void drm_fb_helper_sys_copyarea(struct fb_info *info,
789 const struct fb_copyarea *area)
790{
791 sys_copyarea(info, area);
792}
793EXPORT_SYMBOL(drm_fb_helper_sys_copyarea);
794
795/**
796 * drm_fb_helper_sys_imageblit - wrapper around sys_imageblit
797 * @info: fbdev registered by the helper
798 * @image: info about image to blit
799 *
800 * A wrapper around sys_imageblit implemented by fbdev core
801 */
802void drm_fb_helper_sys_imageblit(struct fb_info *info,
803 const struct fb_image *image)
804{
805 sys_imageblit(info, image);
806}
807EXPORT_SYMBOL(drm_fb_helper_sys_imageblit);
808
809/**
810 * drm_fb_helper_cfb_fillrect - wrapper around cfb_fillrect
811 * @info: fbdev registered by the helper
812 * @rect: info about rectangle to fill
813 *
814 * A wrapper around cfb_imageblit implemented by fbdev core
815 */
816void drm_fb_helper_cfb_fillrect(struct fb_info *info,
817 const struct fb_fillrect *rect)
818{
819 cfb_fillrect(info, rect);
820}
821EXPORT_SYMBOL(drm_fb_helper_cfb_fillrect);
822
823/**
824 * drm_fb_helper_cfb_copyarea - wrapper around cfb_copyarea
825 * @info: fbdev registered by the helper
826 * @area: info about area to copy
827 *
828 * A wrapper around cfb_copyarea implemented by fbdev core
829 */
830void drm_fb_helper_cfb_copyarea(struct fb_info *info,
831 const struct fb_copyarea *area)
832{
833 cfb_copyarea(info, area);
834}
835EXPORT_SYMBOL(drm_fb_helper_cfb_copyarea);
836
837/**
838 * drm_fb_helper_cfb_imageblit - wrapper around cfb_imageblit
839 * @info: fbdev registered by the helper
840 * @image: info about image to blit
841 *
842 * A wrapper around cfb_imageblit implemented by fbdev core
843 */
844void drm_fb_helper_cfb_imageblit(struct fb_info *info,
845 const struct fb_image *image)
846{
847 cfb_imageblit(info, image);
848}
849EXPORT_SYMBOL(drm_fb_helper_cfb_imageblit);
850
fdefa58a
AT
851/**
852 * drm_fb_helper_set_suspend - wrapper around fb_set_suspend
853 * @fb_helper: driver-allocated fbdev helper
854 * @state: desired state, zero to resume, non-zero to suspend
855 *
856 * A wrapper around fb_set_suspend implemented by fbdev core
857 */
858void drm_fb_helper_set_suspend(struct drm_fb_helper *fb_helper, int state)
859{
860 if (fb_helper && fb_helper->fbdev)
861 fb_set_suspend(fb_helper->fbdev, state);
862}
863EXPORT_SYMBOL(drm_fb_helper_set_suspend);
864
c850cb78 865static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green,
b8c00ac5
DA
866 u16 blue, u16 regno, struct fb_info *info)
867{
868 struct drm_fb_helper *fb_helper = info->par;
869 struct drm_framebuffer *fb = fb_helper->fb;
870 int pindex;
871
c850cb78
DA
872 if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
873 u32 *palette;
874 u32 value;
875 /* place color in psuedopalette */
876 if (regno > 16)
877 return -EINVAL;
878 palette = (u32 *)info->pseudo_palette;
879 red >>= (16 - info->var.red.length);
880 green >>= (16 - info->var.green.length);
881 blue >>= (16 - info->var.blue.length);
882 value = (red << info->var.red.offset) |
883 (green << info->var.green.offset) |
884 (blue << info->var.blue.offset);
9da12b6a
RC
885 if (info->var.transp.length > 0) {
886 u32 mask = (1 << info->var.transp.length) - 1;
887 mask <<= info->var.transp.offset;
888 value |= mask;
889 }
c850cb78
DA
890 palette[regno] = value;
891 return 0;
892 }
893
04c0c569
VS
894 /*
895 * The driver really shouldn't advertise pseudo/directcolor
896 * visuals if it can't deal with the palette.
897 */
898 if (WARN_ON(!fb_helper->funcs->gamma_set ||
899 !fb_helper->funcs->gamma_get))
900 return -EINVAL;
901
b8c00ac5
DA
902 pindex = regno;
903
904 if (fb->bits_per_pixel == 16) {
905 pindex = regno << 3;
906
907 if (fb->depth == 16 && regno > 63)
c850cb78 908 return -EINVAL;
b8c00ac5 909 if (fb->depth == 15 && regno > 31)
c850cb78 910 return -EINVAL;
b8c00ac5
DA
911
912 if (fb->depth == 16) {
913 u16 r, g, b;
914 int i;
915 if (regno < 32) {
916 for (i = 0; i < 8; i++)
917 fb_helper->funcs->gamma_set(crtc, red,
918 green, blue, pindex + i);
919 }
920
921 fb_helper->funcs->gamma_get(crtc, &r,
922 &g, &b,
923 pindex >> 1);
924
925 for (i = 0; i < 4; i++)
926 fb_helper->funcs->gamma_set(crtc, r,
927 green, b,
928 (pindex >> 1) + i);
929 }
930 }
931
932 if (fb->depth != 16)
933 fb_helper->funcs->gamma_set(crtc, red, green, blue, pindex);
c850cb78 934 return 0;
b8c00ac5
DA
935}
936
207fd329
DV
937/**
938 * drm_fb_helper_setcmap - implementation for ->fb_setcmap
939 * @cmap: cmap to set
940 * @info: fbdev registered by the helper
941 */
068143d3
DA
942int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
943{
944 struct drm_fb_helper *fb_helper = info->par;
8391a3d5 945 struct drm_device *dev = fb_helper->dev;
be26a66d 946 const struct drm_crtc_helper_funcs *crtc_funcs;
068143d3
DA
947 u16 *red, *green, *blue, *transp;
948 struct drm_crtc *crtc;
062ac622 949 int i, j, rc = 0;
068143d3
DA
950 int start;
951
c50bfd08 952 if (oops_in_progress)
9aa609e1 953 return -EBUSY;
c50bfd08
DV
954
955 drm_modeset_lock_all(dev);
8391a3d5
VS
956 if (!drm_fb_helper_is_bound(fb_helper)) {
957 drm_modeset_unlock_all(dev);
958 return -EBUSY;
959 }
960
8be48d92
DA
961 for (i = 0; i < fb_helper->crtc_count; i++) {
962 crtc = fb_helper->crtc_info[i].mode_set.crtc;
963 crtc_funcs = crtc->helper_private;
068143d3
DA
964
965 red = cmap->red;
966 green = cmap->green;
967 blue = cmap->blue;
968 transp = cmap->transp;
969 start = cmap->start;
970
062ac622 971 for (j = 0; j < cmap->len; j++) {
068143d3
DA
972 u16 hred, hgreen, hblue, htransp = 0xffff;
973
974 hred = *red++;
975 hgreen = *green++;
976 hblue = *blue++;
977
978 if (transp)
979 htransp = *transp++;
980
c850cb78
DA
981 rc = setcolreg(crtc, hred, hgreen, hblue, start++, info);
982 if (rc)
8391a3d5 983 goto out;
068143d3 984 }
04c0c569
VS
985 if (crtc_funcs->load_lut)
986 crtc_funcs->load_lut(crtc);
068143d3 987 }
8391a3d5
VS
988 out:
989 drm_modeset_unlock_all(dev);
068143d3
DA
990 return rc;
991}
992EXPORT_SYMBOL(drm_fb_helper_setcmap);
993
207fd329
DV
994/**
995 * drm_fb_helper_check_var - implementation for ->fb_check_var
996 * @var: screeninfo to check
997 * @info: fbdev registered by the helper
998 */
785b93ef
DA
999int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
1000 struct fb_info *info)
1001{
1002 struct drm_fb_helper *fb_helper = info->par;
1003 struct drm_framebuffer *fb = fb_helper->fb;
1004 int depth;
1005
f90ebd9e 1006 if (var->pixclock != 0 || in_dbg_master())
785b93ef
DA
1007 return -EINVAL;
1008
1009 /* Need to resize the fb object !!! */
62fb376e
CW
1010 if (var->bits_per_pixel > fb->bits_per_pixel ||
1011 var->xres > fb->width || var->yres > fb->height ||
1012 var->xres_virtual > fb->width || var->yres_virtual > fb->height) {
509c7d83 1013 DRM_DEBUG("fb userspace requested width/height/bpp is greater than current fb "
62fb376e
CW
1014 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
1015 var->xres, var->yres, var->bits_per_pixel,
1016 var->xres_virtual, var->yres_virtual,
509c7d83 1017 fb->width, fb->height, fb->bits_per_pixel);
785b93ef
DA
1018 return -EINVAL;
1019 }
1020
1021 switch (var->bits_per_pixel) {
1022 case 16:
1023 depth = (var->green.length == 6) ? 16 : 15;
1024 break;
1025 case 32:
1026 depth = (var->transp.length > 0) ? 32 : 24;
1027 break;
1028 default:
1029 depth = var->bits_per_pixel;
1030 break;
1031 }
1032
1033 switch (depth) {
1034 case 8:
1035 var->red.offset = 0;
1036 var->green.offset = 0;
1037 var->blue.offset = 0;
1038 var->red.length = 8;
1039 var->green.length = 8;
1040 var->blue.length = 8;
1041 var->transp.length = 0;
1042 var->transp.offset = 0;
1043 break;
1044 case 15:
1045 var->red.offset = 10;
1046 var->green.offset = 5;
1047 var->blue.offset = 0;
1048 var->red.length = 5;
1049 var->green.length = 5;
1050 var->blue.length = 5;
1051 var->transp.length = 1;
1052 var->transp.offset = 15;
1053 break;
1054 case 16:
1055 var->red.offset = 11;
1056 var->green.offset = 5;
1057 var->blue.offset = 0;
1058 var->red.length = 5;
1059 var->green.length = 6;
1060 var->blue.length = 5;
1061 var->transp.length = 0;
1062 var->transp.offset = 0;
1063 break;
1064 case 24:
1065 var->red.offset = 16;
1066 var->green.offset = 8;
1067 var->blue.offset = 0;
1068 var->red.length = 8;
1069 var->green.length = 8;
1070 var->blue.length = 8;
1071 var->transp.length = 0;
1072 var->transp.offset = 0;
1073 break;
1074 case 32:
1075 var->red.offset = 16;
1076 var->green.offset = 8;
1077 var->blue.offset = 0;
1078 var->red.length = 8;
1079 var->green.length = 8;
1080 var->blue.length = 8;
1081 var->transp.length = 8;
1082 var->transp.offset = 24;
1083 break;
1084 default:
1085 return -EINVAL;
1086 }
1087 return 0;
1088}
1089EXPORT_SYMBOL(drm_fb_helper_check_var);
1090
207fd329
DV
1091/**
1092 * drm_fb_helper_set_par - implementation for ->fb_set_par
1093 * @info: fbdev registered by the helper
1094 *
1095 * This will let fbcon do the mode init and is called at initialization time by
1096 * the fbdev core when registering the driver, and later on through the hotplug
1097 * callback.
1098 */
785b93ef
DA
1099int drm_fb_helper_set_par(struct fb_info *info)
1100{
1101 struct drm_fb_helper *fb_helper = info->par;
785b93ef 1102 struct fb_var_screeninfo *var = &info->var;
785b93ef 1103
c50bfd08
DV
1104 if (oops_in_progress)
1105 return -EBUSY;
1106
5349ef31 1107 if (var->pixclock != 0) {
172e91f5 1108 DRM_ERROR("PIXEL CLOCK SET\n");
785b93ef
DA
1109 return -EINVAL;
1110 }
1111
5ea1f752 1112 drm_fb_helper_restore_fbdev_mode_unlocked(fb_helper);
4abe3520 1113
785b93ef
DA
1114 return 0;
1115}
1116EXPORT_SYMBOL(drm_fb_helper_set_par);
1117
207fd329
DV
1118/**
1119 * drm_fb_helper_pan_display - implementation for ->fb_pan_display
1120 * @var: updated screen information
1121 * @info: fbdev registered by the helper
1122 */
785b93ef
DA
1123int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
1124 struct fb_info *info)
1125{
1126 struct drm_fb_helper *fb_helper = info->par;
1127 struct drm_device *dev = fb_helper->dev;
1128 struct drm_mode_set *modeset;
785b93ef
DA
1129 int ret = 0;
1130 int i;
1131
c50bfd08 1132 if (oops_in_progress)
9aa609e1 1133 return -EBUSY;
c50bfd08
DV
1134
1135 drm_modeset_lock_all(dev);
20c60c35
DV
1136 if (!drm_fb_helper_is_bound(fb_helper)) {
1137 drm_modeset_unlock_all(dev);
1138 return -EBUSY;
1139 }
1140
8be48d92 1141 for (i = 0; i < fb_helper->crtc_count; i++) {
785b93ef
DA
1142 modeset = &fb_helper->crtc_info[i].mode_set;
1143
1144 modeset->x = var->xoffset;
1145 modeset->y = var->yoffset;
1146
1147 if (modeset->num_connectors) {
2d13b679 1148 ret = drm_mode_set_config_internal(modeset);
785b93ef
DA
1149 if (!ret) {
1150 info->var.xoffset = var->xoffset;
1151 info->var.yoffset = var->yoffset;
1152 }
1153 }
1154 }
84849903 1155 drm_modeset_unlock_all(dev);
785b93ef
DA
1156 return ret;
1157}
1158EXPORT_SYMBOL(drm_fb_helper_pan_display);
1159
8acf658a 1160/*
207fd329
DV
1161 * Allocates the backing storage and sets up the fbdev info structure through
1162 * the ->fb_probe callback and then registers the fbdev and sets up the panic
1163 * notifier.
8acf658a 1164 */
de1ace5b
DV
1165static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
1166 int preferred_bpp)
785b93ef 1167{
8acf658a 1168 int ret = 0;
785b93ef 1169 int crtc_count = 0;
4abe3520 1170 int i;
785b93ef 1171 struct fb_info *info;
38651674 1172 struct drm_fb_helper_surface_size sizes;
8be48d92 1173 int gamma_size = 0;
38651674
DA
1174
1175 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
1176 sizes.surface_depth = 24;
1177 sizes.surface_bpp = 32;
1178 sizes.fb_width = (unsigned)-1;
1179 sizes.fb_height = (unsigned)-1;
785b93ef 1180
b8c00ac5
DA
1181 /* if driver picks 8 or 16 by default use that
1182 for both depth/bpp */
96081cdf 1183 if (preferred_bpp != sizes.surface_bpp)
38651674 1184 sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
96081cdf 1185
785b93ef 1186 /* first up get a count of crtcs now in use and new min/maxes width/heights */
0b4c0f3f
DA
1187 for (i = 0; i < fb_helper->connector_count; i++) {
1188 struct drm_fb_helper_connector *fb_helper_conn = fb_helper->connector_info[i];
1794d257 1189 struct drm_cmdline_mode *cmdline_mode;
8ef8678c 1190
eaf99c74 1191 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
d50ba256
DA
1192
1193 if (cmdline_mode->bpp_specified) {
1194 switch (cmdline_mode->bpp) {
1195 case 8:
38651674 1196 sizes.surface_depth = sizes.surface_bpp = 8;
d50ba256
DA
1197 break;
1198 case 15:
38651674
DA
1199 sizes.surface_depth = 15;
1200 sizes.surface_bpp = 16;
d50ba256
DA
1201 break;
1202 case 16:
38651674 1203 sizes.surface_depth = sizes.surface_bpp = 16;
d50ba256
DA
1204 break;
1205 case 24:
38651674 1206 sizes.surface_depth = sizes.surface_bpp = 24;
d50ba256
DA
1207 break;
1208 case 32:
38651674
DA
1209 sizes.surface_depth = 24;
1210 sizes.surface_bpp = 32;
d50ba256
DA
1211 break;
1212 }
1213 break;
1214 }
1215 }
1216
8be48d92
DA
1217 crtc_count = 0;
1218 for (i = 0; i < fb_helper->crtc_count; i++) {
1219 struct drm_display_mode *desired_mode;
0e3704c9
RC
1220 struct drm_mode_set *mode_set;
1221 int x, y, j;
1222 /* in case of tile group, are we the last tile vert or horiz?
1223 * If no tile group you are always the last one both vertically
1224 * and horizontally
1225 */
1226 bool lastv = true, lasth = true;
675c8328 1227
8be48d92 1228 desired_mode = fb_helper->crtc_info[i].desired_mode;
0e3704c9 1229 mode_set = &fb_helper->crtc_info[i].mode_set;
675c8328
RC
1230
1231 if (!desired_mode)
1232 continue;
1233
1234 crtc_count++;
1235
b0ee9e7f
DA
1236 x = fb_helper->crtc_info[i].x;
1237 y = fb_helper->crtc_info[i].y;
675c8328
RC
1238
1239 if (gamma_size == 0)
1240 gamma_size = fb_helper->crtc_info[i].mode_set.crtc->gamma_size;
1241
1242 sizes.surface_width = max_t(u32, desired_mode->hdisplay + x, sizes.surface_width);
1243 sizes.surface_height = max_t(u32, desired_mode->vdisplay + y, sizes.surface_height);
0e3704c9
RC
1244
1245 for (j = 0; j < mode_set->num_connectors; j++) {
1246 struct drm_connector *connector = mode_set->connectors[j];
1247 if (connector->has_tile) {
1248 lasth = (connector->tile_h_loc == (connector->num_h_tile - 1));
1249 lastv = (connector->tile_v_loc == (connector->num_v_tile - 1));
1250 /* cloning to multiple tiles is just crazy-talk, so: */
1251 break;
1252 }
1253 }
1254
1255 if (lasth)
1256 sizes.fb_width = min_t(u32, desired_mode->hdisplay + x, sizes.fb_width);
1257 if (lastv)
1258 sizes.fb_height = min_t(u32, desired_mode->vdisplay + y, sizes.fb_height);
785b93ef
DA
1259 }
1260
38651674 1261 if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
785b93ef
DA
1262 /* hmm everyone went away - assume VGA cable just fell out
1263 and will come back later. */
eb1f8e4f 1264 DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n");
19b4b445
DA
1265 sizes.fb_width = sizes.surface_width = 1024;
1266 sizes.fb_height = sizes.surface_height = 768;
785b93ef
DA
1267 }
1268
38651674 1269 /* push down into drivers */
8acf658a
DV
1270 ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
1271 if (ret < 0)
1272 return ret;
785b93ef 1273
38651674 1274 info = fb_helper->fbdev;
785b93ef 1275
7e53f3a4
DV
1276 /*
1277 * Set the fb pointer - usually drm_setup_crtcs does this for hotplug
1278 * events, but at init time drm_setup_crtcs needs to be called before
1279 * the fb is allocated (since we need to figure out the desired size of
1280 * the fb before we can allocate it ...). Hence we need to fix things up
1281 * here again.
1282 */
96081cdf 1283 for (i = 0; i < fb_helper->crtc_count; i++)
7e53f3a4
DV
1284 if (fb_helper->crtc_info[i].mode_set.num_connectors)
1285 fb_helper->crtc_info[i].mode_set.fb = fb_helper->fb;
1286
785b93ef 1287
8acf658a
DV
1288 info->var.pixclock = 0;
1289 if (register_framebuffer(info) < 0)
1290 return -EINVAL;
38651674 1291
8acf658a
DV
1292 dev_info(fb_helper->dev->dev, "fb%d: %s frame buffer device\n",
1293 info->node, info->fix.id);
785b93ef 1294
785b93ef 1295 if (list_empty(&kernel_fb_helper_list)) {
785b93ef
DA
1296 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
1297 }
8acf658a
DV
1298
1299 list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
38651674 1300
785b93ef
DA
1301 return 0;
1302}
785b93ef 1303
207fd329
DV
1304/**
1305 * drm_fb_helper_fill_fix - initializes fixed fbdev information
1306 * @info: fbdev registered by the helper
1307 * @pitch: desired pitch
1308 * @depth: desired depth
1309 *
1310 * Helper to fill in the fixed fbdev information useful for a non-accelerated
1311 * fbdev emulations. Drivers which support acceleration methods which impose
1312 * additional constraints need to set up their own limits.
1313 *
1314 * Drivers should call this (or their equivalent setup code) from their
1315 * ->fb_probe callback.
1316 */
3632ef89
DA
1317void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
1318 uint32_t depth)
1319{
1320 info->fix.type = FB_TYPE_PACKED_PIXELS;
1321 info->fix.visual = depth == 8 ? FB_VISUAL_PSEUDOCOLOR :
1322 FB_VISUAL_TRUECOLOR;
1323 info->fix.mmio_start = 0;
1324 info->fix.mmio_len = 0;
1325 info->fix.type_aux = 0;
1326 info->fix.xpanstep = 1; /* doing it in hw */
1327 info->fix.ypanstep = 1; /* doing it in hw */
1328 info->fix.ywrapstep = 0;
1329 info->fix.accel = FB_ACCEL_NONE;
3632ef89
DA
1330
1331 info->fix.line_length = pitch;
1332 return;
1333}
1334EXPORT_SYMBOL(drm_fb_helper_fill_fix);
1335
207fd329
DV
1336/**
1337 * drm_fb_helper_fill_var - initalizes variable fbdev information
1338 * @info: fbdev instance to set up
1339 * @fb_helper: fb helper instance to use as template
1340 * @fb_width: desired fb width
1341 * @fb_height: desired fb height
1342 *
1343 * Sets up the variable fbdev metainformation from the given fb helper instance
1344 * and the drm framebuffer allocated in fb_helper->fb.
1345 *
1346 * Drivers should call this (or their equivalent setup code) from their
1347 * ->fb_probe callback after having allocated the fbdev backing
1348 * storage framebuffer.
1349 */
38651674 1350void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper,
785b93ef
DA
1351 uint32_t fb_width, uint32_t fb_height)
1352{
38651674
DA
1353 struct drm_framebuffer *fb = fb_helper->fb;
1354 info->pseudo_palette = fb_helper->pseudo_palette;
785b93ef
DA
1355 info->var.xres_virtual = fb->width;
1356 info->var.yres_virtual = fb->height;
1357 info->var.bits_per_pixel = fb->bits_per_pixel;
57084d05 1358 info->var.accel_flags = FB_ACCELF_TEXT;
785b93ef
DA
1359 info->var.xoffset = 0;
1360 info->var.yoffset = 0;
1361 info->var.activate = FB_ACTIVATE_NOW;
1362 info->var.height = -1;
1363 info->var.width = -1;
1364
1365 switch (fb->depth) {
1366 case 8:
1367 info->var.red.offset = 0;
1368 info->var.green.offset = 0;
1369 info->var.blue.offset = 0;
1370 info->var.red.length = 8; /* 8bit DAC */
1371 info->var.green.length = 8;
1372 info->var.blue.length = 8;
1373 info->var.transp.offset = 0;
1374 info->var.transp.length = 0;
1375 break;
1376 case 15:
1377 info->var.red.offset = 10;
1378 info->var.green.offset = 5;
1379 info->var.blue.offset = 0;
1380 info->var.red.length = 5;
1381 info->var.green.length = 5;
1382 info->var.blue.length = 5;
1383 info->var.transp.offset = 15;
1384 info->var.transp.length = 1;
1385 break;
1386 case 16:
1387 info->var.red.offset = 11;
1388 info->var.green.offset = 5;
1389 info->var.blue.offset = 0;
1390 info->var.red.length = 5;
1391 info->var.green.length = 6;
1392 info->var.blue.length = 5;
1393 info->var.transp.offset = 0;
1394 break;
1395 case 24:
1396 info->var.red.offset = 16;
1397 info->var.green.offset = 8;
1398 info->var.blue.offset = 0;
1399 info->var.red.length = 8;
1400 info->var.green.length = 8;
1401 info->var.blue.length = 8;
1402 info->var.transp.offset = 0;
1403 info->var.transp.length = 0;
1404 break;
1405 case 32:
1406 info->var.red.offset = 16;
1407 info->var.green.offset = 8;
1408 info->var.blue.offset = 0;
1409 info->var.red.length = 8;
1410 info->var.green.length = 8;
1411 info->var.blue.length = 8;
1412 info->var.transp.offset = 24;
1413 info->var.transp.length = 8;
1414 break;
1415 default:
1416 break;
1417 }
1418
1419 info->var.xres = fb_width;
1420 info->var.yres = fb_height;
1421}
1422EXPORT_SYMBOL(drm_fb_helper_fill_var);
38651674 1423
0b4c0f3f
DA
1424static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper *fb_helper,
1425 uint32_t maxX,
1426 uint32_t maxY)
38651674
DA
1427{
1428 struct drm_connector *connector;
1429 int count = 0;
0b4c0f3f 1430 int i;
38651674 1431
0b4c0f3f
DA
1432 for (i = 0; i < fb_helper->connector_count; i++) {
1433 connector = fb_helper->connector_info[i]->connector;
38651674
DA
1434 count += connector->funcs->fill_modes(connector, maxX, maxY);
1435 }
1436
1437 return count;
1438}
1439
2f1046f3 1440struct drm_display_mode *drm_has_preferred_mode(struct drm_fb_helper_connector *fb_connector, int width, int height)
38651674
DA
1441{
1442 struct drm_display_mode *mode;
1443
0b4c0f3f 1444 list_for_each_entry(mode, &fb_connector->connector->modes, head) {
9d3de138
DV
1445 if (mode->hdisplay > width ||
1446 mode->vdisplay > height)
38651674
DA
1447 continue;
1448 if (mode->type & DRM_MODE_TYPE_PREFERRED)
1449 return mode;
1450 }
1451 return NULL;
1452}
2f1046f3 1453EXPORT_SYMBOL(drm_has_preferred_mode);
38651674 1454
0b4c0f3f 1455static bool drm_has_cmdline_mode(struct drm_fb_helper_connector *fb_connector)
38651674 1456{
eaf99c74 1457 return fb_connector->connector->cmdline_mode.specified;
38651674
DA
1458}
1459
2f1046f3 1460struct drm_display_mode *drm_pick_cmdline_mode(struct drm_fb_helper_connector *fb_helper_conn,
0b4c0f3f 1461 int width, int height)
38651674 1462{
1794d257 1463 struct drm_cmdline_mode *cmdline_mode;
f3af5c7d 1464 struct drm_display_mode *mode;
c683f427 1465 bool prefer_non_interlace;
38651674 1466
eaf99c74 1467 cmdline_mode = &fb_helper_conn->connector->cmdline_mode;
38651674 1468 if (cmdline_mode->specified == false)
f3af5c7d 1469 return NULL;
38651674
DA
1470
1471 /* attempt to find a matching mode in the list of modes
1472 * we have gotten so far, if not add a CVT mode that conforms
1473 */
1474 if (cmdline_mode->rb || cmdline_mode->margins)
1475 goto create_mode;
1476
c683f427 1477 prefer_non_interlace = !cmdline_mode->interlace;
f3af5c7d 1478again:
0b4c0f3f 1479 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
38651674
DA
1480 /* check width/height */
1481 if (mode->hdisplay != cmdline_mode->xres ||
1482 mode->vdisplay != cmdline_mode->yres)
1483 continue;
1484
1485 if (cmdline_mode->refresh_specified) {
1486 if (mode->vrefresh != cmdline_mode->refresh)
1487 continue;
1488 }
1489
1490 if (cmdline_mode->interlace) {
1491 if (!(mode->flags & DRM_MODE_FLAG_INTERLACE))
1492 continue;
c683f427
TI
1493 } else if (prefer_non_interlace) {
1494 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
1495 continue;
38651674
DA
1496 }
1497 return mode;
1498 }
1499
c683f427
TI
1500 if (prefer_non_interlace) {
1501 prefer_non_interlace = false;
1502 goto again;
1503 }
1504
38651674 1505create_mode:
1794d257
CW
1506 mode = drm_mode_create_from_cmdline_mode(fb_helper_conn->connector->dev,
1507 cmdline_mode);
0b4c0f3f 1508 list_add(&mode->head, &fb_helper_conn->connector->modes);
38651674
DA
1509 return mode;
1510}
2f1046f3 1511EXPORT_SYMBOL(drm_pick_cmdline_mode);
38651674
DA
1512
1513static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
1514{
1515 bool enable;
1516
96081cdf 1517 if (strict)
38651674 1518 enable = connector->status == connector_status_connected;
96081cdf 1519 else
38651674 1520 enable = connector->status != connector_status_disconnected;
96081cdf 1521
38651674
DA
1522 return enable;
1523}
1524
0b4c0f3f
DA
1525static void drm_enable_connectors(struct drm_fb_helper *fb_helper,
1526 bool *enabled)
38651674
DA
1527{
1528 bool any_enabled = false;
1529 struct drm_connector *connector;
1530 int i = 0;
1531
0b4c0f3f
DA
1532 for (i = 0; i < fb_helper->connector_count; i++) {
1533 connector = fb_helper->connector_info[i]->connector;
38651674
DA
1534 enabled[i] = drm_connector_enabled(connector, true);
1535 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
1536 enabled[i] ? "yes" : "no");
1537 any_enabled |= enabled[i];
38651674
DA
1538 }
1539
1540 if (any_enabled)
1541 return;
1542
0b4c0f3f
DA
1543 for (i = 0; i < fb_helper->connector_count; i++) {
1544 connector = fb_helper->connector_info[i]->connector;
38651674 1545 enabled[i] = drm_connector_enabled(connector, false);
38651674
DA
1546 }
1547}
1548
1d42bbc8
DA
1549static bool drm_target_cloned(struct drm_fb_helper *fb_helper,
1550 struct drm_display_mode **modes,
b0ee9e7f 1551 struct drm_fb_offset *offsets,
1d42bbc8
DA
1552 bool *enabled, int width, int height)
1553{
1554 int count, i, j;
1555 bool can_clone = false;
1556 struct drm_fb_helper_connector *fb_helper_conn;
1557 struct drm_display_mode *dmt_mode, *mode;
1558
1559 /* only contemplate cloning in the single crtc case */
1560 if (fb_helper->crtc_count > 1)
1561 return false;
1562
1563 count = 0;
1564 for (i = 0; i < fb_helper->connector_count; i++) {
1565 if (enabled[i])
1566 count++;
1567 }
1568
1569 /* only contemplate cloning if more than one connector is enabled */
1570 if (count <= 1)
1571 return false;
1572
1573 /* check the command line or if nothing common pick 1024x768 */
1574 can_clone = true;
1575 for (i = 0; i < fb_helper->connector_count; i++) {
1576 if (!enabled[i])
1577 continue;
1578 fb_helper_conn = fb_helper->connector_info[i];
1579 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
1580 if (!modes[i]) {
1581 can_clone = false;
1582 break;
1583 }
1584 for (j = 0; j < i; j++) {
1585 if (!enabled[j])
1586 continue;
1587 if (!drm_mode_equal(modes[j], modes[i]))
1588 can_clone = false;
1589 }
1590 }
1591
1592 if (can_clone) {
1593 DRM_DEBUG_KMS("can clone using command line\n");
1594 return true;
1595 }
1596
1597 /* try and find a 1024x768 mode on each connector */
1598 can_clone = true;
f6e252ba 1599 dmt_mode = drm_mode_find_dmt(fb_helper->dev, 1024, 768, 60, false);
1d42bbc8
DA
1600
1601 for (i = 0; i < fb_helper->connector_count; i++) {
1602
1603 if (!enabled[i])
1604 continue;
1605
1606 fb_helper_conn = fb_helper->connector_info[i];
1607 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
1608 if (drm_mode_equal(mode, dmt_mode))
1609 modes[i] = mode;
1610 }
1611 if (!modes[i])
1612 can_clone = false;
1613 }
1614
1615 if (can_clone) {
1616 DRM_DEBUG_KMS("can clone using 1024x768\n");
1617 return true;
1618 }
1619 DRM_INFO("kms: can't enable cloning when we probably wanted to.\n");
1620 return false;
1621}
1622
b0ee9e7f
DA
1623static int drm_get_tile_offsets(struct drm_fb_helper *fb_helper,
1624 struct drm_display_mode **modes,
1625 struct drm_fb_offset *offsets,
1626 int idx,
1627 int h_idx, int v_idx)
1628{
1629 struct drm_fb_helper_connector *fb_helper_conn;
1630 int i;
1631 int hoffset = 0, voffset = 0;
1632
1633 for (i = 0; i < fb_helper->connector_count; i++) {
1634 fb_helper_conn = fb_helper->connector_info[i];
1635 if (!fb_helper_conn->connector->has_tile)
1636 continue;
1637
1638 if (!modes[i] && (h_idx || v_idx)) {
1639 DRM_DEBUG_KMS("no modes for connector tiled %d %d\n", i,
1640 fb_helper_conn->connector->base.id);
1641 continue;
1642 }
1643 if (fb_helper_conn->connector->tile_h_loc < h_idx)
1644 hoffset += modes[i]->hdisplay;
1645
1646 if (fb_helper_conn->connector->tile_v_loc < v_idx)
1647 voffset += modes[i]->vdisplay;
1648 }
1649 offsets[idx].x = hoffset;
1650 offsets[idx].y = voffset;
1651 DRM_DEBUG_KMS("returned %d %d for %d %d\n", hoffset, voffset, h_idx, v_idx);
1652 return 0;
1653}
1654
0b4c0f3f 1655static bool drm_target_preferred(struct drm_fb_helper *fb_helper,
38651674 1656 struct drm_display_mode **modes,
b0ee9e7f 1657 struct drm_fb_offset *offsets,
38651674
DA
1658 bool *enabled, int width, int height)
1659{
0b4c0f3f
DA
1660 struct drm_fb_helper_connector *fb_helper_conn;
1661 int i;
b0ee9e7f
DA
1662 uint64_t conn_configured = 0, mask;
1663 int tile_pass = 0;
1664 mask = (1 << fb_helper->connector_count) - 1;
1665retry:
0b4c0f3f
DA
1666 for (i = 0; i < fb_helper->connector_count; i++) {
1667 fb_helper_conn = fb_helper->connector_info[i];
38651674 1668
b0ee9e7f
DA
1669 if (conn_configured & (1 << i))
1670 continue;
1671
1672 if (enabled[i] == false) {
1673 conn_configured |= (1 << i);
1674 continue;
1675 }
1676
1677 /* first pass over all the untiled connectors */
1678 if (tile_pass == 0 && fb_helper_conn->connector->has_tile)
38651674 1679 continue;
38651674 1680
b0ee9e7f
DA
1681 if (tile_pass == 1) {
1682 if (fb_helper_conn->connector->tile_h_loc != 0 ||
1683 fb_helper_conn->connector->tile_v_loc != 0)
1684 continue;
1685
1686 } else {
1687 if (fb_helper_conn->connector->tile_h_loc != tile_pass -1 &&
1688 fb_helper_conn->connector->tile_v_loc != tile_pass - 1)
1689 /* if this tile_pass doesn't cover any of the tiles - keep going */
1690 continue;
1691
1692 /* find the tile offsets for this pass - need
1693 to find all tiles left and above */
1694 drm_get_tile_offsets(fb_helper, modes, offsets,
1695 i, fb_helper_conn->connector->tile_h_loc, fb_helper_conn->connector->tile_v_loc);
1696 }
38651674 1697 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
0b4c0f3f 1698 fb_helper_conn->connector->base.id);
38651674
DA
1699
1700 /* got for command line mode first */
0b4c0f3f 1701 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
38651674 1702 if (!modes[i]) {
b0ee9e7f
DA
1703 DRM_DEBUG_KMS("looking for preferred mode on connector %d %d\n",
1704 fb_helper_conn->connector->base.id, fb_helper_conn->connector->tile_group ? fb_helper_conn->connector->tile_group->id : 0);
0b4c0f3f 1705 modes[i] = drm_has_preferred_mode(fb_helper_conn, width, height);
38651674
DA
1706 }
1707 /* No preferred modes, pick one off the list */
0b4c0f3f
DA
1708 if (!modes[i] && !list_empty(&fb_helper_conn->connector->modes)) {
1709 list_for_each_entry(modes[i], &fb_helper_conn->connector->modes, head)
38651674
DA
1710 break;
1711 }
1712 DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name :
1713 "none");
b0ee9e7f
DA
1714 conn_configured |= (1 << i);
1715 }
1716
1717 if ((conn_configured & mask) != mask) {
1718 tile_pass++;
1719 goto retry;
38651674
DA
1720 }
1721 return true;
1722}
1723
8be48d92
DA
1724static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
1725 struct drm_fb_helper_crtc **best_crtcs,
38651674
DA
1726 struct drm_display_mode **modes,
1727 int n, int width, int height)
1728{
1729 int c, o;
8be48d92 1730 struct drm_device *dev = fb_helper->dev;
38651674 1731 struct drm_connector *connector;
be26a66d 1732 const struct drm_connector_helper_funcs *connector_funcs;
38651674 1733 struct drm_encoder *encoder;
38651674 1734 int my_score, best_score, score;
8be48d92 1735 struct drm_fb_helper_crtc **crtcs, *crtc;
0b4c0f3f 1736 struct drm_fb_helper_connector *fb_helper_conn;
38651674 1737
0b4c0f3f 1738 if (n == fb_helper->connector_count)
38651674 1739 return 0;
0b4c0f3f
DA
1740
1741 fb_helper_conn = fb_helper->connector_info[n];
1742 connector = fb_helper_conn->connector;
38651674
DA
1743
1744 best_crtcs[n] = NULL;
8be48d92 1745 best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, height);
38651674
DA
1746 if (modes[n] == NULL)
1747 return best_score;
1748
8be48d92
DA
1749 crtcs = kzalloc(dev->mode_config.num_connector *
1750 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
38651674
DA
1751 if (!crtcs)
1752 return best_score;
1753
1754 my_score = 1;
1755 if (connector->status == connector_status_connected)
1756 my_score++;
0b4c0f3f 1757 if (drm_has_cmdline_mode(fb_helper_conn))
38651674 1758 my_score++;
0b4c0f3f 1759 if (drm_has_preferred_mode(fb_helper_conn, width, height))
38651674
DA
1760 my_score++;
1761
1762 connector_funcs = connector->helper_private;
1763 encoder = connector_funcs->best_encoder(connector);
1764 if (!encoder)
1765 goto out;
1766
38651674
DA
1767 /* select a crtc for this connector and then attempt to configure
1768 remaining connectors */
8be48d92
DA
1769 for (c = 0; c < fb_helper->crtc_count; c++) {
1770 crtc = &fb_helper->crtc_info[c];
38651674 1771
96081cdf 1772 if ((encoder->possible_crtcs & (1 << c)) == 0)
38651674 1773 continue;
38651674
DA
1774
1775 for (o = 0; o < n; o++)
1776 if (best_crtcs[o] == crtc)
1777 break;
1778
1779 if (o < n) {
1d42bbc8
DA
1780 /* ignore cloning unless only a single crtc */
1781 if (fb_helper->crtc_count > 1)
1782 continue;
1783
1784 if (!drm_mode_equal(modes[o], modes[n]))
1785 continue;
38651674
DA
1786 }
1787
1788 crtcs[n] = crtc;
8be48d92
DA
1789 memcpy(crtcs, best_crtcs, n * sizeof(struct drm_fb_helper_crtc *));
1790 score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1,
38651674
DA
1791 width, height);
1792 if (score > best_score) {
38651674
DA
1793 best_score = score;
1794 memcpy(best_crtcs, crtcs,
1795 dev->mode_config.num_connector *
8be48d92 1796 sizeof(struct drm_fb_helper_crtc *));
38651674 1797 }
38651674
DA
1798 }
1799out:
1800 kfree(crtcs);
1801 return best_score;
1802}
1803
8be48d92 1804static void drm_setup_crtcs(struct drm_fb_helper *fb_helper)
38651674 1805{
8be48d92
DA
1806 struct drm_device *dev = fb_helper->dev;
1807 struct drm_fb_helper_crtc **crtcs;
38651674 1808 struct drm_display_mode **modes;
b0ee9e7f 1809 struct drm_fb_offset *offsets;
8be48d92 1810 struct drm_mode_set *modeset;
38651674
DA
1811 bool *enabled;
1812 int width, height;
11e17a08 1813 int i;
38651674
DA
1814
1815 DRM_DEBUG_KMS("\n");
1816
1817 width = dev->mode_config.max_width;
1818 height = dev->mode_config.max_height;
1819
38651674 1820 crtcs = kcalloc(dev->mode_config.num_connector,
8be48d92 1821 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
38651674
DA
1822 modes = kcalloc(dev->mode_config.num_connector,
1823 sizeof(struct drm_display_mode *), GFP_KERNEL);
b0ee9e7f
DA
1824 offsets = kcalloc(dev->mode_config.num_connector,
1825 sizeof(struct drm_fb_offset), GFP_KERNEL);
38651674
DA
1826 enabled = kcalloc(dev->mode_config.num_connector,
1827 sizeof(bool), GFP_KERNEL);
b0ee9e7f 1828 if (!crtcs || !modes || !enabled || !offsets) {
8c5eaca0
SK
1829 DRM_ERROR("Memory allocation failed\n");
1830 goto out;
1831 }
1832
38651674 1833
0b4c0f3f 1834 drm_enable_connectors(fb_helper, enabled);
38651674 1835
11e17a08
JB
1836 if (!(fb_helper->funcs->initial_config &&
1837 fb_helper->funcs->initial_config(fb_helper, crtcs, modes,
b0ee9e7f 1838 offsets,
11e17a08
JB
1839 enabled, width, height))) {
1840 memset(modes, 0, dev->mode_config.num_connector*sizeof(modes[0]));
1841 memset(crtcs, 0, dev->mode_config.num_connector*sizeof(crtcs[0]));
b0ee9e7f 1842 memset(offsets, 0, dev->mode_config.num_connector*sizeof(offsets[0]));
11e17a08 1843
b0ee9e7f
DA
1844 if (!drm_target_cloned(fb_helper, modes, offsets,
1845 enabled, width, height) &&
1846 !drm_target_preferred(fb_helper, modes, offsets,
1847 enabled, width, height))
1d42bbc8 1848 DRM_ERROR("Unable to find initial modes\n");
38651674 1849
11e17a08
JB
1850 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n",
1851 width, height);
38651674 1852
11e17a08
JB
1853 drm_pick_crtcs(fb_helper, crtcs, modes, 0, width, height);
1854 }
8be48d92
DA
1855
1856 /* need to set the modesets up here for use later */
1857 /* fill out the connector<->crtc mappings into the modesets */
1858 for (i = 0; i < fb_helper->crtc_count; i++) {
1859 modeset = &fb_helper->crtc_info[i].mode_set;
1860 modeset->num_connectors = 0;
7e53f3a4 1861 modeset->fb = NULL;
8be48d92 1862 }
38651674 1863
0b4c0f3f 1864 for (i = 0; i < fb_helper->connector_count; i++) {
38651674 1865 struct drm_display_mode *mode = modes[i];
8be48d92 1866 struct drm_fb_helper_crtc *fb_crtc = crtcs[i];
b0ee9e7f 1867 struct drm_fb_offset *offset = &offsets[i];
8be48d92 1868 modeset = &fb_crtc->mode_set;
38651674 1869
8be48d92 1870 if (mode && fb_crtc) {
b0ee9e7f
DA
1871 DRM_DEBUG_KMS("desired mode %s set on crtc %d (%d,%d)\n",
1872 mode->name, fb_crtc->mode_set.crtc->base.id, offset->x, offset->y);
8be48d92 1873 fb_crtc->desired_mode = mode;
b0ee9e7f
DA
1874 fb_crtc->x = offset->x;
1875 fb_crtc->y = offset->y;
8be48d92
DA
1876 if (modeset->mode)
1877 drm_mode_destroy(dev, modeset->mode);
1878 modeset->mode = drm_mode_duplicate(dev,
1879 fb_crtc->desired_mode);
0b4c0f3f 1880 modeset->connectors[modeset->num_connectors++] = fb_helper->connector_info[i]->connector;
7e53f3a4 1881 modeset->fb = fb_helper->fb;
b0ee9e7f
DA
1882 modeset->x = offset->x;
1883 modeset->y = offset->y;
38651674 1884 }
38651674
DA
1885 }
1886
7e53f3a4
DV
1887 /* Clear out any old modes if there are no more connected outputs. */
1888 for (i = 0; i < fb_helper->crtc_count; i++) {
1889 modeset = &fb_helper->crtc_info[i].mode_set;
1890 if (modeset->num_connectors == 0) {
1891 BUG_ON(modeset->fb);
7e53f3a4
DV
1892 if (modeset->mode)
1893 drm_mode_destroy(dev, modeset->mode);
1894 modeset->mode = NULL;
1895 }
1896 }
8c5eaca0 1897out:
38651674
DA
1898 kfree(crtcs);
1899 kfree(modes);
b0ee9e7f 1900 kfree(offsets);
38651674
DA
1901 kfree(enabled);
1902}
1903
1904/**
207fd329 1905 * drm_fb_helper_initial_config - setup a sane initial connector configuration
d0ddc033
DV
1906 * @fb_helper: fb_helper device struct
1907 * @bpp_sel: bpp value to use for the framebuffer configuration
38651674 1908 *
d0ddc033 1909 * Scans the CRTCs and connectors and tries to put together an initial setup.
38651674
DA
1910 * At the moment, this is a cloned configuration across all heads with
1911 * a new framebuffer object as the backing store.
1912 *
207fd329
DV
1913 * Note that this also registers the fbdev and so allows userspace to call into
1914 * the driver through the fbdev interfaces.
1915 *
1916 * This function will call down into the ->fb_probe callback to let
1917 * the driver allocate and initialize the fbdev info structure and the drm
1918 * framebuffer used to back the fbdev. drm_fb_helper_fill_var() and
1919 * drm_fb_helper_fill_fix() are provided as helpers to setup simple default
1920 * values for the fbdev info structure.
1921 *
38651674
DA
1922 * RETURNS:
1923 * Zero if everything went ok, nonzero otherwise.
1924 */
01934c2a 1925int drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
38651674 1926{
8be48d92 1927 struct drm_device *dev = fb_helper->dev;
38651674
DA
1928 int count = 0;
1929
53f1904b 1930 mutex_lock(&dev->mode_config.mutex);
0b4c0f3f
DA
1931 count = drm_fb_helper_probe_connector_modes(fb_helper,
1932 dev->mode_config.max_width,
1933 dev->mode_config.max_height);
53f1904b 1934 mutex_unlock(&dev->mode_config.mutex);
38651674
DA
1935 /*
1936 * we shouldn't end up with no modes here.
1937 */
96081cdf 1938 if (count == 0)
d56b1b9d 1939 dev_info(fb_helper->dev->dev, "No connectors reported connected with modes\n");
96081cdf 1940
8be48d92 1941 drm_setup_crtcs(fb_helper);
38651674 1942
4abe3520 1943 return drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
38651674 1944}
8be48d92 1945EXPORT_SYMBOL(drm_fb_helper_initial_config);
38651674 1946
7394371d
CW
1947/**
1948 * drm_fb_helper_hotplug_event - respond to a hotplug notification by
d0ddc033 1949 * probing all the outputs attached to the fb
7394371d
CW
1950 * @fb_helper: the drm_fb_helper
1951 *
7394371d
CW
1952 * Scan the connectors attached to the fb_helper and try to put together a
1953 * setup after *notification of a change in output configuration.
1954 *
207fd329
DV
1955 * Called at runtime, takes the mode config locks to be able to check/change the
1956 * modeset configuration. Must be run from process context (which usually means
1957 * either the output polling work or a work item launched from the driver's
1958 * hotplug interrupt).
1959 *
50c3dc97
DV
1960 * Note that drivers may call this even before calling
1961 * drm_fb_helper_initial_config but only aftert drm_fb_helper_init. This allows
1962 * for a race-free fbcon setup and will make sure that the fbdev emulation will
1963 * not miss any hotplug events.
207fd329 1964 *
7394371d
CW
1965 * RETURNS:
1966 * 0 on success and a non-zero error code otherwise.
1967 */
1968int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
38651674 1969{
7394371d 1970 struct drm_device *dev = fb_helper->dev;
51bbd276 1971 u32 max_width, max_height;
5c4426a7 1972
89ced125 1973 mutex_lock(&fb_helper->dev->mode_config.mutex);
50c3dc97 1974 if (!fb_helper->fb || !drm_fb_helper_is_bound(fb_helper)) {
4abe3520 1975 fb_helper->delayed_hotplug = true;
89ced125 1976 mutex_unlock(&fb_helper->dev->mode_config.mutex);
7394371d 1977 return 0;
4abe3520 1978 }
eb1f8e4f 1979 DRM_DEBUG_KMS("\n");
4abe3520 1980
eb1f8e4f
DA
1981 max_width = fb_helper->fb->width;
1982 max_height = fb_helper->fb->height;
5c4426a7 1983
51bbd276 1984 drm_fb_helper_probe_connector_modes(fb_helper, max_width, max_height);
89ced125
DV
1985 mutex_unlock(&fb_helper->dev->mode_config.mutex);
1986
1987 drm_modeset_lock_all(dev);
eb1f8e4f 1988 drm_setup_crtcs(fb_helper);
84849903 1989 drm_modeset_unlock_all(dev);
2180c3c7
DV
1990 drm_fb_helper_set_par(fb_helper->fbdev);
1991
1992 return 0;
5c4426a7 1993}
eb1f8e4f 1994EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
5c4426a7 1995
6a108a14 1996/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
3ce05168
DF
1997 * but the module doesn't depend on any fb console symbols. At least
1998 * attempt to load fbcon to avoid leaving the system without a usable console.
1999 */
6a108a14 2000#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
3ce05168
DF
2001static int __init drm_fb_helper_modinit(void)
2002{
2003 const char *name = "fbcon";
2004 struct module *fbcon;
2005
2006 mutex_lock(&module_mutex);
2007 fbcon = find_module(name);
2008 mutex_unlock(&module_mutex);
2009
2010 if (!fbcon)
2011 request_module_nowait(name);
2012 return 0;
2013}
2014
2015module_init(drm_fb_helper_modinit);
2016#endif