Subversion Repositories Kolibri OS

Rev

Rev 3480 | Rev 3764 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1123 serge 1
/*
2
 * Copyright (c) 2006-2008 Intel Corporation
3
 * Copyright (c) 2007 Dave Airlie 
4
 *
5
 * DRM core CRTC related functions
6
 *
7
 * Permission to use, copy, modify, distribute, and sell this software and its
8
 * documentation for any purpose is hereby granted without fee, provided that
9
 * the above copyright notice appear in all copies and that both that copyright
10
 * notice and this permission notice appear in supporting documentation, and
11
 * that the name of the copyright holders not be used in advertising or
12
 * publicity pertaining to distribution of the software without specific,
13
 * written prior permission.  The copyright holders make no representations
14
 * about the suitability of this software for any purpose.  It is provided "as
15
 * is" without express or implied warranty.
16
 *
17
 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
18
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
19
 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
20
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
21
 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
22
 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
23
 * OF THIS SOFTWARE.
24
 *
25
 * Authors:
26
 *      Keith Packard
27
 *	Eric Anholt 
28
 *      Dave Airlie 
29
 *      Jesse Barnes 
30
 */
31
 
3031 serge 32
#include 
33
#include 
1123 serge 34
 
3031 serge 35
#include 
36
#include 
37
#include 
38
#include 
39
#include 
40
#include 
41
 
3192 Serge 42
/**
43
 * drm_helper_move_panel_connectors_to_head() - move panels to the front in the
44
 * 						connector list
45
 * @dev: drm device to operate on
46
 *
47
 * Some userspace presumes that the first connected connector is the main
48
 * display, where it's supposed to display e.g. the login screen. For
49
 * laptops, this should be the main panel. Use this function to sort all
50
 * (eDP/LVDS) panels to the front of the connector list, instead of
51
 * painstakingly trying to initialize them in the right order.
52
 */
53
void drm_helper_move_panel_connectors_to_head(struct drm_device *dev)
54
{
55
	struct drm_connector *connector, *tmp;
56
	struct list_head panel_list;
57
 
58
	INIT_LIST_HEAD(&panel_list);
59
 
60
	list_for_each_entry_safe(connector, tmp,
61
				 &dev->mode_config.connector_list, head) {
62
		if (connector->connector_type == DRM_MODE_CONNECTOR_LVDS ||
63
		    connector->connector_type == DRM_MODE_CONNECTOR_eDP)
64
			list_move_tail(&connector->head, &panel_list);
65
	}
66
 
67
	list_splice(&panel_list, &dev->mode_config.connector_list);
68
}
69
EXPORT_SYMBOL(drm_helper_move_panel_connectors_to_head);
70
 
1963 serge 71
static bool drm_kms_helper_poll = true;
3480 Serge 72
module_param_named(poll, drm_kms_helper_poll, bool, 0600);
1963 serge 73
 
1123 serge 74
static void drm_mode_validate_flag(struct drm_connector *connector,
75
				   int flags)
76
{
3031 serge 77
	struct drm_display_mode *mode;
1123 serge 78
 
79
	if (flags == (DRM_MODE_FLAG_DBLSCAN | DRM_MODE_FLAG_INTERLACE))
80
		return;
81
 
3031 serge 82
	list_for_each_entry(mode, &connector->modes, head) {
1123 serge 83
		if ((mode->flags & DRM_MODE_FLAG_INTERLACE) &&
84
				!(flags & DRM_MODE_FLAG_INTERLACE))
85
			mode->status = MODE_NO_INTERLACE;
86
		if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) &&
87
				!(flags & DRM_MODE_FLAG_DBLSCAN))
88
			mode->status = MODE_NO_DBLESCAN;
89
	}
90
 
91
	return;
92
}
93
 
94
/**
1963 serge 95
 * drm_helper_probe_single_connector_modes - get complete set of display modes
3192 Serge 96
 * @connector: connector to probe
1123 serge 97
 * @maxX: max width for modes
98
 * @maxY: max height for modes
99
 *
100
 * LOCKING:
101
 * Caller must hold mode config lock.
102
 *
3192 Serge 103
 * Based on the helper callbacks implemented by @connector try to detect all
104
 * valid modes.  Modes will first be added to the connector's probed_modes list,
105
 * then culled (based on validity and the @maxX, @maxY parameters) and put into
106
 * the normal modes list.
1123 serge 107
 *
3192 Serge 108
 * Intended to be use as a generic implementation of the ->probe() @connector
109
 * callback for drivers that use the crtc helpers for output mode filtering and
110
 * detection.
1123 serge 111
 *
112
 * RETURNS:
113
 * Number of modes found on @connector.
114
 */
115
int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
116
					    uint32_t maxX, uint32_t maxY)
117
{
118
	struct drm_device *dev = connector->dev;
3031 serge 119
	struct drm_display_mode *mode;
1123 serge 120
	struct drm_connector_helper_funcs *connector_funcs =
121
		connector->helper_private;
122
	int count = 0;
123
	int mode_flags = 0;
124
 
1963 serge 125
	DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id,
126
			drm_get_connector_name(connector));
1123 serge 127
	/* set all modes to the unverified state */
3031 serge 128
	list_for_each_entry(mode, &connector->modes, head)
1123 serge 129
		mode->status = MODE_UNVERIFIED;
130
 
