blob: 33bf550a1d3f54b4466fd0584ac7378205cee0c8 [file] [log] [blame]
Daniel Vetter8d754542014-04-10 10:51:11 +02001/*
2 * Copyright (c) 2006-2008 Intel Corporation
3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
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 <eric@anholt.net>
28 * Dave Airlie <airlied@linux.ie>
29 * Jesse Barnes <jesse.barnes@intel.com>
30 */
31
32#include <linux/export.h>
33#include <linux/moduleparam.h>
34
35#include <drm/drmP.h>
36#include <drm/drm_crtc.h>
37#include <drm/drm_fourcc.h>
38#include <drm/drm_crtc_helper.h>
39#include <drm/drm_fb_helper.h>
40#include <drm/drm_edid.h>
41
42/**
43 * DOC: output probing helper overview
44 *
45 * This library provides some helper code for output probing. It provides an
46 * implementation of the core connector->fill_modes interface with
47 * drm_helper_probe_single_connector_modes.
48 *
49 * It also provides support for polling connectors with a work item and for
50 * generic hotplug interrupt handling where the driver doesn't or cannot keep
51 * track of a per-connector hpd interrupt.
52 *
53 * This helper library can be used independently of the modeset helper library.
54 * Drivers can also overwrite different parts e.g. use their own hotplug
55 * handling code to avoid probing unrelated outputs.
56 */
57
58static bool drm_kms_helper_poll = true;
59module_param_named(poll, drm_kms_helper_poll, bool, 0600);
60
Ville Syrjälä05acaec2014-12-17 13:56:22 +020061static enum drm_mode_status
62drm_mode_validate_flag(const struct drm_display_mode *mode,
63 int flags)
Daniel Vetter8d754542014-04-10 10:51:11 +020064{
Ville Syrjälä05acaec2014-12-17 13:56:22 +020065 if ((mode->flags & DRM_MODE_FLAG_INTERLACE) &&
66 !(flags & DRM_MODE_FLAG_INTERLACE))
67 return MODE_NO_INTERLACE;
Daniel Vetter8d754542014-04-10 10:51:11 +020068
Ville Syrjälä05acaec2014-12-17 13:56:22 +020069 if ((mode->flags & DRM_MODE_FLAG_DBLSCAN) &&
70 !(flags & DRM_MODE_FLAG_DBLSCAN))
71 return MODE_NO_DBLESCAN;
Daniel Vetter8d754542014-04-10 10:51:11 +020072
Ville Syrjälä05acaec2014-12-17 13:56:22 +020073 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) &&
74 !(flags & DRM_MODE_FLAG_3D_MASK))
75 return MODE_NO_STEREO;
Daniel Vetter8d754542014-04-10 10:51:11 +020076
Ville Syrjälä05acaec2014-12-17 13:56:22 +020077 return MODE_OK;
Daniel Vetter8d754542014-04-10 10:51:11 +020078}
79
Chris Wilsoneaf99c72014-08-06 10:08:32 +020080static int drm_helper_probe_add_cmdline_mode(struct drm_connector *connector)
81{
82 struct drm_display_mode *mode;
83
84 if (!connector->cmdline_mode.specified)
85 return 0;
86
87 mode = drm_mode_create_from_cmdline_mode(connector->dev,
88 &connector->cmdline_mode);
89 if (mode == NULL)
90 return 0;
91
92 drm_mode_probed_add(connector, mode);
93 return 1;
94}
95
Dave Airlieb87577b2014-05-01 09:26:53 +100096static int drm_helper_probe_single_connector_modes_merge_bits(struct drm_connector *connector,
97 uint32_t maxX, uint32_t maxY, bool merge_type_bits)
Daniel Vetter8d754542014-04-10 10:51:11 +020098{
99 struct drm_device *dev = connector->dev;
100 struct drm_display_mode *mode;
101 struct drm_connector_helper_funcs *connector_funcs =
102 connector->helper_private;
103 int count = 0;
104 int mode_flags = 0;
105 bool verbose_prune = true;
Daniel Vetter162b6a52015-01-21 08:45:21 +0100106 enum drm_connector_status old_status;
Daniel Vetter8d754542014-04-10 10:51:11 +0200107
108 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
109
110 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n", connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +0300111 connector->name);
Daniel Vetter8d754542014-04-10 10:51:11 +0200112 /* set all modes to the unverified state */
113 list_for_each_entry(mode, &connector->modes, head)
114 mode->status = MODE_UNVERIFIED;
115
116 if (connector->force) {
Peter Hurley2c4cc912014-11-03 20:51:45 -0500117 if (connector->force == DRM_FORCE_ON ||
118 connector->force == DRM_FORCE_ON_DIGITAL)
Daniel Vetter8d754542014-04-10 10:51:11 +0200119 connector->status = connector_status_connected;
120 else
121 connector->status = connector_status_disconnected;
122 if (connector->funcs->force)
123 connector->funcs->force(connector);
124 } else {
Daniel Vetter162b6a52015-01-21 08:45:21 +0100125 old_status = connector->status;
126
Daniel Vetter8d754542014-04-10 10:51:11 +0200127 connector->status = connector->funcs->detect(connector, true);
Daniel Vetter162b6a52015-01-21 08:45:21 +0100128
129 /*
130 * Normally either the driver's hpd code or the poll loop should
131 * pick up any changes and fire the hotplug event. But if
132 * userspace sneaks in a probe, we might miss a change. Hence
133 * check here, and if anything changed start the hotplug code.
134 */
135 if (old_status != connector->status) {
136 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
137 connector->base.id,
138 connector->name,
139 old_status, connector->status);
140
141 /*
142 * The hotplug event code might call into the fb
143 * helpers, and so expects that we do not hold any
144 * locks. Fire up the poll struct instead, it will
145 * disable itself again.
146 */
147 dev->mode_config.delayed_event = true;
148 if (dev->mode_config.poll_enabled)
149 schedule_delayed_work(&dev->mode_config.output_poll_work,
150 0);
151 }
Daniel Vetter8d754542014-04-10 10:51:11 +0200152 }
153
154 /* Re-enable polling in case the global poll config changed. */
155 if (drm_kms_helper_poll != dev->mode_config.poll_running)
156 drm_kms_helper_poll_enable(dev);
157
158 dev->mode_config.poll_running = drm_kms_helper_poll;
159
160 if (connector->status == connector_status_disconnected) {
161 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] disconnected\n",
Jani Nikula25933822014-06-03 14:56:20 +0300162 connector->base.id, connector->name);
Daniel Vetter8d754542014-04-10 10:51:11 +0200163 drm_mode_connector_update_edid_property(connector, NULL);
164 verbose_prune = false;
165 goto prune;
166 }
167
168#ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE
169 count = drm_load_edid_firmware(connector);
170 if (count == 0)
171#endif
Thomas Wood4cf2b282014-06-18 17:52:33 +0100172 {
173 if (connector->override_edid) {
174 struct edid *edid = (struct edid *) connector->edid_blob_ptr->data;
175
176 count = drm_add_edid_modes(connector, edid);
177 } else
178 count = (*connector_funcs->get_modes)(connector);
179 }
Daniel Vetter8d754542014-04-10 10:51:11 +0200180
181 if (count == 0 && connector->status == connector_status_connected)
182 count = drm_add_modes_noedid(connector, 1024, 768);
Chris Wilsoneaf99c72014-08-06 10:08:32 +0200183 count += drm_helper_probe_add_cmdline_mode(connector);
Daniel Vetter8d754542014-04-10 10:51:11 +0200184 if (count == 0)
185 goto prune;
186
Dave Airlieb87577b2014-05-01 09:26:53 +1000187 drm_mode_connector_list_update(connector, merge_type_bits);
Daniel Vetter8d754542014-04-10 10:51:11 +0200188
Daniel Vetter8d754542014-04-10 10:51:11 +0200189 if (connector->interlace_allowed)
190 mode_flags |= DRM_MODE_FLAG_INTERLACE;
191 if (connector->doublescan_allowed)
192 mode_flags |= DRM_MODE_FLAG_DBLSCAN;
193 if (connector->stereo_allowed)
194 mode_flags |= DRM_MODE_FLAG_3D_MASK;
Daniel Vetter8d754542014-04-10 10:51:11 +0200195
196 list_for_each_entry(mode, &connector->modes, head) {
Ville Syrjäläabc0b142014-12-17 13:56:23 +0200197 mode->status = drm_mode_validate_basic(mode);
198
199 if (mode->status == MODE_OK)
200 mode->status = drm_mode_validate_size(mode, maxX, maxY);
Ville Syrjälä05acaec2014-12-17 13:56:22 +0200201
202 if (mode->status == MODE_OK)
203 mode->status = drm_mode_validate_flag(mode, mode_flags);
204
Andrzej Hajdaf9b0e252014-04-02 12:29:46 +0200205 if (mode->status == MODE_OK && connector_funcs->mode_valid)
Daniel Vetter8d754542014-04-10 10:51:11 +0200206 mode->status = connector_funcs->mode_valid(connector,
207 mode);
208 }
209
210prune:
211 drm_mode_prune_invalid(dev, &connector->modes, verbose_prune);
212
213 if (list_empty(&connector->modes))
214 return 0;
215
216 list_for_each_entry(mode, &connector->modes, head)
217 mode->vrefresh = drm_mode_vrefresh(mode);
218
219 drm_mode_sort(&connector->modes);
220
221 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] probed modes :\n", connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +0300222 connector->name);
Daniel Vetter8d754542014-04-10 10:51:11 +0200223 list_for_each_entry(mode, &connector->modes, head) {
224 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
225 drm_mode_debug_printmodeline(mode);
226 }
227
228 return count;
229}
Dave Airlieb87577b2014-05-01 09:26:53 +1000230
231/**
232 * drm_helper_probe_single_connector_modes - get complete set of display modes
233 * @connector: connector to probe
234 * @maxX: max width for modes
235 * @maxY: max height for modes
236 *
237 * Based on the helper callbacks implemented by @connector try to detect all
238 * valid modes. Modes will first be added to the connector's probed_modes list,
239 * then culled (based on validity and the @maxX, @maxY parameters) and put into
240 * the normal modes list.
241 *
242 * Intended to be use as a generic implementation of the ->fill_modes()
243 * @connector vfunc for drivers that use the crtc helpers for output mode
244 * filtering and detection.
245 *
246 * Returns:
247 * The number of modes found on @connector.
248 */
249int drm_helper_probe_single_connector_modes(struct drm_connector *connector,
250 uint32_t maxX, uint32_t maxY)
251{
252 return drm_helper_probe_single_connector_modes_merge_bits(connector, maxX, maxY, true);
253}
Daniel Vetter8d754542014-04-10 10:51:11 +0200254EXPORT_SYMBOL(drm_helper_probe_single_connector_modes);
255
256/**
Dave Airlieb87577b2014-05-01 09:26:53 +1000257 * drm_helper_probe_single_connector_modes_nomerge - get complete set of display modes
258 * @connector: connector to probe
259 * @maxX: max width for modes
260 * @maxY: max height for modes
261 *
262 * This operates like drm_hehlper_probe_single_connector_modes except it
263 * replaces the mode bits instead of merging them for preferred modes.
264 */
265int drm_helper_probe_single_connector_modes_nomerge(struct drm_connector *connector,
266 uint32_t maxX, uint32_t maxY)
267{
268 return drm_helper_probe_single_connector_modes_merge_bits(connector, maxX, maxY, false);
269}
270EXPORT_SYMBOL(drm_helper_probe_single_connector_modes_nomerge);
271
272/**
Daniel Vetter8d754542014-04-10 10:51:11 +0200273 * drm_kms_helper_hotplug_event - fire off KMS hotplug events
274 * @dev: drm_device whose connector state changed
275 *
276 * This function fires off the uevent for userspace and also calls the
277 * output_poll_changed function, which is most commonly used to inform the fbdev
278 * emulation code and allow it to update the fbcon output configuration.
279 *
280 * Drivers should call this from their hotplug handling code when a change is
281 * detected. Note that this function does not do any output detection of its
282 * own, like drm_helper_hpd_irq_event() does - this is assumed to be done by the
283 * driver already.
284 *
285 * This function must be called from process context with no mode
286 * setting locks held.
287 */
288void drm_kms_helper_hotplug_event(struct drm_device *dev)
289{
290 /* send a uevent + call fbdev */
291 drm_sysfs_hotplug_event(dev);
292 if (dev->mode_config.funcs->output_poll_changed)
293 dev->mode_config.funcs->output_poll_changed(dev);
294}
295EXPORT_SYMBOL(drm_kms_helper_hotplug_event);
296
297#define DRM_OUTPUT_POLL_PERIOD (10*HZ)
298static void output_poll_execute(struct work_struct *work)
299{
300 struct delayed_work *delayed_work = to_delayed_work(work);
301 struct drm_device *dev = container_of(delayed_work, struct drm_device, mode_config.output_poll_work);
302 struct drm_connector *connector;
303 enum drm_connector_status old_status;
Daniel Vetter162b6a52015-01-21 08:45:21 +0100304 bool repoll = false, changed;
305
306 /* Pick up any changes detected by the probe functions. */
307 changed = dev->mode_config.delayed_event;
308 dev->mode_config.delayed_event = false;
Daniel Vetter8d754542014-04-10 10:51:11 +0200309
310 if (!drm_kms_helper_poll)
Daniel Vetter162b6a52015-01-21 08:45:21 +0100311 goto out;
Daniel Vetter8d754542014-04-10 10:51:11 +0200312
313 mutex_lock(&dev->mode_config.mutex);
314 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
315
316 /* Ignore forced connectors. */
317 if (connector->force)
318 continue;
319
320 /* Ignore HPD capable connectors and connectors where we don't
321 * want any hotplug detection at all for polling. */
322 if (!connector->polled || connector->polled == DRM_CONNECTOR_POLL_HPD)
323 continue;
324
325 repoll = true;
326
327 old_status = connector->status;
328 /* if we are connected and don't want to poll for disconnect
329 skip it */
330 if (old_status == connector_status_connected &&
331 !(connector->polled & DRM_CONNECTOR_POLL_DISCONNECT))
332 continue;
333
334 connector->status = connector->funcs->detect(connector, false);
335 if (old_status != connector->status) {
336 const char *old, *new;
337
338 old = drm_get_connector_status_name(old_status);
339 new = drm_get_connector_status_name(connector->status);
340
341 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] "
342 "status updated from %s to %s\n",
343 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +0300344 connector->name,
Daniel Vetter8d754542014-04-10 10:51:11 +0200345 old, new);
346
347 changed = true;
348 }
349 }
350
351 mutex_unlock(&dev->mode_config.mutex);
352
Daniel Vetter162b6a52015-01-21 08:45:21 +0100353out:
Daniel Vetter8d754542014-04-10 10:51:11 +0200354 if (changed)
355 drm_kms_helper_hotplug_event(dev);
356
357 if (repoll)
358 schedule_delayed_work(delayed_work, DRM_OUTPUT_POLL_PERIOD);
359}
360
361/**
362 * drm_kms_helper_poll_disable - disable output polling
363 * @dev: drm_device
364 *
365 * This function disables the output polling work.
366 *
367 * Drivers can call this helper from their device suspend implementation. It is
368 * not an error to call this even when output polling isn't enabled or arlready
369 * disabled.
370 */
371void drm_kms_helper_poll_disable(struct drm_device *dev)
372{
373 if (!dev->mode_config.poll_enabled)
374 return;
375 cancel_delayed_work_sync(&dev->mode_config.output_poll_work);
376}
377EXPORT_SYMBOL(drm_kms_helper_poll_disable);
378
379/**
380 * drm_kms_helper_poll_enable - re-enable output polling.
381 * @dev: drm_device
382 *
383 * This function re-enables the output polling work.
384 *
385 * Drivers can call this helper from their device resume implementation. It is
386 * an error to call this when the output polling support has not yet been set
387 * up.
388 */
389void drm_kms_helper_poll_enable(struct drm_device *dev)
390{
391 bool poll = false;
392 struct drm_connector *connector;
393
394 if (!dev->mode_config.poll_enabled || !drm_kms_helper_poll)
395 return;
396
397 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
398 if (connector->polled & (DRM_CONNECTOR_POLL_CONNECT |
399 DRM_CONNECTOR_POLL_DISCONNECT))
400 poll = true;
401 }
402
403 if (poll)
404 schedule_delayed_work(&dev->mode_config.output_poll_work, DRM_OUTPUT_POLL_PERIOD);
405}
406EXPORT_SYMBOL(drm_kms_helper_poll_enable);
407
408/**
409 * drm_kms_helper_poll_init - initialize and enable output polling
410 * @dev: drm_device
411 *
412 * This function intializes and then also enables output polling support for
413 * @dev. Drivers which do not have reliable hotplug support in hardware can use
414 * this helper infrastructure to regularly poll such connectors for changes in
415 * their connection state.
416 *
417 * Drivers can control which connectors are polled by setting the
418 * DRM_CONNECTOR_POLL_CONNECT and DRM_CONNECTOR_POLL_DISCONNECT flags. On
419 * connectors where probing live outputs can result in visual distortion drivers
420 * should not set the DRM_CONNECTOR_POLL_DISCONNECT flag to avoid this.
421 * Connectors which have no flag or only DRM_CONNECTOR_POLL_HPD set are
422 * completely ignored by the polling logic.
423 *
424 * Note that a connector can be both polled and probed from the hotplug handler,
425 * in case the hotplug interrupt is known to be unreliable.
426 */
427void drm_kms_helper_poll_init(struct drm_device *dev)
428{
429 INIT_DELAYED_WORK(&dev->mode_config.output_poll_work, output_poll_execute);
430 dev->mode_config.poll_enabled = true;
431
432 drm_kms_helper_poll_enable(dev);
433}
434EXPORT_SYMBOL(drm_kms_helper_poll_init);
435
436/**
437 * drm_kms_helper_poll_fini - disable output polling and clean it up
438 * @dev: drm_device
439 */
440void drm_kms_helper_poll_fini(struct drm_device *dev)
441{
442 drm_kms_helper_poll_disable(dev);
443}
444EXPORT_SYMBOL(drm_kms_helper_poll_fini);
445
446/**
447 * drm_helper_hpd_irq_event - hotplug processing
448 * @dev: drm_device
449 *
450 * Drivers can use this helper function to run a detect cycle on all connectors
451 * which have the DRM_CONNECTOR_POLL_HPD flag set in their &polled member. All
452 * other connectors are ignored, which is useful to avoid reprobing fixed
453 * panels.
454 *
455 * This helper function is useful for drivers which can't or don't track hotplug
456 * interrupts for each connector.
457 *
458 * Drivers which support hotplug interrupts for each connector individually and
459 * which have a more fine-grained detect logic should bypass this code and
460 * directly call drm_kms_helper_hotplug_event() in case the connector state
461 * changed.
462 *
463 * This function must be called from process context with no mode
464 * setting locks held.
465 *
466 * Note that a connector can be both polled and probed from the hotplug handler,
467 * in case the hotplug interrupt is known to be unreliable.
468 */
469bool drm_helper_hpd_irq_event(struct drm_device *dev)
470{
471 struct drm_connector *connector;
472 enum drm_connector_status old_status;
473 bool changed = false;
474
475 if (!dev->mode_config.poll_enabled)
476 return false;
477
478 mutex_lock(&dev->mode_config.mutex);
479 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
480
481 /* Only handle HPD capable connectors. */
482 if (!(connector->polled & DRM_CONNECTOR_POLL_HPD))
483 continue;
484
485 old_status = connector->status;
486
487 connector->status = connector->funcs->detect(connector, false);
488 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
489 connector->base.id,
Jani Nikula25933822014-06-03 14:56:20 +0300490 connector->name,
Daniel Vetter8d754542014-04-10 10:51:11 +0200491 drm_get_connector_status_name(old_status),
492 drm_get_connector_status_name(connector->status));
493 if (old_status != connector->status)
494 changed = true;
495 }
496
497 mutex_unlock(&dev->mode_config.mutex);
498
499 if (changed)
500 drm_kms_helper_hotplug_event(dev);
501
502 return changed;
503}
504EXPORT_SYMBOL(drm_helper_hpd_irq_event);