blob: 59d6b9bf204bbd2d76b8440b3f7d435def394fe7 [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
Dave Airlie6fcefd52009-09-08 11:08:32 +100042MODULE_AUTHOR("David Airlie, Jesse Barnes");
43MODULE_DESCRIPTION("DRM KMS helper");
44MODULE_LICENSE("GPL and additional rights");
45
Dave Airlie785b93e2009-08-28 15:46:53 +100046static LIST_HEAD(kernel_fb_helper_list);
47
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010048/**
49 * DOC: fbdev helpers
50 *
51 * The fb helper functions are useful to provide an fbdev on top of a drm kernel
52 * mode setting driver. They can be used mostly independantely from the crtc
53 * helper functions used by many drivers to implement the kernel mode setting
54 * interfaces.
Daniel Vetter207fd322013-01-20 22:13:14 +010055 *
56 * Initialization is done as a three-step process with drm_fb_helper_init(),
57 * drm_fb_helper_single_add_all_connectors() and drm_fb_helper_initial_config().
58 * Drivers with fancier requirements than the default beheviour can override the
59 * second step with their own code. Teardown is done with drm_fb_helper_fini().
60 *
61 * At runtime drivers should restore the fbdev console by calling
62 * drm_fb_helper_restore_fbdev_mode() from their ->lastclose callback. They
63 * should also notify the fb helper code from updates to the output
64 * configuration by calling drm_fb_helper_hotplug_event(). For easier
65 * integration with the output polling code in drm_crtc_helper.c the modeset
66 * code proves a ->output_poll_changed callback.
67 *
68 * All other functions exported by the fb helper library can be used to
69 * implement the fbdev driver interface by the driver.
Daniel Vetterd0ddc0332012-11-01 14:45:17 +010070 */
71
Daniel Vetter207fd322013-01-20 22:13:14 +010072/**
73 * drm_fb_helper_single_add_all_connectors() - add all connectors to fbdev
74 * emulation helper
75 * @fb_helper: fbdev initialized with drm_fb_helper_init
76 *
77 * This functions adds all the available connectors for use with the given
78 * fb_helper. This is a separate step to allow drivers to freely assign
79 * connectors to the fbdev, e.g. if some are reserved for special purposes or
80 * not adequate to be used for the fbcon.
81 *
82 * Since this is part of the initial setup before the fbdev is published, no
83 * locking is required.
84 */
Dave Airlie0b4c0f32010-03-30 05:34:15 +000085int drm_fb_helper_single_add_all_connectors(struct drm_fb_helper *fb_helper)
Dave Airlied50ba252009-09-23 14:44:08 +100086{
Dave Airlie0b4c0f32010-03-30 05:34:15 +000087 struct drm_device *dev = fb_helper->dev;
88 struct drm_connector *connector;
89 int i;
Dave Airlied50ba252009-09-23 14:44:08 +100090
Dave Airlie0b4c0f32010-03-30 05:34:15 +000091 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
92 struct drm_fb_helper_connector *fb_helper_connector;
93
94 fb_helper_connector = kzalloc(sizeof(struct drm_fb_helper_connector), GFP_KERNEL);
95 if (!fb_helper_connector)
96 goto fail;
97
98 fb_helper_connector->connector = connector;
99 fb_helper->connector_info[fb_helper->connector_count++] = fb_helper_connector;
100 }
Dave Airlied50ba252009-09-23 14:44:08 +1000101 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000102fail:
103 for (i = 0; i < fb_helper->connector_count; i++) {
104 kfree(fb_helper->connector_info[i]);
105 fb_helper->connector_info[i] = NULL;
106 }
107 fb_helper->connector_count = 0;
108 return -ENOMEM;
Dave Airlied50ba252009-09-23 14:44:08 +1000109}
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000110EXPORT_SYMBOL(drm_fb_helper_single_add_all_connectors);
Dave Airlied50ba252009-09-23 14:44:08 +1000111
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000112static int drm_fb_helper_parse_command_line(struct drm_fb_helper *fb_helper)
Dave Airlied50ba252009-09-23 14:44:08 +1000113{
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000114 struct drm_fb_helper_connector *fb_helper_conn;
115 int i;
Dave Airlied50ba252009-09-23 14:44:08 +1000116
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000117 for (i = 0; i < fb_helper->connector_count; i++) {
Chris Wilson1794d252011-04-17 07:43:32 +0100118 struct drm_cmdline_mode *mode;
119 struct drm_connector *connector;
Dave Airlied50ba252009-09-23 14:44:08 +1000120 char *option = NULL;
121
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000122 fb_helper_conn = fb_helper->connector_info[i];
Chris Wilson1794d252011-04-17 07:43:32 +0100123 connector = fb_helper_conn->connector;
124 mode = &fb_helper_conn->cmdline_mode;
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000125
Dave Airlied50ba252009-09-23 14:44:08 +1000126 /* do something on return - turn off connector maybe */
Chris Wilson1794d252011-04-17 07:43:32 +0100127 if (fb_get_options(drm_get_connector_name(connector), &option))
Dave Airlied50ba252009-09-23 14:44:08 +1000128 continue;
129
Chris Wilson1794d252011-04-17 07:43:32 +0100130 if (drm_mode_parse_command_line_for_connector(option,
131 connector,
132 mode)) {
133 if (mode->force) {
134 const char *s;
135 switch (mode->force) {
Sachin Kamat6c910832012-11-15 03:43:28 +0000136 case DRM_FORCE_OFF:
137 s = "OFF";
138 break;
139 case DRM_FORCE_ON_DIGITAL:
140 s = "ON - dig";
141 break;
Chris Wilson1794d252011-04-17 07:43:32 +0100142 default:
Sachin Kamat6c910832012-11-15 03:43:28 +0000143 case DRM_FORCE_ON:
144 s = "ON";
145 break;
Chris Wilson1794d252011-04-17 07:43:32 +0100146 }
147
148 DRM_INFO("forcing %s connector %s\n",
149 drm_get_connector_name(connector), s);
150 connector->force = mode->force;
151 }
152
153 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
154 drm_get_connector_name(connector),
155 mode->xres, mode->yres,
156 mode->refresh_specified ? mode->refresh : 60,
157 mode->rb ? " reduced blanking" : "",
158 mode->margins ? " with margins" : "",
159 mode->interlace ? " interlaced" : "");
160 }
161
Dave Airlied50ba252009-09-23 14:44:08 +1000162 }
163 return 0;
164}
165
Jason Wessel99231022010-10-13 14:09:43 -0500166static void drm_fb_helper_save_lut_atomic(struct drm_crtc *crtc, struct drm_fb_helper *helper)
167{
168 uint16_t *r_base, *g_base, *b_base;
169 int i;
170
171 r_base = crtc->gamma_store;
172 g_base = r_base + crtc->gamma_size;
173 b_base = g_base + crtc->gamma_size;
174
175 for (i = 0; i < crtc->gamma_size; i++)
176 helper->funcs->gamma_get(crtc, &r_base[i], &g_base[i], &b_base[i], i);
177}
178
179static void drm_fb_helper_restore_lut_atomic(struct drm_crtc *crtc)
180{
181 uint16_t *r_base, *g_base, *b_base;
182
Laurent Pinchartebe0f242012-05-17 13:27:24 +0200183 if (crtc->funcs->gamma_set == NULL)
184 return;
185
Jason Wessel99231022010-10-13 14:09:43 -0500186 r_base = crtc->gamma_store;
187 g_base = r_base + crtc->gamma_size;
188 b_base = g_base + crtc->gamma_size;
189
190 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
191}
192
Daniel Vetter207fd322013-01-20 22:13:14 +0100193/**
194 * drm_fb_helper_debug_enter - implementation for ->fb_debug_enter
195 * @info: fbdev registered by the helper
196 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500197int drm_fb_helper_debug_enter(struct fb_info *info)
198{
199 struct drm_fb_helper *helper = info->par;
200 struct drm_crtc_helper_funcs *funcs;
201 int i;
202
203 if (list_empty(&kernel_fb_helper_list))
204 return false;
205
206 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
207 for (i = 0; i < helper->crtc_count; i++) {
208 struct drm_mode_set *mode_set =
209 &helper->crtc_info[i].mode_set;
210
211 if (!mode_set->crtc->enabled)
212 continue;
213
214 funcs = mode_set->crtc->helper_private;
Jason Wessel99231022010-10-13 14:09:43 -0500215 drm_fb_helper_save_lut_atomic(mode_set->crtc, helper);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500216 funcs->mode_set_base_atomic(mode_set->crtc,
217 mode_set->fb,
218 mode_set->x,
Jason Wessel413d45d2010-09-26 06:47:25 -0500219 mode_set->y,
Jason Wessel21c74a82010-10-13 14:09:44 -0500220 ENTER_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500221 }
222 }
223
224 return 0;
225}
226EXPORT_SYMBOL(drm_fb_helper_debug_enter);
227
228/* Find the real fb for a given fb helper CRTC */
229static struct drm_framebuffer *drm_mode_config_fb(struct drm_crtc *crtc)
230{
231 struct drm_device *dev = crtc->dev;
232 struct drm_crtc *c;
233
234 list_for_each_entry(c, &dev->mode_config.crtc_list, head) {
235 if (crtc->base.id == c->base.id)
236 return c->fb;
237 }
238
239 return NULL;
240}
241
Daniel Vetter207fd322013-01-20 22:13:14 +0100242/**
243 * drm_fb_helper_debug_leave - implementation for ->fb_debug_leave
244 * @info: fbdev registered by the helper
245 */
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500246int drm_fb_helper_debug_leave(struct fb_info *info)
247{
248 struct drm_fb_helper *helper = info->par;
249 struct drm_crtc *crtc;
250 struct drm_crtc_helper_funcs *funcs;
251 struct drm_framebuffer *fb;
252 int i;
253
254 for (i = 0; i < helper->crtc_count; i++) {
255 struct drm_mode_set *mode_set = &helper->crtc_info[i].mode_set;
256 crtc = mode_set->crtc;
257 funcs = crtc->helper_private;
258 fb = drm_mode_config_fb(crtc);
259
260 if (!crtc->enabled)
261 continue;
262
263 if (!fb) {
264 DRM_ERROR("no fb to restore??\n");
265 continue;
266 }
267
Jason Wessel99231022010-10-13 14:09:43 -0500268 drm_fb_helper_restore_lut_atomic(mode_set->crtc);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500269 funcs->mode_set_base_atomic(mode_set->crtc, fb, crtc->x,
Jason Wessel21c74a82010-10-13 14:09:44 -0500270 crtc->y, LEAVE_ATOMIC_MODE_SET);
Jesse Barnes1a7aba72010-08-05 09:22:31 -0500271 }
272
273 return 0;
274}
275EXPORT_SYMBOL(drm_fb_helper_debug_leave);
276
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100277/**
278 * drm_fb_helper_restore_fbdev_mode - restore fbdev configuration
279 * @fb_helper: fbcon to restore
280 *
Daniel Vetter207fd322013-01-20 22:13:14 +0100281 * This should be called from driver's drm ->lastclose callback
282 * when implementing an fbcon on top of kms using this helper. This ensures that
283 * the user isn't greeted with a black screen when e.g. X dies.
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100284 */
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100285bool drm_fb_helper_restore_fbdev_mode(struct drm_fb_helper *fb_helper)
286{
287 bool error = false;
288 int i, ret;
Daniel Vetter6aed8ec2013-01-20 17:32:21 +0100289
290 drm_warn_on_modeset_not_all_locked(fb_helper->dev);
291
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100292 for (i = 0; i < fb_helper->crtc_count; i++) {
293 struct drm_mode_set *mode_set = &fb_helper->crtc_info[i].mode_set;
Daniel Vetter2d13b672012-12-11 13:47:23 +0100294 ret = drm_mode_set_config_internal(mode_set);
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100295 if (ret)
296 error = true;
297 }
298 return error;
299}
300EXPORT_SYMBOL(drm_fb_helper_restore_fbdev_mode);
301
Daniel Vetterd21bf462013-01-20 18:09:52 +0100302/*
303 * restore fbcon display for all kms driver's using this helper, used for sysrq
304 * and panic handling.
305 */
Sachin Kamat78b9c352012-08-01 17:15:32 +0530306static bool drm_fb_helper_force_kernel_mode(void)
Dave Airlie785b93e2009-08-28 15:46:53 +1000307{
Dave Airlie785b93e2009-08-28 15:46:53 +1000308 bool ret, error = false;
309 struct drm_fb_helper *helper;
310
311 if (list_empty(&kernel_fb_helper_list))
312 return false;
313
314 list_for_each_entry(helper, &kernel_fb_helper_list, kernel_fb_list) {
Dave Airliee8e7a2b2011-04-21 22:18:32 +0100315 if (helper->dev->switch_power_state == DRM_SWITCH_POWER_OFF)
316 continue;
317
318 ret = drm_fb_helper_restore_fbdev_mode(helper);
319 if (ret)
320 error = true;
Dave Airlie785b93e2009-08-28 15:46:53 +1000321 }
322 return error;
323}
324
Daniel Vetter43c8a842013-01-20 18:18:07 +0100325static int drm_fb_helper_panic(struct notifier_block *n, unsigned long ununsed,
Dave Airlie785b93e2009-08-28 15:46:53 +1000326 void *panic_str)
327{
Hugh Dickinsd68752c2011-10-17 17:06:40 -0700328 /*
329 * It's a waste of time and effort to switch back to text console
330 * if the kernel should reboot before panic messages can be seen.
331 */
332 if (panic_timeout < 0)
333 return 0;
334
Sachin Kamatd56b1b92012-11-15 03:43:29 +0000335 pr_err("panic occurred, switching back to text console\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000336 return drm_fb_helper_force_kernel_mode();
Dave Airlie785b93e2009-08-28 15:46:53 +1000337}
Dave Airlie785b93e2009-08-28 15:46:53 +1000338
339static struct notifier_block paniced = {
340 .notifier_call = drm_fb_helper_panic,
341};
342
Daniel Vetter20c60c32012-12-17 12:13:23 +0100343static bool drm_fb_helper_is_bound(struct drm_fb_helper *fb_helper)
344{
345 struct drm_device *dev = fb_helper->dev;
346 struct drm_crtc *crtc;
347 int bound = 0, crtcs_bound = 0;
348
349 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
350 if (crtc->fb)
351 crtcs_bound++;
352 if (crtc->fb == fb_helper->fb)
353 bound++;
354 }
355
356 if (bound < crtcs_bound)
357 return false;
358 return true;
359}
360
Mikael Petterssonbea1d352009-09-28 18:26:25 +0200361#ifdef CONFIG_MAGIC_SYSRQ
Dave Airlie785b93e2009-08-28 15:46:53 +1000362static void drm_fb_helper_restore_work_fn(struct work_struct *ignored)
363{
Daniel Vetterd21bf462013-01-20 18:09:52 +0100364 bool ret;
365 ret = drm_fb_helper_force_kernel_mode();
366 if (ret == true)
367 DRM_ERROR("Failed to restore crtc configuration\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000368}
369static DECLARE_WORK(drm_fb_helper_restore_work, drm_fb_helper_restore_work_fn);
370
Dmitry Torokhov1495cc92010-08-17 21:15:46 -0700371static void drm_fb_helper_sysrq(int dummy1)
Dave Airlie785b93e2009-08-28 15:46:53 +1000372{
373 schedule_work(&drm_fb_helper_restore_work);
374}
375
376static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = {
377 .handler = drm_fb_helper_sysrq,
378 .help_msg = "force-fb(V)",
379 .action_msg = "Restore framebuffer console",
380};
Randy Dunlapb8c40d62010-03-25 18:29:05 +0000381#else
382static struct sysrq_key_op sysrq_drm_fb_helper_restore_op = { };
Mikael Petterssonbea1d352009-09-28 18:26:25 +0200383#endif
Dave Airlie785b93e2009-08-28 15:46:53 +1000384
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100385static void drm_fb_helper_dpms(struct fb_info *info, int dpms_mode)
Dave Airlie785b93e2009-08-28 15:46:53 +1000386{
387 struct drm_fb_helper *fb_helper = info->par;
388 struct drm_device *dev = fb_helper->dev;
389 struct drm_crtc *crtc;
Jesse Barnes023eb572010-07-02 10:48:08 -0700390 struct drm_connector *connector;
Jesse Barnes023eb572010-07-02 10:48:08 -0700391 int i, j;
Dave Airlie785b93e2009-08-28 15:46:53 +1000392
393 /*
Daniel Vetter1b1d5392013-01-24 16:42:07 +0100394 * fbdev->blank can be called from irq context in case of a panic.
395 * Since we already have our own special panic handler which will
396 * restore the fbdev console mode completely, just bail out early.
397 */
398 if (oops_in_progress)
399 return;
400
401 /*
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100402 * For each CRTC in this fb, turn the connectors on/off.
Dave Airlie785b93e2009-08-28 15:46:53 +1000403 */
Daniel Vetter84849902012-12-02 00:28:11 +0100404 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +0100405 if (!drm_fb_helper_is_bound(fb_helper)) {
406 drm_modeset_unlock_all(dev);
407 return;
408 }
409
Jesse Barnese87b2c42009-09-17 18:14:41 -0700410 for (i = 0; i < fb_helper->crtc_count; i++) {
Dave Airlie8be48d92010-03-30 05:34:14 +0000411 crtc = fb_helper->crtc_info[i].mode_set.crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000412
Dave Airlie8be48d92010-03-30 05:34:14 +0000413 if (!crtc->enabled)
414 continue;
Dave Airlie785b93e2009-08-28 15:46:53 +1000415
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100416 /* Walk the connectors & encoders on this fb turning them on/off */
Jesse Barnes023eb572010-07-02 10:48:08 -0700417 for (j = 0; j < fb_helper->connector_count; j++) {
418 connector = fb_helper->connector_info[j]->connector;
Daniel Vettere04190e2012-09-07 10:14:52 +0200419 connector->funcs->dpms(connector, dpms_mode);
Rob Clark58495562012-10-11 20:50:56 -0500420 drm_object_property_set_value(&connector->base,
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100421 dev->mode_config.dpms_property, dpms_mode);
Jesse Barnes023eb572010-07-02 10:48:08 -0700422 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000423 }
Daniel Vetter84849902012-12-02 00:28:11 +0100424 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000425}
426
Daniel Vetter207fd322013-01-20 22:13:14 +0100427/**
428 * drm_fb_helper_blank - implementation for ->fb_blank
429 * @blank: desired blanking state
430 * @info: fbdev registered by the helper
431 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000432int drm_fb_helper_blank(int blank, struct fb_info *info)
433{
434 switch (blank) {
James Simmons731b5a12009-10-29 20:39:07 +0000435 /* Display: On; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000436 case FB_BLANK_UNBLANK:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100437 drm_fb_helper_dpms(info, DRM_MODE_DPMS_ON);
Dave Airlie785b93e2009-08-28 15:46:53 +1000438 break;
James Simmons731b5a12009-10-29 20:39:07 +0000439 /* Display: Off; HSync: On, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000440 case FB_BLANK_NORMAL:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100441 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000442 break;
James Simmons731b5a12009-10-29 20:39:07 +0000443 /* Display: Off; HSync: Off, VSync: On */
Dave Airlie785b93e2009-08-28 15:46:53 +1000444 case FB_BLANK_HSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100445 drm_fb_helper_dpms(info, DRM_MODE_DPMS_STANDBY);
Dave Airlie785b93e2009-08-28 15:46:53 +1000446 break;
James Simmons731b5a12009-10-29 20:39:07 +0000447 /* Display: Off; HSync: On, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000448 case FB_BLANK_VSYNC_SUSPEND:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100449 drm_fb_helper_dpms(info, DRM_MODE_DPMS_SUSPEND);
Dave Airlie785b93e2009-08-28 15:46:53 +1000450 break;
James Simmons731b5a12009-10-29 20:39:07 +0000451 /* Display: Off; HSync: Off, VSync: Off */
Dave Airlie785b93e2009-08-28 15:46:53 +1000452 case FB_BLANK_POWERDOWN:
Sascha Hauer3a8148c2012-02-01 11:38:24 +0100453 drm_fb_helper_dpms(info, DRM_MODE_DPMS_OFF);
Dave Airlie785b93e2009-08-28 15:46:53 +1000454 break;
455 }
456 return 0;
457}
458EXPORT_SYMBOL(drm_fb_helper_blank);
459
460static void drm_fb_helper_crtc_free(struct drm_fb_helper *helper)
461{
462 int i;
463
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000464 for (i = 0; i < helper->connector_count; i++)
465 kfree(helper->connector_info[i]);
466 kfree(helper->connector_info);
Sascha Hauera1b77362012-02-01 11:38:22 +0100467 for (i = 0; i < helper->crtc_count; i++) {
Dave Airlie785b93e2009-08-28 15:46:53 +1000468 kfree(helper->crtc_info[i].mode_set.connectors);
Sascha Hauera1b77362012-02-01 11:38:22 +0100469 if (helper->crtc_info[i].mode_set.mode)
470 drm_mode_destroy(helper->dev, helper->crtc_info[i].mode_set.mode);
471 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000472 kfree(helper->crtc_info);
473}
474
Daniel Vetter207fd322013-01-20 22:13:14 +0100475/**
476 * drm_fb_helper_init - initialize a drm_fb_helper structure
477 * @dev: drm device
478 * @fb_helper: driver-allocated fbdev helper structure to initialize
479 * @crtc_count: maximum number of crtcs to support in this fbdev emulation
480 * @max_conn_count: max connector count
481 *
482 * This allocates the structures for the fbdev helper with the given limits.
483 * Note that this won't yet touch the hardware (through the driver interfaces)
484 * nor register the fbdev. This is only done in drm_fb_helper_initial_config()
485 * to allow driver writes more control over the exact init sequence.
486 *
487 * Drivers must set fb_helper->funcs before calling
488 * drm_fb_helper_initial_config().
489 *
490 * RETURNS:
491 * Zero if everything went ok, nonzero otherwise.
492 */
Dave Airlie4abe3522010-03-30 05:34:18 +0000493int drm_fb_helper_init(struct drm_device *dev,
494 struct drm_fb_helper *fb_helper,
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000495 int crtc_count, int max_conn_count)
Dave Airlie785b93e2009-08-28 15:46:53 +1000496{
Dave Airlie785b93e2009-08-28 15:46:53 +1000497 struct drm_crtc *crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000498 int i;
499
Dave Airlie4abe3522010-03-30 05:34:18 +0000500 fb_helper->dev = dev;
Dave Airlie4abe3522010-03-30 05:34:18 +0000501
502 INIT_LIST_HEAD(&fb_helper->kernel_fb_list);
503
504 fb_helper->crtc_info = kcalloc(crtc_count, sizeof(struct drm_fb_helper_crtc), GFP_KERNEL);
505 if (!fb_helper->crtc_info)
Dave Airlie785b93e2009-08-28 15:46:53 +1000506 return -ENOMEM;
507
Dave Airlie4abe3522010-03-30 05:34:18 +0000508 fb_helper->crtc_count = crtc_count;
509 fb_helper->connector_info = kcalloc(dev->mode_config.num_connector, sizeof(struct drm_fb_helper_connector *), GFP_KERNEL);
510 if (!fb_helper->connector_info) {
511 kfree(fb_helper->crtc_info);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000512 return -ENOMEM;
513 }
Dave Airlie4abe3522010-03-30 05:34:18 +0000514 fb_helper->connector_count = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000515
516 for (i = 0; i < crtc_count; i++) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000517 fb_helper->crtc_info[i].mode_set.connectors =
Dave Airlie785b93e2009-08-28 15:46:53 +1000518 kcalloc(max_conn_count,
519 sizeof(struct drm_connector *),
520 GFP_KERNEL);
521
Laurent Pinchart4a1b0712012-05-17 13:27:21 +0200522 if (!fb_helper->crtc_info[i].mode_set.connectors)
Dave Airlie785b93e2009-08-28 15:46:53 +1000523 goto out_free;
Dave Airlie4abe3522010-03-30 05:34:18 +0000524 fb_helper->crtc_info[i].mode_set.num_connectors = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000525 }
526
527 i = 0;
528 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
Dave Airlie4abe3522010-03-30 05:34:18 +0000529 fb_helper->crtc_info[i].mode_set.crtc = crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000530 i++;
531 }
Sascha Hauere9ad3182012-02-01 11:38:25 +0100532
Dave Airlie785b93e2009-08-28 15:46:53 +1000533 return 0;
534out_free:
Dave Airlie4abe3522010-03-30 05:34:18 +0000535 drm_fb_helper_crtc_free(fb_helper);
Dave Airlie785b93e2009-08-28 15:46:53 +1000536 return -ENOMEM;
537}
Dave Airlie4abe3522010-03-30 05:34:18 +0000538EXPORT_SYMBOL(drm_fb_helper_init);
539
540void drm_fb_helper_fini(struct drm_fb_helper *fb_helper)
541{
542 if (!list_empty(&fb_helper->kernel_fb_list)) {
543 list_del(&fb_helper->kernel_fb_list);
544 if (list_empty(&kernel_fb_helper_list)) {
Sachin Kamatd56b1b92012-11-15 03:43:29 +0000545 pr_info("drm: unregistered panic notifier\n");
Dave Airlie4abe3522010-03-30 05:34:18 +0000546 atomic_notifier_chain_unregister(&panic_notifier_list,
547 &paniced);
548 unregister_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
549 }
550 }
551
552 drm_fb_helper_crtc_free(fb_helper);
553
Dave Airlie4abe3522010-03-30 05:34:18 +0000554}
555EXPORT_SYMBOL(drm_fb_helper_fini);
Dave Airlie785b93e2009-08-28 15:46:53 +1000556
Dave Airliec850cb72009-10-23 18:49:03 +1000557static int setcolreg(struct drm_crtc *crtc, u16 red, u16 green,
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000558 u16 blue, u16 regno, struct fb_info *info)
559{
560 struct drm_fb_helper *fb_helper = info->par;
561 struct drm_framebuffer *fb = fb_helper->fb;
562 int pindex;
563
Dave Airliec850cb72009-10-23 18:49:03 +1000564 if (info->fix.visual == FB_VISUAL_TRUECOLOR) {
565 u32 *palette;
566 u32 value;
567 /* place color in psuedopalette */
568 if (regno > 16)
569 return -EINVAL;
570 palette = (u32 *)info->pseudo_palette;
571 red >>= (16 - info->var.red.length);
572 green >>= (16 - info->var.green.length);
573 blue >>= (16 - info->var.blue.length);
574 value = (red << info->var.red.offset) |
575 (green << info->var.green.offset) |
576 (blue << info->var.blue.offset);
Rob Clark9da12b6a2011-02-16 02:45:51 +0000577 if (info->var.transp.length > 0) {
578 u32 mask = (1 << info->var.transp.length) - 1;
579 mask <<= info->var.transp.offset;
580 value |= mask;
581 }
Dave Airliec850cb72009-10-23 18:49:03 +1000582 palette[regno] = value;
583 return 0;
584 }
585
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000586 pindex = regno;
587
588 if (fb->bits_per_pixel == 16) {
589 pindex = regno << 3;
590
591 if (fb->depth == 16 && regno > 63)
Dave Airliec850cb72009-10-23 18:49:03 +1000592 return -EINVAL;
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000593 if (fb->depth == 15 && regno > 31)
Dave Airliec850cb72009-10-23 18:49:03 +1000594 return -EINVAL;
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000595
596 if (fb->depth == 16) {
597 u16 r, g, b;
598 int i;
599 if (regno < 32) {
600 for (i = 0; i < 8; i++)
601 fb_helper->funcs->gamma_set(crtc, red,
602 green, blue, pindex + i);
603 }
604
605 fb_helper->funcs->gamma_get(crtc, &r,
606 &g, &b,
607 pindex >> 1);
608
609 for (i = 0; i < 4; i++)
610 fb_helper->funcs->gamma_set(crtc, r,
611 green, b,
612 (pindex >> 1) + i);
613 }
614 }
615
616 if (fb->depth != 16)
617 fb_helper->funcs->gamma_set(crtc, red, green, blue, pindex);
Dave Airliec850cb72009-10-23 18:49:03 +1000618 return 0;
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000619}
620
Daniel Vetter207fd322013-01-20 22:13:14 +0100621/**
622 * drm_fb_helper_setcmap - implementation for ->fb_setcmap
623 * @cmap: cmap to set
624 * @info: fbdev registered by the helper
625 */
Dave Airlie068143d2009-10-05 09:58:02 +1000626int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info)
627{
628 struct drm_fb_helper *fb_helper = info->par;
Dave Airlie8be48d92010-03-30 05:34:14 +0000629 struct drm_crtc_helper_funcs *crtc_funcs;
Dave Airlie068143d2009-10-05 09:58:02 +1000630 u16 *red, *green, *blue, *transp;
631 struct drm_crtc *crtc;
roel062ac622011-03-07 18:00:34 +0100632 int i, j, rc = 0;
Dave Airlie068143d2009-10-05 09:58:02 +1000633 int start;
634
Dave Airlie8be48d92010-03-30 05:34:14 +0000635 for (i = 0; i < fb_helper->crtc_count; i++) {
636 crtc = fb_helper->crtc_info[i].mode_set.crtc;
637 crtc_funcs = crtc->helper_private;
Dave Airlie068143d2009-10-05 09:58:02 +1000638
639 red = cmap->red;
640 green = cmap->green;
641 blue = cmap->blue;
642 transp = cmap->transp;
643 start = cmap->start;
644
roel062ac622011-03-07 18:00:34 +0100645 for (j = 0; j < cmap->len; j++) {
Dave Airlie068143d2009-10-05 09:58:02 +1000646 u16 hred, hgreen, hblue, htransp = 0xffff;
647
648 hred = *red++;
649 hgreen = *green++;
650 hblue = *blue++;
651
652 if (transp)
653 htransp = *transp++;
654
Dave Airliec850cb72009-10-23 18:49:03 +1000655 rc = setcolreg(crtc, hred, hgreen, hblue, start++, info);
656 if (rc)
657 return rc;
Dave Airlie068143d2009-10-05 09:58:02 +1000658 }
659 crtc_funcs->load_lut(crtc);
660 }
661 return rc;
662}
663EXPORT_SYMBOL(drm_fb_helper_setcmap);
664
Daniel Vetter207fd322013-01-20 22:13:14 +0100665/**
666 * drm_fb_helper_check_var - implementation for ->fb_check_var
667 * @var: screeninfo to check
668 * @info: fbdev registered by the helper
669 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000670int drm_fb_helper_check_var(struct fb_var_screeninfo *var,
671 struct fb_info *info)
672{
673 struct drm_fb_helper *fb_helper = info->par;
674 struct drm_framebuffer *fb = fb_helper->fb;
675 int depth;
676
Jason Wesself90ebd92010-08-05 09:22:32 -0500677 if (var->pixclock != 0 || in_dbg_master())
Dave Airlie785b93e2009-08-28 15:46:53 +1000678 return -EINVAL;
679
680 /* Need to resize the fb object !!! */
Chris Wilson62fb3762012-03-26 21:15:53 +0100681 if (var->bits_per_pixel > fb->bits_per_pixel ||
682 var->xres > fb->width || var->yres > fb->height ||
683 var->xres_virtual > fb->width || var->yres_virtual > fb->height) {
Dave Airlie509c7d82010-01-08 09:27:08 +1000684 DRM_DEBUG("fb userspace requested width/height/bpp is greater than current fb "
Chris Wilson62fb3762012-03-26 21:15:53 +0100685 "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n",
686 var->xres, var->yres, var->bits_per_pixel,
687 var->xres_virtual, var->yres_virtual,
Dave Airlie509c7d82010-01-08 09:27:08 +1000688 fb->width, fb->height, fb->bits_per_pixel);
Dave Airlie785b93e2009-08-28 15:46:53 +1000689 return -EINVAL;
690 }
691
692 switch (var->bits_per_pixel) {
693 case 16:
694 depth = (var->green.length == 6) ? 16 : 15;
695 break;
696 case 32:
697 depth = (var->transp.length > 0) ? 32 : 24;
698 break;
699 default:
700 depth = var->bits_per_pixel;
701 break;
702 }
703
704 switch (depth) {
705 case 8:
706 var->red.offset = 0;
707 var->green.offset = 0;
708 var->blue.offset = 0;
709 var->red.length = 8;
710 var->green.length = 8;
711 var->blue.length = 8;
712 var->transp.length = 0;
713 var->transp.offset = 0;
714 break;
715 case 15:
716 var->red.offset = 10;
717 var->green.offset = 5;
718 var->blue.offset = 0;
719 var->red.length = 5;
720 var->green.length = 5;
721 var->blue.length = 5;
722 var->transp.length = 1;
723 var->transp.offset = 15;
724 break;
725 case 16:
726 var->red.offset = 11;
727 var->green.offset = 5;
728 var->blue.offset = 0;
729 var->red.length = 5;
730 var->green.length = 6;
731 var->blue.length = 5;
732 var->transp.length = 0;
733 var->transp.offset = 0;
734 break;
735 case 24:
736 var->red.offset = 16;
737 var->green.offset = 8;
738 var->blue.offset = 0;
739 var->red.length = 8;
740 var->green.length = 8;
741 var->blue.length = 8;
742 var->transp.length = 0;
743 var->transp.offset = 0;
744 break;
745 case 32:
746 var->red.offset = 16;
747 var->green.offset = 8;
748 var->blue.offset = 0;
749 var->red.length = 8;
750 var->green.length = 8;
751 var->blue.length = 8;
752 var->transp.length = 8;
753 var->transp.offset = 24;
754 break;
755 default:
756 return -EINVAL;
757 }
758 return 0;
759}
760EXPORT_SYMBOL(drm_fb_helper_check_var);
761
Daniel Vetter207fd322013-01-20 22:13:14 +0100762/**
763 * drm_fb_helper_set_par - implementation for ->fb_set_par
764 * @info: fbdev registered by the helper
765 *
766 * This will let fbcon do the mode init and is called at initialization time by
767 * the fbdev core when registering the driver, and later on through the hotplug
768 * callback.
769 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000770int drm_fb_helper_set_par(struct fb_info *info)
771{
772 struct drm_fb_helper *fb_helper = info->par;
773 struct drm_device *dev = fb_helper->dev;
774 struct fb_var_screeninfo *var = &info->var;
Dave Airlie785b93e2009-08-28 15:46:53 +1000775 int ret;
776 int i;
777
Clemens Ladisch5349ef32009-11-04 09:42:52 +0100778 if (var->pixclock != 0) {
Pavel Roskin172e91f2010-02-11 14:31:32 +1000779 DRM_ERROR("PIXEL CLOCK SET\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000780 return -EINVAL;
781 }
782
Daniel Vetter84849902012-12-02 00:28:11 +0100783 drm_modeset_lock_all(dev);
Dave Airlie8be48d92010-03-30 05:34:14 +0000784 for (i = 0; i < fb_helper->crtc_count; i++) {
Daniel Vetter2d13b672012-12-11 13:47:23 +0100785 ret = drm_mode_set_config_internal(&fb_helper->crtc_info[i].mode_set);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000786 if (ret) {
Daniel Vetter84849902012-12-02 00:28:11 +0100787 drm_modeset_unlock_all(dev);
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000788 return ret;
Dave Airlie785b93e2009-08-28 15:46:53 +1000789 }
790 }
Daniel Vetter84849902012-12-02 00:28:11 +0100791 drm_modeset_unlock_all(dev);
Dave Airlie4abe3522010-03-30 05:34:18 +0000792
793 if (fb_helper->delayed_hotplug) {
794 fb_helper->delayed_hotplug = false;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000795 drm_fb_helper_hotplug_event(fb_helper);
Dave Airlie4abe3522010-03-30 05:34:18 +0000796 }
Dave Airlie785b93e2009-08-28 15:46:53 +1000797 return 0;
798}
799EXPORT_SYMBOL(drm_fb_helper_set_par);
800
Daniel Vetter207fd322013-01-20 22:13:14 +0100801/**
802 * drm_fb_helper_pan_display - implementation for ->fb_pan_display
803 * @var: updated screen information
804 * @info: fbdev registered by the helper
805 */
Dave Airlie785b93e2009-08-28 15:46:53 +1000806int drm_fb_helper_pan_display(struct fb_var_screeninfo *var,
807 struct fb_info *info)
808{
809 struct drm_fb_helper *fb_helper = info->par;
810 struct drm_device *dev = fb_helper->dev;
811 struct drm_mode_set *modeset;
812 struct drm_crtc *crtc;
813 int ret = 0;
814 int i;
815
Daniel Vetter84849902012-12-02 00:28:11 +0100816 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +0100817 if (!drm_fb_helper_is_bound(fb_helper)) {
818 drm_modeset_unlock_all(dev);
819 return -EBUSY;
820 }
821
Dave Airlie8be48d92010-03-30 05:34:14 +0000822 for (i = 0; i < fb_helper->crtc_count; i++) {
823 crtc = fb_helper->crtc_info[i].mode_set.crtc;
Dave Airlie785b93e2009-08-28 15:46:53 +1000824
825 modeset = &fb_helper->crtc_info[i].mode_set;
826
827 modeset->x = var->xoffset;
828 modeset->y = var->yoffset;
829
830 if (modeset->num_connectors) {
Daniel Vetter2d13b672012-12-11 13:47:23 +0100831 ret = drm_mode_set_config_internal(modeset);
Dave Airlie785b93e2009-08-28 15:46:53 +1000832 if (!ret) {
833 info->var.xoffset = var->xoffset;
834 info->var.yoffset = var->yoffset;
835 }
836 }
837 }
Daniel Vetter84849902012-12-02 00:28:11 +0100838 drm_modeset_unlock_all(dev);
Dave Airlie785b93e2009-08-28 15:46:53 +1000839 return ret;
840}
841EXPORT_SYMBOL(drm_fb_helper_pan_display);
842
Daniel Vetter8acf6582013-01-21 23:38:37 +0100843/*
Daniel Vetter207fd322013-01-20 22:13:14 +0100844 * Allocates the backing storage and sets up the fbdev info structure through
845 * the ->fb_probe callback and then registers the fbdev and sets up the panic
846 * notifier.
Daniel Vetter8acf6582013-01-21 23:38:37 +0100847 */
Daniel Vetterde1ace52013-01-20 21:50:49 +0100848static int drm_fb_helper_single_fb_probe(struct drm_fb_helper *fb_helper,
849 int preferred_bpp)
Dave Airlie785b93e2009-08-28 15:46:53 +1000850{
Daniel Vetter8acf6582013-01-21 23:38:37 +0100851 int ret = 0;
Dave Airlie785b93e2009-08-28 15:46:53 +1000852 int crtc_count = 0;
Dave Airlie4abe3522010-03-30 05:34:18 +0000853 int i;
Dave Airlie785b93e2009-08-28 15:46:53 +1000854 struct fb_info *info;
Dave Airlie38651672010-03-30 05:34:13 +0000855 struct drm_fb_helper_surface_size sizes;
Dave Airlie8be48d92010-03-30 05:34:14 +0000856 int gamma_size = 0;
Dave Airlie38651672010-03-30 05:34:13 +0000857
858 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size));
859 sizes.surface_depth = 24;
860 sizes.surface_bpp = 32;
861 sizes.fb_width = (unsigned)-1;
862 sizes.fb_height = (unsigned)-1;
Dave Airlie785b93e2009-08-28 15:46:53 +1000863
Dave Airlieb8c00ac2009-10-06 13:54:01 +1000864 /* if driver picks 8 or 16 by default use that
865 for both depth/bpp */
Sachin Kamat96081cd2012-11-15 03:43:30 +0000866 if (preferred_bpp != sizes.surface_bpp)
Dave Airlie38651672010-03-30 05:34:13 +0000867 sizes.surface_depth = sizes.surface_bpp = preferred_bpp;
Sachin Kamat96081cd2012-11-15 03:43:30 +0000868
Dave Airlie785b93e2009-08-28 15:46:53 +1000869 /* first up get a count of crtcs now in use and new min/maxes width/heights */
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000870 for (i = 0; i < fb_helper->connector_count; i++) {
871 struct drm_fb_helper_connector *fb_helper_conn = fb_helper->connector_info[i];
Chris Wilson1794d252011-04-17 07:43:32 +0100872 struct drm_cmdline_mode *cmdline_mode;
Dave Airlie8ef86782009-09-26 06:39:00 +1000873
Dave Airlie0b4c0f32010-03-30 05:34:15 +0000874 cmdline_mode = &fb_helper_conn->cmdline_mode;
Dave Airlied50ba252009-09-23 14:44:08 +1000875
876 if (cmdline_mode->bpp_specified) {
877 switch (cmdline_mode->bpp) {
878 case 8:
Dave Airlie38651672010-03-30 05:34:13 +0000879 sizes.surface_depth = sizes.surface_bpp = 8;
Dave Airlied50ba252009-09-23 14:44:08 +1000880 break;
881 case 15:
Dave Airlie38651672010-03-30 05:34:13 +0000882 sizes.surface_depth = 15;
883 sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +1000884 break;
885 case 16:
Dave Airlie38651672010-03-30 05:34:13 +0000886 sizes.surface_depth = sizes.surface_bpp = 16;
Dave Airlied50ba252009-09-23 14:44:08 +1000887 break;
888 case 24:
Dave Airlie38651672010-03-30 05:34:13 +0000889 sizes.surface_depth = sizes.surface_bpp = 24;
Dave Airlied50ba252009-09-23 14:44:08 +1000890 break;
891 case 32:
Dave Airlie38651672010-03-30 05:34:13 +0000892 sizes.surface_depth = 24;
893 sizes.surface_bpp = 32;
Dave Airlied50ba252009-09-23 14:44:08 +1000894 break;
895 }
896 break;
897 }
898 }
899
Dave Airlie8be48d92010-03-30 05:34:14 +0000900 crtc_count = 0;
901 for (i = 0; i < fb_helper->crtc_count; i++) {
902 struct drm_display_mode *desired_mode;
903 desired_mode = fb_helper->crtc_info[i].desired_mode;
Dave Airlie785b93e2009-08-28 15:46:53 +1000904
Dave Airlie8be48d92010-03-30 05:34:14 +0000905 if (desired_mode) {
906 if (gamma_size == 0)
907 gamma_size = fb_helper->crtc_info[i].mode_set.crtc->gamma_size;
908 if (desired_mode->hdisplay < sizes.fb_width)
909 sizes.fb_width = desired_mode->hdisplay;
910 if (desired_mode->vdisplay < sizes.fb_height)
911 sizes.fb_height = desired_mode->vdisplay;
912 if (desired_mode->hdisplay > sizes.surface_width)
913 sizes.surface_width = desired_mode->hdisplay;
914 if (desired_mode->vdisplay > sizes.surface_height)
915 sizes.surface_height = desired_mode->vdisplay;
Dave Airlie785b93e2009-08-28 15:46:53 +1000916 crtc_count++;
917 }
918 }
919
Dave Airlie38651672010-03-30 05:34:13 +0000920 if (crtc_count == 0 || sizes.fb_width == -1 || sizes.fb_height == -1) {
Dave Airlie785b93e2009-08-28 15:46:53 +1000921 /* hmm everyone went away - assume VGA cable just fell out
922 and will come back later. */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000923 DRM_INFO("Cannot find any crtc or sizes - going 1024x768\n");
Dave Airlie19b4b442010-03-30 05:34:16 +0000924 sizes.fb_width = sizes.surface_width = 1024;
925 sizes.fb_height = sizes.surface_height = 768;
Dave Airlie785b93e2009-08-28 15:46:53 +1000926 }
927
Dave Airlie38651672010-03-30 05:34:13 +0000928 /* push down into drivers */
Daniel Vetter8acf6582013-01-21 23:38:37 +0100929 ret = (*fb_helper->funcs->fb_probe)(fb_helper, &sizes);
930 if (ret < 0)
931 return ret;
Dave Airlie785b93e2009-08-28 15:46:53 +1000932
Dave Airlie38651672010-03-30 05:34:13 +0000933 info = fb_helper->fbdev;
Dave Airlie785b93e2009-08-28 15:46:53 +1000934
Daniel Vetter7e53f3a2013-01-21 10:52:17 +0100935 /*
936 * Set the fb pointer - usually drm_setup_crtcs does this for hotplug
937 * events, but at init time drm_setup_crtcs needs to be called before
938 * the fb is allocated (since we need to figure out the desired size of
939 * the fb before we can allocate it ...). Hence we need to fix things up
940 * here again.
941 */
Sachin Kamat96081cd2012-11-15 03:43:30 +0000942 for (i = 0; i < fb_helper->crtc_count; i++)
Daniel Vetter7e53f3a2013-01-21 10:52:17 +0100943 if (fb_helper->crtc_info[i].mode_set.num_connectors)
944 fb_helper->crtc_info[i].mode_set.fb = fb_helper->fb;
945
Dave Airlie785b93e2009-08-28 15:46:53 +1000946
Daniel Vetter8acf6582013-01-21 23:38:37 +0100947 info->var.pixclock = 0;
948 if (register_framebuffer(info) < 0)
949 return -EINVAL;
Dave Airlie38651672010-03-30 05:34:13 +0000950
Daniel Vetter8acf6582013-01-21 23:38:37 +0100951 dev_info(fb_helper->dev->dev, "fb%d: %s frame buffer device\n",
952 info->node, info->fix.id);
Dave Airlie785b93e2009-08-28 15:46:53 +1000953
954 /* Switch back to kernel console on panic */
955 /* multi card linked list maybe */
956 if (list_empty(&kernel_fb_helper_list)) {
Sachin Kamatd56b1b92012-11-15 03:43:29 +0000957 dev_info(fb_helper->dev->dev, "registered panic notifier\n");
Dave Airlie785b93e2009-08-28 15:46:53 +1000958 atomic_notifier_chain_register(&panic_notifier_list,
959 &paniced);
960 register_sysrq_key('v', &sysrq_drm_fb_helper_restore_op);
961 }
Daniel Vetter8acf6582013-01-21 23:38:37 +0100962
963 list_add(&fb_helper->kernel_fb_list, &kernel_fb_helper_list);
Dave Airlie38651672010-03-30 05:34:13 +0000964
Dave Airlie785b93e2009-08-28 15:46:53 +1000965 return 0;
966}
Dave Airlie785b93e2009-08-28 15:46:53 +1000967
Daniel Vetter207fd322013-01-20 22:13:14 +0100968/**
969 * drm_fb_helper_fill_fix - initializes fixed fbdev information
970 * @info: fbdev registered by the helper
971 * @pitch: desired pitch
972 * @depth: desired depth
973 *
974 * Helper to fill in the fixed fbdev information useful for a non-accelerated
975 * fbdev emulations. Drivers which support acceleration methods which impose
976 * additional constraints need to set up their own limits.
977 *
978 * Drivers should call this (or their equivalent setup code) from their
979 * ->fb_probe callback.
980 */
Dave Airlie3632ef82011-01-15 09:27:00 +1000981void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
982 uint32_t depth)
983{
984 info->fix.type = FB_TYPE_PACKED_PIXELS;
985 info->fix.visual = depth == 8 ? FB_VISUAL_PSEUDOCOLOR :
986 FB_VISUAL_TRUECOLOR;
987 info->fix.mmio_start = 0;
988 info->fix.mmio_len = 0;
989 info->fix.type_aux = 0;
990 info->fix.xpanstep = 1; /* doing it in hw */
991 info->fix.ypanstep = 1; /* doing it in hw */
992 info->fix.ywrapstep = 0;
993 info->fix.accel = FB_ACCEL_NONE;
994 info->fix.type_aux = 0;
995
996 info->fix.line_length = pitch;
997 return;
998}
999EXPORT_SYMBOL(drm_fb_helper_fill_fix);
1000
Daniel Vetter207fd322013-01-20 22:13:14 +01001001/**
1002 * drm_fb_helper_fill_var - initalizes variable fbdev information
1003 * @info: fbdev instance to set up
1004 * @fb_helper: fb helper instance to use as template
1005 * @fb_width: desired fb width
1006 * @fb_height: desired fb height
1007 *
1008 * Sets up the variable fbdev metainformation from the given fb helper instance
1009 * and the drm framebuffer allocated in fb_helper->fb.
1010 *
1011 * Drivers should call this (or their equivalent setup code) from their
1012 * ->fb_probe callback after having allocated the fbdev backing
1013 * storage framebuffer.
1014 */
Dave Airlie38651672010-03-30 05:34:13 +00001015void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper,
Dave Airlie785b93e2009-08-28 15:46:53 +10001016 uint32_t fb_width, uint32_t fb_height)
1017{
Dave Airlie38651672010-03-30 05:34:13 +00001018 struct drm_framebuffer *fb = fb_helper->fb;
1019 info->pseudo_palette = fb_helper->pseudo_palette;
Dave Airlie785b93e2009-08-28 15:46:53 +10001020 info->var.xres_virtual = fb->width;
1021 info->var.yres_virtual = fb->height;
1022 info->var.bits_per_pixel = fb->bits_per_pixel;
James Simmons57084d02010-12-20 19:10:39 +00001023 info->var.accel_flags = FB_ACCELF_TEXT;
Dave Airlie785b93e2009-08-28 15:46:53 +10001024 info->var.xoffset = 0;
1025 info->var.yoffset = 0;
1026 info->var.activate = FB_ACTIVATE_NOW;
1027 info->var.height = -1;
1028 info->var.width = -1;
1029
1030 switch (fb->depth) {
1031 case 8:
1032 info->var.red.offset = 0;
1033 info->var.green.offset = 0;
1034 info->var.blue.offset = 0;
1035 info->var.red.length = 8; /* 8bit DAC */
1036 info->var.green.length = 8;
1037 info->var.blue.length = 8;
1038 info->var.transp.offset = 0;
1039 info->var.transp.length = 0;
1040 break;
1041 case 15:
1042 info->var.red.offset = 10;
1043 info->var.green.offset = 5;
1044 info->var.blue.offset = 0;
1045 info->var.red.length = 5;
1046 info->var.green.length = 5;
1047 info->var.blue.length = 5;
1048 info->var.transp.offset = 15;
1049 info->var.transp.length = 1;
1050 break;
1051 case 16:
1052 info->var.red.offset = 11;
1053 info->var.green.offset = 5;
1054 info->var.blue.offset = 0;
1055 info->var.red.length = 5;
1056 info->var.green.length = 6;
1057 info->var.blue.length = 5;
1058 info->var.transp.offset = 0;
1059 break;
1060 case 24:
1061 info->var.red.offset = 16;
1062 info->var.green.offset = 8;
1063 info->var.blue.offset = 0;
1064 info->var.red.length = 8;
1065 info->var.green.length = 8;
1066 info->var.blue.length = 8;
1067 info->var.transp.offset = 0;
1068 info->var.transp.length = 0;
1069 break;
1070 case 32:
1071 info->var.red.offset = 16;
1072 info->var.green.offset = 8;
1073 info->var.blue.offset = 0;
1074 info->var.red.length = 8;
1075 info->var.green.length = 8;
1076 info->var.blue.length = 8;
1077 info->var.transp.offset = 24;
1078 info->var.transp.length = 8;
1079 break;
1080 default:
1081 break;
1082 }
1083
1084 info->var.xres = fb_width;
1085 info->var.yres = fb_height;
1086}
1087EXPORT_SYMBOL(drm_fb_helper_fill_var);
Dave Airlie38651672010-03-30 05:34:13 +00001088
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001089static int drm_fb_helper_probe_connector_modes(struct drm_fb_helper *fb_helper,
1090 uint32_t maxX,
1091 uint32_t maxY)
Dave Airlie38651672010-03-30 05:34:13 +00001092{
1093 struct drm_connector *connector;
1094 int count = 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001095 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001096
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001097 for (i = 0; i < fb_helper->connector_count; i++) {
1098 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001099 count += connector->funcs->fill_modes(connector, maxX, maxY);
1100 }
1101
1102 return count;
1103}
1104
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001105static struct 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 +00001106{
1107 struct drm_display_mode *mode;
1108
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001109 list_for_each_entry(mode, &fb_connector->connector->modes, head) {
Dave Airlie38651672010-03-30 05:34:13 +00001110 if (drm_mode_width(mode) > width ||
1111 drm_mode_height(mode) > height)
1112 continue;
1113 if (mode->type & DRM_MODE_TYPE_PREFERRED)
1114 return mode;
1115 }
1116 return NULL;
1117}
1118
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001119static bool drm_has_cmdline_mode(struct drm_fb_helper_connector *fb_connector)
Dave Airlie38651672010-03-30 05:34:13 +00001120{
Chris Wilson1794d252011-04-17 07:43:32 +01001121 struct drm_cmdline_mode *cmdline_mode;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001122 cmdline_mode = &fb_connector->cmdline_mode;
Dave Airlie38651672010-03-30 05:34:13 +00001123 return cmdline_mode->specified;
1124}
1125
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001126static struct drm_display_mode *drm_pick_cmdline_mode(struct drm_fb_helper_connector *fb_helper_conn,
1127 int width, int height)
Dave Airlie38651672010-03-30 05:34:13 +00001128{
Chris Wilson1794d252011-04-17 07:43:32 +01001129 struct drm_cmdline_mode *cmdline_mode;
Dave Airlie38651672010-03-30 05:34:13 +00001130 struct drm_display_mode *mode = NULL;
1131
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001132 cmdline_mode = &fb_helper_conn->cmdline_mode;
Dave Airlie38651672010-03-30 05:34:13 +00001133 if (cmdline_mode->specified == false)
1134 return mode;
1135
1136 /* attempt to find a matching mode in the list of modes
1137 * we have gotten so far, if not add a CVT mode that conforms
1138 */
1139 if (cmdline_mode->rb || cmdline_mode->margins)
1140 goto create_mode;
1141
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001142 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
Dave Airlie38651672010-03-30 05:34:13 +00001143 /* check width/height */
1144 if (mode->hdisplay != cmdline_mode->xres ||
1145 mode->vdisplay != cmdline_mode->yres)
1146 continue;
1147
1148 if (cmdline_mode->refresh_specified) {
1149 if (mode->vrefresh != cmdline_mode->refresh)
1150 continue;
1151 }
1152
1153 if (cmdline_mode->interlace) {
1154 if (!(mode->flags & DRM_MODE_FLAG_INTERLACE))
1155 continue;
1156 }
1157 return mode;
1158 }
1159
1160create_mode:
Chris Wilson1794d252011-04-17 07:43:32 +01001161 mode = drm_mode_create_from_cmdline_mode(fb_helper_conn->connector->dev,
1162 cmdline_mode);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001163 list_add(&mode->head, &fb_helper_conn->connector->modes);
Dave Airlie38651672010-03-30 05:34:13 +00001164 return mode;
1165}
1166
1167static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
1168{
1169 bool enable;
1170
Sachin Kamat96081cd2012-11-15 03:43:30 +00001171 if (strict)
Dave Airlie38651672010-03-30 05:34:13 +00001172 enable = connector->status == connector_status_connected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001173 else
Dave Airlie38651672010-03-30 05:34:13 +00001174 enable = connector->status != connector_status_disconnected;
Sachin Kamat96081cd2012-11-15 03:43:30 +00001175
Dave Airlie38651672010-03-30 05:34:13 +00001176 return enable;
1177}
1178
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001179static void drm_enable_connectors(struct drm_fb_helper *fb_helper,
1180 bool *enabled)
Dave Airlie38651672010-03-30 05:34:13 +00001181{
1182 bool any_enabled = false;
1183 struct drm_connector *connector;
1184 int i = 0;
1185
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001186 for (i = 0; i < fb_helper->connector_count; i++) {
1187 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001188 enabled[i] = drm_connector_enabled(connector, true);
1189 DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
1190 enabled[i] ? "yes" : "no");
1191 any_enabled |= enabled[i];
Dave Airlie38651672010-03-30 05:34:13 +00001192 }
1193
1194 if (any_enabled)
1195 return;
1196
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001197 for (i = 0; i < fb_helper->connector_count; i++) {
1198 connector = fb_helper->connector_info[i]->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001199 enabled[i] = drm_connector_enabled(connector, false);
Dave Airlie38651672010-03-30 05:34:13 +00001200 }
1201}
1202
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001203static bool drm_target_cloned(struct drm_fb_helper *fb_helper,
1204 struct drm_display_mode **modes,
1205 bool *enabled, int width, int height)
1206{
1207 int count, i, j;
1208 bool can_clone = false;
1209 struct drm_fb_helper_connector *fb_helper_conn;
1210 struct drm_display_mode *dmt_mode, *mode;
1211
1212 /* only contemplate cloning in the single crtc case */
1213 if (fb_helper->crtc_count > 1)
1214 return false;
1215
1216 count = 0;
1217 for (i = 0; i < fb_helper->connector_count; i++) {
1218 if (enabled[i])
1219 count++;
1220 }
1221
1222 /* only contemplate cloning if more than one connector is enabled */
1223 if (count <= 1)
1224 return false;
1225
1226 /* check the command line or if nothing common pick 1024x768 */
1227 can_clone = true;
1228 for (i = 0; i < fb_helper->connector_count; i++) {
1229 if (!enabled[i])
1230 continue;
1231 fb_helper_conn = fb_helper->connector_info[i];
1232 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
1233 if (!modes[i]) {
1234 can_clone = false;
1235 break;
1236 }
1237 for (j = 0; j < i; j++) {
1238 if (!enabled[j])
1239 continue;
1240 if (!drm_mode_equal(modes[j], modes[i]))
1241 can_clone = false;
1242 }
1243 }
1244
1245 if (can_clone) {
1246 DRM_DEBUG_KMS("can clone using command line\n");
1247 return true;
1248 }
1249
1250 /* try and find a 1024x768 mode on each connector */
1251 can_clone = true;
Adam Jacksonf6e252b2012-04-13 16:33:31 -04001252 dmt_mode = drm_mode_find_dmt(fb_helper->dev, 1024, 768, 60, false);
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001253
1254 for (i = 0; i < fb_helper->connector_count; i++) {
1255
1256 if (!enabled[i])
1257 continue;
1258
1259 fb_helper_conn = fb_helper->connector_info[i];
1260 list_for_each_entry(mode, &fb_helper_conn->connector->modes, head) {
1261 if (drm_mode_equal(mode, dmt_mode))
1262 modes[i] = mode;
1263 }
1264 if (!modes[i])
1265 can_clone = false;
1266 }
1267
1268 if (can_clone) {
1269 DRM_DEBUG_KMS("can clone using 1024x768\n");
1270 return true;
1271 }
1272 DRM_INFO("kms: can't enable cloning when we probably wanted to.\n");
1273 return false;
1274}
1275
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001276static bool drm_target_preferred(struct drm_fb_helper *fb_helper,
Dave Airlie38651672010-03-30 05:34:13 +00001277 struct drm_display_mode **modes,
1278 bool *enabled, int width, int height)
1279{
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001280 struct drm_fb_helper_connector *fb_helper_conn;
1281 int i;
Dave Airlie38651672010-03-30 05:34:13 +00001282
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001283 for (i = 0; i < fb_helper->connector_count; i++) {
1284 fb_helper_conn = fb_helper->connector_info[i];
Dave Airlie38651672010-03-30 05:34:13 +00001285
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001286 if (enabled[i] == false)
Dave Airlie38651672010-03-30 05:34:13 +00001287 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001288
1289 DRM_DEBUG_KMS("looking for cmdline mode on connector %d\n",
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001290 fb_helper_conn->connector->base.id);
Dave Airlie38651672010-03-30 05:34:13 +00001291
1292 /* got for command line mode first */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001293 modes[i] = drm_pick_cmdline_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001294 if (!modes[i]) {
1295 DRM_DEBUG_KMS("looking for preferred mode on connector %d\n",
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001296 fb_helper_conn->connector->base.id);
1297 modes[i] = drm_has_preferred_mode(fb_helper_conn, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001298 }
1299 /* No preferred modes, pick one off the list */
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001300 if (!modes[i] && !list_empty(&fb_helper_conn->connector->modes)) {
1301 list_for_each_entry(modes[i], &fb_helper_conn->connector->modes, head)
Dave Airlie38651672010-03-30 05:34:13 +00001302 break;
1303 }
1304 DRM_DEBUG_KMS("found mode %s\n", modes[i] ? modes[i]->name :
1305 "none");
Dave Airlie38651672010-03-30 05:34:13 +00001306 }
1307 return true;
1308}
1309
Dave Airlie8be48d92010-03-30 05:34:14 +00001310static int drm_pick_crtcs(struct drm_fb_helper *fb_helper,
1311 struct drm_fb_helper_crtc **best_crtcs,
Dave Airlie38651672010-03-30 05:34:13 +00001312 struct drm_display_mode **modes,
1313 int n, int width, int height)
1314{
1315 int c, o;
Dave Airlie8be48d92010-03-30 05:34:14 +00001316 struct drm_device *dev = fb_helper->dev;
Dave Airlie38651672010-03-30 05:34:13 +00001317 struct drm_connector *connector;
1318 struct drm_connector_helper_funcs *connector_funcs;
1319 struct drm_encoder *encoder;
Dave Airlie8be48d92010-03-30 05:34:14 +00001320 struct drm_fb_helper_crtc *best_crtc;
Dave Airlie38651672010-03-30 05:34:13 +00001321 int my_score, best_score, score;
Dave Airlie8be48d92010-03-30 05:34:14 +00001322 struct drm_fb_helper_crtc **crtcs, *crtc;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001323 struct drm_fb_helper_connector *fb_helper_conn;
Dave Airlie38651672010-03-30 05:34:13 +00001324
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001325 if (n == fb_helper->connector_count)
Dave Airlie38651672010-03-30 05:34:13 +00001326 return 0;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001327
1328 fb_helper_conn = fb_helper->connector_info[n];
1329 connector = fb_helper_conn->connector;
Dave Airlie38651672010-03-30 05:34:13 +00001330
1331 best_crtcs[n] = NULL;
1332 best_crtc = NULL;
Dave Airlie8be48d92010-03-30 05:34:14 +00001333 best_score = drm_pick_crtcs(fb_helper, best_crtcs, modes, n+1, width, height);
Dave Airlie38651672010-03-30 05:34:13 +00001334 if (modes[n] == NULL)
1335 return best_score;
1336
Dave Airlie8be48d92010-03-30 05:34:14 +00001337 crtcs = kzalloc(dev->mode_config.num_connector *
1338 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Dave Airlie38651672010-03-30 05:34:13 +00001339 if (!crtcs)
1340 return best_score;
1341
1342 my_score = 1;
1343 if (connector->status == connector_status_connected)
1344 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001345 if (drm_has_cmdline_mode(fb_helper_conn))
Dave Airlie38651672010-03-30 05:34:13 +00001346 my_score++;
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001347 if (drm_has_preferred_mode(fb_helper_conn, width, height))
Dave Airlie38651672010-03-30 05:34:13 +00001348 my_score++;
1349
1350 connector_funcs = connector->helper_private;
1351 encoder = connector_funcs->best_encoder(connector);
1352 if (!encoder)
1353 goto out;
1354
Dave Airlie38651672010-03-30 05:34:13 +00001355 /* select a crtc for this connector and then attempt to configure
1356 remaining connectors */
Dave Airlie8be48d92010-03-30 05:34:14 +00001357 for (c = 0; c < fb_helper->crtc_count; c++) {
1358 crtc = &fb_helper->crtc_info[c];
Dave Airlie38651672010-03-30 05:34:13 +00001359
Sachin Kamat96081cd2012-11-15 03:43:30 +00001360 if ((encoder->possible_crtcs & (1 << c)) == 0)
Dave Airlie38651672010-03-30 05:34:13 +00001361 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001362
1363 for (o = 0; o < n; o++)
1364 if (best_crtcs[o] == crtc)
1365 break;
1366
1367 if (o < n) {
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001368 /* ignore cloning unless only a single crtc */
1369 if (fb_helper->crtc_count > 1)
1370 continue;
1371
1372 if (!drm_mode_equal(modes[o], modes[n]))
1373 continue;
Dave Airlie38651672010-03-30 05:34:13 +00001374 }
1375
1376 crtcs[n] = crtc;
Dave Airlie8be48d92010-03-30 05:34:14 +00001377 memcpy(crtcs, best_crtcs, n * sizeof(struct drm_fb_helper_crtc *));
1378 score = my_score + drm_pick_crtcs(fb_helper, crtcs, modes, n + 1,
Dave Airlie38651672010-03-30 05:34:13 +00001379 width, height);
1380 if (score > best_score) {
1381 best_crtc = crtc;
1382 best_score = score;
1383 memcpy(best_crtcs, crtcs,
1384 dev->mode_config.num_connector *
Dave Airlie8be48d92010-03-30 05:34:14 +00001385 sizeof(struct drm_fb_helper_crtc *));
Dave Airlie38651672010-03-30 05:34:13 +00001386 }
Dave Airlie38651672010-03-30 05:34:13 +00001387 }
1388out:
1389 kfree(crtcs);
1390 return best_score;
1391}
1392
Dave Airlie8be48d92010-03-30 05:34:14 +00001393static void drm_setup_crtcs(struct drm_fb_helper *fb_helper)
Dave Airlie38651672010-03-30 05:34:13 +00001394{
Dave Airlie8be48d92010-03-30 05:34:14 +00001395 struct drm_device *dev = fb_helper->dev;
1396 struct drm_fb_helper_crtc **crtcs;
Dave Airlie38651672010-03-30 05:34:13 +00001397 struct drm_display_mode **modes;
Dave Airlie8be48d92010-03-30 05:34:14 +00001398 struct drm_mode_set *modeset;
Dave Airlie38651672010-03-30 05:34:13 +00001399 bool *enabled;
1400 int width, height;
1401 int i, ret;
1402
1403 DRM_DEBUG_KMS("\n");
1404
1405 width = dev->mode_config.max_width;
1406 height = dev->mode_config.max_height;
1407
Dave Airlie38651672010-03-30 05:34:13 +00001408 crtcs = kcalloc(dev->mode_config.num_connector,
Dave Airlie8be48d92010-03-30 05:34:14 +00001409 sizeof(struct drm_fb_helper_crtc *), GFP_KERNEL);
Dave Airlie38651672010-03-30 05:34:13 +00001410 modes = kcalloc(dev->mode_config.num_connector,
1411 sizeof(struct drm_display_mode *), GFP_KERNEL);
1412 enabled = kcalloc(dev->mode_config.num_connector,
1413 sizeof(bool), GFP_KERNEL);
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00001414 if (!crtcs || !modes || !enabled) {
1415 DRM_ERROR("Memory allocation failed\n");
1416 goto out;
1417 }
1418
Dave Airlie38651672010-03-30 05:34:13 +00001419
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001420 drm_enable_connectors(fb_helper, enabled);
Dave Airlie38651672010-03-30 05:34:13 +00001421
Dave Airlie1d42bbc2010-05-07 05:02:30 +00001422 ret = drm_target_cloned(fb_helper, modes, enabled, width, height);
1423 if (!ret) {
1424 ret = drm_target_preferred(fb_helper, modes, enabled, width, height);
1425 if (!ret)
1426 DRM_ERROR("Unable to find initial modes\n");
1427 }
Dave Airlie38651672010-03-30 05:34:13 +00001428
1429 DRM_DEBUG_KMS("picking CRTCs for %dx%d config\n", width, height);
1430
Dave Airlie8be48d92010-03-30 05:34:14 +00001431 drm_pick_crtcs(fb_helper, crtcs, modes, 0, width, height);
1432
1433 /* need to set the modesets up here for use later */
1434 /* fill out the connector<->crtc mappings into the modesets */
1435 for (i = 0; i < fb_helper->crtc_count; i++) {
1436 modeset = &fb_helper->crtc_info[i].mode_set;
1437 modeset->num_connectors = 0;
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001438 modeset->fb = NULL;
Dave Airlie8be48d92010-03-30 05:34:14 +00001439 }
Dave Airlie38651672010-03-30 05:34:13 +00001440
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001441 for (i = 0; i < fb_helper->connector_count; i++) {
Dave Airlie38651672010-03-30 05:34:13 +00001442 struct drm_display_mode *mode = modes[i];
Dave Airlie8be48d92010-03-30 05:34:14 +00001443 struct drm_fb_helper_crtc *fb_crtc = crtcs[i];
1444 modeset = &fb_crtc->mode_set;
Dave Airlie38651672010-03-30 05:34:13 +00001445
Dave Airlie8be48d92010-03-30 05:34:14 +00001446 if (mode && fb_crtc) {
Dave Airlie38651672010-03-30 05:34:13 +00001447 DRM_DEBUG_KMS("desired mode %s set on crtc %d\n",
Dave Airlie8be48d92010-03-30 05:34:14 +00001448 mode->name, fb_crtc->mode_set.crtc->base.id);
1449 fb_crtc->desired_mode = mode;
1450 if (modeset->mode)
1451 drm_mode_destroy(dev, modeset->mode);
1452 modeset->mode = drm_mode_duplicate(dev,
1453 fb_crtc->desired_mode);
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001454 modeset->connectors[modeset->num_connectors++] = fb_helper->connector_info[i]->connector;
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001455 modeset->fb = fb_helper->fb;
Dave Airlie38651672010-03-30 05:34:13 +00001456 }
Dave Airlie38651672010-03-30 05:34:13 +00001457 }
1458
Daniel Vetter7e53f3a2013-01-21 10:52:17 +01001459 /* Clear out any old modes if there are no more connected outputs. */
1460 for (i = 0; i < fb_helper->crtc_count; i++) {
1461 modeset = &fb_helper->crtc_info[i].mode_set;
1462 if (modeset->num_connectors == 0) {
1463 BUG_ON(modeset->fb);
1464 BUG_ON(modeset->num_connectors);
1465 if (modeset->mode)
1466 drm_mode_destroy(dev, modeset->mode);
1467 modeset->mode = NULL;
1468 }
1469 }
Sachin Kamat8c5eaca2012-11-19 09:44:58 +00001470out:
Dave Airlie38651672010-03-30 05:34:13 +00001471 kfree(crtcs);
1472 kfree(modes);
1473 kfree(enabled);
1474}
1475
1476/**
Daniel Vetter207fd322013-01-20 22:13:14 +01001477 * drm_fb_helper_initial_config - setup a sane initial connector configuration
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01001478 * @fb_helper: fb_helper device struct
1479 * @bpp_sel: bpp value to use for the framebuffer configuration
Dave Airlie38651672010-03-30 05:34:13 +00001480 *
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01001481 * Scans the CRTCs and connectors and tries to put together an initial setup.
Dave Airlie38651672010-03-30 05:34:13 +00001482 * At the moment, this is a cloned configuration across all heads with
1483 * a new framebuffer object as the backing store.
1484 *
Daniel Vetter207fd322013-01-20 22:13:14 +01001485 * Note that this also registers the fbdev and so allows userspace to call into
1486 * the driver through the fbdev interfaces.
1487 *
1488 * This function will call down into the ->fb_probe callback to let
1489 * the driver allocate and initialize the fbdev info structure and the drm
1490 * framebuffer used to back the fbdev. drm_fb_helper_fill_var() and
1491 * drm_fb_helper_fill_fix() are provided as helpers to setup simple default
1492 * values for the fbdev info structure.
1493 *
Dave Airlie38651672010-03-30 05:34:13 +00001494 * RETURNS:
1495 * Zero if everything went ok, nonzero otherwise.
1496 */
Dave Airlie4abe3522010-03-30 05:34:18 +00001497bool drm_fb_helper_initial_config(struct drm_fb_helper *fb_helper, int bpp_sel)
Dave Airlie38651672010-03-30 05:34:13 +00001498{
Dave Airlie8be48d92010-03-30 05:34:14 +00001499 struct drm_device *dev = fb_helper->dev;
Dave Airlie38651672010-03-30 05:34:13 +00001500 int count = 0;
1501
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001502 drm_fb_helper_parse_command_line(fb_helper);
Dave Airlie38651672010-03-30 05:34:13 +00001503
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001504 count = drm_fb_helper_probe_connector_modes(fb_helper,
1505 dev->mode_config.max_width,
1506 dev->mode_config.max_height);
Dave Airlie38651672010-03-30 05:34:13 +00001507 /*
1508 * we shouldn't end up with no modes here.
1509 */
Sachin Kamat96081cd2012-11-15 03:43:30 +00001510 if (count == 0)
Sachin Kamatd56b1b92012-11-15 03:43:29 +00001511 dev_info(fb_helper->dev->dev, "No connectors reported connected with modes\n");
Sachin Kamat96081cd2012-11-15 03:43:30 +00001512
Dave Airlie8be48d92010-03-30 05:34:14 +00001513 drm_setup_crtcs(fb_helper);
Dave Airlie38651672010-03-30 05:34:13 +00001514
Dave Airlie4abe3522010-03-30 05:34:18 +00001515 return drm_fb_helper_single_fb_probe(fb_helper, bpp_sel);
Dave Airlie38651672010-03-30 05:34:13 +00001516}
Dave Airlie8be48d92010-03-30 05:34:14 +00001517EXPORT_SYMBOL(drm_fb_helper_initial_config);
Dave Airlie38651672010-03-30 05:34:13 +00001518
Chris Wilson73943712011-04-22 11:03:57 +01001519/**
1520 * drm_fb_helper_hotplug_event - respond to a hotplug notification by
Daniel Vetterd0ddc0332012-11-01 14:45:17 +01001521 * probing all the outputs attached to the fb
Chris Wilson73943712011-04-22 11:03:57 +01001522 * @fb_helper: the drm_fb_helper
1523 *
Chris Wilson73943712011-04-22 11:03:57 +01001524 * Scan the connectors attached to the fb_helper and try to put together a
1525 * setup after *notification of a change in output configuration.
1526 *
Daniel Vetter207fd322013-01-20 22:13:14 +01001527 * Called at runtime, takes the mode config locks to be able to check/change the
1528 * modeset configuration. Must be run from process context (which usually means
1529 * either the output polling work or a work item launched from the driver's
1530 * hotplug interrupt).
1531 *
1532 * Note that the driver must ensure that this is only called _after_ the fb has
1533 * been fully set up, i.e. after the call to drm_fb_helper_initial_config.
1534 *
Chris Wilson73943712011-04-22 11:03:57 +01001535 * RETURNS:
1536 * 0 on success and a non-zero error code otherwise.
1537 */
1538int drm_fb_helper_hotplug_event(struct drm_fb_helper *fb_helper)
Dave Airlie38651672010-03-30 05:34:13 +00001539{
Chris Wilson73943712011-04-22 11:03:57 +01001540 struct drm_device *dev = fb_helper->dev;
Dave Airlie5c4426a2010-03-30 05:34:17 +00001541 int count = 0;
Dave Airlie4abe3522010-03-30 05:34:18 +00001542 u32 max_width, max_height, bpp_sel;
1543
1544 if (!fb_helper->fb)
Chris Wilson73943712011-04-22 11:03:57 +01001545 return 0;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001546
Daniel Vetter84849902012-12-02 00:28:11 +01001547 drm_modeset_lock_all(dev);
Daniel Vetter20c60c32012-12-17 12:13:23 +01001548 if (!drm_fb_helper_is_bound(fb_helper)) {
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001549 fb_helper->delayed_hotplug = true;
Daniel Vetter84849902012-12-02 00:28:11 +01001550 drm_modeset_unlock_all(dev);
Chris Wilson73943712011-04-22 11:03:57 +01001551 return 0;
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001552 }
Dave Airlie38651672010-03-30 05:34:13 +00001553 DRM_DEBUG_KMS("\n");
1554
Dave Airlie4abe3522010-03-30 05:34:18 +00001555 max_width = fb_helper->fb->width;
1556 max_height = fb_helper->fb->height;
1557 bpp_sel = fb_helper->fb->bits_per_pixel;
1558
Dave Airlie5c4426a2010-03-30 05:34:17 +00001559 count = drm_fb_helper_probe_connector_modes(fb_helper, max_width,
Dave Airlie0b4c0f32010-03-30 05:34:15 +00001560 max_height);
Dave Airlie8be48d92010-03-30 05:34:14 +00001561 drm_setup_crtcs(fb_helper);
Daniel Vetter84849902012-12-02 00:28:11 +01001562 drm_modeset_unlock_all(dev);
Dave Airlie38651672010-03-30 05:34:13 +00001563
Daniel Vetter2180c3c2013-01-21 23:12:36 +01001564 drm_fb_helper_set_par(fb_helper->fbdev);
1565
1566 return 0;
Dave Airlie38651672010-03-30 05:34:13 +00001567}
Dave Airlieeb1f8e42010-05-07 06:42:51 +00001568EXPORT_SYMBOL(drm_fb_helper_hotplug_event);
Dave Airlie5c4426a2010-03-30 05:34:17 +00001569
David Rientjes6a108a12011-01-20 14:44:16 -08001570/* The Kconfig DRM_KMS_HELPER selects FRAMEBUFFER_CONSOLE (if !EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06001571 * but the module doesn't depend on any fb console symbols. At least
1572 * attempt to load fbcon to avoid leaving the system without a usable console.
1573 */
David Rientjes6a108a12011-01-20 14:44:16 -08001574#if defined(CONFIG_FRAMEBUFFER_CONSOLE_MODULE) && !defined(CONFIG_EXPERT)
David Fries3ce05162010-12-12 12:39:22 -06001575static int __init drm_fb_helper_modinit(void)
1576{
1577 const char *name = "fbcon";
1578 struct module *fbcon;
1579
1580 mutex_lock(&module_mutex);
1581 fbcon = find_module(name);
1582 mutex_unlock(&module_mutex);
1583
1584 if (!fbcon)
1585 request_module_nowait(name);
1586 return 0;
1587}
1588
1589module_init(drm_fb_helper_modinit);
1590#endif