1221 serge 131
	if (connector->force) {
132
		if (connector->force == DRM_FORCE_ON)
133
			connector->status = connector_status_connected;
134
		else
135
			connector->status = connector_status_disconnected;
136
		if (connector->funcs->force)
137
			connector->funcs->force(connector);
1963 serge 138
	} else {
3243 Serge 139
//        dbgprintf("call detect funcs %p ", connector->funcs);
140
//        dbgprintf("detect %p\n", connector->funcs->detect);
1963 serge 141
		connector->status = connector->funcs->detect(connector, true);
3243 Serge 142
//        dbgprintf("status %x\n", connector->status);
1963 serge 143
	}
1123 serge 144
 
3480 Serge 145
	/* Re-enable polling in case the global poll config changed. */
146
	if (drm_kms_helper_poll != dev->mode_config.poll_running)
147
		drm_kms_helper_poll_enable(dev);
148
 
149
	dev->mode_config.poll_running = drm_kms_helper_poll;
150
 
1123 serge 151
	if (connector->status == connector_status_disconnected) {
1963 serge 152
		DRM_DEBUG_KMS("[CONNECTOR:%d:%s] disconnected\n",
153
			connector->base.id, drm_get_connector_name(connector));
154
		drm_mode_connector_update_edid_property(connector, NULL);
1179 serge 155
		goto prune;
1123 serge 156
	}
157
 
3031 serge 158
#ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE
159
	count = drm_load_edid_firmware(connector);
160
	if (count == 0)
161
#endif
1123 serge 162
	count = (*connector_funcs->get_modes)(connector);
3031 serge 163
 
1963 serge 164
	if (count == 0 && connector->status == connector_status_connected)
1321 serge 165
		count = drm_add_modes_noedid(connector, 1024, 768);
1963 serge 166
	if (count == 0)
167
		goto prune;
1123 serge 168
 
169
	drm_mode_connector_list_update(connector);
170
 
171
	if (maxX && maxY)
172
		drm_mode_validate_size(dev, &connector->modes, maxX,
173
				       maxY, 0);
174
 
175
	if (connector->interlace_allowed)
176
		mode_flags |= DRM_MODE_FLAG_INTERLACE;
177
	if (connector->doublescan_allowed)
178
		mode_flags |= DRM_MODE_FLAG_DBLSCAN;
179
	drm_mode_validate_flag(connector, mode_flags);
180
 
3031 serge 181
	list_for_each_entry(mode, &connector->modes, head) {
1123 serge 182
		if (mode->status == MODE_OK)
183
			mode->status = connector_funcs->mode_valid(connector,
184
								   mode);
185
	}
186
 
1179 serge 187
prune:
1123 serge 188
	drm_mode_prune_invalid(dev, &connector->modes, true);
189
 
190
	if (list_empty(&connector->modes))
191
		return 0;
192
 
193
	drm_mode_sort(&connector->modes);
194
 
1963 serge 195
	DRM_DEBUG_KMS("[CONNECTOR:%d:%s] probed modes :\n", connector->base.id,
1179 serge 196
				drm_get_connector_name(connector));
3031 serge 197
	list_for_each_entry(mode, &connector->modes, head) {
1123 serge 198
		mode->vrefresh = drm_mode_vrefresh(mode);
199
 
200
		drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
201
		drm_mode_debug_printmodeline(mode);
202
	}
203
 
204
	return count;
205
}
206
EXPORT_SYMBOL(drm_helper_probe_single_connector_modes);
207
 
208
/**
209
 * drm_helper_encoder_in_use - check if a given encoder is in use
210
 * @encoder: encoder to check
211
 *
212
 * LOCKING:
213
 * Caller must hold mode config lock.
214
 *
215
 * Walk @encoders's DRM device's mode_config and see if it's in use.
216
 *
217
 * RETURNS:
218
 * True if @encoder is part of the mode_config, false otherwise.
219
 */
220
bool drm_helper_encoder_in_use(struct drm_encoder *encoder)
221
{
222
	struct drm_connector *connector;
223
	struct drm_device *dev = encoder->dev;
224
	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
225
		if (connector->encoder == encoder)
226
			return true;
227
	return false;
228
}
229
EXPORT_SYMBOL(drm_helper_encoder_in_use);
230
 
231
/**
232
 * drm_helper_crtc_in_use - check if a given CRTC is in a mode_config
233
 * @crtc: CRTC to check
234
 *
235
 * LOCKING:
236
 * Caller must hold mode config lock.
237
 *
238
 * Walk @crtc's DRM device's mode_config and see if it's in use.
239
 *
240
 * RETURNS:
241
 * True if @crtc is part of the mode_config, false otherwise.
242
 */
243
bool drm_helper_crtc_in_use(struct drm_crtc *crtc)
244
{
245
	struct drm_encoder *encoder;
246
	struct drm_device *dev = crtc->dev;
247
	/* FIXME: Locking around list access? */
248
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
249
		if (encoder->crtc == crtc && drm_helper_encoder_in_use(encoder))
250
			return true;
251
	return false;
252
}
253
EXPORT_SYMBOL(drm_helper_crtc_in_use);
254
 
1963 serge 255
static void
256
drm_encoder_disable(struct drm_encoder *encoder)
257
{
258
	struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
259
 
260
	if (encoder_funcs->disable)
261
		(*encoder_funcs->disable)(encoder);
262
	else
263
		(*encoder_funcs->dpms)(encoder, DRM_MODE_DPMS_OFF);
264
}
265
 
1123 serge 266
/**
1404 serge 267
 * drm_helper_disable_unused_functions - disable unused objects
1123 serge 268
 * @dev: DRM device
269
 *
270
 * LOCKING:
271
 * Caller must hold mode config lock.
272
 *
273
 * If an connector or CRTC isn't part of @dev's mode_config, it can be disabled
274
 * by calling its dpms function, which should power it off.
275
 */
