blob: 3c9171f115310209d2e725f0b899d9d825baecdb [file] [log] [blame]
Jani Nikula77913b32015-06-18 13:06:16 +03001/*
2 * Copyright © 2015 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24#include <linux/kernel.h>
25
26#include <drm/drmP.h>
27#include <drm/i915_drm.h>
28
29#include "i915_drv.h"
30#include "intel_drv.h"
31
Jani Nikula856974a2015-07-02 16:05:28 +030032/**
33 * DOC: Hotplug
34 *
35 * Simply put, hotplug occurs when a display is connected to or disconnected
36 * from the system. However, there may be adapters and docking stations and
37 * Display Port short pulses and MST devices involved, complicating matters.
38 *
39 * Hotplug in i915 is handled in many different levels of abstraction.
40 *
41 * The platform dependent interrupt handling code in i915_irq.c enables,
42 * disables, and does preliminary handling of the interrupts. The interrupt
43 * handlers gather the hotplug detect (HPD) information from relevant registers
44 * into a platform independent mask of hotplug pins that have fired.
45 *
46 * The platform independent interrupt handler intel_hpd_irq_handler() in
47 * intel_hotplug.c does hotplug irq storm detection and mitigation, and passes
48 * further processing to appropriate bottom halves (Display Port specific and
49 * regular hotplug).
50 *
51 * The Display Port work function i915_digport_work_func() calls into
52 * intel_dp_hpd_pulse() via hooks, which handles DP short pulses and DP MST long
53 * pulses, with failures and non-MST long pulses triggering regular hotplug
54 * processing on the connector.
55 *
56 * The regular hotplug work function i915_hotplug_work_func() calls connector
57 * detect hooks, and, if connector status changes, triggers sending of hotplug
58 * uevent to userspace via drm_kms_helper_hotplug_event().
59 *
60 * Finally, the userspace is responsible for triggering a modeset upon receiving
61 * the hotplug uevent, disabling or enabling the crtc as needed.
62 *
63 * The hotplug interrupt storm detection and mitigation code keeps track of the
64 * number of interrupts per hotplug pin per a period of time, and if the number
65 * of interrupts exceeds a certain threshold, the interrupt is disabled for a
66 * while before being re-enabled. The intention is to mitigate issues raising
67 * from broken hardware triggering massive amounts of interrupts and grinding
68 * the system to a halt.
Thulasimani,Sivakumarfeecb692015-07-10 12:30:43 +053069 *
70 * Current implementation expects that hotplug interrupt storm will not be
71 * seen when display port sink is connected, hence on platforms whose DP
72 * callback is handled by i915_digport_work_func reenabling of hpd is not
73 * performed (it was never expected to be disabled in the first place ;) )
74 * this is specific to DP sinks handled by this routine and any other display
75 * such as HDMI or DVI enabled on the same port will have proper logic since
76 * it will use i915_hotplug_work_func where this logic is handled.
Jani Nikula856974a2015-07-02 16:05:28 +030077 */
78
Jani Nikula77913b32015-06-18 13:06:16 +030079enum port intel_hpd_pin_to_port(enum hpd_pin pin)
80{
81 switch (pin) {
82 case HPD_PORT_B:
83 return PORT_B;
84 case HPD_PORT_C:
85 return PORT_C;
86 case HPD_PORT_D:
87 return PORT_D;
88 default:
89 return PORT_A; /* no hpd */
90 }
91}
92
93#define HPD_STORM_DETECT_PERIOD 1000
94#define HPD_STORM_THRESHOLD 5
95#define HPD_STORM_REENABLE_DELAY (2 * 60 * 1000)
96
97/**
98 * intel_hpd_irq_storm_detect - gather stats and detect HPD irq storm on a pin
99 * @dev_priv: private driver data pointer
100 * @pin: the pin to gather stats on
101 *
102 * Gather stats about HPD irqs from the specified @pin, and detect irq
103 * storms. Only the pin specific stats and state are changed, the caller is
104 * responsible for further action.
105 *
106 * @HPD_STORM_THRESHOLD irqs are allowed within @HPD_STORM_DETECT_PERIOD ms,
107 * otherwise it's considered an irq storm, and the irq state is set to
108 * @HPD_MARK_DISABLED.
109 *
110 * Return true if an irq storm was detected on @pin.
111 */
112static bool intel_hpd_irq_storm_detect(struct drm_i915_private *dev_priv,
113 enum hpd_pin pin)
114{
115 unsigned long start = dev_priv->hotplug.stats[pin].last_jiffies;
116 unsigned long end = start + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD);
117 bool storm = false;
118
119 if (!time_in_range(jiffies, start, end)) {
120 dev_priv->hotplug.stats[pin].last_jiffies = jiffies;
121 dev_priv->hotplug.stats[pin].count = 0;
122 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: 0\n", pin);
123 } else if (dev_priv->hotplug.stats[pin].count > HPD_STORM_THRESHOLD) {
124 dev_priv->hotplug.stats[pin].state = HPD_MARK_DISABLED;
125 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", pin);
126 storm = true;
127 } else {
128 dev_priv->hotplug.stats[pin].count++;
129 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: %d\n", pin,
130 dev_priv->hotplug.stats[pin].count);
131 }
132
133 return storm;
134}
135
136static void intel_hpd_irq_storm_disable(struct drm_i915_private *dev_priv)
137{
138 struct drm_device *dev = dev_priv->dev;
139 struct drm_mode_config *mode_config = &dev->mode_config;
140 struct intel_connector *intel_connector;
141 struct intel_encoder *intel_encoder;
142 struct drm_connector *connector;
143 enum hpd_pin pin;
144 bool hpd_disabled = false;
145
146 assert_spin_locked(&dev_priv->irq_lock);
147
148 list_for_each_entry(connector, &mode_config->connector_list, head) {
149 if (connector->polled != DRM_CONNECTOR_POLL_HPD)
150 continue;
151
152 intel_connector = to_intel_connector(connector);
153 intel_encoder = intel_connector->encoder;
154 if (!intel_encoder)
155 continue;
156
157 pin = intel_encoder->hpd_pin;
158 if (pin == HPD_NONE ||
159 dev_priv->hotplug.stats[pin].state != HPD_MARK_DISABLED)
160 continue;
161
162 DRM_INFO("HPD interrupt storm detected on connector %s: "
163 "switching from hotplug detection to polling\n",
164 connector->name);
165
166 dev_priv->hotplug.stats[pin].state = HPD_DISABLED;
167 connector->polled = DRM_CONNECTOR_POLL_CONNECT
168 | DRM_CONNECTOR_POLL_DISCONNECT;
169 hpd_disabled = true;
170 }
171
172 /* Enable polling and queue hotplug re-enabling. */
173 if (hpd_disabled) {
174 drm_kms_helper_poll_enable(dev);
175 mod_delayed_work(system_wq, &dev_priv->hotplug.reenable_work,
176 msecs_to_jiffies(HPD_STORM_REENABLE_DELAY));
177 }
178}
179
180static void intel_hpd_irq_storm_reenable_work(struct work_struct *work)
181{
182 struct drm_i915_private *dev_priv =
183 container_of(work, typeof(*dev_priv),
184 hotplug.reenable_work.work);
185 struct drm_device *dev = dev_priv->dev;
186 struct drm_mode_config *mode_config = &dev->mode_config;
187 int i;
188
189 intel_runtime_pm_get(dev_priv);
190
191 spin_lock_irq(&dev_priv->irq_lock);
192 for_each_hpd_pin(i) {
193 struct drm_connector *connector;
194
195 if (dev_priv->hotplug.stats[i].state != HPD_DISABLED)
196 continue;
197
198 dev_priv->hotplug.stats[i].state = HPD_ENABLED;
199
200 list_for_each_entry(connector, &mode_config->connector_list, head) {
201 struct intel_connector *intel_connector = to_intel_connector(connector);
202
203 if (intel_connector->encoder->hpd_pin == i) {
204 if (connector->polled != intel_connector->polled)
205 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
206 connector->name);
207 connector->polled = intel_connector->polled;
208 if (!connector->polled)
209 connector->polled = DRM_CONNECTOR_POLL_HPD;
210 }
211 }
212 }
213 if (dev_priv->display.hpd_irq_setup)
214 dev_priv->display.hpd_irq_setup(dev);
215 spin_unlock_irq(&dev_priv->irq_lock);
216
217 intel_runtime_pm_put(dev_priv);
218}
219
220static bool intel_hpd_irq_event(struct drm_device *dev,
221 struct drm_connector *connector)
222{
223 enum drm_connector_status old_status;
224
225 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
226 old_status = connector->status;
227
228 connector->status = connector->funcs->detect(connector, false);
229 if (old_status == connector->status)
230 return false;
231
232 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
233 connector->base.id,
234 connector->name,
235 drm_get_connector_status_name(old_status),
236 drm_get_connector_status_name(connector->status));
237
238 return true;
239}
240
241static void i915_digport_work_func(struct work_struct *work)
242{
243 struct drm_i915_private *dev_priv =
244 container_of(work, struct drm_i915_private, hotplug.dig_port_work);
245 u32 long_port_mask, short_port_mask;
246 struct intel_digital_port *intel_dig_port;
247 int i;
248 u32 old_bits = 0;
249
250 spin_lock_irq(&dev_priv->irq_lock);
251 long_port_mask = dev_priv->hotplug.long_port_mask;
252 dev_priv->hotplug.long_port_mask = 0;
253 short_port_mask = dev_priv->hotplug.short_port_mask;
254 dev_priv->hotplug.short_port_mask = 0;
255 spin_unlock_irq(&dev_priv->irq_lock);
256
257 for (i = 0; i < I915_MAX_PORTS; i++) {
258 bool valid = false;
259 bool long_hpd = false;
260 intel_dig_port = dev_priv->hotplug.irq_port[i];
261 if (!intel_dig_port || !intel_dig_port->hpd_pulse)
262 continue;
263
264 if (long_port_mask & (1 << i)) {
265 valid = true;
266 long_hpd = true;
267 } else if (short_port_mask & (1 << i))
268 valid = true;
269
270 if (valid) {
271 enum irqreturn ret;
272
273 ret = intel_dig_port->hpd_pulse(intel_dig_port, long_hpd);
274 if (ret == IRQ_NONE) {
275 /* fall back to old school hpd */
276 old_bits |= (1 << intel_dig_port->base.hpd_pin);
277 }
278 }
279 }
280
281 if (old_bits) {
282 spin_lock_irq(&dev_priv->irq_lock);
283 dev_priv->hotplug.event_bits |= old_bits;
284 spin_unlock_irq(&dev_priv->irq_lock);
285 schedule_work(&dev_priv->hotplug.hotplug_work);
286 }
287}
288
289/*
290 * Handle hotplug events outside the interrupt handler proper.
291 */
292static void i915_hotplug_work_func(struct work_struct *work)
293{
294 struct drm_i915_private *dev_priv =
295 container_of(work, struct drm_i915_private, hotplug.hotplug_work);
296 struct drm_device *dev = dev_priv->dev;
297 struct drm_mode_config *mode_config = &dev->mode_config;
298 struct intel_connector *intel_connector;
299 struct intel_encoder *intel_encoder;
300 struct drm_connector *connector;
301 bool changed = false;
302 u32 hpd_event_bits;
303
304 mutex_lock(&mode_config->mutex);
305 DRM_DEBUG_KMS("running encoder hotplug functions\n");
306
307 spin_lock_irq(&dev_priv->irq_lock);
308
309 hpd_event_bits = dev_priv->hotplug.event_bits;
310 dev_priv->hotplug.event_bits = 0;
311
312 /* Disable hotplug on connectors that hit an irq storm. */
313 intel_hpd_irq_storm_disable(dev_priv);
314
315 spin_unlock_irq(&dev_priv->irq_lock);
316
317 list_for_each_entry(connector, &mode_config->connector_list, head) {
318 intel_connector = to_intel_connector(connector);
319 if (!intel_connector->encoder)
320 continue;
321 intel_encoder = intel_connector->encoder;
322 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
323 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
324 connector->name, intel_encoder->hpd_pin);
325 if (intel_encoder->hot_plug)
326 intel_encoder->hot_plug(intel_encoder);
327 if (intel_hpd_irq_event(dev, connector))
328 changed = true;
329 }
330 }
331 mutex_unlock(&mode_config->mutex);
332
333 if (changed)
334 drm_kms_helper_hotplug_event(dev);
335}
336
337
338/**
339 * intel_hpd_irq_handler - main hotplug irq handler
340 * @dev: drm device
341 * @pin_mask: a mask of hpd pins that have triggered the irq
342 * @long_mask: a mask of hpd pins that may be long hpd pulses
343 *
344 * This is the main hotplug irq handler for all platforms. The platform specific
345 * irq handlers call the platform specific hotplug irq handlers, which read and
346 * decode the appropriate registers into bitmasks about hpd pins that have
347 * triggered (@pin_mask), and which of those pins may be long pulses
348 * (@long_mask). The @long_mask is ignored if the port corresponding to the pin
349 * is not a digital port.
350 *
351 * Here, we do hotplug irq storm detection and mitigation, and pass further
352 * processing to appropriate bottom halves.
353 */
354void intel_hpd_irq_handler(struct drm_device *dev,
355 u32 pin_mask, u32 long_mask)
356{
357 struct drm_i915_private *dev_priv = dev->dev_private;
358 int i;
359 enum port port;
360 bool storm_detected = false;
361 bool queue_dig = false, queue_hp = false;
362 bool is_dig_port;
363
364 if (!pin_mask)
365 return;
366
367 spin_lock(&dev_priv->irq_lock);
368 for_each_hpd_pin(i) {
369 if (!(BIT(i) & pin_mask))
370 continue;
371
372 port = intel_hpd_pin_to_port(i);
373 is_dig_port = port && dev_priv->hotplug.irq_port[port];
374
375 if (is_dig_port) {
376 bool long_hpd = long_mask & BIT(i);
377
378 DRM_DEBUG_DRIVER("digital hpd port %c - %s\n", port_name(port),
379 long_hpd ? "long" : "short");
380 /*
381 * For long HPD pulses we want to have the digital queue happen,
382 * but we still want HPD storm detection to function.
383 */
384 queue_dig = true;
385 if (long_hpd) {
386 dev_priv->hotplug.long_port_mask |= (1 << port);
387 } else {
388 /* for short HPD just trigger the digital queue */
389 dev_priv->hotplug.short_port_mask |= (1 << port);
390 continue;
391 }
392 }
393
394 if (dev_priv->hotplug.stats[i].state == HPD_DISABLED) {
395 /*
396 * On GMCH platforms the interrupt mask bits only
397 * prevent irq generation, not the setting of the
398 * hotplug bits itself. So only WARN about unexpected
399 * interrupts on saner platforms.
400 */
401 WARN_ONCE(INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev),
402 "Received HPD interrupt on pin %d although disabled\n", i);
403 continue;
404 }
405
406 if (dev_priv->hotplug.stats[i].state != HPD_ENABLED)
407 continue;
408
409 if (!is_dig_port) {
410 dev_priv->hotplug.event_bits |= BIT(i);
411 queue_hp = true;
412 }
413
414 if (intel_hpd_irq_storm_detect(dev_priv, i)) {
415 dev_priv->hotplug.event_bits &= ~BIT(i);
416 storm_detected = true;
417 }
418 }
419
420 if (storm_detected)
421 dev_priv->display.hpd_irq_setup(dev);
422 spin_unlock(&dev_priv->irq_lock);
423
424 /*
425 * Our hotplug handler can grab modeset locks (by calling down into the
426 * fb helpers). Hence it must not be run on our own dev-priv->wq work
427 * queue for otherwise the flush_work in the pageflip code will
428 * deadlock.
429 */
430 if (queue_dig)
431 queue_work(dev_priv->hotplug.dp_wq, &dev_priv->hotplug.dig_port_work);
432 if (queue_hp)
433 schedule_work(&dev_priv->hotplug.hotplug_work);
434}
435
436/**
437 * intel_hpd_init - initializes and enables hpd support
438 * @dev_priv: i915 device instance
439 *
440 * This function enables the hotplug support. It requires that interrupts have
441 * already been enabled with intel_irq_init_hw(). From this point on hotplug and
442 * poll request can run concurrently to other code, so locking rules must be
443 * obeyed.
444 *
445 * This is a separate step from interrupt enabling to simplify the locking rules
446 * in the driver load and resume code.
447 */
448void intel_hpd_init(struct drm_i915_private *dev_priv)
449{
450 struct drm_device *dev = dev_priv->dev;
451 struct drm_mode_config *mode_config = &dev->mode_config;
452 struct drm_connector *connector;
453 int i;
454
455 for_each_hpd_pin(i) {
456 dev_priv->hotplug.stats[i].count = 0;
457 dev_priv->hotplug.stats[i].state = HPD_ENABLED;
458 }
459 list_for_each_entry(connector, &mode_config->connector_list, head) {
460 struct intel_connector *intel_connector = to_intel_connector(connector);
461 connector->polled = intel_connector->polled;
462 if (connector->encoder && !connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
463 connector->polled = DRM_CONNECTOR_POLL_HPD;
464 if (intel_connector->mst_port)
465 connector->polled = DRM_CONNECTOR_POLL_HPD;
466 }
467
468 /*
469 * Interrupt setup is already guaranteed to be single-threaded, this is
470 * just to make the assert_spin_locked checks happy.
471 */
472 spin_lock_irq(&dev_priv->irq_lock);
473 if (dev_priv->display.hpd_irq_setup)
474 dev_priv->display.hpd_irq_setup(dev);
475 spin_unlock_irq(&dev_priv->irq_lock);
476}
477
478void intel_hpd_init_work(struct drm_i915_private *dev_priv)
479{
480 INIT_WORK(&dev_priv->hotplug.hotplug_work, i915_hotplug_work_func);
481 INIT_WORK(&dev_priv->hotplug.dig_port_work, i915_digport_work_func);
482 INIT_DELAYED_WORK(&dev_priv->hotplug.reenable_work,
483 intel_hpd_irq_storm_reenable_work);
484}
485
486void intel_hpd_cancel_work(struct drm_i915_private *dev_priv)
487{
488 spin_lock_irq(&dev_priv->irq_lock);
489
490 dev_priv->hotplug.long_port_mask = 0;
491 dev_priv->hotplug.short_port_mask = 0;
492 dev_priv->hotplug.event_bits = 0;
493
494 spin_unlock_irq(&dev_priv->irq_lock);
495
496 cancel_work_sync(&dev_priv->hotplug.dig_port_work);
497 cancel_work_sync(&dev_priv->hotplug.hotplug_work);
498 cancel_delayed_work_sync(&dev_priv->hotplug.reenable_work);
499}