276
void drm_helper_disable_unused_functions(struct drm_device *dev)
277
{
278
	struct drm_encoder *encoder;
1179 serge 279
	struct drm_connector *connector;
1123 serge 280
	struct drm_crtc *crtc;
281
 
1179 serge 282
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
283
		if (!connector->encoder)
284
			continue;
285
		if (connector->status == connector_status_disconnected)
286
			connector->encoder = NULL;
287
	}
288
 
1123 serge 289
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
1179 serge 290
		if (!drm_helper_encoder_in_use(encoder)) {
1963 serge 291
			drm_encoder_disable(encoder);
1179 serge 292
			/* disconnector encoder from any connector */
293
			encoder->crtc = NULL;
294
		}
1123 serge 295
	}
296
 
297
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
298
		struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
299
		crtc->enabled = drm_helper_crtc_in_use(crtc);
300
		if (!crtc->enabled) {
1963 serge 301
			if (crtc_funcs->disable)
302
				(*crtc_funcs->disable)(crtc);
303
			else
304
				(*crtc_funcs->dpms)(crtc, DRM_MODE_DPMS_OFF);
1123 serge 305
			crtc->fb = NULL;
306
		}
307
	}
308
}
309
EXPORT_SYMBOL(drm_helper_disable_unused_functions);
310
 
311
/**
312
 * drm_encoder_crtc_ok - can a given crtc drive a given encoder?
313
 * @encoder: encoder to test
314
 * @crtc: crtc to test
315
 *
316
 * Return false if @encoder can't be driven by @crtc, true otherwise.
317
 */
318
static bool drm_encoder_crtc_ok(struct drm_encoder *encoder,
319
				struct drm_crtc *crtc)
320
{
321
	struct drm_device *dev;
322
	struct drm_crtc *tmp;
323
	int crtc_mask = 1;
324
 
1963 serge 325
	WARN(!crtc, "checking null crtc?\n");
1123 serge 326
 
327
	dev = crtc->dev;
328
 
329
	list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
330
		if (tmp == crtc)
331
			break;
332
		crtc_mask <<= 1;
333
	}
334
 
335
	if (encoder->possible_crtcs & crtc_mask)
336
		return true;
337
	return false;
338
}
339
 
340
/*
341
 * Check the CRTC we're going to map each output to vs. its current
342
 * CRTC.  If they don't match, we have to disable the output and the CRTC
343
 * since the driver will have to re-route things.
344
 */
345
static void
346
drm_crtc_prepare_encoders(struct drm_device *dev)
347
{
348
	struct drm_encoder_helper_funcs *encoder_funcs;
349
	struct drm_encoder *encoder;
350
 
351
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
352
		encoder_funcs = encoder->helper_private;
353
		/* Disable unused encoders */
354
		if (encoder->crtc == NULL)
1963 serge 355
			drm_encoder_disable(encoder);
1123 serge 356
		/* Disable encoders whose CRTC is about to change */
357
		if (encoder_funcs->get_crtc &&
358
		    encoder->crtc != (*encoder_funcs->get_crtc)(encoder))
1963 serge 359
			drm_encoder_disable(encoder);
1123 serge 360
	}
361
}
362
 
363
/**
3192 Serge 364
 * drm_crtc_helper_set_mode - internal helper to set a mode
1123 serge 365
 * @crtc: CRTC to program
366
 * @mode: mode to use
3192 Serge 367
 * @x: horizontal offset into the surface
368
 * @y: vertical offset into the surface
369
 * @old_fb: old framebuffer, for cleanup
1123 serge 370
 *
371
 * LOCKING:
372
 * Caller must hold mode config lock.
373
 *
374
 * Try to set @mode on @crtc.  Give @crtc and its associated connectors a chance
3192 Serge 375
 * to fixup or reject the mode prior to trying to set it. This is an internal
376
 * helper that drivers could e.g. use to update properties that require the
377
 * entire output pipe to be disabled and re-enabled in a new configuration. For
378
 * example for changing whether audio is enabled on a hdmi link or for changing
379
 * panel fitter or dither attributes. It is also called by the
380
 * drm_crtc_helper_set_config() helper function to drive the mode setting
381
 * sequence.
1123 serge 382
 *
383
 * RETURNS:
384
 * True if the mode was set successfully, or false otherwise.
385
 */
386
bool drm_crtc_helper_set_mode(struct drm_crtc *crtc,
387
			      struct drm_display_mode *mode,
388
			      int x, int y,
389
			      struct drm_framebuffer *old_fb)
390
{
391
	struct drm_device *dev = crtc->dev;
1963 serge 392
	struct drm_display_mode *adjusted_mode, saved_mode, saved_hwmode;
1123 serge 393
	struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
394
	struct drm_encoder_helper_funcs *encoder_funcs;
395
	int saved_x, saved_y;
396
	struct drm_encoder *encoder;
397
	bool ret = true;
398
 
399
	crtc->enabled = drm_helper_crtc_in_use(crtc);
400
	if (!crtc->enabled)
401
		return true;
402
 
1963 serge 403
	adjusted_mode = drm_mode_duplicate(dev, mode);
3031 serge 404
	if (!adjusted_mode)
405
		return false;
1963 serge 406
 
407
	saved_hwmode = crtc->hwmode;
1123 serge 408
	saved_mode = crtc->mode;
409
	saved_x = crtc->x;
410
	saved_y = crtc->y;
411
 
412
	/* Update crtc values up front so the driver can rely on them for mode
413
	 * setting.
414
	 */
415
	crtc->mode = *mode;
416
	crtc->x = x;
417
	crtc->y = y;
418
 
419
	/* Pass our mode to the connectors and the CRTC to give them a chance to
420
	 * adjust it according to limitations or connector properties, and also
421
	 * a chance to reject the mode entirely.
422
	 */
423
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
424
 
425
		if (encoder->crtc != crtc)
426
			continue;
427
		encoder_funcs = encoder->helper_private;
428
		if (!(ret = encoder_funcs->mode_fixup(encoder, mode,
429
						      adjusted_mode))) {
3031 serge 430
			DRM_DEBUG_KMS("Encoder fixup failed\n");
1123 serge 431
			goto done;
432
		}
433
	}
434
 
435
	if (!(ret = crtc_funcs->mode_fixup(crtc, mode, adjusted_mode))) {
3031 serge 436
		DRM_DEBUG_KMS("CRTC fixup failed\n");
1123 serge 437
		goto done;
438
	}
1963 serge 439
	DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
1123 serge 440
 
441
	/* Prepare the encoders and CRTCs before setting the mode. */
442
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
443
 
444
		if (encoder->crtc != crtc)
445
			continue;
446
		encoder_funcs = encoder->helper_private;
447
		/* Disable the encoders as the first thing we do. */
448
		encoder_funcs->prepare(encoder);
449
	}
450
 
451
	drm_crtc_prepare_encoders(dev);
452
 
453
	crtc_funcs->prepare(crtc);
454
 
455
	/* Set up the DPLL and any encoders state that needs to adjust or depend
456
	 * on the DPLL.
457
	 */
458
	ret = !crtc_funcs->mode_set(crtc, mode, adjusted_mode, x, y, old_fb);
459
	if (!ret)
460
	    goto done;
461
 
462
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
463
 
464
		if (encoder->crtc != crtc)
465
			continue;
466
 
1963 serge 467
		DRM_DEBUG_KMS("[ENCODER:%d:%s] set [MODE:%d:%s]\n",
468
			encoder->base.id, drm_get_encoder_name(encoder),
469
			mode->base.id, mode->name);
1123 serge 470
		encoder_funcs = encoder->helper_private;
471
		encoder_funcs->mode_set(encoder, mode, adjusted_mode);
472
	}
473
 
474
	/* Now enable the clocks, plane, pipe, and connectors that we set up. */
475
	crtc_funcs->commit(crtc);
476
 
477
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
478
 
479
		if (encoder->crtc != crtc)
480
			continue;
481
 
482
		encoder_funcs = encoder->helper_private;
483
		encoder_funcs->commit(encoder);
484
 
485
	}
486
 
1963 serge 487
	/* Store real post-adjustment hardware mode. */
488
	crtc->hwmode = *adjusted_mode;
489
 
490
	/* Calculate and store various constants which
491
	 * are later needed by vblank and swap-completion
492
	 * timestamping. They are derived from true hwmode.
493
	 */
494
	drm_calc_timestamping_constants(crtc);
495
 
1123 serge 496
	/* FIXME: add subpixel order */
497
done:
1963 serge 498
	drm_mode_destroy(dev, adjusted_mode);
1123 serge 499
	if (!ret) {
1963 serge 500
		crtc->hwmode = saved_hwmode;
1123 serge 501
		crtc->mode = saved_mode;
502
		crtc->x = saved_x;
503
		crtc->y = saved_y;
504
	}
1179 serge 505
 
1123 serge 506
	return ret;
507
}
508
EXPORT_SYMBOL(drm_crtc_helper_set_mode);
509
 
510
 
3031 serge 511
static int
512
drm_crtc_helper_disable(struct drm_crtc *crtc)
513
{
514
	struct drm_device *dev = crtc->dev;
515
	struct drm_connector *connector;
516
	struct drm_encoder *encoder;
517
 
518
	/* Decouple all encoders and their attached connectors from this crtc */
519
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
520
		if (encoder->crtc != crtc)
521
			continue;
522
 
523
		list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
524
			if (connector->encoder != encoder)
525
				continue;
526
 
527
			connector->encoder = NULL;
528
		}
529
	}
530
 
531
	drm_helper_disable_unused_functions(dev);
532
	return 0;
533
}
534
 
1123 serge 535
/**
536
 * drm_crtc_helper_set_config - set a new config from userspace
3192 Serge 537
 * @set: mode set configuration
1123 serge 538
 *
539
 * LOCKING:
540
 * Caller must hold mode config lock.
541
 *
3192 Serge 542
 * Setup a new configuration, provided by the upper layers (either an ioctl call
543
 * from userspace or internally e.g. from the fbdev suppport code) in @set, and
544
 * enable it. This is the main helper functions for drivers that implement
545
 * kernel mode setting with the crtc helper functions and the assorted
546
 * ->prepare(), ->modeset() and ->commit() helper callbacks.
1123 serge 547
 *
548
 * RETURNS:
3192 Serge 549
 * Returns 0 on success, -ERRNO on failure.
1123 serge 550
 */
551
int drm_crtc_helper_set_config(struct drm_mode_set *set)
552
{
553
	struct drm_device *dev;
1179 serge 554
	struct drm_crtc *save_crtcs, *new_crtc, *crtc;
555
	struct drm_encoder *save_encoders, *new_encoder, *encoder;
1123 serge 556
	struct drm_framebuffer *old_fb = NULL;
1179 serge 557
	bool mode_changed = false; /* if true do a full mode set */
558
	bool fb_changed = false; /* if true and !mode_changed just do a flip */
559
	struct drm_connector *save_connectors, *connector;
1123 serge 560
	int count = 0, ro, fail = 0;
561
	struct drm_crtc_helper_funcs *crtc_funcs;
3031 serge 562
	struct drm_mode_set save_set;
563
	int ret;
1963 serge 564
	int i;
1123 serge 565
 
1179 serge 566
	DRM_DEBUG_KMS("\n");
1123 serge 567
 
568
	if (!set)
569
		return -EINVAL;
570
 
571
	if (!set->crtc)
572
		return -EINVAL;
573
 
574
	if (!set->crtc->helper_private)
575
		return -EINVAL;
576
 
577
	crtc_funcs = set->crtc->helper_private;
578
 
1963 serge 579
	if (!set->mode)
580
		set->fb = NULL;
581
 
582
	if (set->fb) {
583
		DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
584
				set->crtc->base.id, set->fb->base.id,
1123 serge 585
		  (int)set->num_connectors, set->x, set->y);
1963 serge 586
	} else {
587
		DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
3031 serge 588
		return drm_crtc_helper_disable(set->crtc);
1963 serge 589
	}
1123 serge 590
 
591
	dev = set->crtc->dev;
592
 
1179 serge 593
	/* Allocate space for the backup of all (non-pointer) crtc, encoder and
594
	 * connector data. */
595
	save_crtcs = kzalloc(dev->mode_config.num_crtc *
596
			     sizeof(struct drm_crtc), GFP_KERNEL);
1123 serge 597
	if (!save_crtcs)
598
		return -ENOMEM;
599
 
1179 serge 600
	save_encoders = kzalloc(dev->mode_config.num_encoder *
601
				sizeof(struct drm_encoder), GFP_KERNEL);
1123 serge 602
	if (!save_encoders) {
603
		kfree(save_crtcs);
604
		return -ENOMEM;
605
	}
606
 
1179 serge 607
	save_connectors = kzalloc(dev->mode_config.num_connector *
608
				sizeof(struct drm_connector), GFP_KERNEL);
609
	if (!save_connectors) {
610
		kfree(save_crtcs);
611
		kfree(save_encoders);
612
		return -ENOMEM;
613
	}
614
 
615
	/* Copy data. Note that driver private data is not affected.
616
	 * Should anything bad happen only the expected state is
617
	 * restored, not the drivers personal bookkeeping.
618
	 */
619
	count = 0;
620
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
621
		save_crtcs[count++] = *crtc;
622
	}
623
 
624
	count = 0;
625
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
626
		save_encoders[count++] = *encoder;
627
	}
628
 
629
	count = 0;
630
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
631
		save_connectors[count++] = *connector;
632
	}
633
 
3031 serge 634
	save_set.crtc = set->crtc;
635
	save_set.mode = &set->crtc->mode;
636
	save_set.x = set->crtc->x;
637
	save_set.y = set->crtc->y;
638
	save_set.fb = set->crtc->fb;
639
 
1123 serge 640
	/* We should be able to check here if the fb has the same properties
641
	 * and then just flip_or_move it */
642
	if (set->crtc->fb != set->fb) {
643
		/* If we have no fb then treat it as a full mode set */
644
		if (set->crtc->fb == NULL) {
1179 serge 645
			DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
1123 serge 646
			mode_changed = true;
1179 serge 647
		} else if (set->fb == NULL) {
648
			mode_changed = true;
2160 serge 649
		} else if (set->fb->depth != set->crtc->fb->depth) {
650
			mode_changed = true;
651
		} else if (set->fb->bits_per_pixel !=
652
			   set->crtc->fb->bits_per_pixel) {
653
			mode_changed = true;
3746 Serge 654
		} else if (set->fb->pixel_format !=
655
			   set->crtc->fb->pixel_format) {
656
			mode_changed = true;
1430 serge 657
		} else
1123 serge 658
			fb_changed = true;
659
	}
660
 
661
	if (set->x != set->crtc->x || set->y != set->crtc->y)
662
		fb_changed = true;
663
 
664
	if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
1179 serge 665
		DRM_DEBUG_KMS("modes are different, full mode set\n");
1123 serge 666
		drm_mode_debug_printmodeline(&set->crtc->mode);
667
		drm_mode_debug_printmodeline(set->mode);
668
		mode_changed = true;
669
	}
670
 
671
	/* a) traverse passed in connector list and get encoders for them */
672
	count = 0;
673
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
674
		struct drm_connector_helper_funcs *connector_funcs =
675
			connector->helper_private;
676
		new_encoder = connector->encoder;
677
		for (ro = 0; ro < set->num_connectors; ro++) {
678
			if (set->connectors[ro] == connector) {
679
				new_encoder = connector_funcs->best_encoder(connector);
680
				/* if we can't get an encoder for a connector
681
				   we are setting now - then fail */
682
				if (new_encoder == NULL)
683
					/* don't break so fail path works correct */
684
					fail = 1;
685
				break;
686
			}
687
		}
688
 
689
		if (new_encoder != connector->encoder) {
1179 serge 690
			DRM_DEBUG_KMS("encoder changed, full mode switch\n");
1123 serge 691
			mode_changed = true;
1179 serge 692
			/* If the encoder is reused for another connector, then
693
			 * the appropriate crtc will be set later.
694
			 */
695
			if (connector->encoder)
696
				connector->encoder->crtc = NULL;
1123 serge 697
			connector->encoder = new_encoder;
698
		}
699
	}
700
 
701
	if (fail) {
702
		ret = -EINVAL;
1179 serge 703
		goto fail;
1123 serge 704
	}
705
 
706
	count = 0;
707
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
708
		if (!connector->encoder)
709
			continue;
710
 
711
		if (connector->encoder->crtc == set->crtc)
712
			new_crtc = NULL;
713
		else
714
			new_crtc = connector->encoder->crtc;
715
 
716
		for (ro = 0; ro < set->num_connectors; ro++) {
717
			if (set->connectors[ro] == connector)
718
				new_crtc = set->crtc;
719
		}
720
 
721
		/* Make sure the new CRTC will work with the encoder */
722
		if (new_crtc &&
723
		    !drm_encoder_crtc_ok(connector->encoder, new_crtc)) {
724
			ret = -EINVAL;
1179 serge 725
			goto fail;
1123 serge 726
		}
727
		if (new_crtc != connector->encoder->crtc) {
1179 serge 728
			DRM_DEBUG_KMS("crtc changed, full mode switch\n");
1123 serge 729
			mode_changed = true;
730
			connector->encoder->crtc = new_crtc;
731
		}
1963 serge 732
		if (new_crtc) {
733
			DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
734
				connector->base.id, drm_get_connector_name(connector),
735
				new_crtc->base.id);
736
		} else {
737
			DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
738
				connector->base.id, drm_get_connector_name(connector));
739
		}
1123 serge 740
	}
741
 
742
	/* mode_set_base is not a required function */
743
	if (fb_changed && !crtc_funcs->mode_set_base)
744
		mode_changed = true;
745
 
746
	if (mode_changed) {
1963 serge 747
		set->crtc->enabled = drm_helper_crtc_in_use(set->crtc);
748
		if (set->crtc->enabled) {
1179 serge 749
			DRM_DEBUG_KMS("attempting to set mode from"
750
					" userspace\n");
1123 serge 751
			drm_mode_debug_printmodeline(set->mode);
1963 serge 752
			old_fb = set->crtc->fb;
753
			set->crtc->fb = set->fb;
1123 serge 754
			if (!drm_crtc_helper_set_mode(set->crtc, set->mode,
755
						      set->x, set->y,
756
						      old_fb)) {
1963 serge 757
				DRM_ERROR("failed to set mode on [CRTC:%d]\n",
758
					  set->crtc->base.id);
759
				set->crtc->fb = old_fb;
1123 serge 760
				ret = -EINVAL;
1179 serge 761
				goto fail;
1123 serge 762
			}
1963 serge 763
			DRM_DEBUG_KMS("Setting connector DPMS state to on\n");
764
			for (i = 0; i < set->num_connectors; i++) {
765
				DRM_DEBUG_KMS("\t[CONNECTOR:%d:%s] set DPMS on\n", set->connectors[i]->base.id,
766
					      drm_get_connector_name(set->connectors[i]));
3031 serge 767
				set->connectors[i]->funcs->dpms(set->connectors[i], DRM_MODE_DPMS_ON);
1963 serge 768
			}
1123 serge 769
		}
770
		drm_helper_disable_unused_functions(dev);
771
	} else if (fb_changed) {
1179 serge 772
		set->crtc->x = set->x;
773
		set->crtc->y = set->y;
774
 
1123 serge 775
		old_fb = set->crtc->fb;
776
		if (set->crtc->fb != set->fb)
777
			set->crtc->fb = set->fb;
778
		ret = crtc_funcs->mode_set_base(set->crtc,
779
						set->x, set->y, old_fb);
1963 serge 780
		if (ret != 0) {
781
			set->crtc->fb = old_fb;
1179 serge 782
			goto fail;
1123 serge 783
	}
1963 serge 784
	}
1123 serge 785
 
1179 serge 786
	kfree(save_connectors);
1123 serge 787
	kfree(save_encoders);
788
	kfree(save_crtcs);
789
	return 0;
790
 
1179 serge 791
fail:
792
	/* Restore all previous data. */
1123 serge 793
	count = 0;
1179 serge 794
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
795
		*crtc = save_crtcs[count++];
796
	}
1123 serge 797
 
1179 serge 798
	count = 0;
799
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
800
		*encoder = save_encoders[count++];
1123 serge 801
	}
1179 serge 802
 
1123 serge 803
	count = 0;
804
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1179 serge 805
		*connector = save_connectors[count++];
1123 serge 806
	}
1179 serge 807
 
3031 serge 808
	/* Try to restore the config */
809
	if (mode_changed &&
810
	    !drm_crtc_helper_set_mode(save_set.crtc, save_set.mode, save_set.x,
811
				      save_set.y, save_set.fb))
812
		DRM_ERROR("failed to restore config after modeset failure\n");
813
 
1179 serge 814
	kfree(save_connectors);
1123 serge 815
	kfree(save_encoders);
1179 serge 816
	kfree(save_crtcs);
1123 serge 817
	return ret;
818
}
819
EXPORT_SYMBOL(drm_crtc_helper_set_config);
820
 
821
static int drm_helper_choose_encoder_dpms(struct drm_encoder *encoder)
822
{
823
	int dpms = DRM_MODE_DPMS_OFF;
824
	struct drm_connector *connector;
825
	struct drm_device *dev = encoder->dev;
826
 
827
	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
828
		if (connector->encoder == encoder)
829
			if (connector->dpms < dpms)
830
				dpms = connector->dpms;
831
	return dpms;
832
}
833
 
834
static int drm_helper_choose_crtc_dpms(struct drm_crtc *crtc)
835
{
836
	int dpms = DRM_MODE_DPMS_OFF;
837
	struct drm_connector *connector;
838
	struct drm_device *dev = crtc->dev;
839
 
840
	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
841
		if (connector->encoder && connector->encoder->crtc == crtc)
842
			if (connector->dpms < dpms)
843
				dpms = connector->dpms;
844
	return dpms;
845
}
846
 
847
/**
3192 Serge 848
 * drm_helper_connector_dpms() - connector dpms helper implementation
849
 * @connector: affected connector
850
 * @mode: DPMS mode
1123 serge 851
 *
3192 Serge 852
 * This is the main helper function provided by the crtc helper framework for
853
 * implementing the DPMS connector attribute. It computes the new desired DPMS
854
 * state for all encoders and crtcs in the output mesh and calls the ->dpms()
855
 * callback provided by the driver appropriately.
1123 serge 856
 */
857
void drm_helper_connector_dpms(struct drm_connector *connector, int mode)
858
{
859
	struct drm_encoder *encoder = connector->encoder;
860
	struct drm_crtc *crtc = encoder ? encoder->crtc : NULL;
861
	int old_dpms;
862
 
863
	if (mode == connector->dpms)
864
		return;
865
 
866
	old_dpms = connector->dpms;
867
	connector->dpms = mode;
868
 
869
	/* from off to on, do crtc then encoder */
870
	if (mode < old_dpms) {
871
		if (crtc) {
872
			struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
873
			if (crtc_funcs->dpms)
874
				(*crtc_funcs->dpms) (crtc,
875
						     drm_helper_choose_crtc_dpms(crtc));
876
		}
877
		if (encoder) {
878
			struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
879
			if (encoder_funcs->dpms)
880
				(*encoder_funcs->dpms) (encoder,
881
							drm_helper_choose_encoder_dpms(encoder));
882
		}
883
	}
884
 
885
	/* from on to off, do encoder then crtc */
886
	if (mode > old_dpms) {
887
		if (encoder) {
888
			struct drm_encoder_helper_funcs *encoder_funcs = encoder->helper_private;
889
			if (encoder_funcs->dpms)
890
				(*encoder_funcs->dpms) (encoder,
891
							drm_helper_choose_encoder_dpms(encoder));
892
		}
893
		if (crtc) {
894
			struct drm_crtc_helper_funcs *crtc_funcs = crtc->helper_private;
895
			if (crtc_funcs->dpms)
896
				(*crtc_funcs->dpms) (crtc,
897
						     drm_helper_choose_crtc_dpms(crtc));
898
		}
899
	}
900
 
901
	return;
902
}
903
EXPORT_SYMBOL(drm_helper_connector_dpms);
904
 
905
int drm_helper_mode_fill_fb_struct(struct drm_framebuffer *fb,
3031 serge 906
				   struct drm_mode_fb_cmd2 *mode_cmd)
1123 serge 907
{
3031 serge 908
	int i;
909
 
1123 serge 910
	fb->width = mode_cmd->width;
911
	fb->height = mode_cmd->height;
3031 serge 912
	for (i = 0; i < 4; i++) {
913
		fb->pitches[i] = mode_cmd->pitches[i];
914
		fb->offsets[i] = mode_cmd->offsets[i];
915
	}
916
	drm_fb_get_bpp_depth(mode_cmd->pixel_format, &fb->depth,
917
				    &fb->bits_per_pixel);
918
	fb->pixel_format = mode_cmd->pixel_format;
1123 serge 919
 
920
	return 0;
921
}
922
EXPORT_SYMBOL(drm_helper_mode_fill_fb_struct);
923
 
924
int drm_helper_resume_force_mode(struct drm_device *dev)
925
{
926
	struct drm_crtc *crtc;
1404 serge 927
	struct drm_encoder *encoder;
928
	struct drm_encoder_helper_funcs *encoder_funcs;
929
	struct drm_crtc_helper_funcs *crtc_funcs;
1123 serge 930
	int ret;
931
 
932
	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
933
 
1179 serge 934
       if (!crtc->enabled)
935
           continue;
1123 serge 936
 
1179 serge 937
		ret = drm_crtc_helper_set_mode(crtc, &crtc->mode,
1123 serge 938
					       crtc->x, crtc->y, crtc->fb);
939
 
940
		if (ret == false)
941
			DRM_ERROR("failed to set mode on crtc %p\n", crtc);
1404 serge 942
 
943
		/* Turn off outputs that were already powered off */
944
		if (drm_helper_choose_crtc_dpms(crtc)) {
945
			list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
946
 
947
				if(encoder->crtc != crtc)
948
					continue;
949
 
950
				encoder_funcs = encoder->helper_private;
951
				if (encoder_funcs->dpms)
952
					(*encoder_funcs->dpms) (encoder,
953
								drm_helper_choose_encoder_dpms(encoder));
1963 serge 954
			}
1404 serge 955
 
956
				crtc_funcs = crtc->helper_private;
957
				if (crtc_funcs->dpms)
958
					(*crtc_funcs->dpms) (crtc,
959
							     drm_helper_choose_crtc_dpms(crtc));
960
			}
961
		}
1179 serge 962
	/* disable the unused connectors while restoring the modesetting */
963
	drm_helper_disable_unused_functions(dev);
1123 serge 964
	return 0;
965
}
966
EXPORT_SYMBOL(drm_helper_resume_force_mode);
1963 serge 967
 
3480 Serge 968
void drm_kms_helper_hotplug_event(struct drm_device *dev)
969
{
970
	/* send a uevent + call fbdev */
971
    if (dev->mode_config.funcs->output_poll_changed)
972
		dev->mode_config.funcs->output_poll_changed(dev);
973
}
974
EXPORT_SYMBOL(drm_kms_helper_hotplug_event);
1963 serge 975
 
976
#define DRM_OUTPUT_POLL_PERIOD (10*HZ)
977
static void output_poll_execute(struct work_struct *work)
978
{
979
	struct delayed_work *delayed_work = to_delayed_work(work);
980
	struct drm_device *dev = container_of(delayed_work, struct drm_device, mode_config.output_poll_work);
981
	struct drm_connector *connector;
982
	enum drm_connector_status old_status;
983
	bool repoll = false, changed = false;
984
 
985
	if (!drm_kms_helper_poll)
986
		return;
987
 
988
	mutex_lock(&dev->mode_config.mutex);
989
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
990
 
3192 Serge 991
		/* Ignore forced connectors. */
992
		if (connector->force)
1963 serge 993
			continue;
994
 
3192 Serge 995
		/* Ignore HPD capable connectors and connectors where we don't
996
		 * want any hotplug detection at all for polling. */
997
		if (!connector->polled || connector->polled == DRM_CONNECTOR_POLL_HPD)
998
			continue;
999
 
1963 serge 1000
			repoll = true;
1001
 
1002
		old_status = connector->status;
1003
		/* if we are connected and don't want to poll for disconnect
1004
		   skip it */
1005
		if (old_status == connector_status_connected &&
3192 Serge 1006
		    !(connector->polled & DRM_CONNECTOR_POLL_DISCONNECT))
1963 serge 1007
			continue;
1008
 
1009
		connector->status = connector->funcs->detect(connector, false);
1010
		DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
1011
			      connector->base.id,
1012
			      drm_get_connector_name(connector),
1013
			      old_status, connector->status);
1014
		if (old_status != connector->status)
1015
			changed = true;
1016
	}
1017
 
1018
	mutex_unlock(&dev->mode_config.mutex);
1019
 
3192 Serge 1020
	if (changed)
1021
		drm_kms_helper_hotplug_event(dev);
1963 serge 1022
 
3480 Serge 1023
//   if (repoll)
1024
//       schedule_delayed_work(delayed_work, DRM_OUTPUT_POLL_PERIOD);
1963 serge 1025
}
1026
 
1027
void drm_kms_helper_poll_disable(struct drm_device *dev)
1028
{
1029
	if (!dev->mode_config.poll_enabled)
1030
		return;
3480 Serge 1031
//   cancel_delayed_work_sync(&dev->mode_config.output_poll_work);
1963 serge 1032
}
1033
EXPORT_SYMBOL(drm_kms_helper_poll_disable);
1034
 
1035
void drm_kms_helper_poll_enable(struct drm_device *dev)
1036
{
1037
	bool poll = false;
1038
	struct drm_connector *connector;
1039
 
1040
	if (!dev->mode_config.poll_enabled || !drm_kms_helper_poll)
1041
		return;
1042
 
1043
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
3192 Serge 1044
		if (connector->polled & (DRM_CONNECTOR_POLL_CONNECT |
1045
					 DRM_CONNECTOR_POLL_DISCONNECT))
1963 serge 1046
			poll = true;
1047
	}
1048
 
3480 Serge 1049
//   if (poll)
1050
//       schedule_delayed_work(&dev->mode_config.output_poll_work, DRM_OUTPUT_POLL_PERIOD);
1963 serge 1051
}
1052
EXPORT_SYMBOL(drm_kms_helper_poll_enable);
1053
 
1054
void drm_kms_helper_poll_init(struct drm_device *dev)
1055
{
1056
	INIT_DELAYED_WORK(&dev->mode_config.output_poll_work, output_poll_execute);
1057
	dev->mode_config.poll_enabled = true;
1058
 
1059
	drm_kms_helper_poll_enable(dev);
1060
}
1061
EXPORT_SYMBOL(drm_kms_helper_poll_init);
1062
 
1063
void drm_kms_helper_poll_fini(struct drm_device *dev)
1064
{
1065
	drm_kms_helper_poll_disable(dev);
1066
}
1067
EXPORT_SYMBOL(drm_kms_helper_poll_fini);
1068
 
1069
void drm_helper_hpd_irq_event(struct drm_device *dev)
1070
{
3192 Serge 1071
	struct drm_connector *connector;
1072
	enum drm_connector_status old_status;
1073
	bool changed = false;
1074
 
1963 serge 1075
	if (!dev->mode_config.poll_enabled)
1076
		return;
1077
 
3192 Serge 1078
	mutex_lock(&dev->mode_config.mutex);
1079
	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
1080
 
1081
		/* Only handle HPD capable connectors. */
1082
		if (!(connector->polled & DRM_CONNECTOR_POLL_HPD))
1083
			continue;
1084
 
1085
		old_status = connector->status;
1086
 
1087
		connector->status = connector->funcs->detect(connector, false);
1088
		DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
1089
			      connector->base.id,
1090
			      drm_get_connector_name(connector),
1091
			      old_status, connector->status);
1092
		if (old_status != connector->status)
1093
			changed = true;
1094
	}
1095
 
1096
	mutex_unlock(&dev->mode_config.mutex);
1097
 
1098
	if (changed)
1099
		drm_kms_helper_hotplug_event(dev);
1963 serge 1100
}
1101
EXPORT_SYMBOL(drm_helper_hpd_irq_event);